@charset "utf-8";

/* =====================================================================
  フォント・タイポグラフィ
===================================================================== */

/* フォント読み込み */
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/ZKG-500.woff2") format("woff2"), url("fonts/ZKG-500.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/ZKG-900.woff2") format("woff2"), url("fonts/ZKG-900.woff") format("woff");
  font-display: swap;
}
/* =====================================================================
  CSS変数・トークン
===================================================================== */

: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);

  /* Font size tokens - フォントサイズ基準で整理 */
  --fs-s: clamp(1.4rem, 1.28rem + 0.53vw, 1.6rem); /* 14px -> 16px */
  --fs-m: clamp(1.8rem, 1.53rem + 0.5vw, 2rem); /* ~16.5px → 20px */
  --fs-l: clamp(2.8rem, 1.8rem + 0.6vw, 2.5rem); /* ~19.5px → 25px */
  --fs-xl: clamp(2.3rem, 2.05rem + 0.9vw, 3.1rem); /* 23px → 31px */
  --fs-2xl: clamp(2.7rem, 2.35rem + 1.1vw, 3.8rem); /* 27px → 38px */
  --fs-xxl: clamp(4.2rem, 2.76rem + 1.48vw, 4.8rem); /* 31px -> 48px */

  /* Color tokens - 配色基準で整理 */
  --c0: #f9f9f7; /* 背景ベース */
  --c1: #F0FBE0; /* 背景プライマリ（サブカラー） */
  --c2: #f6f6f6; /* 背景セカンダリ（サブカラー2） */
  --c3: #faf7f2; /* 背景サブ */
  --cE: #333; /* 背景エンファシス */

  /* テキストカラー */
  --txt: #333;
  --sub: #949494;
  --inv: #f0f0f0;
  --white: #ffffff;

  /* ライン・ボーダー */
  --ln: #cccccc;

  /* カード用カラー変数 */
  --pri: #6BC642; /* メインカラー */
  --pri-dark: #55a335; /* メインカラー（濃） */
  --sec: #cccccc;
  --sec-dark: #999999;
  --acc: #F26D3F; /* CVカラー */
  --acc-dark: #d85a2a; /* CVカラー（濃） */
  --suc: #777777;
  --lig: #eeeeee;
  --bor: #949494;
  --sha: rgba(0, 0, 0, 0.08);
  --shh: rgba(0, 0, 0, 0.12);

  /* 角丸トークン */
  --r-xs: var(--s-2); /* 極小角丸 */
  --r-sm: var(--s1); /* 小角丸 */
  --r-md: var(--s2); /* 中角丸 */
  --r-lg: var(--s3); /* 大角丸 */
  --r-xl: var(--s4); /* 特大角丸 */

  /* 影トークン */
  --sd-0: none; /* 影なし */
  --sd-1: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1); /* 軽い影 */
  --sd-2: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.15); /* 中程度の影 */
  --sd-3: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.2); /* 強い影 */
}

/* レスポンシブフォントサイズ */
@media screen and (max-width: 1000px) {
  :root {
    font-size: 1vw;
    --s1: 0.6rem;
  }
}

/* =====================================================================
  ベーススタイル・リセット
===================================================================== */

/* ベースボディスタイル */
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  -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;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

/* タイポグラフィリセット */
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: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--acc);
  position: absolute;
  bottom: calc(100% - 1.2em);
  left: 0.4em;
}

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: white;
  font-size: 1.6rem;
  background: var(--txt);
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  position: absolute;
  top: 0.5rem;
  left: 0;
}

/* フォームエレメントリセット */
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", 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: 900;
}
em {
  font-style: italic;
  font-weight: normal;
}
small {
  font-size: 80%;
}

/* 段落間隔 */
p:not([class]) {
  line-height: 1.6;
}
p + p {
  margin-top: 0.6em;
}

/* ボックスサイジング */
* {
  box-sizing: border-box;
}

/* ディスプレイユーティリティ */
.sp_br {
  display: none;
}
.pc_br {
  display: inline;
}

.for-sp {
  display: none;
}
.sp-only,
.sp_only {
  display: none;
}

