@charset "utf-8";
/*=========================
  Common
=========================*/
/* variables */
:root {
  --brown1: #8d7762;
  --brown2: #9e8b79;
  --yellow: #d2b53f;
}

html {
  scroll-behavior: smooth;
  /* scroll-padding-top: 100px;  */
}
/* @media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 0px;
  }
} */
body {
  font-family: 'Noto Sans JP', sans-serif;
  /* font-family: "Zen Kaku Gothic New", sans-serif; */
  /* font-family: 'dnp-shuei-mgothic-std', sans-serif; */
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  font-size: 18px;
  line-height: 1.75;
  /* max-width: 1920px;
  margin-inline: auto; */
  position: relative;
  @media (max-width: 960px) {
    font-size: 16px;
  }
}
body.no-scroll {
  overflow: hidden;
  /* position: fixed; */
  width: 100%;
  height: 100dvh;
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
  color: inherit;
  &:hover {
    @media (any-hover: hover) {
      opacity: 0.7;
    }
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
  @media (max-width: 960px) {
    /* font-size: 1rem; */
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.75;
  font-size: inherit;
  font-weight: inherit;
}

.u-pc-only {
  display: initial;
}
.u-sp-only {
  display: none;
}
@media (max-width: 960px) {
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: initial;
  }
}

.u-bold {
  font-weight: 700;
}

.l-container {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin-inline: auto;
}

/* button */
.c-button {
  --bg-color: var(--brown2);
  --color: #fff;
  --r: 100vmax;
  background-color: var(--bg-color);
  color: var(--color);
  border-radius: var(--r);
  padding: 18px 1rem;
  width: 300px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  font-family: 'dnp-shuei-mgothic-std', sans-serif;
  position: relative;
  .icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 16px;
    translate: -0% -50%;
  }
  @media (any-hover: hover) {
    &::before {
      border-radius: var(--r);
      content: '';
      position: absolute;
      z-index: 2;
      inset: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    &:hover {
      opacity: 1;
    }
    &:hover::before {
      opacity: 0.25;
    }
  }
}

/*=========================
  header
=========================*/
.header {
  position: relative;
  z-index: 1001;
  background: url(../img/header-bg.webp) no-repeat;
  background-size: cover;
  height: 100px;
  color: #fff;
  font-size: 18px;
  font-family: 'dnp-shuei-mgothic-std', sans-serif;
  font-weight: 600;
  @media (max-width: 960px) {
    height: 67px;
    position: sticky;
    top: 0;
    width: 100%;
  }
  .header__inner {
    width: calc(100% - 1.5rem);
    max-width: 1920px;
    margin-inline: auto;
    /* margin-left: 0.5rem; */
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__logo-wrapper {
    position: relative;
    height: 100px;
    aspect-ratio: 431/100;
    background: url(../img/logo-bg.webp) no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .header-logo {
    display: block;
    width: 248px;
    position: relative;
    left: -12px;
  }
  .header__logo-wrapper-sp {
    display: none;
    height: 67px;
    @media (max-width: 960px) {
      display: block;
    }
  }
  .header-logo-sp {
    display: block;
    & img {
      height: 67px;
    }
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    gap: 2vw;
    @media (max-width: 1380px) {
      display: none;
    }
  }
  .header-links {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2vw;
  }
  .header-cta {
    background-color: var(--brown2);
    border-radius: 100vmax;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    gap: 8px;
    line-height: 1;
  }
  .header-cta-sp {
    display: none;
    background-color: #9e8b79;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 100vmax;
    margin-left: auto;
    margin-right: 10px;
    @media (max-width: 1380px) {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  .sp-hamburger {
    display: none;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10%;
    width: 50px;
    height: fit-content;
    aspect-ratio: 1/1;
    background-color: #fff;
    border-radius: 100vmax;
    @media (max-width: 1380px) {
      display: flex;
    }
    .line {
      height: 2px;
      width: 60%;
      background-color: #9e8b79;
      transition: 0.3s;
    }
  }
  .sp-hamburger.active {
    .line {
      background-color: #9e8b79;
    }
    .line:nth-child(1) {
      position: absolute;
      top: 50%;
      bottom: 50%;
      width: 60%;
      rotate: -45deg;
    }
    .line:nth-child(2) {
      opacity: 0;
    }
    .line:nth-child(3) {
      position: absolute;
      top: 50%;
      bottom: 50%;
      width: 60%;
      rotate: 45deg;
    }
  }
  .sp-nav {
    position: fixed;
    z-index: 1000;
    top: 100px;
    @media (max-width: 960px) {
      top: 67px;
    }
    left: 0;
    right: 0;
    width: 100%;
    /* right: -120%; */
    opacity: 0;
    visibility: hidden;
    height: calc(100dvh - 67px);
    background: url(../img/sp-nav-bg.webp) no-repeat;
    background-size: cover;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition:
      0.3s opacity,
      0.3s visibility;
    display: flex;
    flex-direction: column;
    .nav-items {
      width: 100%;
      margin-bottom: auto;
      padding-top: 52px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      .nav-items__item a {
        text-align: center;
        text-wrap: balance;
        font-size: 20px;
        font-family: 'dnp-shuei-mgothic-std', sans-serif;
        font-weight: 700;
        color: #816354;
      }
    }
  }
  .sp-nav.active {
    opacity: 1;
    visibility: visible;
  }
}
.header-overlay {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  /* background-color: #000; */
  opacity: 0.75;
}
.header-overlay.active {
  display: block;
}

/*=========================
  mv
=========================*/
.top-mv {
  .mv-flex {
    display: flex;
    justify-content: center;
    @media (max-width: 960px) {
      flex-direction: column;
    }
  }
  .lead-wrapper {
    /* flex-shrink: 0; */
    /* width: 45%; */
    flex: 0 0 35%;
    min-width: max-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 100px 60px 180px 65px;
    @media (max-width: 960px) {
      padding: 30px 0px 30px;
    }
    .lead-items {
      margin-inline: auto;
      font-family: 'dnp-shuei-mgothic-std', sans-serif;
      font-weight: 600;
      letter-spacing: 0.25em;
    }
    .lead1 {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 32px;
      @media (max-width: 960px) {
        font-size: 20px;
        margin-bottom: 14px;
      }
    }
    .lead2 {
      font-size: 45px;
      font-weight: 700;
      @media (max-width: 960px) {
        font-size: 30px;
      }
    }
  }
  .img-wrapper {
    /* width: 55%; */
    flex: 1 1 65%;
    .slide-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 0% 0%;
      @media (max-width: 960px) {
        min-height: 428px;
      }
    }
  }
  .splide {
  }
  .splide__track {
    height: 100%;
  }
  .splide__list {
    height: 100%;
  }
  .splide.mv-pc {
    @media (max-width: 960px) {
      display: none;
    }
  }
  .splide.mv-sp {
    display: none;
    @media (max-width: 960px) {
      display: block;
    }
  }
}

/*=========================
  top sec1
=========================*/
.top-sec1 {
  position: relative;
  z-index: 2;
  top: -110px;
  background: url(../img/top/sec1-bg.webp) no-repeat;
  background-size: 102% 100%;
  padding-top: 160px;
  padding-bottom: 180px;
  margin-bottom: -100px;
  overflow-x: hidden;
  overflow-y: hidden;
  @media (max-width: 960px) {
    background: url(../img/top/sec1-bg-sp.webp) no-repeat;
    background-size: 100% 100%;
    padding: 80px 0 130px;
  }
  .l-container {
    position: relative;
    z-index: 2;
  }
  .top-sec1-item {
    display: flex;
    align-items: center;
    gap: 5%;
    margin-right: calc(50% - 50vw);
    margin-bottom: 130px;
    @media (max-width: 960px) {
      flex-direction: column;
      margin-inline: auto;
      gap: 38px;
      margin-bottom: 45px;
    }
    .top-sec1-item__text {
      width: 50%;
      /* flex: 0 0 auto; */
      font-size: 18px;
      line-height: 2.75;
      @media (max-width: 960px) {
        width: 100%;
        font-size: 16px;
      }
    }
    .top-sec1-item__img {
      width: 50%;
      /* flex: 1 1 auto; */
      /* max-height: 460px; */
      @media (max-width: 960px) {
        display: none;
      }
    }
    .top-sec1-item__img-sp {
      display: none;
      max-width: 100vw;
      margin-inline: calc(50% - 50vi);
      @media (max-width: 960px) {
        display: block;
      }
    }
  }
  .top-sec1-item--2 {
    flex-direction: row-reverse;
    margin-left: calc(50% - 50vw);
    margin-right: auto;
    gap: 5%;
    @media (max-width: 960px) {
      flex-direction: column;
      margin-inline: auto;
      gap: 38px;
      margin-bottom: 45px;
    }
    .top-sec1-item__text {
      width: 65%;
      @media (max-width: 960px) {
        width: 100%;
      }
    }
    .top-sec1-item__img {
      width: 35%;
    }
  }
  .top-sec1-item--3 {
    margin-bottom: 0;
    .top-sec1-item__text {
      width: 60%;
      @media (max-width: 960px) {
        width: 100%;
      }
    }
    .top-sec1-item__img {
      width: 40%;
      @media (max-width: 960px) {
        display: none;
      }
    }
  }
  .illust1 {
    position: absolute;
    top: 2%;
    left: 4%;
    /* max-width: 1090px; */
    width: calc(1090 / 1440 * 100vw);
    @media (max-width: 960px) {
      top: 0%;
      left: 1%;
      width: calc(599 / 375 * 100vw);
      max-width: 250vw;
    }
  }
  .illust2 {
    position: absolute;
    top: 21%;
    left: 49%;
    /* max-width: 186px; */
    width: calc(186 / 1440 * 100vw);
    @media (max-width: 960px) {
      display: none;
    }
  }
  .illust3 {
    position: absolute;
    top: 24%;
    left: 2%;
    /* max-width: 1536px; */
    width: calc(1536 / 1440 * 100vw);
    @media (max-width: 960px) {
      top: 45%;
      left: 0%;
      width: calc(429 / 375 * 100vw);
      max-width: 150vw;
    }
  }
  .illust4 {
    position: absolute;
    bottom: 0%;
    left: 4%;
    /* max-width: 340px; */
    width: calc(340 / 1440 * 100vw);
    translate: 0% -50%;
    @media (max-width: 960px) {
      bottom: 0;
      left: 50%;
      translate: -50% -8%;
      width: calc(220 / 375 * 100vw);
    }
  }
  .wave {
    position: absolute;
    bottom: -70px;
    width: 100%;
    @media (max-width: 960px) {
      bottom: 0px;
    }
  }
}

/*=========================
  top sec2
=========================*/
.top-sec2 {
  padding: 100px 0;
  @media (max-width: 960px) {
    padding: 0 0 60px;
  }
  .top-sec2__lead {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-family: 'dnp-shuei-mgothic-std', sans-serif;
    margin-bottom: 84px;
    @media (max-width: 960px) {
      font-size: 24px;
      margin-bottom: 37px;
    }
    .bubble {
      width: min(100%, 384px);
      margin-inline: auto;
      margin-bottom: 20px;
    }
    .row1 {
      margin-bottom: 30px;
    }
  }
  .top-sec2__body {
    display: flex;
    align-items: center;
    gap: 90px;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 40px;
    }
  }
  .top-sec2__img-wrapper {
    flex: 1 1 auto;
    margin-left: calc(50% - 50vi);
    @media (max-width: 960px) {
      margin-left: auto;
      margin-right: auto;
    }
  }
  .top-sec2__img {
    min-height: 450px;
    width: 100%;
    height: 30vw;
    object-fit: cover;
    object-position: 100% 0%;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .top-sec2__img-sp {
    display: none;
    @media (max-width: 960px) {
      display: block;
    }
  }
  .top-sec2__info {
    width: 50%;
    flex: 0 0 auto;
    @media (max-width: 960px) {
      width: 100%;
    }
  }
  .top-sec2__info-title {
    position: relative;
    left: -35px;
    width: min(100%, 594px);
    margin-bottom: 35px;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .top-sec2__info-title-sp {
    display: none;
    margin-inline: auto;
    margin-bottom: 30px;
    @media (max-width: 960px) {
      display: block;
      width: min(100%, 318px);
      translate: -2% 0%;
    }
  }
  .top-sec2__info-line {
    width: 100%;
    height: 4px;
    background-color: #816354;
    border-radius: 100vmax;
    margin-bottom: 30px;
    @media (max-width: 960px) {
      height: 3px;
      margin-bottom: 20px;
    }
  }
  .top-sec2__info-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    gap: 1rem;
    margin-bottom: 18px;
    font-size: 25px;
    font-weight: 700;
    font-family: 'dnp-shuei-mgothic-std', sans-serif;
    @media (max-width: 960px) {
      gap: 12px;
      font-size: 20px;
      align-items: flex-start;
      margin-bottom: 8px;
    }
    .icon {
      margin-inline: auto;
      @media (max-width: 960px) {
        margin-top: 8px;
      }
    }
  }
  .top-sec2__info-item:last-of-type {
    margin-bottom: 45px;
  }
  .c-button {
    margin-left: 0;
    @media (max-width: 960px) {
      margin-inline: auto;
    }
  }
}

/*=========================
  top sec3
=========================*/
.top-sec3 {
  .top-sec3__separator {
    width: 100%;
    /* height: 140px; */
  }
  .top-sec3__inner {
    background-color: #f6f1ee;
    padding: 50px 0 100px;
    @media (max-width: 960px) {
      padding: 30px 0 50px;
    }
  }
  .top-sec3-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 70px;
    @media (max-width: 960px) {
      margin-bottom: 30px;
    }
  }

  .blog-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    @media (max-width: 960px) {
      flex-direction: column;
      margin-bottom: 50px;
    }
  }
  .blog-item {
    width: calc((100% - 60px) / 3);
    background-color: #fff;
    padding: 16px 16px 30px;
    border-radius: 5px;
    @media (max-width: 960px) {
      width: 100%;
    }
    .blog-item__thumbnail {
      background-color: #eee;
      width: 100%;
      aspect-ratio: 350/230;
      margin-bottom: 20px;
      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    .blog-item__date {
      display: block;
      font-family: 'dnp-shuei-mgothic-std', sans-serif;
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 10px;
      @media (max-width: 768px) {
        font-size: 14px;
      }
    }
    .blog-item__title {
      font-size: 18px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      @media (max-width: 768px) {
        font-size: 14px;
      }
    }
  }
}

/*=========================
  sns
=========================*/
.sec-sns {
  padding-bottom: 32px;
  .sns-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
}
body.home .sec-sns,
body.front-page .sec-sns {
  background-color: #f6f1ee;
}
.sp-nav .sec-sns {
  background-color: transparent !important;
}

/*=========================
  footer
=========================*/
.footer {
  background: url(../img/footer-bg.webp) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  font-size: 18px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1;
  padding: 1.5rem;
  @media (max-width: 960px) {
    padding: 16px 0;
    font-size: 14px;
    gap: 12px;
  }
}
