@charset "utf-8";

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

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-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);
  /* ボーダー変数 */
  --b-h: 1px 0;
  --b-s: solid;
  --b-c: var(--line);
  --b-h-line: var(--b-h) var(--b-s) var(--b-c);
}

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

/*
---------------------------------------------

    Color settings

*/

:root {
  /* Primary Colors（メインカラー:サイトの印象を決める色） */
  --pri-dark: #00676e; /* ターコイズの濃い色 */
  --pri: #00ab95; /* ターコイズの明るい色 */

  /* Secondary Colors（サブカラー:サイトの印象を決める色） */
  --sec-dark: #2c3e50; /* 紺色の濃い色 */
  --sec: #546e7a; /* 紺色の明るい色 */

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

  /* Background Colors（背景色） */
  --bg-base: #f5f5f5; /* グレーベース */
  --bg-pri: #bbd3c9; /* ターコイズ近似の背景色 */
  --bg-sec: #eef0f5; /* 紺色近似の背景色 */
  --bg-sub: #ffffff; /* 白の要素 */
  --bg-emp: #99b7ab; /* 文字色反転用背景 */

  /* Text Colors（文字色） */
  --txt-main: #212121; /* 本文 */
  --txt-sub: #757575; /* 注釈・キャプション用 */
  --txt-emp: #007b83; /* 強調用（ターコイズ） */
  --txt-white: #ffffff; /* 文字色反転用 */

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

  /* Base Colors */
  --black: #333;
  --white: #fff;
  --gray: #9e9e9e;
  --shadow: rgba(54, 100, 122, 0.1);
  --sd: 0 2px 8px var(--shadow);

  /* 互換性のための変数 */
  --pri-dark-rgb: 0, 123, 131;
  --pri-rgb: 72, 195, 179;
}

body {
  margin: 0;
  padding: 0;
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  color: var(--txt-main);
}

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

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

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

ul:not([class]) li {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.related-article01-list li::before,
ul:not([class]) li::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url(img/circle.svg);
  position: absolute;
  top: 0.7rem;
  left: 0;
}

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

ol:not([class]) li::before {
  content: counter(number);
  width: 2rem;
  color: var(--white);
  background-color: var(--sec);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0.3em;
  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.4;
}

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: 1em;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

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

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

/*
---------------------------------------------

    Emphasize 

*/
p span:not([class]),
.marker {
  font-weight: 700;
  background: linear-gradient(transparent calc(100% - 10%), #82C9FF calc(100% - 10%));
}

.txt_bold {
  font-weight: 700;
  font-size: 108%;
  color: #0061AA;
}

/*
---------------------------------------------

    layout center

*/

.l-center {
  width: 114rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
#low-page.l-center {
  padding-bottom: var(--s10);
}
/*
---------------------------------------------

    layout stack

*/

.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s4);
  align-items: stretch;
}

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

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

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

.l-stack-xlarge {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s14);
}
p.lead {
  max-width: 90rem;
  margin: var(--s3) auto 0;
}
/*
---------------------------------------------

    layout cluster

*/

.l-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

/*
---------------------------------------------

    layout grid

*/

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

.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(--s2) * 2) / 3);
  display: grid;
  grid-gap: var(--s2);
}

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

/*
---------------------------------------------

    layout sidebar

*/

.l-sidebar {
  display: flex;
  gap: var(--s5);
}

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

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

/*
---------------------------------------------

    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: var(--bg-base);
}

.l-scroll-x::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: var(--line);
}

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

#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
*/

#contents h1:not([class]) {
  width: 100%;
  margin-bottom: var(--s4);
  padding: var(--s4);
  font-size: 3.6rem;
  font-weight: 700;
  color: white;
  background: url(img/bg-tit.png) no-repeat center / 114rem auto;
  line-height: 1.5;
  text-align: center;
  background-color: var(--bg-sub);
  position: relative;
  border-width: 1px 0;
  border-style: solid;
  border-color: var(--line);
}