.pc-only {
  display: inline;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/* 縮小クラス（汎用） */
.small {
  font-size: 80%;
}

/* テキスト強調ユーティリティ */
.marker {
  font-weight: 900;
  background: linear-gradient(var(--acc) calc(100% - 30%), var(--acc) calc(100% - 30%));
}

.txt_bold {
  font-weight: 900;
  color: var(--acc-dark);
}

/* =====================================================================
  レイアウトシステム
===================================================================== */

/* コンテナレイアウト */
.l-center,
.l-container {
  max-width: 1200px;
  box-sizing: content-box;
  margin: 0 auto;
}
/* 下層ページのみにpadding-bottomを適用 */
#low-page.l-center {
  padding-bottom: 10rem;
}

/* セクションレイアウト */
.l-sec {
  padding: var(--s14) 0;
  color: var(--txt);
}

/* スタックレイアウト */
.l-stack-xs {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.l-stack-sm {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.l-stack-m {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.l-stack-md {
  display: flex;
  flex-direction: column;
  gap: var(--s7);
}
.l-stack-l {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.l-stack-xl {
  display: flex;
  flex-direction: column;
  gap: var(--s12);
}

.l-column {
  gap: var(--s2);
}

.l-column__side {
  width: 100%;
}
.l-column__main {
  width: 100%;
}

/* グリッドレイアウト */
.l-grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.l-grid-3 {
  display: grid;
  gap: var(--s3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.l-grid-two,
.l-grid-two-large {
  display: grid;
  gap: var(--s2);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.l-grid-three {
  display: grid;
  gap: var(--s2);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.l-grid-four {
  display: grid;
  gap: var(--s2);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

@media screen and (max-width: 768px) {
  .l-grid-2,
  .l-grid-3,
  .l-grid-two,
  .l-grid-two-large,
  .l-grid-three,
  .l-grid-four {
    grid-template-columns: 1fr;
  }
}

/* クラスターレイアウト */
.l-cluster {
  gap: var(--s2);
  flex-flow: column;
}

/* フロートレイアウト */
/* =====================================================================
  画像レイアウト
===================================================================== */

/* 中央画像 */
.l-center-img {
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: var(--s2);
  text-align: center;
}

/* 左画像 */
.l-left-img {
  width: 40%;
  margin-right: var(--s8);
  padding-bottom: var(--s1);
  text-align: center;
  float: left;
}

/* 右画像 */
.l-right-img {
  width: 40%;
  margin-left: var(--s8);
  padding-bottom: var(--s1);
  text-align: center;
  float: right;
}

/* 画像ボックス */
.l-center-img-box,
.l-left-img-box,
.l-right-img-box {
  display: flow-root;
}

/* 画像キャッチコピー */
.l-center-img-catch,
.l-left-img-catch,
.l-right-img-catch {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
  color: var(--pri);
  margin-bottom: var(--s1);
  line-height: 1.6;
}

/* スクロールレイアウト */
.l-scroll-x {
  width: 100%;
  padding-bottom: 0.6rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

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

.l-scroll-x::-webkit-scrollbar-track {
  border-radius: var(--r-sm);
  background: #eee;
}

.l-scroll-x::-webkit-scrollbar-thumb {
  border-radius: var(--r-sm);
  background: #ddd;
}

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

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

/* ヘッダー・ナビゲーションレイアウト */
.l-header {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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;
}
/*
---------------------------------------------
    navigation01 ※TOP、下層共通
*/
.header-area-upper {
  padding: var(--s1);
  text-align: right;
  background: var(--c2);
}
.header-title {
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
}
.header-title::before {
  content: "PR";
  padding: 0 0.2rem;
  color: #fff;
  background-color: #333;
  transform: translateY(-50%);
  position: absolute;
  top: 20%;
  left: -1rem;
  font-size: 1.5rem;
}
.header-title a {
  text-decoration: none;
}
.header-title a:hover {
  text-decoration: underline;
}
.gnavi-ctrl {
  display: none;
}
.gnavi-btn {
  display: none;
}
.gnavi-btn-close {
  display: none;
}
.gnavi-area {
  display: none;
}
.toggle-content {
  display: none;
}
/*------------------------------------------
 Global menu settings
*/
.navigation01-menu li a:hover {
  opacity: 0.6;
}
.navigation01-menu-area {
  display: flex;
  position: relative;
  width: 100%;
  background-color: var(--c0);
  padding: var(--s2);
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.navigation01-menu-area.is-show {
  opacity: 1;
  visibility: visible;
}

.navigation01-menu {
  display: flex;
  position: relative;
  justify-content: center;
  list-style: none;
  padding: 0;
  flex: 1;
  max-width: min(60vw, 120rem);
}
.navigation01-menu li::before {
  display: none;
}
.navigation01-menu li a {
  padding: 0 var(--s1);
  display: block;
  text-decoration: none;
}
.navigation01-menu li a:hover {
  opacity: 0.6;
  background: var(--c3);
}
.navigation01-menu li {
  border-right: 1px solid var(--ln);
}
.navigation01-menu > li:last-child {
  border-right: none;
}
.navigation01-menu__logo {
  position: absolute;
  width: max(14rem, 20rem);
  height: auto;
  left: min(4%, 5%);
  top: 50%;
  transform: translateY(-50%);
}

.menu__btn {
  position: relative;
  display: block;
  max-width: 24rem;
  margin: auto;
}
/*
---------------------------------------------
    sp settings
*/
@media screen and (max-width: 767px) {
  .l-sec {
    padding: var(--s10) 0;
  }
  .gnavi-ctrl {
    display: block;
    transition: opacity 0.6s, visibility 0.6s;
    opacity: 0;
    visibility: hidden;
  }
  .gnavi-ctrl.is-show {
    opacity: 1;
    visibility: visible;
  }
  #low-header .gnavi-ctrl {
    opacity: 1;
    visibility: visible;
  }
  .gnavi-btn {
    width: var(--s7);
    height: var(--s6);
    background: var(--txt-main);
    display: block;
    position: fixed;
    top: var(--s3);
    right: 0;
    z-index: 200;
    cursor: pointer;
  }
  .gnavi-btn span {
    width: var(--s4);
    height: 0.2rem;
    display: inline-block;
    background: #fff;
    position: absolute;
    left: 1rem;
    transform-origin: center;
    transition: transform 0.4s, opacity 0.4s, top 0.4s;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.1rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 1.8rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 2.5rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    top: 1.8rem;
    transform: rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    top: 1.8rem;
    transform: rotate(45deg);
  }
  .gnavi-btn-close {
    width: 35%;
    margin: var(--s7) auto 0;
    padding: var(--s1);
    background: var(--pri);
    display: block;
    text-align: center;
    border-radius: 10px;
  }
  .gnavi-btn-close__inner {
    padding: 0 0 0 var(--s3);
    display: inline-block;
    color: #fff;
    font-weight: 900;
    position: relative;
  }
  .gnavi-btn-close__inner::before {
    content: "";
    width: 1em;
    height: 0.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(45deg);
  }
  .gnavi-btn-close__inner::after {
    content: "";
    width: 1em;
    height: 0.2rem;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(135deg);
  }
  .gnavi-area {
    width: 100%;
    height: 100vh;
    padding: var(--s3) var(--s1) var(--s10);
    display: block;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0;
  }
  .gnavi-title {
    min-height: var(--s6);
    margin: 0 var(--s8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.5;
    width: 60%;
    padding-bottom: 1rem;
  }
  .gnavi-pc {
    display: none;
  }
  .gnavi-list {
    border-bottom: 1px solid var(--pri);
    position: relative;
  }
  .gnavi-list li {
    padding-left: 0;
  }
  .gnavi-list__item::before {
    display: none;
  }
  .gnavi-list__link {
    width: 100%;
    margin: 0 auto;
    padding: var(--s2) var(--s6) var(--s2) var(--s2);
    border-top: 1px solid var(--pri);
    display: block;
    font-weight: 900;
    line-height: 2;
    text-decoration: none;
    position: relative;
  }
  .gnavi-list__link::after {
    content: "";
    width: 1.7rem;
    height: 1em;
    background: url("img/arrow_right.svg") no-repeat center/auto 1em;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
  }
  .gnavi-list__link--toggle::after {
    background-image: url("img/arrow_right.svg");
    background-size: 1.7rem 1em;
    transform: translate(0, -50%) rotate(90deg);
  }
  .gnavi-list__link--toggle.is-open::after {
    transform: translate(0, -50%) rotate(-90deg);
  }
  .gnavi-list__sub {
    width: 100%;
    background: #F3F1EE;
  }
  .gnavi-list__low .gnavi-list__link {
    padding: var(--s2) var(--s4) var(--s2) var(--s4);
  }
  .gnavi-list__low .gnavi-list__link::after {
    content: "";
    width: 1.7rem;
    height: 1em;
    background: url("img/arrow_right.svg") no-repeat center/auto 1em;
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: var(--s2);
  }
  .is-gnavi-open .gnavi-area {
    opacity: 1;
    transform: translateX(0);
  }
  /*------------------------------------------
	Global menu settings
	*/
  .navigation01-menu-area {
    display: none;
  }
}

/* ==============================================
   目次02 (1.9.1 index02-frame)
   ============================================== */
.index02-frame {
    width: 90%;
    margin: 0 auto;
}

.index02-wrap {
    margin: 0 auto 6rem;
    padding: var(--s1) var(--s3) var(--s4) var(--s3);
    background: #F3F1EE;
    position: relative;
}
@media (max-width: 768px) {
	.index02-wrap {
	    margin-bottom: 3rem;
	}
}


.index02-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s2);
    color: #333;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    background-size: 4rem auto;
    position: relative;
    border-bottom: 1px solid var(--pri);
}
@media screen and (max-width: 767px) {
  .index02-title {
    font-size: 1.8rem;
  }
}

.index02-chapter {
    padding: var(--s2) var(--s2) var(--s2) var(--s4);
    font-weight: 700;
}

.index02-chapter-h {
    margin: 0 0 0 var(--s2);
    font-size: 100%;
    line-height: 1.7;
    position: relative;
}

.index02-chapter-h a {
    display: block;
    text-decoration: none;
}

.index02-chapter-h a:hover {
    opacity: .6;
}

.index02-chapter-h-two {
    margin-left: var(--s2);
    position: relative;
    margin-bottom: 0.5rem;
}

.index02-chapter-h-three {
    margin-left: var(--s4);
    position: relative;
}

.index02-chapter-h-two::before,
.index02-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.5em;
}

.index02-chapter-h-two::before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 2rem;
    background-color: var(--acc);
    transform: translateY(-50%);
    top: .8em;
}

.index02-chapter-h-three::before {
    content: "└";
}

/*----------------------------------------------
    more content settings
*/
.more-content-gradation {
    position: relative;
    height: auto;
    max-height: 12rem;
    overflow: hidden;
    transition: max-height 1s;
}

.more-content-gradation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}

.more-content-gradation.is-open::after {
    display: none;
}

.index02-btn {
    max-width: 32rem;
    margin: 2rem auto 0 auto;
    padding: 2rem 6rem;
    border: .2rem solid var(--site-color05);
    text-align: center;
    position: relative;
    transition: opacity 0.3s;
    cursor: pointer;
}

.index02-btn::before {
    content: "";
    width: 2rem;
    height: .2rem;
    background: #000;
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translate(0, -50%);
}

.index02-btn::after {
    content: "";
    width: .2rem;
    height: 2rem;
    background: #000;
    position: absolute;
    top: 50%;
    right: 3.9rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
}

.index02-btn:hover {
    opacity: 0.6;
}

.index02-btn.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
}

/*----------------------------------------------
    more content settings
*/
.more-content-gradation {
  position: relative;
  height: auto;
  max-height: 12rem;
  overflow: hidden;
  transition: max-height 1s;
}

.more-content-gradation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: linear-gradient(to bottom, transparent 0%, #F3F1EE 100%);
}

.more-content-gradation.is-open::after {
  display: none;
}

.index02-btn {
  font-size: 1.4rem;
  padding: var(--s2) var(--s6) var(--s2) var(--s5);
  background-color: #fff;
  background-position: center right 1.4em;
  background-repeat: no-repeat;
  background-size: auto 1em;
  position: relative;
  z-index: 1;
  box-shadow: none;
  transition: transform 0.2s ease;
  color: var(--txt);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border-radius: 50vh;
  display: block;
  border:2px solid var(--pri);
}
@media (max-width: 768px) {
  .index02-btn {
    width:80%;
  }
}

.index02-btn::before {
  content: "";
  width: 2rem;
  height: 0.2rem;
  background: var(--pri);
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translate(0, -50%);
}

.index02-btn::after {
  content: "";
  width: 0.2rem;
  height: 2rem;
  background: var(--pri);
  position: absolute;
  top: 50%;
  right: 3.9rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}

.index02-btn:hover {
  opacity: 0.6;
}

.index02-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}
/* ==============================================
   関連記事01(related-article01)
   ============================================== */
.related-article01-frame {
  margin: var(--s6) auto var(--s10);
  position: relative;
}

.related-article01-title {
  margin-bottom: var(--s5);
  color: var(--txt);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  padding-bottom: var(--s1);
  position: relative;
}
@media screen and (max-width: 767px) {
  .related-article01-title {
    margin-bottom:3rem;
  }
}

.related-article01-title::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -8px;
  left: 0;
  border-bottom: 2px solid var(--pri);
}

.related-article01-list {
  margin-top: 0;
  padding: 0;
  list-style: none;
}

/* 関連記事のアコーディオンボタンを目次と同じスタイルに */
.related-article01-frame .js-more-gr-btn,
.related-article01-frame .js-more-btn {
  font-size: 1.4rem;
  padding: var(--s2) var(--s6) var(--s2) var(--s5);
  background-color: #fff;
  background-position: center right 1.4em;
  background-repeat: no-repeat;
  background-size: auto 1em;
  position: relative;
  z-index: 1;
  box-shadow: none;
  transition: transform 0.2s ease;
  color: var(--txt);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border-radius: 50vh;
  display: block;
  border: 2px solid var(--pri);
  max-width: 32rem;
  margin: 2rem auto 0 auto;
  cursor: pointer;
}

@media (max-width: 768px) {
  .related-article01-frame .js-more-gr-btn,
  .related-article01-frame .js-more-btn {
    width: 80%;
  }
}

.related-article01-frame .js-more-gr-btn::before,
.related-article01-frame .js-more-btn::before {
  content: "";
  width: 2rem;
  height: 0.2rem;
  background: var(--pri);
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translate(0, -50%);
}

.related-article01-frame .js-more-gr-btn::after,
.related-article01-frame .js-more-btn::after {
  content: "";
  width: 0.2rem;
  height: 2rem;
  background: var(--pri);
  position: absolute;
  top: 50%;
  right: 3.9rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}

.related-article01-frame .js-more-gr-btn:hover,
.related-article01-frame .js-more-btn:hover {
  opacity: 0.6;
}

.related-article01-frame .js-more-gr-btn.is-open::after,
.related-article01-frame .js-more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

/* 関連記事のリスト部分をグラデーションアコーディオン用に */
.related-article01-frame .more-content-gradation,
.related-article01-frame .more-content {
  position: relative;
  height: auto;
  max-height: 12rem;
  overflow: hidden;
  transition: max-height 1s;
}

.related-article01-frame .more-content-gradation::after,
.related-article01-frame .more-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: linear-gradient(to bottom, transparent 0%, #F3F1EE 100%);
}

.related-article01-frame .more-content-gradation.is-open::after,
.related-article01-frame .more-content.is-open::after {
  display: none;
}

.related-article01-list li {
  padding-left: 1.5em;
  margin-bottom: 1em;
  width: fit-content;
}

.related-article01-list li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--acc);
  position: absolute;
  top: 0.6em;
  left: 0.4em;
}
.related-article01-list a {
  text-decoration: none;
}

.related-article01-list a:hover::before {
  opacity: 0;
}

/* トグルユーティリティ */
.toggle-sp-content {
  display: block;
}

/* =====================================================================
  パンくずリスト
===================================================================== */

#pankuzuWrap {
  margin: 0;
}

