@charset "utf-8";

/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Zen Kaku Gothic New" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Zen+Kaku+Gothic+New
*/
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/ZKG-400.woff2") format("woff2"), url("fonts/ZKG-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/ZKG-700.woff2") format("woff2"), url("fonts/ZKG-700.woff") format("woff");
  font-display: swap;
}

/*---------------------------------------------
    base settings
*/
:root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
  --s13: calc(var(--s1) * 13);
  --s14: calc(var(--s1) * 14);

  /* Color settings */
  /* Primary Colors（メインカラー:サイトの印象を決める色） */
  --pri-dark: #20316a; /* メインの濃い色 */
  --pri: #173595; /* メインの明るめの色 */

  /* Secondary Colors（サブカラー:サイトの印象を決める色） */
  --sec-dark: #333333; /* サブの濃い色 */
  --sec: #1a1a1a; /* サブの明るい色 */

  /* Accent Colors（アクセントカラー:CV要素の強調） */
  --acc-dark: #a75836; /* アクセントの濃い色 */
  --acc: #c06c47; /* アクセントの明るい色 */

  /* Background Colors（背景色） */
  --bg-base: #fff; /* 最も広い面積に使用 */
  --bg-pri: #e7e9ef; /* メイン近似の背景色 */
  --bg-sec: #eaeaea; /* サブ近似の背景色 */
  --bg-sub: #f8f8f8; /* 補助用の背景色 */
  --bg-emp: #333333; /* 文字色反転用背景 */

  /* Text Colors（文字色） */
  --txt-main: #333333; /* 本文 */
  --txt-sub: #777; /* 注釈・キャプション用 */
  --txt-emp: #20316a; /* 強調用 */
  --txt-white: #f2f2f2; /* 文字色反転用 */

  /* Border Colors */
  --line: #cccccc; /* 罫線 */

  /* Base Colors */
  --black: #000;
  --white: #fff;
  --gray: #999;
  --shadow: rgba(0, 0, 0, 0.16);
  --sd: 0 4px 8px rgba(0, 0, 0, 0.06), 0 8px 16px rgba(0, 0, 0, 0.04);
}

@media screen and (max-width: 1000px) {
  :root {
    font-size: 1vw;
    --s1: 0.6rem;
  }
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-base);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  color: var(--txt-main);
  min-width: 1100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul,
ol,
dl,
p,
img,
form,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  border: 0;
}

ul li,
ol li {
  list-style: none;
  position: relative;
}

ul:not([class]) li {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

ul:not([class]) li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--pri);
  position: absolute;
  bottom: calc(100% - 1.2em);
  left: 0.2em;
}

ol:not([class]) li {
  padding-left: 1.5em;
  margin-bottom: 1em;
  counter-increment: number;
}

