@charset "UTF-8";
html {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

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

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

code, kbd, pre, samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

blockquote, q {
  quotes: none;
}

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

address {
  font-style: normal;
}

button {
  border: 0;
  background-color: unset;
}

/**font size*********/
/**font weight*********/
/**カラー*********/
/**font-family*********/
/**** Writing mode****/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  color: #3d3d3d;
  line-height: 1.8;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  font-feature-settings: "palt";
  letter-spacing: 1px;
  text-align: justify;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: ease 0.3s;
  color: #3d3d3d;
  /*  &:hover {
       opacity: 0.8;
   } */
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

*, ::before, ::after {
  box-sizing: border-box;
}

.c-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.c-logo {
  max-width: 100px;
  width: -moz-fit-content;
  width: fit-content;
}
.c-logo a {
  display: block;
}

.c-tate {
  writing-mode: vertical-rl;
}

.c-fuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -7px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.c-title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto clamp(1.875rem, 8vw, 2.5rem);
  font-size: clamp(1.5rem, 0.375rem + 4.8vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  position: relative;
}

/*** home CTAボタン***/
/* 問い合わせボタン関連のスタイル */
.contact-container {
  position: fixed;
  left: 20px;
  bottom: 80px;
  z-index: 999;
  display: none;
}

.main-btn {
  width: 60px;
  height: 60px;
  background-color: #008d5f;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.main-btn:hover {
  background-color: #008d5f;
  transform: scale(1.05);
}

.main-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.sub-btns {
  position: absolute;
  bottom: 80px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  transform: translateY(20px);
}

.sub-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.sub-btns.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.phone-btn {
  background-color: #008d5f;
}

.phone-btn:hover {
  transform: scale(1.05);
}

.form-btn {
  background-color: #de8744;
}

.form-btn:hover {
  transform: scale(1.05);
}

.sub-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .contact-container {
    left: 15px;
    bottom: 60px;
    display: block;
  }
  .sub-btns {
    bottom: 100px;
  }
}
.p-contact__item {
  width: 100%;
  padding: clamp(1.25rem, 0.744rem + 2.16vw, 2.125rem) clamp(1.25rem, -0.195rem + 6.16vw, 3.75rem);
  border-bottom: 1px solid #e1e1e1;
  align-items: flex-start;
}
@media screen and (max-width: 480px) {
  .p-contact__item {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-contact__inner {
  width: 30%;
  flex-wrap: nowrap;
}
@media screen and (max-width: 480px) {
  .p-contact__inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: start;
    gap: 12px;
    width: 100%;
    margin-bottom: 14px;
  }
}
.p-contact__item__data {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .p-contact__item__data {
    width: 100%;
  }
}
.p-contact__item__head {
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .p-contact__item__head {
    width: 100%;
  }
}
.p-contact__inner .c-required {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  font-size: 12px;
  text-align: center;
  font-weight: 700;
  background-color: #e36b6c;
  color: #fff;
  padding: 2px 12px;
  border-radius: 2px;
}
@media screen and (max-width: 480px) {
  .p-contact__inner .c-required {
    padding: 1px 10px;
  }
}
.p-contact__terms {
  width: 100%;
  margin-top: 24px;
  padding: clamp(1.25rem, -0.195rem + 6.16vw, 3.75rem);
  border: 1px solid #e1e1e1;
  border-radius: 1%;
}
.p-contact__terms__scroll {
  height: 170px;
  overflow: scroll;
}
.p-contact__terms__title {
  font-size: clamp(1.125rem, 0.836rem + 1.23vw, 1.625rem);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
.p-contact__terms__item {
  width: 100%;
  margin-bottom: clamp(0.75rem, 0.461rem + 1.23vw, 1.25rem);
}
.p-contact__terms__item h4 {
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 2px;
  margin-bottom: 6px;
}
.p-contact__terms__item p, .p-contact__terms__item li, .p-contact__terms__item dt, .p-contact__terms__item dd {
  font-size: 14px;
}
.p-contact__terms__item h5 {
  font-weight: 700;
  margin-top: 12px;
  font-size: 14px;
}
.p-contact__terms__list {
  list-style: auto;
  padding-left: 20px;
}
.p-contact__terms__list ul {
  list-style: "・";
  padding-left: 20px;
}
.p-contact__terms__item dl {
  margin: 12px 0;
}
.p-contact__terms__item dt {
  font-weight: 700;
}
.p-contact__terms__item dd > a {
  text-decoration: underline;
}

.l-footer {
  position: relative;
  width: 100%;
  background-color: #a48e77;
  padding: 100px 90px 20px;
  /* &__top {
      @media screen and (max-width: 768px) {
          gap: 40px;
      }
  } */
}
@media screen and (max-width: 480px) {
  .l-footer {
    padding: 80px 40px 20px;
  }
}
.l-footer__wrap {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
.l-footer__inner {
  width: 45%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    width: 100%;
  }
}
.l-footer__inner__logo {
  margin-bottom: 14px;
}
.l-footer__inner__address {
  margin-bottom: 14px;
}
.l-footer__inner__button li {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.l-footer__inner__button li a {
  color: #fff;
}
.l-footer__inner__button li::before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.l-footer__inner__button li:nth-child(1)::before {
  background-image: url(../images/icon-phone_white.svg);
}
.l-footer__inner__button li:nth-child(2)::before {
  background-image: url(../images/icon-fax_white.svg);
}
@media screen and (max-width: 768px) {
  .l-footer__inner__button {
    margin: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__inner__button > li:first-child {
    margin-bottom: 16px;
  }
}
.l-footer__nav {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
}
.l-footer__nav li {
  margin-bottom: 20px;
}
.l-footer__nav li:last-child {
  margin-bottom: 0;
}
.l-footer__nav li a {
  color: #fff;
}
.l-footer__nav li a::before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-right: 4px;
  background-image: url(../images/icon-tree_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.l-footer__bottom {
  width: -moz-fit-content;
  width: fit-content;
  margin: 100px auto 0;
}
.l-footer__bottom__instagram {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.l-footer small {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  text-align: center;
  color: #fff;
}

.l-header__pc {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.l-header__pc h1 {
  max-width: 72px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.l-header__pc__navigation {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  margin: 100px auto 0;
  font-weight: 700;
}
.l-header__pc__navigation__item {
  font-size: 14px;
}
.l-header__pc__navigation__logo {
  margin-top: 20px;
}
.l-header__sp {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .l-header__sp {
    display: none;
  }
}

/* morph-styles.css */
.hamburger-morph {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-morph__icon {
  width: 100%;
  height: 100%;
}

.hamburger-morph__line {
  fill: none;
  stroke: #de8744;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #008d5f;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}

.nav-morph.active {
  clip-path: circle(150% at calc(100% - 44px) 44px);
}

.nav-morph__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nav-morph__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.nav-morph__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-morph.active .nav-morph__item:nth-child(1) {
  transition-delay: 0.3s;
}

.nav-morph.active .nav-morph__item:nth-child(2) {
  transition-delay: 0.4s;
}

.nav-morph.active .nav-morph__item:nth-child(3) {
  transition-delay: 0.5s;
}

.nav-morph.active .nav-morph__item:nth-child(4) {
  transition-delay: 0.6s;
}

.nav-morph__link {
  position: relative;
  display: inline-block;
  padding: 20px;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.nav-morph__text {
  display: block;
  transition: transform 0.3s ease;
}

.l-outer {
  overflow-x: hidden;
  position: relative;
}

.l-outer__left,
.l-outer__right {
  position: fixed;
  height: 100vh;
  width: 140px;
  margin: 0;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 60px 18px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.l-outer__left {
  left: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .l-outer__left {
    display: none;
  }
}

.l-outer__right {
  right: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .l-outer__right {
    display: none;
  }
}
.l-outer__right__address {
  max-width: 38px;
  width: 100%;
  margin: 0 auto;
}
.l-outer__right__cta {
  width: 100%;
  margin: 100px auto 0;
  font-weight: 700;
  gap: 20px;
}
.l-outer__right__cta li:nth-child(1) p {
  color: #de8744;
}
.l-outer__right__cta li:nth-child(2) p {
  color: #008d5f;
}
.l-outer__right__cta p {
  text-align: center;
  font-size: 12px;
}

.l-outer__center {
  width: calc(100% - 280px);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-outer__center {
    width: 100%;
  }
}

/****** TOPへ戻るボタン ******/
#topBtn {
  width: 55px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 777;
}