#pankuzu {
  font-size: 1.3rem;
  padding: var(--s1) 0;
  line-height: 1.4;
}

#pankuzu a {
  color: var(--sub);
  text-decoration: underline;
}

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

#pankuzu span {
  color: var(--sub);
  font-weight: inherit;
}

/* =====================================================================
  ページ見出し
===================================================================== */

/* 下層ページ共通見出し */
#low-page h1:not([class]) {
  font-size: clamp(2.4rem, 2.6vw, 4rem); /* 最大4rem */
  font-weight: 900;
  text-align: center;
  color: var(--txt);
  margin-block: var(--s14) var(--s6);
  text-wrap: balance;
  position: relative;
}
#low-page h1:not([class]):before {
  content:"";
  position: absolute;
  background:url("img/icon_summay.png") no-repeat 0 0;
  display: block;
  width: 6rem;
  height: 6rem;
  top: -4rem;
  left:50%;
  transform: translate(-50%,-50%);
}

#low-page h2:not([class]) {
  width: 100%;
  margin-block: var(--s8) var(--s3);
  font-size: 3.2rem;
  font-weight: 900;
  padding: var(--s2) var(--s3);
  background: linear-gradient(to left, #8BCF32, #4FBE4F);
  color: white;
  line-height: 1.6;
  text-wrap: balance;
}