#low-page h2:not([class]) {
  width: 100%;
  margin-block: var(--s8) var(--s4);
  padding: var(--s3);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pri-dark);
  background: url(img/bg-point.png) center / cover, var(--bg-base);
  background-blend-mode: multiply;
  border-left: 12px solid var(--pri);
}

#low-page h2:not([class]) a {
  display: inline-block;
  padding-right: var(--s5);
  text-decoration: none;
  color: var(--pri-dark);
  background: url("./img/arrow-bk-right.svg") no-repeat;
  background-position: right calc(50% + 3px);
  background-size: auto 0.6em;
}

#low-page h2:not([class]) a:hover {
  opacity: 0.6;
}

#low-page h3:not([class]) {
  width: 100%;
  margin-block: 3rem 2rem;
  padding: var(--s2);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pri-dark);
  background: linear-gradient(to right, var(--pri) 10%, var(--line) 10%) no-repeat 0 100% / 100% 2px;
}

#low-page h3:not([class]) a {
  display: inline-block;
  padding-right: var(--s5);
  text-decoration: none;
  color: var(--pri-dark);
  background: url("./img/arrow-bk-right.svg") no-repeat;
  background-position: right calc(50% + 2px);
  background-size: auto 0.6em;
}

#low-page h3:not([class]) a:hover {
  opacity: 0.6;
}

#low-page h4:not([class]) {
  padding: var(--s1) var(--s3);
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  background-color: var(--sec-dark);
  position: relative;
  margin-block: var(--s5) var(--s3);
}

#low-page h4:not([class]) a {
  display: inline-block;
  padding-right: var(--s4);
  text-decoration: none;
  color: inherit;
  background: url("./img/arrow-wht-right.svg") no-repeat;
  background-position: right calc(50% + 0px);
  background-size: auto 0.6em;
}

#low-page h4:not([class]) a:hover {
  opacity: 0.6;
}

#low-page h5:not([class]) {
  width: 100%;
  margin-block: var(--s5) var(--s3);
  padding: var(--s1) var(--s2);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pri-dark);
  border-left: 6px solid var(--pri);
}

#low-page h5:not([class]) a {
  display: inline-block;
  padding-right: var(--s4);
  text-decoration: none;
  color: var(--pri-dark);
  background: url("./img/arrow-bk-right.svg") no-repeat;
  background-position: right calc(50% + 2px);
  background-size: auto 0.6em;
}

#low-page h5:not([class]) a:hover {
  opacity: 0.6;
}

/*---------------------------------------------
low-page center-img
*/
.low-center-img-box {
  display: flow-root;
  margin-block: 4rem;
}

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

.low-center-img-catch {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pri-dark);
}

/*---------------------------------------------
low-page left-img
*/
.low-left-img-box {
  display: flow-root;
  margin-block: 4rem;
}

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

.low-left-img-catch {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pri-dark);
  line-height: 1.5;
}

/*---------------------------------------------
low-page right-img
*/
.low-right-img-box {
  display: flow-root;
  margin-block: 4rem;
}

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

.low-right-img-catch {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pri-dark);
  line-height: 1.5;
}

/*--------------------------------------------
    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-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: var(--bg-base);
}

.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: var(--line);
}

/*--------------------------------------------
    Table settings
*/

table {
  width: 100%;
  line-height: 1.5;
  border-collapse: collapse;
  border-top: 1px solid #d7dbe5;
  border-left: 1px solid #d7dbe5;
}

table th,
table td {
  padding: var(--s1);
  border-right: 1px solid #d7dbe5;
  border-bottom: 1px solid #d7dbe5;
  background: var(--white);
}

table th {
  background-color: var(--bg-sec);
  text-align: center;
}

table td {
  word-break: normal;
}
#low-page table th{
  word-break: auto-phrase;
}
#low-page table td{
  word-break: break-all;
}
/*---------------------------------------------
    low-page table
*/
#low-page table {
  margin-block: var(--s5);
}

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

