@charset "UTF-8";
/* SCSSの読み込み */
/* font-weight */
:root {
  /* カラー */
  --color-text: #171616;
  --color-mos: #506627;
  --color-green: #85a941;
  --color-wakaba: #deedb1;
  --color-pink: #ffc0cc;
  --color-sakura: #faf3f6;
  /* font-family */
  --font-family-noto: "Noto Serif JP", serif;
  --font-family-shippori: "Shippori Mincho B1", serif;
  --font-family-icon: bootstrap-icons;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  /* アイコン */
  --icon-mail: "";
  --icon-tel: "";
  --icon-window: "";
  --icon-arrow: "";
  --icon-arrow-bottom: "";
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 6.4rem;
    --font-size-h2: 5rem;
    --font-size-h3: 4rem;
    --font-size-h4: 3.2rem;
    --font-size-h5: 2.6rem;
    --font-size-h6: 2.2rem;
    --font-size-base: 1.7rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
    /* line-height */
    --line-height-h1: 1;
    --margin-height-h1: -0.0em;
    --line-height-h2: 1;
    --margin-height-h2: -0.0em;
    --line-height-h3: 1.5;
    --margin-height-h3: -0.25em;
    --line-height-h4: 1.40625;
    --margin-height-h4: -0.203125em;
    --line-height-h5: 1.73077;
    --margin-height-h5: -0.365385em;
    --line-height-h6: 1;
    --margin-height-h6: -0.0em;
    --line-height-base: 2.352942;
    --margin-height-base: -0.676471em;
    --line-height-sm: 1.428572;
    --margin-height-sm: -0.214286em;
    --line-height-xs: 1.6666667;
    /* letter-spacing */
    --letter-spacing-base: 0.05em;
  }
}
@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;
    /* letter-spacing */
    --letter-spacing-base: 0.05em;
  }
}
/*****共通*******/
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-green);
  border-radius: 4px;
}

.sp-menu-btn {
  width: min(63px, 14vw);
  height: min(63px, 14vw);
}

.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: rgba(250, 243, 246, 0.95);
}
#drawer__nav .drawer__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: min(180px, 40vw);
  margin-left: -5vw;
  margin-bottom: 40px;
}
#drawer__nav #nav .drawer__link {
  padding: 1.5em 1em;
  border-bottom: 1px solid var(--color-green);
  font-size: var(--font-size-h6);
  font-family: var(--font-family-shippori);
  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, #drawer__nav #nav .drawer__link[aria-current=page] {
  color: var(--color-green);
}
#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.5em;
  padding: 2.5em 0;
  position: relative;
  z-index: 0;
}
.drawer__info::after {
  content: "";
  width: 95%;
  max-width: 385px;
  height: min(54px, 12vw);
  background: url(../img/common/header_cat.png) no-repeat right bottom/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: min(9px, 2vw);
  z-index: -1;
}

/*電話番号
---------------------------*/
/*住所
---------------------------*/
.drawer__add {
  text-align: center;
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-base);
}