#low-page h3:not([class]) {
  width: 100%;
  margin-block: var(--s4) var(--s3);
  padding: var(--s2) var(--s3) var(--s1);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  border-bottom: 2px dotted var(--pri);
  padding-left: var(--s7);
  min-height: var(--s5);
  text-wrap: balance;
  color: var(--txt);
}

#low-page h4:not([class]) {
  width: 100%;
  margin-block: var(--s4) var(--s3);
  padding: var(--s2);
  font-size: 2.4rem;
  font-weight: 900;
  background-color: #F3F1EE;
  padding: var(--s2);
  padding-left: var(--s3);
  line-height: 1.6;
  color: var(--txt);
  text-wrap: balance;
}

#low-page h5:not([class]) {
  width: 100%;
  margin-block: var(--s4) var(--s3);
  padding-left: var(--s3);
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 900;
  color: var(--pri-dark);
  background: url(img/icon-tit.svg) no-repeat left center / var(--s3) auto;
}

/* 見出しリンク */
#low-page h2:not([class]) a {
  display: block;
  width: 100%;
  padding: var(--s2) var(--s3);
  padding-right: 1.6em;
  margin: calc(var(--s2) * -1) calc(var(--s3) * -1);
  text-decoration: none;
  background: url("./img/arrow-wh-right.svg") no-repeat center right / auto 0.8em;
  box-sizing: border-box;
}
#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-right.svg") no-repeat center right / auto 0.8em;
}