/*--------------------------------------------
    Button Internal settings
*/

.btn-internal {
  max-width: 46rem;
  width: 100%;
  margin: var(--s5) auto;
  position: relative;
}

.btn-internal a {
  width: 100%;
  margin: 0;
  padding: var(--s3) var(--s6) var(--s3) var(--s5);
  background: var(--sec) url("./img/arrow-wht-right.svg") no-repeat center right 2rem / auto 1em;
  display: block;
  box-shadow: var(--sd);
  color: white;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: 0.3s;
  border-radius: 5rem;
}

.btn-internal:hover a {
  transform: translate(0, var(--s-2));
  box-shadow: none;
}

/*--------------------------------------------
    Button anchor settings
*/

.btn-anchor {
  max-width: 46rem;
  width: 100%;
  margin: var(--s5) auto;
  position: relative;
}

.btn-anchor a {
  width: 100%;
  margin: 0;
  padding: var(--s3) var(--s6) var(--s3) var(--s5);
  background: var(--sec) url("./img/arrow-bk-down.svg") no-repeat center right 2rem / auto 0.8em;
  display: block;
  color: var(--txt-main);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: 0.3s;
  border-radius: 5rem;
}

.btn-anchor:hover a {
  transform: translate(0, var(--s-2));
  box-shadow: none;
}

/*--------------------------------------------
    Button Web settings
*/

.btn-web {
  max-width: 46rem;
  width: 100%;
  margin: var(--s5) auto;
  position: relative;
  z-index: 5;
}

.btn-web a {
  width: 100%;
  margin: 0;
  padding: var(--s3) var(--s6) var(--s3) var(--s5);
  background: var(--acc) url("./img/icon-web.svg") no-repeat center right 2rem / auto 1em;
  display: block;
  color: var(--txt-main);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: 0.3s;
  border-radius: 5rem;
  box-shadow: var(--sd);
}

.btn-web:hover a {
  transform: translate(0, var(--s-2));
  box-shadow: none;
}

/*--------------------------------------------
    Text Link settings
*/

.btn-link {
  text-align: right;
}

.btn-link a {
  margin: 0;
  padding: 1rem 2.2rem 1rem 0;
  background: url("./img/arrow-bk-right.svg") no-repeat center right/auto 0.7em;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  text-decoration: underline;
}

.btn-link a:hover {
  text-decoration: none;
  opacity: 0.6;
}

/*--------------------------------------------
    Tel Link settings
*/

.btn-tel {
  display: none;
}

/*
---------------------------------------------
    PC footer
*/
.footer-area {
  padding: var(--s5) 0 0;
  background: var(--bg-emp);
}

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

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

.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: var(--sec);
  color: var(--white);
  z-index: 10;
  position: relative;
}

.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);
  font-size: 1.4rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--line);
}

.footer-menu-title__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}

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

.footer-menu__item {
  width: calc((100% - var(--s2) * 3) / 4);
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-menu__item::before {
  display: none;
}

.footer-menu__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}

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

.footer-menu-sub__item {
  font-size: 1.2rem;
  line-height: 1.6;
}

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

