@charset "UTF-8";
/* SCSSの読み込み */
/* font-weight */
:root {
  /* カラー */
  --text-color: #1f1f1f;
  --text-gray: #727272;
  --text-pink: #facdd9;
  --color-pink: #e77c9a;
  --color-bloom: #f6a6bc;
  --color-rose: #ca335a;
  --bg-pink: #ffeff3;
  --bg-yellow: #fcf6e7;
  --bg-gray: #f1f1f1;
  --grad-pink-yellow: linear-gradient(40deg, #ffafc5 0%, #f9ebc8 100%);
  --grad-pink-gray: linear-gradient(to right, #ffeff3 0%, #f1f1f1 100%);
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-mincho: "Noto Serif JP", serif;
  --font-family-garamond: "EB Garamond", serif;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 9.4rem;
    --font-size-h2: 3.6rem;
    --font-size-h3: 3.4rem;
    --font-size-h4: 2.8rem;
    --font-size-h5: 2rem;
    --font-size-h6: 1.8rem;
    --font-size-base: 1.6rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
    /* line-height */
    --line-height-h1: 1;
    --line-height-h2: 1;
    --line-height-h3: 1.35715;
    --line-height-h4: 1.5714286;
    --line-height-h5: 1.5;
    --line-height-h6: 1.666667;
    --line-height-base: 1.875;
    --line-height-base-mid: 1.625;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.6666667;
    /* letter-spacing */
    --letter-spacing-base: 0em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 2em;
    --font-size-h2: 1.75em;
    --font-size-h3: 1.5625em;
    --font-size-h4: 1.375em;
    --font-size-h5: 1.25em;
    --font-size-h6: 1.125em;
    --font-size-base: 1em;
    --font-size-sm: 0.875em;
    --font-size-xs: 0.75em;
    /* line-height */
    --line-height-title: 1.5;
    --line-height-base: 1.875;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.666667;
  }
}
/*****共通*******/
body {
  font-size: 16px;
}

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

.sp-none {
  display: none !important;
}

/*flex
------------------------------------ */
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
}

.flx-center {
  justify-content: center;
}

.flx-alitem-c {
  align-items: center;
}

/*==============================================
ここから下がドロワー設定項目
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.sp-menu-btn__wrapper {
  top: 0.5em;
  right: 1em;
  bottom: auto;
  left: auto;
  background: var(--color-rose);
  border-radius: 1em 0.25em;
}

.sp-menu-btn {
  width: 4em;
}

.sp-menu-btn__line {
  width: 55.556%;
  height: 2px;
  background: #fff;
}
.sp-menu-btn__line--top {
  top: 33.3334%;
}
.sp-menu-btn__line--bottom {
  top: 64.445%;
}

.sp-menu-btn__text {
  color: #fff;
  font-size: 1rem;
}

/*	drawer inbox
------------------------------------ */
#drawer__nav {
  padding: 0 5% 5%;
  background-color: #fff;
}
#drawer__nav .drawer__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: min(136px, 30.2222222222vw);
  height: clamp(72px, 17.7777777778vw, 80px);
  margin-bottom: 2.5em;
}
#drawer__nav .drawer__logo img {
  width: 100%;
  aspect-ratio: 136/64;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
#drawer__nav #nav .drawer__link {
  padding: 1em;
  border-bottom: 1px solid var(--text-pink);
  font-size: var(--font-size-h6);
  font-family: var(--font-family-mincho);
  font-weight: 500;
  color: #1f1f1f;
  line-height: var(--line-height-title);
  letter-spacing: var(--letter-spacing-base);
  text-decoration: none;
}
#drawer__nav #nav .drawer__link:hover {
  text-decoration: none;
  color: #1f1f1f;
}
#drawer__nav #nav .drawer__link[aria-current=page] {
  color: #1f1f1f;
}
#drawer__nav #nav .drawer__link--dropdown {
  padding: 15px 12% 15px 0;
}
@media screen and (max-width: 450px) {
  #drawer__nav #nav .drawer__link--dropdown {
    padding: 3.33334vw 12% 3.33334vw 0;
  }
}
@media screen and (max-width: 360px) {
  #drawer__nav #nav .drawer__link--dropdown {
    font-size: 1.6rem;
    padding: 12px 12% 12px 0;
  }
}
#drawer__nav #nav .drawer__link--dropdown span {
  display: block;
}
#drawer__nav #nav .drawer__link--dropdown span:before {
  background: #000;
}
#drawer__nav #nav .drawer__link--dropdown span:after {
  background: #000;
}
#drawer__nav #nav .drawer__link.current .drawer__text::after {
  opacity: 0 !important;
}
#drawer__nav #nav .drawer__dropdown {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer__nav #nav .drawer__dropdown > li > .drawer__link:before {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
#drawer__nav #nav .drawer__dropdown > li > .drawer__link span {
  padding: 0 0 0 5%;
}

/*original custom code
-----------------------------------------*/
.drawer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1.875em;
  padding: 2.5em 0;
}

/*sns
---------------------------*/
.drawer__sns {
  gap: clamp(24px, 6.6666666667vw, 30px);
}
.drawer__sns li {
  width: clamp(40px, 11.1111111111vw, 50px);
}

/*電話番号
---------------------------*/
/*mail
---------------------------*/