@charset "UTF-8";
/*------------------------------------------
  ベーススタイル
-------------------------------------------*/
:root {
  --bg:#fff;
  --fg:#514131;
  --muted:#6b7280;
  --accent:#e06;
  --line:#ececec;
  --brand:#d33;
  --brand2:#f69;
  --container:1100px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Zen Maru Gothic", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--fg);
  line-height: 1.8;
  min-width: 320px;
}
body.is-drawer-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--fg);
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  p, dt, dd, li {
    font-size: 0.9em;
  }
}

.narrow {
  max-width: 800px;
  margin-inline: auto;
}

.section-pad {
  padding: 64px 0;
}

.section-title {
  font-size: 28px;
  margin: 0 0 16px;
}

/*------------------------------------------
  共通コンポーネント
-------------------------------------------*/
.container {
  width: min(84%, var(--container));
  margin-inline: auto;
  padding-bottom: 120px;
}
@media screen and (min-width: 969px) {
  .container {
    padding-bottom: 200px;
  }
}

/* CTA */
.cta_area .location_link {
  font-size: 16px;
  color: var(--fg);
  column-gap: 5px;
  grid-area: location;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta_area .location_link::before {
  content: "";
  width: 14px;
  height: 19px;
  background-image: url("../img/common/ico_location.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
}
.cta_area .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid transparent;
}
.cta_area .btn_mail {
  grid-area: mail;
  background: #514131;
}
.cta_area .btn_line {
  grid-area: line;
  background: #06c755;
}
.cta_area .btn_line::before {
  content: "";
  width: 39px;
  height: 28px;
  background-image: url("../img/common/ico_line.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

/* 詳細リンク */
.detail_link {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}
.detail_link::after {
  content: "";
  width: 42px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background-image: url("../img/common/ico_arrow.svg");
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center center;
  background-color: #FCB3B7;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .detail_link::after {
    width: 34px;
  }
}

.site_link {
  color: #E88086;
  font-weight: 500;
}

/* フェードイン */
@keyframes fadeIn {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  99.9%, to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
.fadein {
  opacity: 0;
  backface-visibility: hidden;
}
.fadein.active {
  animation: fadeIn 1s ease-out both;
  transform: translate3d(0, 20px, 0);
}

/*------------------------------------------
  ヘッダー・フッター
-------------------------------------------*/
/* ヘッダー */
.site_header {
  position: fixed;
  width: 100%;
  z-index: 50;
  min-width: 320px;
}
@media screen and (min-width: 969px) {
  .site_header {
    position: absolute;
  }
}
.site_header.transform {
  background-color: white;
}

.header_inner {
  padding: 14px 5vw;
}
@media screen and (min-width: 768px) and (max-width: 968px) {
  .header_inner {
    padding: 20px 3vw;
  }
}
@media screen and (min-width: 969px) {
  .header_inner {
    padding: 40px 6vw 0 3vw;
  }
}
.header_inner .brand_header {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.header_inner .brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--fg);
  position: relative;
  line-height: 1.2em;
  row-gap: 13px;
  padding-left: 0;
}
@media screen and (min-width: 969px) {
  .header_inner .brand {
    padding-left: 100px;
  }
}
.header_inner .brand::before {
  position: absolute;
  width: min(7vw, 90px);
  background: url("../img/common/logo.svg") no-repeat center/contain;
  left: 0;
  top: 50%;
  aspect-ratio: 1/0.956;
  transform: translateY(-50%);
}
@media screen and (min-width: 969px) {
  .header_inner .brand::before {
    content: "";
  }
}
.header_inner .brand__sub {
  font-size: min(2.7vw, 15px);
}
@media screen and (min-width: 969px) {
  .header_inner .brand__sub {
    font-size: min(1.4vw, 15px);
  }
}
.header_inner .brand__main {
  font-size: min(5.2vw, 28px);
}
@media screen and (min-width: 969px) {
  .header_inner .brand__main {
    font-size: min(2.6vw, 28px);
  }
}
.header_inner .header_cta {
  display: grid;
  align-items: center;
  grid-template-areas: "location location" "mail line";
  margin-left: auto;
}
@media screen and (min-width: 969px) {
  .header_inner .header_cta {
    gap: 30px 20px;
  }
}
.header_inner .header_cta .location_link {
  justify-content: end;
  display: none;
}
@media screen and (min-width: 969px) {
  .header_inner .header_cta .location_link {
    display: flex;
  }
}
.header_inner .header_cta .btn { /* CTA */
  display: none;
}
@media screen and (min-width: 969px) {
  .header_inner .header_cta .btn {
    display: flex;
    padding: 10px 14px;
  }
}
.header_inner .header_cta .btn_mail {
  min-width: 198px;
}
.header_inner .header_cta .btn_line {
  min-width: 223px;
}

@keyframes currentIconIn {
  0% {
    opacity: 0;
    transform: translateX(-6px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateX(1px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.nav_desktop {
  margin-top: 35px;
  margin-left: auto;
  display: none;
  flex-direction: column;
  align-items: end;
  row-gap: 12px;
}
@media screen and (min-width: 969px) {
  .nav_desktop {
    display: flex;
  }
}
.nav_desktop .nav_inner {
  display: flex;
  gap: 2.4vw;
  justify-content: end;
}
.nav_desktop .nav_inner .nav_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  transition: color 0.3s ease;
}
.nav_desktop .nav_inner .nav_link::before {
  content: "";
  width: 12px;
  height: 16px;
  background: url("../img/common/ico_current.svg") no-repeat center/contain;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.3, 1, 0.3, 1);
}
.nav_desktop .nav_inner .nav_link.is-current::before {
  opacity: 1;
  transform: translateX(0);
}
.nav_desktop .privacy_link {
  color: #938270;
  font-size: 14px;
}

.menu_btn {
  display: inline-flex;
  border: none;
  width: 60px;
  background: #FCB3B7;
  color: #fff;
  font-size: 10px;
  border-radius: 14px;
  aspect-ratio: 1/1;
  z-index: 12;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
  padding: 10px 0 0;
  cursor: pointer;
  transition: 0.6s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (hover: hover) {
  .menu_btn:hover {
    opacity: 0.85;
  }
}
@media screen and (min-width: 969px) {
  .menu_btn {
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .menu_btn[style*="display: inline-flex"] {
    position: fixed;
    pointer-events: auto;
    top: 34px;
    right: 34px;
    width: 78px;
  }
}
.menu_btn__label {
  letter-spacing: 0.05em;
}
.menu_btn__bars {
  position: relative;
  display: block;
  inline-size: 30px;
  block-size: 1px;
  background: currentColor;
  border-radius: 1px;
  transform: translateY(5px);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu_btn__bars::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  block-size: 1px;
  inline-size: 30px;
  background: currentColor;
  border-radius: 1px;
  transform: translateY(-10px);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu_btn.is-active .menu_btn__bars {
  transform: rotate(45deg);
}
.menu_btn.is-active .menu_btn__bars::before {
  transform: rotate(-90deg);
}

/* モバイルメニュー */
#menu_drawer {
  height: 100vh;
  position: fixed;
  width: 100%;
  top: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: saturate(180%) blur(11px);
  opacity: 0;
  display: block;
  visibility: hidden;
}
@media screen and (min-width: 969px) {
  #menu_drawer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#menu_drawer.is-open {
  opacity: 1;
  visibility: visible;
  overflow: auto;
}
#menu_drawer .nav-mobile {
  display: grid;
  gap: 26px;
  margin: 120px 9vw;
}
@media screen and (min-width: 969px) {
  #menu_drawer .nav-mobile {
    width: min(84vw, 520px);
    text-align: center;
    margin: 0;
  }
}
#menu_drawer .nav-mobile .privacy_link {
  display: inline-grid;
  justify-content: center;
  text-align: center;
  color: #938270;
  font-size: 14px;
}
#menu_drawer .nav-mobile .privacy_link::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #938270;
}
#menu_drawer .nav-mobile .copyright {
  text-align: center;
  color: #9B7B60;
  font-size: 12px;
}
#menu_drawer .nav-cta {
  margin-top: 70px;
}
#menu_drawer .nav-cta .location_link {
  margin-bottom: 30px;
  font-size: clamp(14px, 1.2vw, 16px);
}
#menu_drawer .nav-cta .btn {
  width: min(90%, 450px);
  padding: 15px 14px;
  margin: 0 auto 15px;
}