ol:not([class]) li::before {
  content: counter(number) ".";
  width: 1.6rem;
  color: var(--pri);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: -0.1rem;
  left: 0;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

a {
  color: inherit;
  transition: opacity 0.6s ease, color 0.6s ease;
}

a:active,
a:hover {
  text-decoration: none;
  opacity: 0.6;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-weight: normal;
}

small {
  font-size: 80%;
}

p:not([class]) {
  line-height: 2;
}

p + p {
  margin-top: 0.6em;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

@media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
}

/*---------------------------------------------
    Emphasize 
*/
.marker {
  font-weight: 700;
  background: linear-gradient(transparent calc(100% - 30%), #e7eb71 calc(100% - 30%));
}

.txt_bold {
  font-weight: 700;
  color: var(--pri);
}

/*---------------------------------------------
    layout center
*/
.l-center {
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
#low-page.l-center {
  max-width: 100rem;
}
/*---------------------------------------------
    layout stack
*/
.l-stack {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  align-items: stretch;
}

.l-stack-small {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.l-stack-xsmall {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.l-stack-large {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.l-stack-xlarge {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
}

/*---------------------------------------------
    layout cluster
*/
.l-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: center;
}

/*---------------------------------------------
    layout grid
*/

.l-grid-two,
.l-grid-two-flex {
  --minimum: calc((100% - var(--s5)) / 2);
  display: grid;
  grid-gap: var(--s4) var(--s5);
}

.l-grid-two-large {
  --minimum: calc((100% - var(--s4)) / 2);
  display: grid;
  grid-gap: var(--s4);
}

.l-grid-three,
.l-grid-three-flex {
  --minimum: calc((100% - var(--s3) * 2) / 3);
  display: grid;
  grid-gap: var(--s3);
}

.l-grid-four,
.l-grid-four-flex {
  --minimum: calc((100% - var(--s2) * 3) / 4);
  display: grid;
  grid-gap: var(--s2);
}

@supports (width: min(var(--minimum), 100%)) {
  .l-grid-two,
  .l-grid-two-flex,
  .l-grid-two-large,
  .l-grid-three,
  .l-grid-three-flex,
  .l-grid-four,
  .l-grid-four-flex {
    grid-template-columns: repeat(auto-fit, minmax(min(var(--minimum), 100%), 1fr));
  }
}

.column-medium {
  padding: var(--s3);
}

.column-small {
  padding: var(--s2);
}

.column-xsmall {
  padding: var(--s1);
}

/*---------------------------------------------
    layout column
*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}

.l-column__side {
  width: calc((100% - var(--s5)) * 0.4);
}

.l-column__main {
  width: calc((100% - var(--s5)) * 0.6);
}

.l-column--row-reverse {
  flex-direction: row-reverse;
}

/*---------------------------------------------
    layout float
*/
.l-float {
  display: flow-root;
}

.l-float__left-pc {
  width: 40rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}

.l-float__right-pc {
  width: 40rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}

.l-float__center {
  width: 64rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}

.l-float__left {
  width: 40rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}

.l-float__right {
  width: 40rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}

/*---------------------------------------------
    layout scroll x
*/
.l-scroll-x {
  width: 100%;
  padding-bottom: 0.6rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

/* chrome safari */
.l-scroll-x::-webkit-scrollbar {
  height: 0.6rem;
}

.l-scroll-x::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}

.l-scroll-x::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

.l-scroll-x table {
  width: inherit;
}

.l-scroll-x table th,
.l-scroll-x table td {
  min-width: 20rem;
}

/*---------------------------------------------
    layout header
*/
.l-header {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*---------------------------------------------
    layout gnavi
*/
.l-gnavi {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.l-gnavi::-webkit-scrollbar {
  display: none;
}

/*---------------------------------------------
    toggle sp
*/
.toggle-sp-content {
  display: block;
}

/*---------------------------------------------
    pankuzu
*/
#pankuzuWrap {
  margin: 0;
  background: var(--bg-sub);
}

#pankuzu {
  font-size: 1.3rem;
  padding: 1.2rem 0;
  line-height: 1.4;
}

#pankuzu a {
  color: inherit;
  text-decoration: underline;
}

#pankuzu a:hover {
  text-decoration: none;
}

#pankuzu span {
  color: inherit;
  font-weight: inherit;
}

/*---------------------------------------------
    low-page common heading
*/
#low-page h1:not([class]) {
  width: 100%;
  padding-bottom: var(--s4);
  font-size: 4rem;
  font-weight: 700;
  text-align: left;
  color: var(--sec);
  position: relative;
  margin: var(--s7) 0;
  border-bottom: 0.1rem solid var(--bg-sec);
}

#low-page h1:not([class])::before {
  content: "CONTENTS";
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--txt-sub);
  margin-bottom: var(--s1);
  position: relative;
  padding-left: var(--s3);
}

#low-page h1:not([class])::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--pri);
  position: absolute;
  top: 0.45em;
  left: 0;
  z-index: 3;
}

#low-page h2:not([class]) {
  width: 100%;
  margin-block: var(--s8) var(--s4);
  padding: 0 var(--s2);
  font-size: 3.2rem;
  font-weight: 700;
  border-left: 1rem solid var(--pri);
  line-height: 1.6;
}

#low-page h3:not([class]) {
  width: 100%;
  margin-block: var(--s5) var(--s3);
  padding: var(--s1) var(--s3);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  background: var(--bg-sec);
}

#low-page h4:not([class]) {
  width: 100%;
  margin-block: 3rem 2rem;
  padding: var(--s1) 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  border-bottom: 1px solid var(--bg-sec);
}

#low-page h5:not([class]) {
  width: 100%;
  margin-block: 3rem 2rem;
  padding-left: var(--s3);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  background: url(img/circle.svg) no-repeat top 0.6em left / 1rem;
}

