@charset "UTF-8";
/* SCSSの読み込み */
/*===============================
  カラー変数
=================================*/
/*===============================
  フォント変数
=================================*/
/* font-family */
/* font-weight */
/* 行間削除 */
/*===============================
  Bootstrap icon変数
=================================*/
:root {
  /* カラー */
  --color-text: #4b2308;
  --color-white: #fff;
  --color-red: #921823;
  --color-bg: #faf7f0;
  --color-link: #1b4d72;
  /* font-family */
  --font-family-noto: "Noto Serif JP", serif;
  --font-family-body: "Shippori Mincho B1", 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;
  /* 背景パターン */
  --pattern-bg: url(../img/common/pt-bg.png);
  /* フォントサイズ */
  --font-size-h1: 5.6rem;
  --font-size-h2: 4.8rem;
  --font-size-h3: 4rem;
  --font-size-h4: 2.8rem;
  --font-size-h5: 2.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.25;
  --line-height-h3: 1.5;
  --line-height-h4: 1.428572;
  --line-height-h5: 1.363637;
  --line-height-h6: 1.5;
  --line-height-base: 1.875;
  --line-height-sm: 1.714286;
  --line-height-xs: 1.6666667;
  /* letter-spacing */
  --letter-spacing-lg: 0.15em;
  --letter-spacing-base: 0.1em;
  --letter-spacing-min: 0.05em;
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 4rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2.8rem;
    --font-size-h4: 2.5rem;
    --font-size-h5: 2rem;
    /* line-height */
    --line-height-h4: 1.6;
    --line-height-h5: 1.5;
  }
}

/*****共通*******/
body {
  font-size: 16px;
}

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

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

/*==============================================
ここから下がドロワー設定項目
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.sp-menu-btn {
  width: 5.6rem;
  aspect-ratio: 1;
}
.sp-menu-btn__wrapper {
  top: 1.2rem;
  right: 1.5rem;
  bottom: auto;
  left: auto;
  background: var(--color-red);
  border-radius: 0.8rem;
}
.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 6% 5%;
  background: var(--pattern-bg);
}
#drawer__nav .drawer__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding-top: 1.5rem;
  margin-bottom: 4rem;
}
#drawer__nav .drawer__logo img {
  width: max(56px, 6.3rem);
}
#drawer__nav #nav .drawer__link {
  padding: 1.25em 1em;
  border-bottom: 1px solid var(--color-red);
  font-size: var(--font-size-h6);
  font-family: var(--font-family-body);
  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-text);
}
#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: 5rem;
}

/*電話番号
---------------------------*/
.drawer__tel .com-tel-num span {
  font-size: var(--font-size-h2);
}

/*mail
---------------------------*/
.drawer__mail {
  width: 30rem;
  height: 7rem;
  font-size: var(--font-size-h6);
}
.drawer__mail::before {
  font-size: var(--font-size-base);
}