@charset "UTF-8";
:root {
  /* color */
  --color-brown: #796a55;
  --color-brown-2: #403937;
  --color-green: #8cd043;
  --color-green-2: #009a80;
  --color-green-3: #e6f0d7;
  --color-green-4: #80c250;
  --color-green-5: #96da43;
  --color-blue: #1e80ea;
  --color-blue-2: #1e83f0;
  --color-red: #da6568;
  --color-red-2: #f16568;
  --color-red-2_10: rgba(241, 101, 104, 0.1);
  --color-beige: #d9d8cf;
  --color-light-beige: #d5d4cb;
  --color-sand-beige: #e2e1d8;
  --color-sand-beige-2: #dfded5;
  --color-sand-beige-3: #ebebe6;
  --color-white: #ffffff;
  --color-off-white: #dedddc;
  --color-gray: #808080;
  --color-very-light-gray: #eaefef;
  --color-black: #1d1717;

  /* font */
  --font-mplus: "M PLUS 1p", sans-serif;
  --font-mplus-rounded: "M PLUS Rounded 1c", sans-serif;
  --font-zenmaru: "Zen Maru Gothic", sans-serif;

  /* font-size */
  --font-size-40: 4rem; /* 40px */
  --font-size-36: 3.6rem; /* 36px */
  --font-size-32: 3.2rem; /* 32px */
  --font-size-28: 2.8rem; /* 28px */
  --font-size-25: 2.5rem; /* 25px */
  --font-size-24: 2.4rem; /* 24px */
  --font-size-22: 2.2rem; /* 22px */
  --font-size-20: 2rem; /* 20px */
  --font-size-18: 1.8rem; /* 18px */
  --font-size-16: 1.6rem; /* 16px */
  --font-size-14: 1.4rem; /* 14px */
  --font-size-13: 1.3rem; /* 13px */
  --font-size-12: 1.2rem; /* 12px */
  --font-size-10: 1rem; /* 10px */
  --font-size-8: 0.8rem; /* 8px */
  --fs-xxl: clamp(2.8rem, 4vw, 3.6rem);
  --fs-xl2: clamp(2.6rem, 3.8vw, 3.5rem);
  --fs-xl: clamp(2.4rem, 3.5vw, 3.2rem);
  --fs-xlg: clamp(2.3rem, 3.2vw, 3rem);
  --fs-lg: clamp(2.2rem, 3vw, 2.8rem);
  --fs-md: clamp(2rem, 2.5vw, 2.4rem);
  --fs-md-mid: clamp(1.9rem, 2.3vw, 2.3rem);
  --fs-md2: clamp(1.8rem, 2.2vw, 2.2rem);
  --fs-md3: clamp(1.7rem, 2vw, 2.1rem);
  --fs-md4: clamp(1.6rem, 2vw, 2rem);
  --fs-mid: clamp(1.6rem, 2vw, 1.9rem);
  --fs-md-lg: clamp(1.6rem, 1.8vw, 1.8rem);
  --fs-md-base: clamp(1.6rem, 1.8vw, 1.7rem);
  --fs-base: clamp(1.4rem, 1.6vw, 1.6rem);
  --fs-base-mid: clamp(1.3rem, 1.5vw, 1.5rem);
  --fs-sm: clamp(1.2rem, 1.4vw, 1.4rem);
  --fs-sm-mid: clamp(1.1rem, 1.3vw, 1.3rem);
  --fs-xs: clamp(1rem, 1.2vw, 1.2rem);
  --fs-xxs: clamp(0.9rem, 1vw, 1rem);
  --fs-tiny: clamp(0.8rem, 0.8vw, 0.9rem);
}

body {
  font-family: var(--font-mplus);
  font-size: var(--fs-base);
  color: var(--color-brown);
  background-color: var(--color-white);
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 500;
  overflow-x: hidden;
  text-align: justify;
}