#low-page h2:not([class]) a,
#low-page h3:not([class]) a,
#low-page h4:not([class]) a,
#low-page h5:not([class]) a {
  display: inline-block;
  padding-right: 1.6em;
  text-decoration: none;
  background: url("./img/arrow-01-black-right.svg") no-repeat center right / auto 0.5em;
}

/* ホバー状態も一括指定 */
#low-page h2:not([class]) a:hover,
#low-page h3:not([class]) a:hover,
#low-page h4:not([class]) a:hover,
#low-page h5:not([class]) a:hover {
  opacity: 0.6;
}
/*---------------------------------------------
center-img
*/
.low-center-img {
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: var(--s2);
  text-align: center;
}

/*---------------------------------------------
left-img
*/

.low-left-img {
  width: 40%;
  margin-right: var(--s4);
  padding-bottom: var(--s1);
  text-align: center;
  float: left;
}

/*---------------------------------------------
right-img
*/

.low-right-img {
  width: 40%;
  margin-left: var(--s3);
  padding-bottom: var(--s1);
  text-align: center;
  float: right;
}

/*---------------------------------------------
    Caption settings
*/
.caption {
  margin-top: 0.8em;
  color: var(--txt-sub);
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  word-break: break-all;
}

.caption a {
  color: var(--txt-sub);
}

.caption--right {
  text-align: right;
}
.caption--left {
  text-align: left;
}

.caption-scroll {
  margin-top: 0.8em;
  color: var(--txt-sub);
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  /* chrome safari */
}

.caption-scroll a {
  color: var(--txt-sub);
}

.caption-scroll::-webkit-scrollbar {
  height: 0.6rem;
}

.caption-scroll::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}

.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

/*---------------------------------------------
    Table settings
*/
table {
  width: 100%;
  line-height: 1.5;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}

table th,
table td {
  padding: var(--s1);
  border-bottom: 1px solid var(--line);
  word-break: break-word;
}

table th {
  text-align: left;
  word-break: auto-phrase;
}

/*---------------------------------------------
    low-page table
*/
#low-page table {
  margin-block: 4rem;
}

/*---------------------------------------------
    low-page list
*/
#low-page ul:not([class]),
#low-page ol:not([class]) {
  margin-block: 4rem;
}

/*---------------------------------------------
    Button Internal settings
*/
.btn-internal a {
  background: url(./img/arrow-01-wht-right.svg) no-repeat center right 1.4em / auto 0.7em, linear-gradient(to right, var(--pri), var(--pri-dark));
}

