@charset "UTF-8";
/*------------------------------------------------------------
	カラー
------------------------------------------------------------*/
/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/
/*------------------------------------------------------------
	ブレイクポイント
	デザイン幅：PC 1512px / SP 375px　1rem = 10px
------------------------------------------------------------*/
/* タブレット：SPデザイン(375px)を1rem=15pxまで比例拡大し、
   563px以上はコンテンツ列(37.5rem=562px)を中央寄せする境界 */
/* Works / Process セクションのドット地紋
   （Figma実測：#eaeaea・直径2px・5px間隔。テクスチャなので画面幅で変えずpx固定） */
/* タブレット（SPレイアウトを中央寄せする幅） */
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* PC：デザイン幅1512pxを基準に可変（1512px以上は1rem = 10px固定） */
  /* SP・タブレット：デザイン幅375pxを基準に可変。
     375px未満は縮小、375px以上は1rem = 15px まで拡大して打ち止め
     （それ以上の幅ではコンテンツ列を中央寄せする → index.scss の @include tb） */
}
@media all and (min-width: 897px) and (max-width: 1512px) {
  html {
    font-size: calc(1000vw / 1512);
  }
}
@media all and (max-width: 896px) {
  html {
    font-size: min(1000vw / 375, 15px);
  }
}

body, table, input, textarea, select, option {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* フォーム部品は上のリセット対象に入っていないため、
   幅100%に余白と枠線が足されて親からはみ出す。ここで揃えておく */
input, textarea, select, button {
  box-sizing: border-box;
  max-width: 100%;
}

.zen {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.zenAntique {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

address {
  font-style: normal;
}

button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  /* iOS Safari はボタンの文字色を独自の青にするため明示的に継承させる */
  color: inherit;
  -webkit-text-fill-color: currentColor;
}

a {
  color: #383838;
  text-decoration: none;
  transition: 0.3s;
}
a:link, a:visited, a:active, a:hover {
  color: #383838;
}
@media all and (max-width: 896px) {
  a:hover {
    opacity: 1 !important;
  }
  a:hover img {
    opacity: 1 !important;
  }
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
  color: #383838;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background-color: #fff;
  font-feature-settings: "palt";
}
body.fixed {
  position: fixed;
  width: 100%;
  left: 0;
}
@media all and (min-width: 897px) {
  body.fixed {
    overflow-y: scroll;
  }
}

#container {
  text-align: left;
  position: relative;
  overflow: hidden;
  word-break: break-word;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

@media all and (min-width: 897px) {
  .sp {
    display: none !important;
  }
}
@media all and (max-width: 896px) {
  .pc {
    display: none !important;
  }
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader .comLogo {
  position: absolute;
  top: 2.7rem;
  left: 3rem;
  z-index: 1000;
}

.comLogo a {
  display: flex;
  align-items: center;
  height: 5.9rem;
}
.comLogo .mark {
  width: 6.0957rem;
  margin-right: 0;
}
.comLogo .txt {
  width: 24.3722rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.comLogo .txt .lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-align: center;
  line-height: normal;
}
.comLogo .txt .name {
  width: 16.2253rem;
}

/* 右上ボタン（お問い合わせ／LINE／MENU） */
.hInner {
  position: fixed;
  top: 0;
  right: 10rem; /* MENUボタン（10rem）の左に並べる */
  z-index: 1000;
  display: flex;
  align-items: center;
}

.hInner .list {
  display: flex;
  align-items: center;
}

.hInner .list a {
  width: 15rem;
  height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.136rem;
  line-height: normal;
}
.hInner .list a:link, .hInner .list a:visited, .hInner .list a:hover {
  color: #fff;
}
@media (hover: hover) {
  .hInner .list a:hover {
    opacity: 0.75;
  }
}

.hInner .list .icon {
  width: 4rem;
  height: 4rem;
  display: block;
}

.hInner .list .contact a {
  background-color: #db3333;
}

.hInner .list .line a {
  background-color: #41c15d;
}

/* ハンバーガーボタン */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  width: 10rem;
  height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 0.7rem;
  background-color: #383838;
  border-left: 2px solid #383838;
  border-bottom: 2px solid #383838;
  /* 閉：長さ40px／30pxの2本（線幅3px・間隔10px） */
  /* 開：長さ40pxの2本を±30度で交差（描画サイズ34.641×20px） */
}
.menu .bar {
  position: relative;
  display: block;
  width: 4rem;
  height: 1.3rem;
}
.menu .bar span {
  position: absolute;
  left: 0;
  display: block;
  height: 3px;
  background-color: #fff;
  transition: 0.3s;
}
.menu .bar span:nth-of-type(1) {
  top: 0;
  width: 4rem;
}
.menu .bar span:nth-of-type(2) {
  top: 1rem;
  left: auto;
  right: 0;
  width: 3rem;
}
.menu .txt {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.8rem;
  color: #fff;
}
.menu.on .bar span:nth-of-type(1) {
  top: 50%;
  width: 4rem;
  transform: translateY(-50%) rotate(30deg);
}
.menu.on .bar span:nth-of-type(2) {
  top: 50%;
  left: 0;
  right: auto;
  width: 4rem;
  transform: translateY(-50%) rotate(-30deg);
}

/*------------------------------------------------------------
	メニュー展開
	右寄せ375pxのパネル（SPは画面幅いっぱい）
------------------------------------------------------------*/
.menuBox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
}

.menuBox .menuInner {
  position: absolute;
  top: 0;
  right: 0;
  width: 37.5rem;
  height: 100%;
  /* 上余白はデザイン上60pxだが、内容がはみ出す高さの画面で
     閉じるボタン（100px）と重ならないよう10remを確保 */
  padding: 10rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  overflow-y: auto;
  background-color: rgba(56, 56, 56, 0.95);
  pointer-events: auto;
}
@media all and (max-width: 896px) {
  .menuBox .menuInner {
    width: 100%;
  }
}

.menuBox .body {
  /* 内容が画面高を超えた場合はメニュー全体をスクロールさせる */
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17rem;
}

.menuBox .navBox {
  /* 余白があれば下寄せ、足りなければ上から詰めてスクロール */
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

/* ナビゲーション */
/* 2列。上から6件ずつ縦に流すので、11件だと右列だけ5件になる */
.menuBox .naviList ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  justify-items: start;
  column-gap: 4.8rem;
  row-gap: 1.5rem;
}

.menuBox .naviList a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #fff;
  /* 英語だけでは分かりにくいので、日本語を小さく添える */
}
.menuBox .naviList a:link, .menuBox .naviList a:visited, .menuBox .naviList a:hover {
  color: #fff;
}
@media (hover: hover) {
  .menuBox .naviList a:hover {
    opacity: 0.65;
  }
}
.menuBox .naviList a .en {
  font-weight: 700;
  font-size: 2rem;
  line-height: normal;
}
.menuBox .naviList a .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: normal;
  letter-spacing: 0.055rem;
  opacity: 0.7;
}

