@charset "UTF-8";
/* SCSSの読み込み */
/* font-weight */
:root {
  /* カラー */
  --color-text: #464048;
  --color-purple: #aa6ace;
  --color-pink: #ff85a2;
  --color-orange: #ffa200;
  --color-green: #66b941;
  --color-sky: #66cbf5;
  --color-violet: #584982;
  --color-lavender: #a294a8;
  --bg-purple: #fbf5ff;
  --bg-orange: #fff9eb;
  --btn-purple: #f6e5ff;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-maru: "Zen Maru Gothic", sans-serif;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  /* パターン */
  --pattern-border-30: url(../img/common/pt-border-30.png);
  --pattern-border-20: url(../img/common/pt-border-20.png);
  --pattern-border-10: url(../img/common/pt-border-10.png);
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxl: 4.8rem;
    --font-size-xxl: 2.8rem;
    --font-size-xl: 2.5rem;
    --font-size-gl: 2rem;
    --font-size-btn: 2.4rem;
    --font-size-base: 1.8rem;
    --font-size-sm: 1.6rem;
    --font-size-xs: 1.4rem;
    --font-size-xxs: 1.3rem;
    /* line-height */
    --line-height-xxxl: 1.25;
    --margin-height-xxxl: -0.125em;
    --line-height-xxl: 1.5;
    --margin-height-xxl: -0.25em;
    --line-height-xl: 1;
    --margin-height-xl: -0.0em;
    --line-height-gl: 1;
    --margin-height-gl: -0.0em;
    --line-height-base: 1.888889;
    --margin-height-base: -0.4444445em;
    --line-height-sm: 1.875;
    --margin-height-sm: -0.4375em;
    --line-height-min: 2;
    /* letter-spacing */
    --letter-spacing-base: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 2em;
    --font-size-h2: 1.777778em;
    --font-size-h3: 1.555556em;
    --font-size-h4: 1.333334em;
    --font-size-h5: 1.222223em;
    --font-size-h6: 1.111112em;
    --font-size-base: 1em;
    --font-size-sm: 0.888889em;
    --font-size-xs: 0.777778em;
    /* line-height */
    --line-height-title: 1.5;
    --line-height-base: 2;
    --line-height-sm: 1.75;
    --line-height-xs: 1.714286;
    /* letter-spacing */
    --letter-spacing-base: 0.02em;
  }
}
/*****共通*******/
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: 12px;
  right: 15px;
  bottom: auto;
  left: auto;
  background: var(--color-purple);
  border-radius: min(6px, 1.4814814815vw);
}

.sp-menu-btn {
  width: clamp(50px, 13.3333333333vw, 60px);
  height: clamp(50px, 13.3333333333vw, 60px);
}

.sp-menu-btn__line {
  width: 55.556%;
  height: min(3px, 0.6666666667vw);
  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: center;
  align-items: center;
  text-align: center;
  width: clamp(130px, 40vw, 180px);
  aspect-ratio: 3/2;
  border-bottom-right-radius: clamp(30px, 8vw, 36px);
  background: var(--bg-orange);
  margin: 0 0 min(36px, 8vw) -5vw;
}
#drawer__nav .drawer__logo img {
  width: 75.5556%;
}
#drawer__nav #nav .drawer__link {
  padding: 1em 1.5em;
  border-bottom: 2px solid var(--color-lavender);
  font-size: var(--font-size-h6);
  font-family: var(--font-family-maru);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  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: var(--color-purple);
}
#drawer__nav #nav .drawer__link[aria-current=page] {
  color: var(--color-purple);
}
#drawer__nav #nav .drawer__link--dropdown {
  padding: 1em 12% 1em 1.5em;
}
#drawer__nav #nav .drawer__link--dropdown:before {
  width: clamp(20px, 5.3333333333vw, 24px);
  height: 3px;
  background: var(--color-lavender);
  border-radius: 100vw;
  right: min(14px, 3.1111111111vw);
  margin-left: 0;
  transform: translateY(-50%);
}
#drawer__nav #nav .drawer__link--dropdown:after {
  width: 3px;
  height: clamp(20px, 5.3333333333vw, 24px);
  background: var(--color-lavender);
  border-radius: 100vh;
  right: min(24px, 5.9259259259vw);
  margin-top: 0;
  transform: translateY(-50%);
}
#drawer__nav #nav .drawer__link.current .drawer__text::after {
  opacity: 0 !important;
}
#drawer__nav #nav .drawer__dropdown {
  margin: 0.5em;
  padding-left: 1.5em;
  box-sizing: border-box;
}
#drawer__nav #nav .drawer__dropdown > li > .drawer__link {
  font-size: var(--font-size-base);
  border-bottom-style: dashed;
}
#drawer__nav #nav .drawer__dropdown > li > .drawer__link:before {
  width: 0.5em;
  height: 0.5em;
  border-left: 2px solid var(--color-lavender);
  border-bottom: 2px solid var(--color-lavender);
  top: 1.5em;
  left: 0.25em;
}

/*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
---------------------------*/