@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

html {
  line-height: 1;
}

ol,
ul,
li {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

input,
button {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
input:focus,
button:focus {
  outline: none;
}
input:focus-visible,
button:focus-visible {
  outline: none;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media screen and (max-width: 999px) {
  .pc-on {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .sp-on {
    display: none;
  }
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0em;
  line-height: 1;
  color: #2a2a2a;
}
@media screen and (max-width: 999px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}

body.is-fixed {
  overflow: hidden;
}

@media screen and (min-width: 1000px) {
  a {
    transition: 0.3s ease-in;
  }
  a:hover {
    opacity: 0.7;
  }
}

picture {
  display: block;
}

.inner {
  max-width: 104rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .inner {
    max-width: 100%;
    padding: 0 1.5rem;
  }
}

.js-observe {
  opacity: 0;
  transition: 0.3s ease-in;
}
.js-observe.is-view {
  opacity: 1;
}

.header {
  background-color: #fff;
  padding: 0 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: background-color 0.3s ease-in;
}
@media screen and (max-width: 999px) {
  .header {
    padding: 0 1rem;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1000px) {
  .header__container {
    justify-content: flex-start;
  }
}
.header__logo {
  width: 8rem;
}
@media screen and (max-width: 999px) {
  .header__logo {
    width: 5rem;
  }
}
.header__logo img {
  width: 100%;
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.4rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}
@media screen and (min-width: 1000px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger-line {
  display: block;
  width: 100%;
  height: 0.3rem;
  background-color: #2a2a2a;
  transition: all 0.3s ease-in;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(1.05rem) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(-1.05rem) rotate(-45deg);
}
.header__nav {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 30rem;
    height: 100vh;
    background-color: #fff;
    margin-left: 0;
    padding: 8rem 2rem 2rem;
    transition: right 0.3s ease-in;
    z-index: 99;
  }
  .header__nav.is-active {
    right: 0;
  }
}
.header__nav-list {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 999px) {
  .header__nav-list {
    flex-direction: column;
    gap: 2rem;
  }
}
.header__nav-list li a {
  font-size: 1.6rem;
  position: relative;
}
@media screen and (max-width: 999px) {
  .header__nav-list li a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
  }
}
@media screen and (min-width: 1000px) {
  .header__nav-list li a:hover {
    opacity: 1;
  }
  .header__nav-list li a:hover::before {
    position: absolute;
    content: "";
    background-color: #b03737;
    width: 100%;
    height: 1px;
    bottom: -1rem;
    left: 0;
  }
}

.footer {
  background: url(../images/common/footer-bg.jpg) no-repeat center bottom/cover;
  padding: 5rem 0 2.5rem;
}
@media screen and (max-width: 999px) {
  .footer {
    padding: 3rem 0 2rem;
  }
}
.footer__logo {
  width: 30rem;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .footer__logo {
    width: 15rem;
  }
}
.footer__sns {
  display: flex;
  padding: 2rem 0;
  justify-content: center;
  gap: 11rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 999px) {
  .footer__sns {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .footer__sns li {
    width: 100%;
  }
}
.footer__sns li a {
  color: #fff;
  font-size: 2rem;
}
@media screen and (max-width: 999px) {
  .footer__sns li a {
    font-size: 1.6rem;
  }
}
.footer__contact {
  padding: 4rem 7rem;
  border: 4px solid #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin: 4rem 10rem 0;
}
@media screen and (max-width: 999px) {
  .footer__contact {
    flex-wrap: wrap;
    padding: 2rem 1rem;
    gap: 2rem;
    margin: 3rem auto 0;
  }
}
@media screen and (max-width: 999px) {
  .footer__contact .left {
    text-align: center;
  }
}
.footer__contact .left a {
  font-size: 4.8rem;
  color: #fff;
  font-weight: bolder;
}
@media screen and (max-width: 999px) {
  .footer__contact .left a {
    font-size: 3.6rem;
  }
}
.footer__contact .left .fax {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bolder;
}
@media screen and (max-width: 999px) {
  .footer__contact .left .fax {
    font-size: 2rem;
    margin-top: 1rem;
  }
}
.footer__contactBtn {
  background-color: #fff;
  color: #2a2a2a;
  font-size: 1.6rem;
  width: 27.6rem;
  padding: 2.3rem 0;
  border-radius: 3px;
  text-align: center;
  position: relative;
}
.footer__contactBtn::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 0;
  border-top: solid 1px #2a2a2a;
  border-right: solid 1px #2a2a2a;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  margin: auto;
}
.footer__address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
}
@media screen and (max-width: 999px) {
  .footer__address {
    flex-wrap: wrap;
  }
}
.footer__address p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
}
.footer__address iframe {
  width: 66rem;
  aspect-ratio: 660/450;
}
@media screen and (max-width: 999px) {
  .footer__address iframe {
    width: 100%;
    margin-top: 2rem;
  }
}
.footer small {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  margin: 4rem 0 0;
  color: #fff;
}

.shopBtn {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  width: 14rem;
  z-index: 1000;
}
@media screen and (max-width: 999px) {
  .shopBtn {
    width: 10rem;
    bottom: 1rem;
    right: 1rem;
  }
}
.shopBtn img {
  width: 100%;
}

.kv {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 36rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
}
@media screen and (max-width: 999px) {
  .kv {
    height: 20.5rem;
  }
}
.kv__title {
  font-size: 3.2rem;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 999px) {
  .kv__title {
    font-size: 2.4rem;
  }
}
.kv__title::before {
  content: "";
  width: 6.8rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  color: #fff;
  font-size: 1.6rem;
  background-color: #006C53;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.4rem;
  height: 5.2rem;
  transition: opacity 0.3s ease-in;
  background: url(../images/common/btn.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1000px) {
  .btn:hover {
    opacity: 0.7;
  }
}

.page-index {
  /* SP */
}
.page-index .indexKv {
  position: relative;
  max-width: 192rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 8rem;
}
.page-index .indexKv__title {
  font-size: 3.2rem;
  line-height: 2;
  font-weight: bolder;
  writing-mode: vertical-rl;
  position: absolute;
  top: 6rem;
  right: 8.4rem;
  z-index: 10;
  color: #fff;
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
}
@media screen and (max-width: 999px) {
  .page-index .indexKv__title {
    font-size: 2.4rem;
    top: 4rem;
    right: 3rem;
    line-height: 1.5;
  }
}
.page-index .indexKv__slide {
  position: relative;
}
.page-index .indexKv__slide .swiper-button-prev, .page-index .indexKv__slide .swiper-button-next {
  color: #fff; /* 矢印の色 */
  z-index: 10;
  pointer-events: auto;
}
.page-index .indexKv__slide .swiper-slide picture,
.page-index .indexKv__slide .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.page-index .indexIntro {
  background-color: #FFFEF9;
  padding: 12rem 0;
}
@media screen and (max-width: 999px) {
  .page-index .indexIntro {
    padding: 7rem 0;
  }
}
.page-index .indexIntro__content {
  display: flex;
  justify-content: center;
  gap: 8.5rem;
}
@media screen and (max-width: 999px) {
  .page-index .indexIntro__content {
    gap: 3rem;
    flex-direction: column;
  }
}
.page-index .indexIntro h2 {
  font-size: 2.4rem;
  writing-mode: vertical-rl;
  order: 2;
}
@media screen and (max-width: 999px) {
  .page-index .indexIntro h2 {
    writing-mode: horizontal-tb;
    order: 1;
  }
}
.page-index .indexIntro p {
  font-size: 1.6rem;
  writing-mode: vertical-rl;
  line-height: 1.8;
  order: 1;
}
@media screen and (max-width: 999px) {
  .page-index .indexIntro p {
    writing-mode: horizontal-tb;
    order: 2;
  }
}
.page-index .indexIntro__quote-start {
  margin-top: -0.8rem;
}
.page-index .indexIntro__quote-end {
  margin-bottom: -0.8rem;
}
.page-index .indexOmoi {
  padding: 15rem 0;
  position: relative;
}
@media screen and (max-width: 999px) {
  .page-index .indexOmoi {
    padding: 7rem 0;
  }
}
.page-index .indexOmoi h2 {
  font-size: 3.2rem;
  text-align: center;
  font-weight: 400;
  color: #006C53;
  line-height: 1.6;
}
@media screen and (max-width: 999px) {
  .page-index .indexOmoi h2 {
    font-size: 2.4rem;
  }
}
.page-index .indexOmoi p {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 999px) {
  .page-index .indexOmoi p {
    margin-top: 3rem;
  }
}
.page-index .indexOmoi .img01 {
  position: absolute;
  width: 335px;
  aspect-ratio: 335/517;
  top: 0;
  left: 0;
}
@media screen and (max-width: 999px) {
  .page-index .indexOmoi .img01 {
    position: static;
    width: 20rem;
    margin-top: 3rem;
  }
}
.page-index .indexOmoi .img02 {
  position: absolute;
  width: 285px;
  aspect-ratio: 285/190;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 999px) {
  .page-index .indexOmoi .img02 {
    position: static;
    margin: 1.5rem 0 0 auto;
    display: block;
  }
}
.page-index .indexGoods {
  padding: 15rem 0;
}
@media screen and (max-width: 999px) {
  .page-index .indexGoods {
    padding: 0 0 7rem;
  }
}
.page-index .indexGoods iframe {
  aspect-ratio: 16/9;
  max-width: 81rem;
  width: 100%;
  display: block;
  margin: 0 auto 5rem;
}
.page-index .indexGoods h2 {
  font-size: 2.4rem;
}
.page-index .indexGoods p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 3rem;
}
.page-index .indexGoods .btn {
  margin: 5rem 0 0 auto;
}
@media screen and (max-width: 999px) {
  .page-index .indexGoods .btn {
    margin-top: 3rem;
  }
}
.page-index .indexNews {
  padding-bottom: 18rem;
}
@media screen and (max-width: 999px) {
  .page-index .indexNews {
    padding-bottom: 7rem;
  }
}
.page-index .indexNews h2 {
  font-size: 3.6rem;
}
@media screen and (max-width: 999px) {
  .page-index .indexNews h2 {
    font-size: 2.4rem;
  }
}
.page-index .indexNews .btn {
  margin: 5rem auto 0;
}
@media screen and (max-width: 999px) {
  .page-index .indexNews .btn {
    margin-top: 3rem;
  }
}
.page-index .indexWorks {
  padding: 12rem 0;
  background-color: #FFFEF9;
}
@media screen and (max-width: 999px) {
  .page-index .indexWorks {
    padding: 7rem 0;
  }
}
.page-index .indexWorks h2 {
  font-size: 3.6rem;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .page-index .indexWorks h2 {
    font-size: 2.4rem;
  }
}
.page-index .indexWorks .btn {
  margin: 5rem auto 0;
}
@media screen and (max-width: 999px) {
  .page-index .indexWorks .btn {
    margin-top: 3rem;
  }
}
.page-index .indexSectionTitle {
  font-size: 20px;
  margin: 0 0 80px;
}
@media screen and (max-width: 999px) {
  .page-index .indexSectionTitle {
    margin-bottom: 40px;
  }
}
.page-index .indexGrid {
  display: grid;
  gap: 28px;
}
.page-index .indexGrid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page-index .indexGrid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page-index .indexCard__link {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 999px) {
  .page-index .indexCard__link {
    display: block;
  }
}
.page-index .indexGrid--3 .indexCard__link {
  grid-template-columns: 1fr; /* worksは縦積み */
}
.page-index .indexCard__thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-position: top;
}
.page-index .indexNews .indexCard__thumb img {
  height: 16rem;
  object-fit: cover;
}
@media screen and (max-width: 999px) {
  .page-index .indexNews .indexCard__thumb img {
    height: auto;
  }
}
.page-index .indexWorks .indexCard__thumb img {
  height: 17.5rem;
  object-fit: cover;
}
@media screen and (max-width: 999px) {
  .page-index .indexWorks .indexCard__thumb img {
    height: auto;
  }
}
.page-index .indexCard__title {
  font-size: 14px;
  margin: 0 0 8px;
  line-height: 1.6;
}
@media screen and (max-width: 999px) {
  .page-index .indexCard__title {
    margin-top: 2rem;
  }
}
.page-index .indexCard__date {
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
  color: #727272;
}
.page-index .indexCard__excerpt {
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}
.page-index .indexSectionBtn {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.page-index .indexBtn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 9999px;
  text-decoration: none;
  color: #fff;
  background: #0c6b4d;
  font-size: 14px;
}
@media (max-width: 768px) {
  .page-index .indexGrid--2,
  .page-index .indexGrid--3 {
    grid-template-columns: 1fr;
  }
  .page-index .indexCard__link {
    grid-template-columns: 120px 1fr;
  }
}

.page-about .kv {
  background-image: url(../images/about/kv.jpg);
}
@media screen and (max-width: 999px) {
  .page-about .kv {
    background-image: url(../images/about/kv_sp.jpg);
  }
}
.page-about .aboutService {
  padding: 9rem 0;
}
@media screen and (max-width: 999px) {
  .page-about .aboutService {
    padding: 7rem 0;
  }
}
.page-about .aboutService h2 {
  font-size: 3.2rem;
  line-height: 1.6;
  text-align: center;
  color: #006C53;
}
@media screen and (max-width: 999px) {
  .page-about .aboutService h2 {
    font-size: 2.4rem;
  }
}
.page-about .aboutService ol {
  margin-top: 5rem;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  .page-about .aboutService ol {
    gap: 2rem;
    margin-top: 3rem;
  }
}
.page-about .aboutService ol li {
  width: calc(50% - 2rem);
  padding: 7.5rem 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 999px) {
  .page-about .aboutService ol li {
    width: 100%;
  }
}
.page-about .aboutService ol li:nth-child(1) {
  background-image: url(../images/about/img01.jpg);
}
.page-about .aboutService ol li:nth-child(2) {
  background-image: url(../images/about/img02.jpg);
}
.page-about .aboutService ol li:nth-child(3) {
  background-image: url(../images/about/img03.jpg);
}
.page-about .aboutService ol li:nth-child(4) {
  background-image: url(../images/about/img04.jpg);
}
.page-about .aboutService ol li h3 {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
}
.page-about .aboutService ol li p {
  font-size: 1.6rem;
  margin-top: 1.6rem;
  line-height: 1.6;
  text-align: center;
}
.page-about .aboutRinen {
  padding: 5rem 0 12rem;
}
.page-about .aboutRinen h2 {
  font-size: 2.4rem;
  text-align: center;
  color: #006C53;
}
.page-about .aboutRinen h3 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 4rem;
}
.page-about .aboutRinen p {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 999px) {
  .page-about .aboutRinen p {
    text-align: left;
  }
}
.page-about .aboutRinen img {
  display: block;
  margin-top: 4rem;
  width: 100%;
}
.page-about .aboutCompany__content {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 999px) {
  .page-about .aboutCompany__content {
    flex-wrap: wrap;
  }
}
.page-about .aboutCompany .left {
  width: 41rem;
}
@media screen and (max-width: 999px) {
  .page-about .aboutCompany .left {
    width: 100%;
  }
}
.page-about .aboutCompany .left h2 {
  font-size: 2.4rem;
  color: #006C53;
}
.page-about .aboutCompany .left .box {
  margin-top: 4rem;
}
.page-about .aboutCompany .left .box dl {
  display: flex;
  padding: 1.4rem 0;
  gap: 2rem;
  align-items: flex-start;
  font-size: 1.6rem;
  line-height: 1.6rem;
  border-bottom: 1px solid #2a2a2a;
}
.page-about .aboutCompany .left .box dl:first-child {
  border-top: 1px solid #2a2a2a;
}
.page-about .aboutCompany .left .box dl dt {
  width: 10rem;
}
@media screen and (max-width: 999px) {
  .page-about .aboutCompany .right {
    width: 100%;
  }
}
.page-about .aboutCompany .right iframe {
  width: 55rem;
  aspect-ratio: 550/376;
}
@media screen and (max-width: 999px) {
  .page-about .aboutCompany .right iframe {
    width: 100%;
  }
}
.page-about .aboutEnkaku {
  background-color: #FFFEF9;
  padding: 12rem 0;
}
@media screen and (max-width: 999px) {
  .page-about .aboutEnkaku {
    padding: 7rem 0;
  }
}
.page-about .aboutEnkaku h2 {
  font-size: 2.4rem;
  text-align: center;
  color: #006C53;
}
.page-about .aboutEnkaku .box {
  margin-top: 4rem;
}
.page-about .aboutEnkaku .box dl {
  margin-bottom: 2.7rem;
  position: relative;
}
.page-about .aboutEnkaku .box dl dt {
  background-color: #006C53;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  padding: 0.5rem;
  width: 10.2rem;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 999px) {
  .page-about .aboutEnkaku .box dl dt {
    margin: 0;
  }
}
.page-about .aboutEnkaku .box dl dt::before {
  content: "";
  width: 1px;
  height: 4rem;
  background-color: #006C53;
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 999px) {
  .page-about .aboutEnkaku .box dl dt::before {
    display: none;
  }
}
.page-about .aboutEnkaku .box dl dd {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  font-size: 1.4rem;
  padding: 1.5rem;
  border: 0.5rem;
  width: 40.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 999px) {
  .page-about .aboutEnkaku .box dl dd {
    position: static;
    width: 100%;
    margin-top: 1.5rem;
  }
}
.page-about .aboutEnkaku .box dl dd::before {
  content: "";
  width: 4.4rem;
  height: 1px;
  background-color: #006C53;
  position: absolute;
  top: 1.2rem;
  left: -4.4rem;
}
@media screen and (max-width: 999px) {
  .page-about .aboutEnkaku .box dl dd::before {
    display: none;
  }
}
.page-about .aboutEnkaku .box dl:nth-child(even) dd {
  right: 0;
  left: 0;
}
.page-about .aboutEnkaku .box dl:nth-child(even) dd::before {
  left: auto;
  right: -4.4rem;
}
.page-about .aboutEnkaku .box dl:last-child dt::before {
  display: none;
}

