@charset "UTF-8";
/* SCSSの読み込み */
/*===============================
  カラー変数
=================================*/
/*===============================
  フォント変数
=================================*/
/* font-family */
/* font-weight */
/* 行間削除 */
/*===============================
  Bootstrap icon変数
=================================*/
:root {
  /* カラー */
  --color-text: #68563e;
  --color-orange: #ffaf31;
  --color-green: #b6cc8e;
  --color-purple: #8373b2;
  --color-border: #bfbbb8;
  --color-white: #fff;
  --color-beige: #fbf9f2;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-maru: "Zen Maru Gothic", sans-serif;
  --font-family-quicksand: "Quicksand", sans-serif;
  --font-family-icon: "bootstrap-icons";
  /* font-weight */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  /* フォントサイズ */
  --font-size-h1: 4.4rem;
  --font-size-h2: 3.8rem;
  --font-size-h3: 3.2rem;
  --font-size-h4: 2.5rem;
  --font-size-h5: 2rem;
  --font-size-h6: 1.8rem;
  --font-size-base: 1.5rem;
  --font-size-sm: 1.2rem;
  /* line-height */
  --line-height-h1: 1;
  --line-height-h2: 1;
  --line-height-h3: 1;
  --line-height-h4: 1.6;
  --line-height-h5: 1.25;
  --line-height-h6: 1.3888889;
  --line-height-base: 2;
  --line-height-sm: 1.66667;
  /* letter-spacing */
  --letter-spacing-sm: 0.05em;
  --letter-spacing-base: 0.1em;
  --letter-spacing-lg: 0.15em;
}
@media screen and (max-width: 767px) {
  :root {
    --font-size-h1: 4.2rem;
    --font-size-h2: 3.6rem;
    --font-size-h3: 3.2rem;
    --font-size-h4: 2.4rem;
    --line-height-h4: 1.25;
    --letter-spacing-lg: 0.12em;
  }
}

/*****共通*******/
.sp-none {
  display: none !important;
}

/*==============================================
ここから下がドロワー設定項目
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.sp-menu-btn {
  width: 5.6rem;
  height: 5.6rem;
}
.sp-menu-btn__wrapper {
  top: 1.2rem;
  right: 1.5rem;
  bottom: auto;
  left: auto;
  background: var(--color-green);
  border-radius: 0.4rem;
}
.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: var(--color-beige);
}
#drawer__nav .drawer__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 14.3rem;
  margin-left: -5vw;
  margin-bottom: 3rem;
}
#drawer__nav #nav .drawer__link {
  padding: 1.25em 1em;
  border-bottom: 2px dashed var(--color-border);
  font-size: var(--font-size-h6);
  font-family: var(--font-family-noto);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  line-height: var(--line-height-h6);
  letter-spacing: var(--letter-spacing-base);
  text-decoration: none;
}
#drawer__nav #nav .drawer__link:hover, #drawer__nav #nav .drawer__link.current {
  color: var(--color-orange);
}
#drawer__nav #nav .drawer__link--dropdown:before {
  background: var(--color-text);
}
#drawer__nav #nav .drawer__link--dropdown:after {
  background: var(--color-text);
}
/*original custom code
-----------------------------------------*/
.drawer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 3rem;
  padding: 4rem 0;
}

/*sns
---------------------------*/
.drawer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.drawer__sns li {
  width: 40px;
}

/*電話番号
---------------------------*/
/*オフィシャルサイトボタン
---------------------------*/
.drawer__btn {
  width: 25.6rem;
}