/* お問い合わせカード */
.menuBox .cvBox {
  width: 27.5rem;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-radius: 1.5rem;
  background-color: #fff;
}

.menuBox .cvBox .ttl {
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 2.7rem;
  letter-spacing: 0.095rem;
  text-align: center;
  white-space: nowrap;
}

.menuBox .btnList {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menuBox .btnList a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem 0.7rem 2rem;
  border-radius: 5rem;
  color: #fff;
}
.menuBox .btnList a:link, .menuBox .btnList a:visited, .menuBox .btnList a:hover {
  color: #fff;
}
@media (hover: hover) {
  .menuBox .btnList a:hover {
    opacity: 0.75;
  }
}

.menuBox .btnList .contact a {
  background-color: #db3333;
}

.menuBox .btnList .line a {
  background-color: #41c15d;
}

.menuBox .btnList .icon {
  display: block;
  width: 3rem;
  height: 3rem;
}

.menuBox .btnList .txt {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: normal;
  letter-spacing: 0.12rem;
  white-space: nowrap;
}

/* 「＞」：横4px × 縦8px・線幅2pxの山形 */
.menuBox .btnList .arrow {
  display: block;
  width: 0.5657rem;
  height: 0.5657rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: content-box;
}

/* ロゴ・住所 */
.menuBox .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.menuBox .logo .mark {
  display: block;
  width: 7rem;
  height: 5.6001rem;
}

.menuBox .logo .name {
  display: block;
  width: 9.2253rem;
  height: 1.7057rem;
}

.menuBox address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.9rem;
  text-align: center;
  color: #fff;
}

/*------------------------------------------------------------
	ヘッダー（SP）
------------------------------------------------------------*/
@media all and (max-width: 896px) {
  /* MENUボタン（7rem角・画面最上部）に対して縦中央に置き、上部の余白を詰める */
  #gHeader .comLogo {
    top: 1.2rem;
    left: 2rem;
  }
  .comLogo a {
    height: auto;
    gap: 1rem;
  }
  .comLogo .mark {
    width: 4.4957rem;
  }
  .comLogo .txt {
    width: auto;
    gap: 0.6rem;
  }
  .comLogo .txt .lead {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
  .comLogo .txt .name {
    width: 11.2252rem;
  }
  /* お問い合わせ／LINEは画面下部の固定バーになる */
  .hInner {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    filter: drop-shadow(0 -4px 6px rgba(0, 0, 0, 0.25));
  }
  .hInner .list {
    width: 100%;
  }
  .hInner .list li {
    flex: 1;
  }
  .hInner .list a {
    width: 100%;
    height: 6.5rem;
    font-size: 1.6rem;
    letter-spacing: 0.128rem;
  }
  .hInner .list .icon {
    width: 3rem;
    height: 3rem;
  }
  /* ハンバーガーボタン（画面最上部にぴったり付ける） */
  .menu {
    top: 0;
    width: 7rem;
    height: 7rem;
    gap: 0.8rem;
  }
  .menu .bar {
    height: 1.1rem;
  }
  .menu .bar span:nth-of-type(2) {
    top: 0.8rem;
  }
  .menu .txt {
    font-size: 1.2rem;
  }
}