/*---------------------------------------------
    Button anchor settings
*/
.btn-anchor a {
  padding: var(--s2) var(--s6) var(--s2) var(--s5);
  background: url("./img/arrow-01-wht-down.svg") no-repeat center right 2rem / auto 0.8em, linear-gradient(to right, #999, #666);
}

/*---------------------------------------------
    Button Web settings
*/
.btn-web {
  z-index: 5;
}

.btn-web a {
  padding: var(--s2) var(--s2) var(--s2) var(--s7);
  background: url("./img/icon-web.svg") no-repeat center right 2.5rem / auto 1em, linear-gradient(to right, var(--acc), var(--acc-dark));
}

/*---------------------------------------------
    Text Link settings
*/
.btn-link {
  text-align: right;
}

.btn-link a {
  margin: 0;
  padding: var(--s1) var(--s3) var(--s-2) 0;
  background: url("./img/arrow-01-black-right.svg") no-repeat bottom 0.7em right/auto 0.5em;
  display: inline-block;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-link a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.1rem;
  background: var(--sec);
  transition: width 0.3s ease;
}

.btn-link a:hover {
  opacity: 1;
}

.btn-link a:hover::before {
  width: 100%;
}

/*---------------------------------------------
    Tel Link settings
*/
.btn-tel {
  display: none;
}

/*---------------------------------------------
    Common Footer styles
*/
/* 共通のフッターメニュー項目スタイル */
.footer-menu__item,
.footer-menu-sub__item {
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-menu__item::before,
.footer-menu-sub__item::before {
  display: none;
}

/* 共通のフッターリンクスタイル */
.footer-menu-title__link,
.footer-menu__link,
.footer-menu-sub__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}

/* 共通のフッター下部要素スタイル */
.footer-copyright,
.footer-sitemap,
.footer-nocopy {
  font-size: 1.2rem;
}

.footer-copyright__link,
.footer-sitemap__link {
  color: var(--white);
  text-decoration: none;
}

/*---------------------------------------------
  footer
*/
.footer-area {
  padding: var(--s5) 0 0;
  background: var(--bg-sec);
  position: relative;
}
.footer-area a:hover {
  opacity: 0.6;
  transition: 0.2s;
}

.footer-area-logo {
  width: 32rem;
  max-width: 100%;
  margin: 0 auto var(--s5);
}

.footer-area-logo a {
  display: block;
}

.footer-main {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

.footer-bottom {
  padding: var(--s2) 0;
  background: #000;
  color: var(--white);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-box + .footer-box {
  margin-top: var(--s5);
}

.footer-menu-title {
  margin-bottom: var(--s1);
  border-bottom: 1px solid #000;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

.footer-menu__item {
  width: calc((100% - var(--s2) * 3) / 4);
}

.footer-menu-sub {
  margin-left: var(--s1);
}

.footer-menu-sub__link {
  padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
  position: relative;
}

.footer-menu-sub__link::before {
  content: "└";
  position: absolute;
  top: var(--s-2);
  left: 0;
}

.footer-disclaimer {
  width: 70rem;
  margin: var(--s5) auto;
  padding: var(--s2) var(--s4);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-disclaimer__label,
.footer-disclaimer__text {
  display: inline;
}

.footer-nocopy {
  margin: var(--s5) 0;
  text-align: center;
}

.footer-sitemap__link {
  padding: 0 1.5em 0 0;
  line-height: 1;
  background: url("./img/arrow-01-right.svg") no-repeat center right/auto 0.6em;
}

/*---------------------------------------------
  Page top Button
*/
.page-top {
  width: 6rem;
  height: 6rem;
  position: fixed;
  right: var(--s4);
  bottom: var(--s7);
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.page-top.js-show {
  opacity: 1;
}

.page-top__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/*---------------------------------------------
    Common Button styles
*/
/* 共通のボタンコンテナスタイル */
.btn-internal,
.btn-anchor,
.btn-web,
.btn-tel {
  max-width: 46rem;
  width: 100%;
  margin: var(--s5) auto;
  position: relative;
}

/* 共通のボタンリンクスタイル */
.btn-internal a,
.btn-anchor a,
.btn-web a,
.btn-tel a {
  width: 100%;
  margin: 0;
  display: block;
  color: var(--white);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
  padding: var(--s2) var(--s6) var(--s2) var(--s5);
  border-radius: 50vh;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 共通のホバーエフェクト */
.btn-internal:hover a,
.btn-anchor:hover a,
.btn-web:hover a {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08), 0 0.8rem 1.6rem rgba(0, 0, 0, 0.06);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  /*---------------------------------------------
      sp base settings
  */
  :root {
    font-size: 2.6666666667vw;
  }

  body {
    min-width: auto;
    font-size: 1.4rem;
  }

  .sp_br {
    display: inline;
  }

  .pc_br,
  .for-pc {
    display: none;
  }

  /*---------------------------------------------
      sp layout center
  */
  .l-center {
    padding-right: calc(var(--s1) + var(--s-2));
    padding-left: calc(var(--s1) + var(--s-2));
    box-sizing: border-box;
  }

  /*---------------------------------------------
      sp layout cluster
  */
  .l-cluster {
    gap: var(--s1);
    flex-flow: column;
  }

  /*---------------------------------------------
      sp layout grid
  */
  .l-grid-two,
  .l-grid-two-large {
    grid-template-columns: 100%;
  }

  .l-grid-three {
    grid-template-columns: 100%;
  }

  .l-grid-four {
    grid-template-columns: 100%;
  }

  .l-grid-two-flex,
  .l-grid-three-flex,
  .l-grid-four-flex {
    --minimum: calc((100% - var(--s2)) / 2);
  }

  /*---------------------------------------------
      sp toggle sp
  */
  .toggle-sp-content {
    display: none;
  }

  /*---------------------------------------------
      sp layout column
  */
  .l-column {
    gap: var(--s2);
  }

  .l-column__side {
    width: 100%;
  }

  .l-column__main {
    width: 100%;
  }

  /*---------------------------------------------
      sp layout float
  */
  .l-float__left-pc {
    width: 100%;
    margin-right: 0;
    float: none;
  }

  .l-float__right-pc {
    width: 100%;
    margin-left: 0;
    float: none;
  }

  .l-float__center {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .l-float__left {
    width: 45%;
    margin-right: var(--s2);
    margin-bottom: var(--s1);
  }

  .l-float__right {
    width: 45%;
    margin-left: var(--s2);
    margin-bottom: var(--s1);
  }

  /*---------------------------------------------
      sp layout scroll
  */
  .l-scroll-x-sp {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow: hidden;
    overflow-x: scroll;
    overflow-y: visible;
    /* chrome safari */
  }

  .l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
  }

  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
  }

  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
  }

  /*---------------------------------------------
    pankuzu
  */
  #pankuzuWrap {
    position: relative;
    overflow: auto;
    margin: 0 auto var(--s3);
    padding: 1rem 0;
    white-space: nowrap;
  }

  #pankuzu {
    padding: 0.7rem 0;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    line-height: 1.2;
  }

  #pankuzu a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }

  #pankuzu a:hover {
    text-decoration: underline;
  }

  #pankuzu span:last-child {
    margin-right: calc(var(--s1) + var(--s-2));
  }

  #pankuzu a span:last-child {
    margin-right: 0;
  }

  /*---------------------------------------------
    low-page common heading
  */
  #low-page h1:not([class]) {
    padding: var(--s2);
    font-size: 2.4rem;
    line-height: 1.5;
    margin: 5rem auto;
  }

  #low-page h1:not([class])::before {
    font-size: 1.8rem;
    padding-left: var(--s1);
  }

  #low-page h1:not([class])::after {
    top: 0.9em;
    width: 0.8rem;
    height: 0.8rem;
  }

  #low-page h2:not([class]) {
    font-size: 2.1rem;
  }

  #low-page h3:not([class]) {
    font-size: 2.1rem;
    border-bottom: 3px solid #818181;
  }

  #low-page h4:not([class]) {
    font-size: 1.8rem;
  }

  #low-page h5:not([class]) {
    font-size: 1.8rem;
  }

  /*---------------------------------------------
  center-img
  */
  .low-center-img {
    max-width: 100%;
  }

  /*---------------------------------------------
  left-img
  */
  .low-left-img {
    width: 100%;
    margin-right: 0;
    padding-bottom: var(--s2);
    float: inherit;
    text-align: center;
  }

  /*---------------------------------------------
  right-img
  */
  .low-right-img {
    width: 100%;
    margin-left: 0;
    padding-bottom: var(--s2);
    float: inherit;
    text-align: center;
  }

  /*---------------------------------------------
      sp table
  */
  .sp-table-vertical th,
  .sp-table-vertical td {
    width: 100%;
    display: block;
  }

  .table-label thead {
    display: none;
  }

  .table-label tbody th {
    background: var(--bg-base);
  }

  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }

  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #efefef;
    border-right: solid 1px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    text-align: center;
  }

  .table-label__cell {
    padding: var(--s1) var(--s2);
  }

  .l-scroll-x table thead,
  .l-scroll-x-sp table thead {
    display: table-header-group;
  }

  .l-scroll-x table tbody,
  .l-scroll-x-sp table tbody {
    display: table-row-group;
  }

  .l-scroll-x table tr,
  .l-scroll-x-sp table tr {
    display: table-row;
  }

  .l-scroll-x table th,
  .l-scroll-x table td,
  .l-scroll-x-sp table th,
  .l-scroll-x-sp table td {
    width: inherit;
    min-width: 15rem;
    display: table-cell;
  }

  .l-scroll-x-sp table {
    width: inherit;
  }

  /*---------------------------------------------
      Button Internal settings
  */
  .btn-internal {
    margin: var(--s3) auto;
  }

  .btn-internal:hover a {
    transform: none;
  }

  /*---------------------------------------------
      Button anchor settings
  */
  .btn-anchor {
    margin: var(--s3) auto;
  }

  .btn-anchor a {
    padding: var(--s2) var(--s3) var(--s2) var(--s1);
    background: #818181 url("./img/arrow-01-wht-down.svg") no-repeat center right 0.8rem / auto 0.8em;
  }

  .btn-anchor:hover a {
    transform: none;
  }

  /*---------------------------------------------
      Button Web settings
  */
  .btn-web {
    margin: var(--s3) auto;
  }

  .btn-web:hover a {
    transform: none;
  }
  #index .btn-internal,
  #index .btn-anchor,
  #index .btn-web,
  #index .btn-tel,
  .bg-01 .btn-internal,
  .bg-01 .btn-anchor,
  .bg-01 .btn-web,
  .bg-01 .btn-tel {
    max-width: 32rem;
    margin: 0 auto;
  }

  /*---------------------------------------------
  	Btn Link settings
  */
  .btn-link {
    width: 95%;
    margin: var(--s1) auto;
  }

  .btn-link a {
    border-radius: 50vh;
    padding: var(--s2) var(--s5);
    border: 1px solid #000;
    background: url("./img/arrow-01-black-right.svg") no-repeat 95% center/auto 0.6em;
    text-align: center;
    line-height: 1.5;
    display: block;
    text-decoration: none;
  }

  .btn-link a:hover {
    opacity: 1;
  }

  .btn-link:hover a {
    transform: none;
  }

  /*---------------------------------------------
  	Button Tel settings
  */
  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }

  .btn-tel a {
    width: 100%;
    margin: 0 auto;
    /* padding: 1.4rem 4rem; */
    background: var(--bg-pri) url(./img/icon-tel.svg) no-repeat center right 1.7em / auto 1.5em;
    color: var(--pri-dark);
    display: block;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s;
  }

  .btn-tel:hover a {
    transform: none;
    opacity: 1;
  }

  /*---------------------------------------------
  	footer
  */
  .footer-area {
    padding: var(--s3) 0 0;
    /* margin-top: var(--s12); */
  }

  .footer-area a:hover {
    opacity: 1;
    transition: unset;
  }

  .footer-main {
    padding-right: 0;
    padding-left: 0;
    box-sizing: border-box;
  }

  .footer-bottom {
    padding: var(--s1) 0;
  }

  .footer-logo {
    margin: var(--s3) var(--s1);
    font-size: 1.8rem;
  }

  .footer-box + .footer-box {
    margin-top: var(--s2);
  }

  .footer-menu-title {
    margin-bottom: 0;
  }

  .footer-menu-title__link {
    padding: var(--s1) var(--s4) var(--s1) var(--s2);
    position: relative;
  }

  .footer-menu-title__link::after {
    content: "";
    width: var(--s3);
    height: 100%;
    background: url("./img/arrow-01-black-down.svg") no-repeat center/0.6em;
    position: absolute;
    top: 0;
    right: var(--s2);
    transform: rotate(0);
    transition: transform 0.3s;
  }

  .footer-menu-title__link.is-open::after {
    transform: rotate(180deg);
  }

  .footer-menu-title__link--not-toggle::after {
    background: url("./img/arrow-01-black-right.svg") no-repeat center/auto 0.6em;
  }

  .footer-menu {
    padding: var(--s1) 0;
    background: rgba(255, 255, 255, 0.8);
    gap: 0;
  }

  .footer-menu__item {
    width: 100%;
  }

  .footer-menu__link {
    padding: var(--s1) var(--s2);
    background: url("./img/arrow-01-black-right.svg") no-repeat 95% center/auto 1em;
  }

  .footer-menu-sub {
    margin-left: var(--s2);
  }

  .footer-menu-sub__link {
    padding: var(--s1) var(--s2) var(--s1) 1.1em;
  }

  .footer-menu-sub__link::before {
    top: var(--s1);
  }

  .footer-disclaimer {
    width: calc(100% - var(--s2));
    margin: var(--s2) auto;
    padding: var(--s1) var(--s2);
  }

  .footer-nocopy {
    margin: var(--s2) var(--s1);
    font-size: 1rem;
  }

  .footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .footer-sitemap {
    display: none;
  }

  .page-top {
    width: 4rem;
    height: 4rem;
    right: var(--s1);
    bottom: var(--s3);
  }

  .page-top__link {
    background-size: 1.5rem auto;
  }
}

/*---------------------------------------------
    Common image styles
*/
/* 共通の画像ボックススタイル */
.low-center-img-box,
.low-left-img-box,
.low-right-img-box {
  display: flow-root;
  margin-block: var(--s7);
}

/* 共通の画像スタイル */
.low-center-img,
.low-left-img,
.low-right-img {
  padding-bottom: var(--s1);
  text-align: center;
}

/* 共通のキャッチコピースタイル */
.low-center-img-catch,
.low-left-img-catch,
.low-right-img-catch {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pri);
  margin-bottom: var(--s1);
  line-height: 1.6;
}