.page-goods .kv {
  background-image: url(../images/goods/kv.jpg);
}
@media screen and (max-width: 999px) {
  .page-goods .kv {
    background-image: url(../images/goods/kv_sp.jpg);
  }
}
.page-goods .goodsLineup {
  padding: 10rem 0 15rem;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsLineup {
    padding: 7rem 0;
  }
}
.page-goods .goodsLineup h2 {
  font-size: 2.4rem;
  color: #006C53;
  text-align: center;
}
.page-goods .goodsLineup ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3rem;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsLineup ul {
    margin-top: 3rem;
  }
}
.page-goods .goodsLineup ul li {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 999px) {
  .page-goods .goodsLineup ul li {
    width: 100%;
  }
}
.page-goods .goodsLineup ul li img {
  width: 100%;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsLineup ul li img {
    width: 70%;
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}
.page-goods .goodsLineup ul li h3 {
  font-size: 2.4rem;
  color: #006C53;
  line-height: 1.5;
}
.page-goods .goodsLineup ul li p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 3rem;
}
.page-goods .goodsLineup__text {
  margin-top: 8rem;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsLineup__text {
    margin-top: 5rem;
  }
}
.page-goods .goodsAbout {
  padding: 10rem 0 14rem;
  background-color: #FFFEF9;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsAbout {
    padding: 7rem 0;
  }
}
.page-goods .goodsAbout h2 {
  font-size: 2.4rem;
  color: #006C53;
  text-align: center;
}
.page-goods .goodsAbout ul {
  margin-top: 5rem;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsAbout ul {
    flex-wrap: wrap;
    margin-top: 3rem;
  }
}
.page-goods .goodsAbout ul li {
  width: calc(33.3333333333% - 2rem);
}
@media screen and (max-width: 999px) {
  .page-goods .goodsAbout ul li {
    width: 100%;
  }
}
.page-goods .goodsAbout ul li img {
  width: 100%;
}
.page-goods .goodsAbout ul li h3 {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 2.5rem;
}
.page-goods .goodsAbout ul li p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}
.page-goods .goodsInformation {
  padding: 12rem 0 14rem;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsInformation {
    padding: 7rem 0;
  }
}
.page-goods .goodsInformation h2 {
  font-size: 2.4rem;
  color: #006C53;
  text-align: center;
}
.page-goods .goodsInformation__image {
  display: block;
  width: 51.2rem;
  aspect-ratio: 512/724;
  margin: 4rem auto 0;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsInformation__image {
    width: 100%;
  }
}
.page-goods .goodsInformation ul {
  margin-top: 8rem;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsInformation ul {
    margin-top: 3rem;
    gap: 1rem;
  }
}
.page-goods .goodsInformation ul li {
  width: calc(33.3333333333% - 2rem);
}
@media screen and (max-width: 999px) {
  .page-goods .goodsInformation ul li {
    width: calc(33.3333333333% - 0.6666666667rem);
  }
}
.page-goods .goodsInformation ul li img {
  width: 100%;
}
.page-goods .goodsMovie h2 {
  font-size: 2.4rem;
  color: #006C53;
  text-align: center;
}
.page-goods .goodsMovie ul {
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
  margin-top: 5rem;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsMovie ul {
    margin-top: 3rem;
    gap: 3rem;
  }
}
.page-goods .goodsMovie ul li {
  width: calc(50% - 2.5rem);
}
@media screen and (max-width: 999px) {
  .page-goods .goodsMovie ul li {
    width: 100%;
  }
}
.page-goods .goodsMovie ul li iframe {
  aspect-ratio: 16/9;
  width: 100%;
}
.page-goods .goodsMovie a {
  display: block;
  margin: 8rem auto 0;
}
.page-goods .goodsMovie a img {
  width: 100%;
}
.page-goods .goodsShop {
  padding: 14rem 0 20rem;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsShop {
    padding: 7rem 0;
  }
}
.page-goods .goodsShop h2 {
  font-size: 2.4rem;
  color: #006C53;
  text-align: center;
}
.page-goods .goodsShop ul {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsShop ul {
    margin-top: 3rem;
    gap: 2rem;
  }
}
.page-goods .goodsShop ul li {
  border-radius: 0.7rem;
  background-color: #FFF8B6;
  padding: 7rem 1rem;
  width: calc(50% - 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 999px) {
  .page-goods .goodsShop ul li {
    width: 100%;
  }
}
.page-goods .goodsShop ul li .name {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
}
.page-goods .goodsShop ul li .address {
  font-size: 1.6rem;
  line-height: 1.6;
}
.page-goods .goodsShop ul li .link {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #2a2a2a;
  text-decoration: underline;
}

.page-contact {
  /* フォーム全体 */
  /* 各フィールド */
  /* ラベル */
  /* 必須バッジ */
  /* 任意バッジ */
  /* input / textarea */
  /* textarea 高さ */
  /* 送信ボタン */
}
.page-contact .kv {
  background-image: url(../images/about/kv.jpg);
}
@media screen and (max-width: 999px) {
  .page-contact .kv {
    background-image: url(../images/about/kv_sp.jpg);
  }
}
.page-contact .form {
  margin-top: 8rem;
}
.page-contact .form__text {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 4rem;
}
.page-contact .cf7-form {
  max-width: 900px;
  margin: 4rem auto 0;
}
.page-contact .cf7-field {
  margin-bottom: 24px;
}
.page-contact .cf7-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}
.page-contact .cf7-required {
  font-size: 12px;
  color: #ff4d4f;
  border: 1px solid #ff4d4f;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
}
.page-contact .cf7-required.optional {
  color: #999;
  border-color: #999;
}
.page-contact .cf7-form input[type=text],
.page-contact .cf7-form input[type=email],
.page-contact .cf7-form input[type=tel],
.page-contact .cf7-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #bbb;
  font-size: 16px;
  box-sizing: border-box;
}
.page-contact .cf7-form textarea {
  min-height: 180px;
  resize: vertical;
}
.page-contact .cf7-submit input[type=submit] {
  color: #fff;
  font-size: 1.6rem;
  background-color: #006C53;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.4rem;
  height: 5.2rem;
  transition: opacity 0.3s ease-in;
  background: url(../images/common/btn.svg) no-repeat center center/contain;
  margin: 5rem auto;
}
@media screen and (min-width: 1000px) {
  .page-contact .cf7-submit input[type=submit]:hover {
    opacity: 0.7;
  }
}