.footer-menu-sub__link {
  padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
  display: block;
  text-decoration: none;
  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 {
  display: inline;
}

.footer-disclaimer__text {
  display: inline;
}

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

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

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

.footer-copyright__link:hover {
  color: var(--white);
  opacity: 0.7;
}

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

.footer-sitemap__link {
  padding: 0 1.2em 0 0;
  background: url("./img/arrow-wht-right.svg") no-repeat center right/auto 0.8em;
  color: var(--white);
  text-decoration: none;
}

.footer-sitemap__link:hover {
  color: var(--white);
  opacity: 0.6;
}

/*---------------------------------------------------------
    Page top Button
  */
.page-top {
  width: 6rem;
  height: 6rem;
  border-radius: 10rem;
  position: fixed;
  right: var(--s4);
  bottom: var(--s7);
  z-index: 10;
  overflow: hidden;
}

.page-top__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-top__link:hover {
  opacity: 0.6;
}

/*
  ---------------------------------------------
      sp footer
  */
@media screen and (max-width: 767px) {
  table td {
    word-break: break-all;
  }
  .footer-area {
    padding: var(--s3) 0 0;
    z-index: 10;
    position: relative;
  }

  .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-area-logo {
    width: 40vw;
  }

  .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: 1rem;
    height: 100%;
    background: url("./img/arrow-bk-down.svg") no-repeat center/100%;
    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-bk-right.svg") no-repeat center/contain;
    width: var(--s2);
  }

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

  .page-top__link:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

  */
  :root {
    font-size: 2.6666666667vw;
  }

  .sp_br {
    display: inline;
  }

  .pc_br {
    display: none;
  }
  body {
    font-size: 1.4rem;
  }
  ol:not([class]) li::before {
    line-height: 1.2;
    width: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp layout center

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

  /*
  ---------------------------------------------

      sp layout stack

  */
  .l-stack {
    gap: var(--s2);
  }
  .bg-03 .l-stack-xlarge,
  .bg-04 .l-stack-xlarge,
  .bg-05 .l-stack-xlarge{
    gap: var(--s4);
  }

  /*
  ---------------------------------------------

      sp layout cluster

  */
  .l-cluster {
    gap: var(--s1);
  }

  /*
  ---------------------------------------------

      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 sidebar

  */
  .l-sidebar__side {
    display: none;
  }

  .l-sidebar__main {
    width: 100%;
  }

  /*
  ---------------------------------------------

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

  .low-center-img-catch,
  .low-left-img-catch,
  .low-right-img-catch {
    font-size: 1.6rem;
  }

  /*
  ---------------------------------------------

      sp layout scroll

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

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

  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: var(--bg-base);
  }

  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: var(--line);
  }

  /*---------------------------------------------
        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
  */
  #contents h1:not([class]),
  #low-page h1:not([class]) {
    padding: var(--s2);
    font-size: 2.4rem;
  }

  #low-page h2:not([class]) {
    padding: var(--s2);
    font-size: 2.1rem;
    border-left: 6px solid var(--pri);
  }

  #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-page center-img
    */
  .low-center-img {
    max-width: 100%;
  }

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

  /*---------------------------------------------
    low-page 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(--line);
  }

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

  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: var(--bg-sub);
    border-right: solid 1px var(--line);
    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;
    max-width: 95%;
  }

  .btn-internal a {
    padding: var(--s2) var(--s5);
    background: var(--sec) url("./img/arrow-wht-right.svg") no-repeat center right 1rem / auto 0.8em;
  }

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

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

  .btn-anchor a {
    padding: var(--s2) var(--s3) var(--s2) var(--s1);
    background: var(--sec) url("./img/arrow-bk-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;
    position: relative;
    max-width: 95%;
  }

  .btn-web a {
    padding: var(--s3) var(--s5);
    background: var(--acc) url("./img/arrow-bk-right.svg") no-repeat center right 1rem / auto 0.8em;
  }

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

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

  .btn-link a {
    width: 100%;
    padding: var(--s2) var(--s5);
    border: 1px solid var(--line);
    border-radius: 50vh;
    background: url("./img/arrow-bk-right.svg") no-repeat center right 1rem / auto 0.8em;
    text-align: left;
    line-height: 1.5;
    display: block;
    text-decoration: none;
    text-align: center;
  }

  .btn-link a:hover {
    opacity: 1;
  }
  #low-page .btn-link{
    margin: var(--s4) auto;
  }

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

  .btn-tel a {
    width: 100%;
    margin: 0 auto;
    padding: var(--s3) var(--s5);
    background: var(--pri) url(./img/icon-tel.svg) no-repeat center left 1.4rem / auto 1.5em;
    color: white;
    display: block;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    border-radius: 5rem;
    box-shadow: var(--sd);
  }
}