/* 見出しホバー状態 */
#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;
}

/* =====================================================================
  画像レイアウト
===================================================================== */

/* 中央画像 */
.low-center-img {
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: var(--s2);
  text-align: center;
}

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

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

/* 画像ボックス */
.low-center-img-box,
.low-left-img-box,
.low-right-img-box {
  display: flow-root;
  margin-block: var(--s7);
}

/* 画像キャッチコピー */
.low-center-img-catch,
.low-left-img-catch,
.low-right-img-catch {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  color: var(--pri-dark);
  margin-bottom: var(--s1);
  line-height: 1.6;
}

@media (max-width: 768px) {
	.low-center-img-catch,
  .low-left-img-catch,
  .low-right-img-catch {
    font-size: 1.6rem;
  }
}

/* =====================================================================
  キャプション
===================================================================== */

.caption {
  margin-top: 1.8em;
  color: var(--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 {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

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

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

.caption-scroll::-webkit-scrollbar-track {
  border-radius: var(--r-sm);
  background: #eee;
}

.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: var(--r-sm);
  background: #ddd;
}

/* =====================================================================
  テーブル・リスト
===================================================================== */

/* ベーステーブルスタイル */
table {
  width: 100%;
  line-height: 1.5;
  border-collapse: collapse;
}

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

table th {
  text-align: left;
  border-color: var(--pri);
}

/* 下層ページテーブル間隔 */
#low-page table {
  margin-block: 4rem;
}

/* 下層ページリスト間隔 */
#low-page ul:not([class]),
#low-page ol:not([class]) {
  margin-block: 4rem;
}