.page-news {
  /* カード：上下に並ぶ */
  /* クリック領域 */
  /* 左：画像枠 */
  /* サムネ（画像そのもの） */
  /* 画像が無い時のプレースホルダ */
  /* 右：本文 */
  /* 日付（緑） */
  /* タイトル */
  /* 抜粋 */
  /* SP */
  /* 全体の面（スクショの薄い背景） */
  /* 日付 */
  /* タイトル */
  /* サムネ */
  /* 本文 */
  /* 段落 */
  /* 見出し2：左に縦棒＋緑 */
  /* 見出し3：左に横線＋緑 */
  /* 見出し4：緑のテキストのみ（スクショっぽく控えめ） */
  /* ナビ（前へ/次へ） */
  /* SP */
}
.page-news .kv {
  background-image: url(../images/news/kv.jpg);
}
@media screen and (max-width: 999px) {
  .page-news .kv {
    background-image: url(../images/news/kv_sp.jpg);
  }
}
.page-news .p-postList {
  padding: 8rem 0 15rem;
}
.page-news .p-postCard {
  border-top: 1px solid #e9e9e9;
  padding: 28px 0;
}
.page-news .p-postCard:last-of-type {
  border-bottom: 1px solid #e9e9e9;
}
.page-news .p-postCard__link {
  display: grid;
  grid-template-columns: 320px 1fr; /* 左サムネ / 右本文 */
  gap: 36px;
  text-decoration: none;
  color: inherit;
  align-items: start;
}
.page-news .p-postCard__media {
  width: 100%;
  background: #fff;
  border: 1px solid #ededed;
  padding: 16px; /* スクショの余白っぽさ */
  box-sizing: border-box;
}
.page-news .p-postCard__thumb {
  width: 100%;
  aspect-ratio: 4/3; /* ここ変えると縦横が変わる */
  object-fit: cover;
  display: block;
}
.page-news .p-postCard__thumb--placeholder {
  background: #f3f3f3;
}
.page-news .p-postCard__body {
  min-width: 0;
}
.page-news .p-postCard__date {
  display: inline-block;
  font-size: 13px;
  color: #0c6b4d;
  margin-bottom: 8px;
}
.page-news .p-postCard__title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 700;
}
.page-news .p-postCard__excerpt {
  font-size: 14px;
  line-height: 2;
  margin: 0;
  color: #333;
}
@media (max-width: 768px) {
  .page-news .p-postCard__link {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-news .p-postCard__media {
    padding: 12px;
  }
  .page-news .p-postCard__title {
    font-size: 18px;
  }
}
.page-news .p-postSingle {
  padding: 56px 0;
}
.page-news .p-postSingle__article {
  background: #fbfaf4; /* 近い薄ベージュ */
  padding: 5rem 0;
  max-width: 100rem;
  margin: 0 auto;
}
.page-news .p-postSingle p {
  margin: 3rem 0 1rem !important;
}
.page-news .entry-content a,
.page-news .entry-content p,
.page-news .entry-content li {
  overflow-wrap: break-word;
  word-break: break-word;
}
.page-news .p-postSingle__header,
.page-news .p-postSingle__content,
.page-news .p-postSingle__nav {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}
.page-news .p-postSingle__date {
  display: inline-block;
  font-size: 13px;
  color: #0c6b4d;
  margin-bottom: 10px;
}
.page-news .p-postSingle__title {
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 28px;
  font-weight: 700;
}
.page-news .p-postSingle__thumb {
  margin: 24px 0 0;
}
.page-news .p-postSingle__img {
  width: 100%;
  height: auto;
  display: block;
}
.page-news .entry-content {
  font-size: 14px;
  line-height: 2.1;
  color: #222;
}
.page-news .entry-content p {
  margin: 0 0 18px;
}
.page-news .entry-content h2 {
  position: relative;
  font-size: 20px;
  line-height: 1.4;
  margin: 44px 0 16px;
  padding-left: 18px;
  color: #0c6b4d;
  font-weight: 700;
}
.page-news .entry-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1.2em; /* 見出しの高さに合わせる */
  background: #0c6b4d;
  border-radius: 2px;
}
.page-news .entry-content h3 {
  position: relative;
  font-size: 18px;
  line-height: 1.4;
  margin: 36px 0 12px;
  padding-left: 26px;
  color: #0c6b4d;
  font-weight: 700;
}
.page-news .entry-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 18px;
  height: 2px;
  background: #0c6b4d;
}
.page-news .entry-content h4 {
  font-size: 16px;
  margin: 28px 0 10px;
  color: #0c6b4d;
  font-weight: 700;
}
.page-news .p-postSingle__nav {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.page-news .p-postSingle__nav a {
  text-decoration: none;
  color: #0c6b4d;
  font-size: 14px;
}
@media (max-width: 768px) {
  .page-news .p-postSingle {
    padding: 36px 0;
  }
  .page-news .p-postSingle__header,
  .page-news .p-postSingle__content,
  .page-news .p-postSingle__nav {
    padding: 0 20px;
  }
  .page-news .p-postSingle__title {
    font-size: 22px;
  }
}/*# sourceMappingURL=style.css.map */