@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #271e1a;
  --color-white: #ffffff;
  --color-orange: #e4a52a;
  --color-fontorange: #e39b00;
  --color-beige: #f7f5e1;
  --color-graypink: #eae0e7;
  --color-pink: #e9c9d1;
  --color-lightpink: #f2ecf1;
  /*カレントカラー*/
  --color-current: #e39b00;
  /*テキストリンクカラー*/
  --color-textlink: #e39b00;
  /*必須ボタンカラー*/
  --color-required: #e4a52a;
  /*ラジオボタンカラー*/
  --color-radio: #e4a52a;
  /*チェックボタンカラー*/
  --color-check: #e4a52a;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Old Mincho", serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  --font-family-lato: "Lato", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.7rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.471; /*fz:17 lh:42*/
  /*その他行間*/
  --line-height-sm: 2.667; /*fz:15 lh:40*/
  --line-height-md: 2.5; /*fz:20 lh:50*/
  --line-height-lg: 2.25; /*fz:16 lh:36*/
  --line-height-xl: 1.765; /*fz:17 lh:30*/
  --line-height-xxl: 1.4; /*fz:20 lh:28*/
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.05em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #271e1a;
  --color-white: #ffffff;
  --color-orange: #e4a52a;
  --color-fontorange: #e39b00;
  --color-beige: #f7f5e1;
  --color-graypink: #eae0e7;
  --color-pink: #e9c9d1;
  --color-lightpink: #f2ecf1;
  /*カレントカラー*/
  --color-current: #e39b00;
  /*テキストリンクカラー*/
  --color-textlink: #e39b00;
  /*必須ボタンカラー*/
  --color-required: #e4a52a;
  /*ラジオボタンカラー*/
  --color-radio: #e4a52a;
  /*チェックボタンカラー*/
  --color-check: #e4a52a;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Old Mincho", serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  --font-family-lato: "Lato", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.7rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.471; /*fz:17 lh:42*/
  /*その他行間*/
  --line-height-sm: 2.667; /*fz:15 lh:40*/
  --line-height-md: 2.5; /*fz:20 lh:50*/
  --line-height-lg: 2.25; /*fz:16 lh:36*/
  --line-height-xl: 1.765; /*fz:17 lh:30*/
  --line-height-xxl: 1.4; /*fz:20 lh:28*/
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.05em;
}

/*opacity含めたカラー指定あればここで定義*/
/*==============================
  ドロワ―のスタイル変更はこのファイルのみで行う
==============================*/
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-wrp {
  top: 1.5rem;
  right: 1.5rem;
  bottom: auto;
  left: auto;
  /* ドロワボタンカラー */
  background: var(--color-orange);
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 7rem;
  height: 7rem;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 45%;
  height: 2px;
  /* ドロワボタンラインカラー */
  background: var(--color-white);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 31%;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 65%;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: #fff;
}

/*	drawer inbox
------------------------------------ */
#drawer-nav {
  padding: 5%;
  background-color: #fff;
}
#drawer-nav .logo {
  margin-bottom: 4rem;
}
#drawer-nav #nav .drawer-item {
  padding: 4% 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.8rem;
}
#drawer-nav #nav .drawer-link {
  border-bottom: none;
  font-size: inherit;
  font-family: var(--font-family-heading);
  font-weight: 700;
}
#drawer-nav #nav .drawer-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer-nav #nav .drawer-dropdown span {
  display: block;
}
#drawer-nav #nav .drawer-dropdown span:before {
  background: #000;
}
#drawer-nav #nav .drawer-dropdown span:after {
  background: #000;
}
#drawer-nav #nav .current span:after {
  opacity: 0 !important;
}
#drawer-nav #nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer-nav #nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
#drawer-nav #nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}

/*original custom code
-----------------------------------------*/
.drawer-info .tel-box {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.drawer-info .tel-box .serif {
  background-color: var(--color-beige);
  padding: 0.4rem 0.8rem;
  position: relative;
  z-index: 0;
}
.drawer-info .tel-box .serif::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 100%;
  left: 50%;
  aspect-ratio: 5/4;
  width: 0.8rem;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--color-beige);
}
.drawer-info .sns__list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.drawer-info .sns__item {
  width: 40px;
}
.drawer-info .mail-btn {
  margin-top: 5rem;
  margin-inline: auto;
}