a,
a * {
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:hover,
a:active {
  text-decoration: none;
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* ヘッダー 
============================================ */
header {
  overflow-x: hidden;
}
header .hd-inr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
  user-select: none;
}

/* スクロール時の背景 */
header.bgwhite .hd-inr {
  background-color: rgba(255, 255, 255, 0.8);
}
header.bgwhite .hd-inr .hd-logo {
  margin-bottom: 24px;
}
/* 下層ページ */
.under header.bgwhite .hd-inr .hd-logo,
.under header.bgwhite .hd-inr .hd-tel {
  margin-top: -32px;
  margin-bottom: 0;
}

@media screen and (max-width: 960px) {
  header.bgwhite .hd-inr .hd-logo {
    margin-bottom: 8px;
  }
  .under header.bgwhite .hd-inr .hd-logo,
  .under header.bgwhite .hd-inr .hd-tel {
    margin-top: -16px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 599px) {
  header.bgwhite .hd-inr .hd-logo {
    margin-bottom: 4px;
  }
  .under header.bgwhite .hd-inr .hd-logo,
  .under header.bgwhite .hd-inr .hd-tel {
    margin-top: -8px;
    margin-bottom: 0;
  }
}

header .hd-logo {
  padding-left: 50px;
  pointer-events: auto;
  user-select: auto;
  transition: margin-top 0.3s ease;
  transition: margin-bottom 0.3s ease;
}

header .hd-logo img {
  max-width: 370px;
  width: 100%;
}

header .hd-tel {
  background-color: var(--color-brown);
  padding: 20px 32px;
  pointer-events: auto;
  user-select: auto;
  transition: margin-top 0.3s ease;
}
header .hd-tel a {
  width: 240px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
header .hd-tel a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

header .hd-tel a .under-img {
  display: none;
}

/* 下層ページ*/
.under header .hd-inr {
  padding: 40px 50px 8px 0;
  display: flex;
  align-items: center;
}

.under header .hd-tel a .under-img {
  display: block;
}
.under header .hd-tel a .top-img {
  display: none;
}

.under header .hd-inr .hd-tel {
  background-color: initial;
  padding: 0;
}

@media screen and (max-width: 960px) {
  header .hd-logo {
    padding-left: 24px;
  }
  header .hd-tel a {
    width: 200px;
  }
  /* 下層ページ*/
  .under header .hd-inr {
    padding: 24px 24px 8px 0;
  }
}
@media screen and (max-width: 768px) {
  header .hd-logo img {
    max-width: 300px;
  }
  header .hd-tel {
    padding: 16px 24px;
  }
  header .hd-tel a {
    width: 160px;
  }
}

@media screen and (max-width: 599px) {
  header .hd-inr {
    flex-wrap: nowrap;
  }
  header .hd-logo {
    padding-left: 16px;
  }
  header .hd-logo img {
    max-width: 200px;
  }
  header .hd-tel {
    padding: 8px;
  }
  header .hd-tel a {
    width: 120px;
    pointer-events: auto;
  }
  .under header .hd-inr {
    padding: 16px 16px 8px 0;
  }
}

/* PCメニュー */
header .pc-nav {
  padding-top: 40px;
  margin-top: 80px;
}

header .pc-nav ul {
  gap: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
}
header .pc-nav ul li {
  border-right: 1.3px solid var(--color-brown);
  padding-right: 20px;
}

header .pc-nav ul li:last-child {
  border-right: none;
  padding-right: 0;
}
header .pc-nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .pc-nav ul li a img {
  height: 17px;
  width: auto;
}

@media screen and (max-width: 1100px) {
  header .pc-nav ul {
    gap: 14px;
  }
  header .pc-nav ul li {
    padding-right: 14px;
  }
}

@media screen and (max-width: 960px) {
  header .pc-nav {
    display: none;
  }
}

/* ハンバーガーメニュー  */
header .navToggle {
  display: block;
  position: fixed;
  right: 0;
  top: 86px;
  margin: auto;
  width: 114px;
  height: 121px;
  cursor: pointer;
  z-index: 1000;
}

header .navToggle .hum-open,
header .navToggle .hum-close {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1002;
}

header .navToggle .hum-close {
  opacity: 0;
  transform: scale(0.8);
}
header.open .navToggle .hum-open {
  opacity: 0;
  transform: scale(0.8);
}
header.open .navToggle .hum-close {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 1100px) {
  header .navToggle {
    width: 80px;
    height: 80px;
  }
}

@media screen and (max-width: 960px) {
  header .navToggle {
    top: 64px;
  }
}

@media screen and (max-width: 599px) {
  header .navToggle {
    width: 64px;
    top: 40px;
  }
}

/* SPメニュー */
header .sp-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--color-sand-beige);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  overflow-y: auto;
  padding: 120px 5% 0;
  overflow-x: hidden;
}
header.open .sp-nav {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.4s, opacity 0.4s;
}

/* 上部ロゴ・ナビ部分 */
header .sp-nav-inner {
  padding-bottom: 30px;
}

header .sp-nav-logo {
  text-align: center;
  margin-bottom: 60px;
}

header .sp-nav-logo img {
  max-width: 400px;
  width: 100%;
}

header .sp-nav-list {
  flex-wrap: wrap;
  width: 100%;
  gap: 0 24px;
  border-top: 1px solid var(--color-brown);
}

header .sp-nav-list li {
  padding: 40px 0;
  line-height: 1;
  width: calc(50% - 12px);
  border-bottom: 1px solid var(--color-brown);
  flex-direction: column;
  align-items: center;
}

header .sp-nav-list > li > a {
  display: flex;
  align-items: center;
  width: 100%;
}

header .sp-nav-list > li > a {
  position: relative;
  padding-left: 40px;
}
header .sp-nav-list > li > a img {
  height: 24px;
}
header .sp-nav-list > li > a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

header .sp-nav-sub {
  width: 100%;
  padding-top: 16px;
  padding-left: 40px;
}

header .sp-nav-sub li {
  padding: 0;
  border-bottom: none;
  padding-bottom: 8px;
}

header .sp-nav-sub li:last-child {
  padding-bottom: 0;
}

header .sp-nav-sub li:before {
  content: "-";
}
header .sp-nav-sub li a {
  line-height: 1.5;
}

header .sp-nav-privacy {
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  font-weight: 800;
  text-align: center;
}

/* フッターと画像部分を最下部に配置 */
header .sp-nav-footer-group {
  margin-top: auto;
  margin-left: -5.3%;
  margin-right: -5.3%;
}

header .sp-nav-img {
  width: 100%;
  z-index: 1;
  padding-left: 5.3%;
  padding-right: 5.3%;
  margin-bottom: -8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

header .sp-nav-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

header .sp-nav-footer {
  position: relative;
  text-align: center;
  background-color: var(--color-green);
  padding-top: 80px;
  overflow: hidden;
}

header .sp-nav-footer small {
  display: block;
  font-size: var(--font-size-10);
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-brown);
  padding-top: 16px;
  padding-bottom: 16px;
}

@media screen and (max-width: 960px) {
  header .sp-nav-list > li > a {
    padding-left: 32px;
  }
  header .sp-nav-list > li > a::before {
    width: 16px;
    height: 16px;
  }

  header .sp-nav-list > li > a img {
    height: 20px;
  }
  header .sp-nav-sub {
    flex-direction: column;
  }
  header .sp-nav-sub li {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  header .sp-nav {
    padding-top: 60px;
  }
  header .sp-nav-inner {
    padding-bottom: 64px;
  }

  header .sp-nav-logo {
    margin-bottom: 30px;
  }

  header .sp-nav-logo img {
    max-width: 240px;
  }
  header .sp-nav-list {
    flex-direction: column;
  }
  header .sp-nav-list > li {
    padding: 24px 8px;
    width: 100%;
  }
  header .sp-nav-list > li > a::before {
    width: 12px;
    height: 12px;
  }
  header .sp-nav-list > li > a img {
    height: 18px;
  }
  header .sp-nav-sub {
    padding-left: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 16px;
  }
  header .sp-nav-sub li {
    width: calc(50% - 8px);
  }
  header .sp-nav-footer {
    padding-top: 40px;
  }

  header .sp-nav-footer::before {
    height: 10px;
    top: -10px;
  }

  header .sp-nav-footer small {
    font-size: var(--font-size-8);
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

/* フッター
============================================ */
footer .footer-inr {
  padding-top: 100px;
  padding-bottom: 100px;
  gap: 100px;
}

footer .footer-info {
  flex-direction: column;
  gap: 40px;
}
footer .footer-logo {
  max-width: 320px;
  height: auto;
}

footer .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .footer-info {
  line-height: 1.75;
}
footer .footer-info-text {
  font-size: var(--font-size-13);
  letter-spacing: 0.05em;
  font-weight: 800;
}

footer .footer-info-text a {
  display: block;
  margin-left: -0.5em;
  pointer-events: none;
}

footer .footer-nav {
  font-size: var(--font-size-13);
  letter-spacing: 0.05em;
  line-height: 1.75;
  gap: 32px;
}

footer .footer-nav-list li {
  font-weight: 800;
  padding-bottom: 24px;
}

footer .footer-nav-list li:last-child {
  padding-bottom: 0;
}

footer .footer-nav-list li::before {
  content: "●";
}
footer .footer-nav-sub {
  padding-top: 8px;
}

footer .footer-nav-sub li {
  font-weight: 500;
  padding-bottom: initial;
  padding-bottom: 0;
}

footer .footer-nav-sub li::before {
  content: "-";
}

footer .footer-copy {
  width: 100%;
  background-color: var(--color-brown);
  padding-top: 16px;
  padding-bottom: 16px;
}

footer .footer-copy small {
  display: block;
  font-size: var(--font-size-10);
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 1200px) {
  footer .footer-inr {
    gap: 32px;
  }
  footer .footer-logo {
    max-width: 240px;
  }
}

@media screen and (max-width: 960px) {
  footer .footer-inr {
    flex-direction: column;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  footer .footer-info {
    gap: 20px;
  }
  footer .footer-nav {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  footer .footer-map iframe {
    height: 200px;
  }
  footer .footer-inr {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer .footer-info {
    gap: 10px;
  }
  footer .footer-info-text {
    font-size: var(--font-size-12);
  }
  footer .footer-info-text a {
    pointer-events: auto;
  }
  footer .footer-copy {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  footer .footer-copy small {
    font-size: var(--font-size-8);
  }
}

/* スライダー */
.cm-slider {
  position: relative;
  overflow: hidden;
}

.cm-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}

.cm-slider .swiper-slide {
  max-width: 336px;
  width: 100%;
  height: 100%;
  aspect-ratio: 336/308;
  flex-shrink: 0;
}

.cm-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* 矢印ボタン共通 */
.cm-slider .swiper-button-prev,
.cm-slider .swiper-button-next {
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
}

.cm-slider .swiper-button-prev img,
.cm-slider .swiper-button-next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 位置微調整 */
.cm-slider .swiper-button-box {
  margin-top: 40px;
  gap: 40px;
}

.cm-slider .swiper-button-prev,
.cm-slider .swiper-button-next {
  margin: 0;
  position: initial;
  transform: initial;
  width: 32px;
  height: 32px;
}
.cm-slider .swiper-button-prev img {
  transform: rotate(-180deg);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cm-slider .swiper-button-prev::after,
.cm-slider .swiper-button-next::after {
  display: none;
}

@media screen and (max-width: 960px) {
  .cm-slider .swiper-slide {
    max-width: 200px;
  }
  .cm-slider .swiper-button-prev,
  .cm-slider .swiper-button-next {
    width: 24px;
    height: 24px;
    left: -30px;
    right: -30px;
  }
}

@media screen and (max-width: 768px) {
  .cm-slider .swiper-button-box {
    margin-top: 20px;
    gap: 24px;
  }
}

@media screen and (max-width: 599px) {
  .cm-slider .swiper-slide {
    max-width: 160px;
  }
}

/* ギャラリー */
.cm-gallery ul {
  flex-wrap: nowrap;
  gap: 20px;
}

.cm-gallery li {
  aspect-ratio: 336/ 308;
  max-width: 336px;
}
.cm-gallery li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .cm-gallery ul {
    gap: 16px;
  }
}

@media screen and (max-width: 599px) {
  .cm-gallery ul {
    gap: 8px;
  }
}