/* フッター */
.site_footer {
  color: #fff;
  background-color: #514131;
}
.site_footer .copy {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

.footer_wrap {
  display: grid;
  max-width: 900px;
  gap: 24px;
  padding: 24px 0 50px;
  margin: 0 auto;
}
.footer_wrap .footer_nav {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .footer_wrap .footer_nav {
    width: 85vw;
    margin: 0 auto 60px;
  }
}
.footer_wrap .footer_nav .nav_inner {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .footer_wrap .footer_nav .nav_inner {
    flex-direction: column;
    row-gap: 20px;
  }
}
.footer_wrap .footer_nav .nav_inner a {
  color: #fff;
}
.footer_wrap .footer_nav .privacy_link {
  color: #938270;
  align-self: end;
  padding-right: 3%;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer_wrap .footer_nav .privacy_link {
    display: none;
  }
}
.footer_wrap .footer_cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .footer_wrap .footer_cta {
    flex-direction: column;
    row-gap: 20px;
  }
}
.footer_wrap .footer_cta .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  color: #fff;
  border-radius: 999px;
  width: 30%;
  padding: 12px 14px;
  font-size: 16px;
  background-color: rgba(147, 130, 112, 0.6);
}
@media screen and (max-width: 767px) {
  .footer_wrap .footer_cta .btn {
    color: #938270;
    width: min(85%, 450px);
    background-color: white;
  }
}
.footer_wrap .footer_cta .btn.btn_line::before {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background-image: url(../img/common/ico_footer_line.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.footer_wrap .footer_cta .btn.btn_instagram::before {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background-image: url(../img/common/ico_footer_ig.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.footer_wrap .footer_cta .privacy_link {
  display: none;
  color: #938270;
  align-self: center;
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer_wrap .footer_cta .privacy_link {
    display: inline-block;
  }
}

/*------------------------------------------
  メインコンテンツ
-------------------------------------------*/
main {
  position: relative;
  padding-top: 310px;
  overflow-x: clip;
  z-index: 0;
  background: rgb(255, 249, 240) 0%;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 90px;
  }
}
@media screen and (min-width: 768px) and (max-width: 968px) {
  main {
    padding-top: 210px;
  }
}
main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(48vw, 900px);
  z-index: -1;
  background-image: url(/assets/img/common/head_bg.svg);
  aspect-ratio: 1/0.409;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left top;
}
@media screen and (max-width: 767px) {
  main::before {
    width: 100vw;
    background-image: url(/assets/img/common/head_bg_sp.svg);
    aspect-ratio: 1/0.313;
    max-height: 180px;
    background-size: 100% auto;
    background-position: bottom left;
  }
}

/*------------------------------------------
  ユーティリティ
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .sm_none {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 968px) {
  .md_none {
    display: none;
  }
}

@media screen and (min-width: 969px) {
  .lg_none {
    display: none;
  }
}