/* =====================================================================
  ボタン
===================================================================== */

/* 共通ボタンコンテナスタイル */
.btn-internal,
.btn-anchor,
.btn-web {
  max-width: 46rem;
  width: 100%;
  margin: var(--s5) auto;
  position: relative;
}

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

/* ボタンホバーエフェクト */
.btn-internal:hover a,
.btn-anchor:hover a,
.btn-web:hover a,
.btn-tel:hover a {
  transform: translateY(var(--s-2));
  box-shadow: none;
  opacity: 1;
}

/* 内部ボタン */
.btn-internal a {
  background: url("./img/arrow-wh-right.svg") no-repeat center right 1.4em / auto 1em, var(--pri-dark);
}

/* アンカーボタン */
.btn-anchor a {
  padding: var(--s2) var(--s6) var(--s2) var(--s5);
  background: url("./img/arrow-wh-down.svg") no-repeat center right 2rem / auto 0.8em, linear-gradient(to right, #999, #666);
}

/* Webボタン */
.btn-web {
  z-index: 5;
}

.btn-web a {
  padding: var(--s2) var(--s5);
  background: url("img/arrow-wh-right.svg") no-repeat center right 1.4em / auto 1em, var(--acc-dark);
}

/* テキストリンクボタン */
.btn-link {
  text-align: right;
  margin-top: 3rem;
}

.btn-link a {
  margin: 0;
  padding: 0 var(--s3) var(--s-2) 0;
  background: url("./img/arrow_right.svg") no-repeat top 0.3em right/auto 0.8em;
  display: inline-block;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-link a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: var(--ln);
}

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

.btn-link a:hover::before {
  opacity: 0;
}

/* 電話ボタン */
/* .btn-tel のスタイルは custom.css で定義 */

/* ボタン背景サイズ調整 */
.btn-internal a,
.btn-anchor a,
.btn-web a,
.btn-tel a {
  background-size: auto 1.4em;
}
/* =====================================================================
  フッター
===================================================================== */

/* フッターエリア */
.footer-area {
  padding: var(--s5) 0 0;
  background: var(--c2);
  position: relative;
}

.footer-area a:hover {
  opacity: 0.6;
  transition: 0.2s;
}

/* フッターロゴ */
.footer-area-logo {
  width: 28rem;
  max-width: 100%;
  margin: 3rem auto var(--s5);
}

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

/* フッターメインコンテンツ */
.footer-main {
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

/* フッターボトム */
.footer-bottom {
  padding: var(--s1) 0;
  background: var(--pri);
  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 var(--ln);
}

.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: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  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 var(--s2) 0 0;
  line-height: 1;
    background: url("./img/arrow_right.svg") no-repeat center right/auto 1em;
}

/* 共通フッタースタイル */
.footer-menu__item,
.footer-menu-sub__item {
  font-size: 1.6rem;
  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-menu-title__link--not-toggle {
  position: relative;
  padding-right: var(--s4);
}

.footer-menu-title__link--not-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1em;
    background: url("./img/arrow-wh-right.svg") no-repeat center/auto 1em;
}

.footer-menu__link {
    background: url("./img/arrow-wh-right.svg") no-repeat center right/auto 1em;
  padding-right: var(--s4);
}

.footer-menu-sub__link {
    background: url("./img/arrow-wh-right.svg") no-repeat center right/auto 1em;
  padding-right: var(--s4);
}

.footer-copyright,
.footer-sitemap,
.footer-nocopy {
  font-size: 1.2rem;
}

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

/* =====================================================================
  ページトップボタン
===================================================================== */

.page-top {
  width: 6.4rem;
  height: 6.4rem;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

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

/* 追尾バナー */
.footer-banner {
  position: fixed;
  right: var(--s4);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  display: block;
  visibility: visible;
}

.footer-banner.js-show {
  opacity: 1;
  pointer-events: auto;
}

.footer-banner a {
  display: block;
  text-decoration: none;
}

.pc-fix-banner02 {
  position: fixed;
  right: 0;
  bottom: 9rem;
  z-index: 50;
}
.pc-fix-banner02__close {
  position: absolute;
  top: -1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 51;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.pc-fix-banner02__close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.pc-fix-banner02 a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.pc-fix-banner02 a:hover {
  opacity: .7;
}
/*------------------------------------------------------------
  SP settings
*/
@media screen and (max-width: 767px) {
  .pc-fix-banner02 {
      display: none;
  }
}

.sp-fix-banner02 {
  display: none;
}
/*------------------------------------------------------------
  SP settings
*/
@media screen and (max-width: 767px) {
  .sp-fix-banner02 {
      display: block;
      width: 70%;
      position: fixed;
      z-index: 50;
  }
  .sp-fix-banner02 a {
      color: #fff;
      text-decoration: none;
      display: block;
      position: relative;
  }
  .sp-fix-banner02 a::after {
      content: "";
      width: 1rem;
      height: 2rem;
      background: url("./img/arrow-01-wht-right.svg") no-repeat right center / 1rem auto;
      transform: translateY(-50%);
      position: absolute;
      top: 50%;
      right: 1rem;
  }
  .sp-fix-banner02 a:hover {
      opacity: .7;
  }
}

/* =====================================================================
  レスポンシブデザイン
===================================================================== */

@media screen and (max-width: 767px) {
  /* ベース設定 */
  :root {
    font-size: 2.6666666667vw;
  }

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

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

  /* レイアウト調整 */
  .l-center,
  .l-container,
  .c-card .pad-xl {
    padding-right: calc(var(--s1) + var(--s-2));
    padding-left: calc(var(--s1) + var(--s-2));
    box-sizing: border-box;
  }

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

  .l-column {
    gap: var(--s2);
  }
  .l-column__side,
  .l-column__main {
    width: 100%;
  }

  /* グリッド調整 */
  .l-grid-2,
  .l-grid-3,
  .l-grid-two,
  .l-grid-two-large,
  .l-grid-three,
  .l-grid-four {
    grid-template-columns: 100%;
    gap: var(--s5);
  }

  /* トグルコンテンツ */
  .toggle-sp-content {
    display: none;
  }

  /* フロート調整 */
  .l-float__left-pc,
  .l-float__right-pc,
  .l-float__center {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    float: none;
  }

  .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);
  }

  /* スクロール調整 */
  .l-scroll-x-sp {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow: hidden;
    overflow-x: scroll;
    overflow-y: visible;
  }

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

  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: var(--r-sm);
    background: #eee;
  }

  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: var(--r-sm);
    background: #ddd;
  }

  /* ヒーロー調整 */
  .c-hero__inner {
    grid-template-columns: 1fr;
  }

  /* パンくずリスト調整 */
  #pankuzuWrap {
    position: relative;
    overflow: auto;
    margin: 0 auto var(--s3);
    padding: var(--s1) 0;
    white-space: nowrap;
  }

  #pankuzu {
    padding: var(--s-2) 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 h1:not([class]) {
    padding: var(--s8) var(--s2) 0;
    font-size: 2.4rem;
    line-height: 1.5;
    margin: var(--s6) auto;
    position: relative
  }

  #low-page h1:not([class]):before {
    content:"";
    position: absolute;
    background:url("img/icon_summay.png") no-repeat 0 0;
    display: block;
    width: 3rem;
    height: 6rem;
    top: 3rem;
    left:50%;
    transform: translate(-50%,-50%);
    background-size: 100%;
  }

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

  /* 画像調整 */
  .low-center-img {
    max-width: 100%;
  }
  .low-center-img iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }
  .low-left-img,
  .low-right-img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: var(--s2);
    float: inherit;
    text-align: center;
  }

  /* テーブル調整 */
  .sp-table-vertical th,
  .sp-table-vertical td {
    width: 100%;
    display: block;
  }

  .table-label thead {
    display: none;
  }

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

  .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 #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 900;
    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;
  }

  /* ボタン調整 */
  .btn-internal,
  .btn-anchor,
  .btn-web {
    margin: var(--s3) auto;
  }

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

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

  /* リンクボタン調整 */
  .btn-link {
    width: 95%;
    margin: var(--s1) auto;
  }

  .btn-link a {
    border-radius: var(--r-xl);
    padding: var(--s2) var(--s5);
    border: 2px solid var(--pri);
    background: #FFF;
    text-align: center;
    line-height: 1.5;
    display: block;
    text-decoration: none;
    margin: 0 auto;
  }

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

  /* 電話ボタン調整 */
  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }

  .btn-tel a {
    width: 100%;
    margin: 0 auto;
    background-image: url("./img/icon_tel.svg"), url("img/arrow-wh-right.svg");
    background-position: center left 1.4em, center right 1.4em;
    background-repeat: no-repeat, no-repeat;
    background-size: auto 1.4em, auto 1em;
    background-color: #1F96F0;
    color: var(--white);
    display: block;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease;
  }

  .btn-tel:hover a {
    transform: translate(0.3rem, 0.3rem);
  }

  /* フッター調整 */
  .footer-area {
    padding: var(--s3) 0 0;
  }

  .footer-area a:hover {
    opacity: 1;
    transition: unset;
  }
  .footer-area-logo {
    width: 60%;
  }

  .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(--s5) var(--s1) var(--s2);
    position: relative;
  }

  .footer-menu-title__link::after {
    content: "";
    width: var(--s3);
    height: 100%;
    background: url("./img/arrow-wh-down.svg") no-repeat center/1.7rem 1em;
    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-wh-right.svg") no-repeat center/1.7rem 1em;
  }

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

  .for-sp {
    display: block;
  }

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

  .footer-menu__item {
    width: 100%;
  }

  .footer-menu__link {
    padding: var(--s1) var(--s5) var(--s1) var(--s2);
    background: url("./img/arrow-wh-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;
    background: url("./img/arrow-wh-right.svg") no-repeat 95% center/auto 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: 5.4rem;
    height: 5.4rem;
    right: 1rem;
    bottom: 1rem;
  }

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