@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: 500;
  src: url("fonts/NS-500.woff2") format("woff2"), url("fonts/NS-500.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/NS-900.woff2") format("woff2"), url("fonts/NS-900.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP vertical";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/NS-900-vertical.woff2") format("woff2"), url("fonts/NS-900-vertical.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);
}

@media screen and (max-width: 1100px) {
  :root {
    font-size: 0.9090909091vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  color: #111;
}

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

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

li {
  list-style: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.5rem;
  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: #111;
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

a:active,
a:hover {
  color: #111;
  text-decoration: none;
}

p {
  line-height: 2;
  margin: 1rem 0;
}
p + p {
  margin-top: 1em;
}

strong {
  font-weight: 700;
}

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

small {
  font-size: 80%;
}

* {
  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;
  }
}
/*
---------------------------------------------

    animation

*/
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-0.8rem);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fuwafuwa01 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(0.8rem);
  }
  100% {
    transform: translateY(0px);
  }
}
/*  inView */
.fadeIn {
  opacity: 0;
  transition: all 1s ease;
}

.fadeIn.animated {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transform: translate(0, 3rem);
  transition: all 1s ease;
}

.fadeInUp.animated {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInDown {
  opacity: 0;
  transform: translate(0, -3rem);
  transition: all 1s ease;
}

.fadeInDown.animated {
  opacity: 1;
  transform: translate(0, 0);
}

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

    layout center

*/
.l-center {
  max-width: 110rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
.l-center--narrow {
  max-width: 100rem;
}

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

    layout stack

*/
.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--s5);
}
.l-stack > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.l-stack--wide {
  gap: var(--s8);
}
.l-stack--narrow {
  gap: var(--s1);
}

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

    layout cluster

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

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

    layout grid

*/
.l-grid {
  --minmum: calc((100% - var(--s3)) / 2);
  display: grid;
  grid-gap: var(--s3);
}
.l-grid--narrow {
  --minmum: calc((100% - var(--s1)) / 2);
  grid-gap: var(--s1);
}

.l-grid-three {
  --minmum: calc((100% - var(--s4) * 2) / 3);
  display: grid;
  grid-gap: var(--s4);
}

.l-grid-four {
  --minmum: calc((100% - var(--s3) * 3) / 4);
  display: grid;
  grid-gap: var(--s3);
}

@supports (width: min(var(--minmum), 100%)) {
  .l-grid,
.l-grid-three,
.l-grid-four {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
  }
}
/*
---------------------------------------------

    layout sidebar

*/
.l-sidebar {
  display: flex;
  gap: 2.5rem;
}
.l-sidebar__side {
  width: 22.5rem;
}
.l-sidebar__main {
  flex: 1;
}

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

    layout column

*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column__side {
  width: 23.4rem;
}
.l-column__side02 {
  width: 55rem;
}
.l-column__side03 {
  width: 45rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

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

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 40rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s2) var(--s5);
}
.l-grid-areas__cell-01 {
  grid-area: catch;
}
.l-grid-areas__cell-02 {
  grid-area: img;
}
.l-grid-areas__cell-03 {
  grid-area: text;
}
.l-grid-areas--row-reverse {
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 40rem;
}
.l-grid-areas--align-center {
  grid-template-rows: auto auto;
}
.l-grid-areas--align-center .l-grid-areas__cell-01 {
  place-self: end start;
}
.l-grid-areas--align-center .l-grid-areas__cell-02 {
  place-self: center;
}
.l-grid-areas--align-center .l-grid-areas__cell-03 {
  place-self: start;
}

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

    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: var(--s1);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: 0.6rem;
}
.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;
}

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

    list

*/

.main-area ul{
  margin:1rem 0;
}
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #A96EC9;
  border-radius: 10rem;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 0.3em;
}
.main-area .subList li a,
.main-area ul:not([class]) li a {
  text-decoration: underline;
}
.main-area ol{
  margin:1.5rem 0;
}
.main-area ol:not([class]) {
  counter-reset: number;
}
.main-area ol:not([class]) li {
  padding: 0 0 0 2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.main-area ol:not([class]) li::before {
  content: counter(number);
  width: 1.6em;
  height: 1.6em;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.main-area ol:not([class]) li + li {
  margin-top: 0.5em;
}

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

    btn

*/
.btn-internal {
  width: 42rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: 100%;
  min-height: 6.2rem;
  height: 100%;
  margin: 0;
  padding: 1.8rem var(--s7);
  background: #464646 url(img/arrow-01-white-right.svg) no-repeat center right var(--s2)/3.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
}
.btn-internal::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.5rem, 0.5rem);
}
.btn-internal:hover a {
  transform: translate(0.5rem, 0.5rem);
}
.btn-internal--up a {
  background-image: url(img/arrow-01-white-up.svg);
  background-size: auto 3.5rem;
  background-position: right var(--s3) center;
}

.btn-web {
  width: 42rem;
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 100%;
  min-height: 6.2rem;
  height: 100%;
  margin: 0;
  padding: 1.8rem var(--s7);
  background: #D36045 url(img/link-wh.svg) no-repeat center right var(--s2)/3.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.3s;
}
.btn-web::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-width: 0 1px 1px 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.5rem, 0.5rem);
}
.btn-web:hover a {
  transform: translate(0.5rem, 0.5rem);
}

.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: var(--s1) var(--s4) var(--s1) 0;
  background: url("img/arrow-02-black-right.svg") no-repeat center right/2.5rem auto;
  display: inline-block;
  font-weight: 900;
  line-height: 1.5;
  text-decoration: underline;
}
.btn-link a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.btn-tel {
  display: none;
}

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

    table

*/
table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}

th, td {
  padding: var(--s1) var(--s2);
  border-right: solid 1px #C7C7C7;
  border-bottom: solid 1px #C7C7C7;
  line-height: 1.5;
  word-break: break-all;
}

th {
  background: #F5F7F7;
}

tbody th {
  background: #F5F7F7;
}

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

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

    caption

*/
.caption {
  margin-top: 0.8em;
  display: block;
  color: #999;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
}
.caption a {
  color: #999;
}
.caption--left {
  text-align: left;
}

.caption-scroll {
  margin-top: 0.8em;
  color: #999;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: thin;
}
.caption-scroll a {
  color: #999;
}
.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;
}

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

  catch

*/
.catch-01 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.5;
  color: #245CB1;
}

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

  text

*/
.marker {
  border-bottom: solid 0.3rem #D3604580;
  font-weight: 900;
}

.txt_bold {
  font-weight: 900;
  color: #D36045;
}

.txt_bold_bk {
  font-weight: 900;
}

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

  subgrid card

*/
.subgrid-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  grid-gap: var(--s2);
}

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

  pankuzu

*/
#pankuzu {
  width: 100%;
  margin: var(--s1) auto;
  padding: var(--s1) 0;
  color: #111;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
#pankuzu > span {
  color: #111;
}

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

    toc

*/
.toc-wrap {
  width: 100%;
  position: relative;
  margin: var(--s8) auto;
  border: solid 0.2rem #111;
  position: relative;
}
.toc-wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #F3F4F6;
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: -1;
}
.toc-wrap__title {
  display: block;
  padding: var(--s5) var(--s5) var(--s5) 15rem;
  background: url(img/txt-index.png) no-repeat center left var(--s5)/8.7rem auto;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
.toc-wrap__title--relations {
  background-image: url(img/txt-links.png);
}
.toc-wrap__main {
  padding: 0 var(--s5) var(--s3);
}
.toc-wrap ul {
  margin-top: 0;
  margin-bottom: 0;
}
.toc-wrap ul li + li {
  margin-top: 1em;
}
.toc-wrap ul li.chapter-h-two {
  padding: 0 0 0 2.5em;
  font-size: 1.6rem;
  font-weight: 900;
  position: relative;
  counter-increment: count;
}
.toc-wrap ul li.chapter-h-two::before {
  content: counter(count, decimal-leading-zero);
  width: 1.6em;
  height: 1.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: -0.3rem;
  left: 0;
}
.toc-wrap ul li.chapter-h-two a {
  background: none;
}
.toc-wrap ul li.chapter-h-three {
  margin: 0.8rem 0 0.4rem 4.5rem;
  padding: 0 0 0 1em;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
.toc-wrap ul li.chapter-h-three:before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: url(img/list_icon_l.png) no-repeat center/contain;
  border: none;
  border-radius: 0;
  position: absolute;
  left: 0;
  top: 0.3em;
  transform: initial;
}
.toc-wrap ul li.chapter-h-three a {
  background: none;
}
.toc-wrap a {
  display: block;
  text-decoration: none;
}
.toc-wrap a:hover {
  text-decoration: underline;
}

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

    footer

*/
.footer-area {
  padding: var(--s5) 0 0;
  background: #f6f6f6;
}

.footer-main {
  max-width: 110rem;
  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: #FFF;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 22.8rem;
  margin: var(--s5) auto;
}
.footer-logo__link {
  display: block;
  text-decoration: none;
}
.footer-logo__link:hover {
  opacity: 0.6;
}

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

.footer-menu-title {
  margin-bottom: var(--s1);
  font-size: 1.4rem;
  line-height: 1.5;
  border-bottom: 1px solid #111;
}
.footer-menu-title__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}
.footer-menu-title__link:hover {
  opacity: 0.6;
}

.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.5;
}
.footer-menu__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}
.footer-menu__link:hover {
  opacity: 0.6;
}

.footer-menu-sub {
  margin-left: var(--s1);
}
.footer-menu-sub__item {
  font-size: 1.2rem;
  line-height: 1.5;
}
.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-menu-sub__link:hover {
  opacity: 0.6;
}

.footer-disclaimer {
  width: 70rem;
  margin: var(--s5) auto;
  padding: var(--s2) var(--s4);
  font-size: 1rem;
  line-height: 1.5;
}
.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: #FFF;
  text-decoration: none;
}
.footer-copyright__link:hover {
  color: #FFF;
  text-decoration: underline;
}

.footer-sitemap {
  margin: 0;
  font-size: 1.2rem;
}
.footer-sitemap__link {
  color: #FFF;
  text-decoration: none;
}
.footer-sitemap__link:hover {
  color: #FFF;
  text-decoration: underline;
}

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

    gnavi

*/
.gnavi-btn {
  width: 7rem;
  height: 7rem;
  background: #333;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: var(--s5);
  height: 0.3rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1.5rem;
  transform: translate(0, -50%);
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2.1rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.4rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 4.7rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-1.7rem) rotate(45deg);
}

.gnavi-area {
  width: 54rem;
  height: 100vh;
  padding: 6rem 0;
  background: #333;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.gnavi-banner {
  padding: var(--s2);
  display: flex;
  gap: var(--s2);
}
.gnavi-banner__item {
  width: 100%;
}
.gnavi-banner__item a {
  font-size: 1.3rem;
  background-size: 2rem auto;
  text-align: left;
  justify-content: flex-start;
}

.gnavi-box__title {
  padding: 1.2rem var(--s6) 1.2rem var(--s2);
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
  display: block;
  cursor: pointer;
  transition: opacity 0.5s;
  position: relative;
}
.gnavi-box__title::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url("img/arrow-01-down.svg") no-repeat center/100%;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%) rotate(0);
  transition: transform 0.3s;
}
.gnavi-box__title:hover {
  opacity: 1;
}
.gnavi-box__title.is-open::after {
  transform: translate(0, -50%) rotate(180deg);
}
.gnavi-box__content {
  background: rgba(255, 255, 255, 0.2);
}
.gnavi-box:first-child {
  border-top: 1px solid #fff;
}

.gnavi-menu__item,
.gnavi-menu-sub__item {
  position: relative;
}
.gnavi-menu__item::before,
.gnavi-menu-sub__item::before {
  content: "└";
  color: #fff;
  position: absolute;
  top: var(--s2);
  left: var(--s2);
}
.gnavi-menu__link,
.gnavi-menu-sub__link {
  padding: 1.2rem var(--s2) 1.2rem var(--s5);
  display: block;
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
  text-decoration: none;
}
.gnavi-menu__link:hover,
.gnavi-menu-sub__link:hover {
  color: #fff;
  opacity: 0.6;
}

.gnavi-menu__item {
  border-bottom: 1px solid #fff;
}

.gnavi-menu-sub__item {
  border-top: 1px solid #fff;
}

.is-gnavi-open .gnavi-area {
  opacity: 1;
  transform: translateX(0);
}

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

    page

*/
.page-top {
  width: 7rem;
  height: 7rem;
  position: fixed;
  right: var(--s4);
  bottom: var(--s7);
  z-index: 7;
  overflow: hidden;
}
.page-top__link {
  width: 100%;
  height: 100%;
  background: #000 url("img/pagetop.png") no-repeat center/var(--s2) auto;
}
.page-top__link:hover {
  opacity: 0.6;
}
.page-top.js-pagetop-appear {
  opacity: 0;
  visibility: hidden;
}
.page-top.js-pagetop-appear.is-fixed {
  opacity: 1;
  visibility: visible;
}

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

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  margin: var(--s3) auto;
  padding: var(--s3) var(--s7) var(--s3) var(--s3);
  background: #000;
  border: 0.2rem solid #000;
  color: #FFF;
  line-height: 1.5;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: var(--s3);
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s3);
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.toggle-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.toggle-content {
  display: none;
}

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

    more

*/
.more-btn {
  max-width: 38rem;
  margin: var(--s5) auto;
  padding: var(--s3) var(--s7);
  background: #000;
  border: 0.2rem solid #000;
  border-radius: 10rem;
  color: #FFF;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.more-btn::before {
  content: "";
  width: var(--s3);
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.2rem;
  height: var(--s3);
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more-btn:hover {
  opacity: 0.6;
  color: #FFF;
}
.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.more-content {
  display: none;
}

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

    tab

*/
.tab-btn {
  padding: var(--s2) var(--s1);
  background: #fff;
  border: 0.3rem solid #245CB1;
  flex: 1;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  display: flex;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: background-color ease 0.6s;
  position: relative;
  z-index: 1;
  justify-content: center;
}
.tab-btn:nth-of-type(1) {
  border-color: #245CB1;
}
.tab-btn:nth-of-type(1).is-active {
  background: #245CB1;
}
.tab-btn:nth-of-type(2) {
  border-color: #516DDA;
}
.tab-btn:nth-of-type(2).is-active {
  background: #516DDA;
}
.tab-btn:nth-of-type(2).is-active:after {
  border-color: #516DDA transparent transparent transparent;
}
.tab-btn:nth-of-type(3) {
  border-color: #8676D3;
}
.tab-btn:nth-of-type(3).is-active {
  background: #8676D3;
}
.tab-btn:nth-of-type(3).is-active:after {
  border-color: #8676D3 transparent transparent transparent;
}
.tab-btn:nth-of-type(4) {
  border-color: #B380CF;
}
.tab-btn:nth-of-type(4).is-active {
  background: #B380CF;
}
.tab-btn:nth-of-type(4).is-active:after {
  border-color: #B380CF transparent transparent transparent;
}
.tab-btn.is-active {
  color: #fff;
}
.tab-btn.is-active:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.3rem 1.1rem 0 1.1rem;
  border-color: #245CB1 transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 99.8%;
  transform: translateX(-50%);
}

.tab-btn-wrapper {
  margin-bottom: var(--s3);
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
}

.tab-content {
  padding: 3.7rem;
  background: #fff;
  border: 0.3rem solid #111;
  display: none;
  opacity: 0;
  position: relative;
  z-index: 0;
}
.tab-content:before {
  content: "";
  width: 100%;
  height: 1rem;
  background: #245CB1;
  position: absolute;
  left: 0;
  top: 0;
}
.tab-content.is-active {
  display: block;
  animation: tabAnimation ease 0.6s forwards;
}
.tab-content#tab02:before {
  background: #516DDA;
}
.tab-content#tab03:before {
  background: #8676D3;
}
.tab-content#tab04:before {
  background: #B380CF;
}
.tab-content__title {
  margin-bottom: var(--s3);
  padding: 0 0 var(--s2);
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  position: relative;
}
.tab-content__title:before {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #11111180 0.3rem, transparent 0.3rem);
  background-size: 0.9rem 1px;
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
  bottom: 0;
}
.tab-content__subtitle {
  margin-bottom: var(--s3);
  padding: var(--s2) var(--s4) var(--s2) 12rem;
  background: #111;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  position: relative;
}
.tab-content__subtitle:before {
  content: "";
  width: 10rem;
  height: 8.6rem;
  background: url(img/icon-man.png) no-repeat center bottom/contain;
  position: absolute;
  left: var(--s2);
  bottom: 0;
}

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

    help

*/
.help-btn {
  width: 2.2rem;
  height: 2.2rem;
  margin-left: 0.3em;
  margin-bottom: -0.2em;
  background: #fff url("img/icon-help.svg") no-repeat center/1.6rem auto;
  border-radius: 10rem;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.help-content {
  width: 24rem;
  padding: var(--s3);
  background: #111111e8;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  position: absolute;
  top: -1.8rem;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -100%);
  transition: opacity 0.6s;
  visibility: hidden;
  opacity: 0;
}
.help-content::after {
  content: "";
  width: 0;
  height: 0;
  border-top: #111111cc solid 1rem;
  border-bottom: transparent solid 1rem;
  border-left: transparent solid 0.6rem;
  border-right: transparent solid 0.6rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
.help-content.is-show {
  visibility: visible;
  opacity: 1;
}
.help-content span {
  display: block;
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 900;
  text-align: left;
}

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

    sidebar

*/
.l-sidebar__side {
  margin-top: var(--s9);
}

.sidebar-banner {
  margin-bottom: var(--s3);
  padding: var(--s4) var(--s1) var(--s5);
  border: solid 0.3rem #111;
  background: url(img/arrow-01-white-right.svg) no-repeat right var(--s2) bottom var(--s2), url(img/bg-banner-01.jpg) no-repeat center/cover;
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 0 0.5rem #000;
  text-align: center;
  color: #fff;
  display: block;
  text-decoration: none;
}
.sidebar-banner--02 {
  background: url(img/arrow-01-white-right.svg) no-repeat right var(--s2) bottom var(--s2), url(img/bg-banner-02.jpg) no-repeat center/cover;
}
.sidebar-banner span.sm1 {
  display: block;
  margin-bottom: var(--s1);
  font-size: 1.8rem;
}
.sidebar-banner span.sm {
  font-size: 1.8rem;
}
.sidebar-banner:hover {
  color: #fff;
  opacity: 0.6;
}

.sidebar-menu {
  margin-bottom: 3rem;
}
.sidebar-menu__title {
  display: flex;
}
.sidebar-menu__title a {
  display: block;
  width: 100%;
  padding: var(--s2) var(--s2) var(--s2) 0;
  border-bottom: solid 0.2rem #111;
  background: url(img/arrow-03-black-right.svg) no-repeat right center/0.8rem auto;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 900;
  text-decoration: none;
}
.sidebar-menu__title a:hover {
  opacity: 0.5;
}
.sidebar-menu__list__item {
  border-bottom: solid 1px #d2d2d2;
  font-size: 1.4rem;
}
.sidebar-menu__list__link {
  padding: var(--s2) var(--s1);
  display: block;
  line-height: 1.5;
  text-decoration: none;
}
.sidebar-menu__list__link:hover {
  opacity: 0.5;
}
.sidebar-menu .subList {
  margin-bottom: var(--s1);
}
.sidebar-menu .subList li a {
  padding: var(--s2) var(--s1) var(--s2) var(--s4);
  border-top: dashed 1px #d2d2d2;
  background: url(img/list_icon_l.png) no-repeat var(--s2) 2rem/0.8rem auto;
  display: block;
  font-size: 1.3rem;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
}

.main-area h1, .main-area h2, .main-area h3, .main-area h4, .main-area h5, .main-area h6 {
  font-weight: 900;
}

.main-area--low h1, .main-area--low h2, .main-area--low h3, .main-area--low h4, .main-area--low h5, .main-area--low h6 {
  margin: var(--s7) auto var(--s3);
}
.main-area--low h1 a, .main-area--low h2 a, .main-area--low h3 a, .main-area--low h4 a, .main-area--low h5 a, .main-area--low h6 a {
  display: block;
  padding-right: 3rem;
  text-decoration: none;
}
.main-area--low h1 a:hover, .main-area--low h2 a:hover, .main-area--low h3 a:hover, .main-area--low h4 a:hover, .main-area--low h5 a:hover, .main-area--low h6 a:hover {
  opacity: 0.6;
}
.main-area--low h1 {
  margin: 0 auto var(--s1) 0;
  padding: var(--s4) 0;
  min-height: 18rem;
  display: flex;
  align-items: center;
  font-size: 4.2rem;
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 0;
}
.main-area--low h1:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #111;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
}
.main-area--low h2 {
  padding: var(--s1) var(--s2) var(--s1) var(--s5);
  background: #F3F4F6;
  font-size: 3.2rem;
  position: relative;
}
.main-area--low h2:before {
  content: "";
  width: 2rem;
  height: 0.5rem;
  background: linear-gradient(to right, #1A6DE5 0, #A96EC9 100%);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.main-area--low h2 a {
  background: url(img/arrow-01-black-right.svg) no-repeat right center;
  background-size: 2.5rem auto;
}
.main-area--low h3 {
  padding: var(--s1);
  border-top: solid 1px #111;
  border-bottom: solid 1px #111;
  font-size: 2.4rem;
  position: relative;
}
.main-area--low h3 a {
  background: url(img/arrow-01-black-right.svg) no-repeat right center;
  background-size: 2.5rem auto;
}
.main-area--low h4, .main-area--low h5 {
  padding: 0 0 var(--s1) 0;
  font-size: 2rem;
  position: relative;
}
.main-area--low h4:before, .main-area--low h5:before {
  content: "";
  width: 2.4rem;
  height: 0.2rem;
  background: #245CB1;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-area--low h4 a, .main-area--low h5 a {
  background: url(img/arrow-01-black-right.svg) no-repeat right center;
  background-size: 2.5rem auto;
}

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

    TOP

*/
.header-area {
  width: 100%;
  padding: var(--s1);
}
.header-area-name {
  font-size: 1.2rem;
  color: #fff;
  text-align: right;
}
.header-area-name a {
  text-decoration: none;
}
.header-area-name a:hover {
  opacity: 0.6;
}
.header-area--slide2 {
  padding-top: var(--s10);
}
.header-area--slide2 .header-area-name {
  color: #111;
}
.header-area--slide2 .pr-text {
  color: #111;
}
.header-area--low {
  min-height: 9rem;
  position: relative;
}
.header-area--low:before {
  content: "";
  width: 86%;
  height: 19rem;
  background: url(img/mv-lower.jpg) no-repeat center right/cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.pr-text {
  font-size: 1rem;
  text-align: right;
  color: #fff;
}

.pr-lower {
  font-size: 1.3rem;
  line-height: 1.5;
}

.header-menu {
  width: 100%;
  padding: var(--s-2) 8.6rem var(--s-2) var(--s-2);
  background: #fff;
  display: flex;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.4s;
  z-index: 9;
}
.header-menu.js-header-appear {
  opacity: 0;
  visibility: hidden;
}
.header-menu.js-header-appear.is-fixed {
  opacity: 1;
  visibility: visible;
}
.header-menu-logo {
  width: 17.8rem;
}
.header-menu-logo a:hover {
  opacity: 0.6;
}
.header-menu .btn-web {
  margin-top: 0;
  margin-bottom: 0;
}
.header-menu .btn-web a {
  padding: var(--s1);
  /* padding-bottom: var(--s1); */
  /* padding-left: var(--s3); */
}

.mainvisual {
  position: relative;
  z-index: 0;
}

.vertical-slider {
  width: 100%;
}
.vertical-slider__wrapper {
  display: block;
}
.vertical-slider__slide {
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  overflow: hidden;
}

/* 1枚目のスライド */
.vertical-slider__slide:nth-child(1) {
  background: url(img/bg-slide01.jpg) no-repeat center/cover;
}

.slide01-inner {
  padding-top: var(--s6);
  padding-left: 50%;
  position: relative;
  z-index: 0;
}
.slide01-inner:before {
  content: "";
  width: 87rem;
  height: calc(100vh - var(--s6));
  background: url(img/bg-slide01-inner.jpg) no-repeat center/cover;
  position: absolute;
  right: calc(50% - 16rem);
  top: 0;
  z-index: -1;
}
.slide01-inner__title {
  margin-bottom: 3vw;
  font-size: 2.8vw;
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
}
.slide01-inner__list {
  margin-left: var(--s5);
  color: #fff;
  transition-delay: 2s;
}
.slide01-inner .list-item {
  margin-bottom: var(--s2);
  padding-left: var(--s6);
  font-size: 1.4vw;
  text-shadow: 0 0 0.5rem #000, 0 0 0.5rem #000, 0 0 0.5rem #000;
  position: relative;
}
.slide01-inner .list-item:before {
  content: "";
  width: 3.2rem;
  height: 2.5rem;
  background: url(img/mv-list-icon.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.3em;
}
.slide01-inner__text01 {
  height: 20vw;
  width: 11rem;
  padding-top: var(--s3);
  font-family: "Noto Sans JP vertical";
  font-weight: 900;
  font-size: 2vw;
  letter-spacing: 0.2em;
  background: #fff;
  color: #111;
  writing-mode: vertical-rl;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transition-delay: 3s;
}
.slide01-inner__text02 {
  width: 100vw;
  padding: var(--s3) var(--s4);
  /* padding-left: 0; */
  background: #fff;
  color: #111;
  font-size: 3.4vw;
  font-weight: 900;
  line-height: 1;
  text-align: left;
  position: absolute;
  left: 0;
  bottom: 0;
  transition-delay: 4s;
}
.slide01-inner__text02 span.sm {
  font-size: 3.8rem;
}

/* 2枚目のスライド */
.vertical-slider__slide:nth-child(2) {
  background: url(img/bg-slide02.jpg) no-repeat center/cover;
  position: relative;
}

.slide02-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide02-inner-wrap {
  height: calc(100% - 14rem);
  display: flex;
  align-items: center;
}
.slide02-inner__toplead {
  margin-bottom: var(--s2);
  font-size: 3rem;
  font-weight: 900;
}
.slide02-inner__title {
  width: fit-content;
  margin-bottom: var(--s4);
  padding: var(--s4) var(--s4) var(--s4) 0;
  font-size: 4vw;
  font-weight: 900;
  line-height: 1.3;
  position: relative;
  z-index: 0;
}
.slide02-inner__title span.sm {
  font-size: 4rem;
}
.slide02-inner__title:before {
  content: "";
  width: 100vw;
  height: 100%;
  border: solid 0.3rem #111;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.slide02-inner__lead {
  max-width: 68rem;
  font-size: 1.2vw;
  font-weight: 900;
}

.icon-scroll {
  width: 4.2rem;
  height: 7rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: calc(50% - 2.5rem);
  transition-delay: 1s;
}

.main-area {
  overflow: clip;
  padding-top: var(--s1);
}
.main-area--low {
  overflow: initial;
  padding-top: 0;
  padding-bottom: 12rem;
}
.main-area--low .catch-low{
  font-size:2.5rem;
  text-align:center;
  font-weight:bold;
  border-bottom: solid 3px;
  background: #F3F4F6;
  padding: 2rem;
  margin-bottom:2rem;
}
.main-area--low .tab-btn-wrapper{
  margin-top:5rem;
}


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

    TOC Parts

*/
.toc_parts {
  position: fixed;
  top: 10rem;
  right: 0;
  width: 26rem;
  transition: all 0.5s ease;
  transform: translateX(100%);
  z-index: 8;
}
.toc_parts .toc_ttl {
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  background: #111;
  width: 7rem;
  box-sizing: border-box;
  padding: var(--s1) var(--s2) var(--s4);
  border-left: none;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s ease;
}
.toc_parts .toc_ttl::before {
  content: "";
  width: 1.2rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 70%;
  right: 2.8rem;
  transform: translate(0, -50%);
}
.toc_parts .toc_ttl::after {
  content: "";
  width: 0.2rem;
  height: 1.2rem;
  background: #fff;
  position: absolute;
  top: 70%;
  right: 3.3rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.toc_parts .toc_block {
  position: fixed;
  top: 0;
  right: 0;
  background: #111;
  width: 100%;
  height: auto;
  padding: var(--s3) var(--s2);
  border-left: none;
  box-sizing: border-box;
}
.toc_parts .toc-scroll {
  height: fit-content;
  max-height: 42rem;
  padding-right: var(--s1);
  overflow-x: hidden;
  overflow-y: auto;
  /* chrome safari */
}
.toc_parts .toc-scroll::-webkit-scrollbar {
  width: 0.4rem;
}
.toc_parts .toc-scroll::-webkit-scrollbar-track {
  border-radius: 0.2rem;
  background: #F3F4F6;
}
.toc_parts .toc-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.2rem;
  background: #ccc;
}
.toc_parts.is-open {
  transform: translateX(0);
  transform: translateZ(0);
}
.toc_parts.is-open .toc_ttl::after {
  transform: translate(0, -50%) rotate(270deg);
}
.toc_parts ul.chapter li.chapter-h + li.chapter-h {
  margin-top: var(--s2);
}
.toc_parts ul.chapter li.chapter-h a {
  display: block;
  text-decoration: none;
}
.toc_parts ul li.chapter-h-two {
  padding-left: 2.6em;
  position: relative;
  counter-increment: number;
  color: #fff;
}
.toc_parts ul li.chapter-h-two:before {
  content: counter(number, decimal-leading-zero);
  width: 1.6em;
  height: 1.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  position: absolute;
  top: -0.2em;
  left: 0;
}
.toc_parts ul li.chapter-h-two a {
  color: #fff;
}
.toc_parts ul li.chapter-h-three {
  padding-left: 2.6em;
  color: #fff;
}
.toc_parts ul li.chapter-h-three a {
  color: #fff;
}
.toc_parts ul a:hover {
  opacity: 0.5;
}

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

    Common Parts

*/
.box-summary {
  max-width: 100rem;
  margin: 0 auto 14rem;
  padding: 3.5rem;
  border: solid 0.5rem #111;
  background: #fff;
  position: relative;
}
.box-summary:before {
  content: "";
  width: 108rem;
  height: 67rem;
  background: url(img/bg-sv-right.jpg) no-repeat center/contain;
  position: absolute;
  left: 21rem;
  bottom: -6rem;
  z-index: -1;
}
.box-summary__title {
  margin-bottom: var(--s2);
  padding: var(--s4);
  background: #F3F4F6;
  font-size: 4.2rem;
  font-weight: 900;
  text-align: center;
}
.box-summary__title span.sm {
  font-size: 3rem;
}
.box-summary__tab {
  margin-bottom: var(--s2);
  border-bottom: solid 1px #111;
  font-size: 1.8rem;
  font-weight: 900;
}
.box-summary__tab span:not([class]) {
  display: inline-block;
  padding: var(--s1) var(--s2);
  background: #111;
  color: #fff;
}
.box-summary__tab span.st {
  margin-left: var(--s4);
  font-size: 2rem;
  font-weight: 900;
}
.box-summary__en {
  font-size: 1.8rem;
  font-weight: 900;
}
.box-summary__name {
  margin-bottom: var(--s3);
  font-size: 3.2rem;
  font-weight: 900;
}
.box-summary .btn-web,
.box-summary .btn-internal {
  margin: var(--s3) auto;
  z-index: 1;
}
.box-summary--02 {
  padding: var(--s6);
}
.box-summary--02:before {
  content: none;
}
.box-summary--02 .btn-web,
.box-summary--02 .btn-internal {
  margin: var(--s4) auto;
}
.box-summary__prof {
  max-width: 72rem;
  margin: var(--s4) auto 0 0;
  padding: var(--s5) var(--s10) var(--s5) var(--s5);
  background: #F3F4F6;
  position: relative;
}
.box-summary .prof-pic {
  width: 23rem;
  position: absolute;
  left: calc(100% - var(--s6));
  top: 50%;
  transform: translateY(-50%);
}
.box-summary .prof-icon {
  width: 9rem;
  margin-bottom: var(--s2);
}
.box-summary--lower {
  margin: var(--s8) auto;
  padding: 2.9rem;
}
.box-summary--lower:before {
  content: none;
}
.box-summary--lower .box-summary__name {
  font-size: 2.4rem;
}
.box-summary--lower .l-column__side {
  width: 18rem;
}

.box-comment {
  margin: var(--s8) auto;
  padding: var(--s4);
  border: solid 0.2rem #111;
  display: flex;
  gap: var(--s3);
  align-items: center;
}
.box-comment__pic {
  width: 10.5rem;
}
.box-comment__body {
  flex: 1;
}

.box-conclusion {
  margin: 12rem auto var(--s8);
  padding: var(--s3) var(--s4) var(--s5);
  background: #111;
  color: #fff;
  position: relative;
}
.box-conclusion:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #F3F4F6;
  position: absolute;
  left: calc(var(--s5) * -1);
  top: calc(var(--s5) * -1);
  z-index: -1;
}
.box-conclusion__en {
  position: relative;
}
.box-conclusion__en:before {
  content: "";
  width: calc(100% - 18rem);
  height: 1px;
  background: #fff;
  position: absolute;
  right: calc(var(--s4) * -1);
  top: 50%;
}
.box-conclusion__en span {
  margin-bottom: var(--s4);
  margin-left: calc((var(--s4) + 1.6rem) * -1);
  display: block;
  width: 22.7rem;
}
.box-conclusion__catch {
  margin-bottom: var(--s3);
  padding: var(--s1) var(--s7);
  background: url(img/icon-quate-left.png) no-repeat left top/2.3rem auto, url(img/icon-quate-right.png) no-repeat right bottom/2.3rem auto;
  font-size: 2.4rem;
  font-weight: 900;
  display: inline;
}

.box-point {
  margin: var(--s5) auto var(--s2);
  padding: var(--s6) var(--s6) var(--s5);
  border: solid 0.2rem #111;
  position: relative;
}
.box-point:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #F3F4F6;
  position: absolute;
  left: var(--s1);
  top: var(--s1);
  z-index: -1;
}
.box-point__title {
  margin-bottom: var(--s3);
  min-height: 4rem;
  padding-top: var(--s-2);
  padding-left: 13rem;
  background: url(img/txt-point.png) no-repeat left center/10.4rem auto;
  font-size: 2rem;
  font-weight: 900;
}

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

    TOP common

*/
section {
  padding: 10rem 0;
}

.common-title {
  margin: 0 auto var(--s7) auto;
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.common-title span.sm {
  font-size: 4rem;
}
.common-title a {
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.common-title a:after {
  content: "";
  width: 3rem;
  height: 1.45rem;
  background: url(img/arrow-01-blue-right.svg) no-repeat center/contain;
  position: absolute;
  left: calc(100% + var(--s2));
  bottom: 0.5em;
}
.common-title a:hover {
  opacity: 0.6;
}

.name-p {
  width: fit-content;
  margin: -3.5rem 0 0 auto;
  padding: var(--s-2) var(--s1);
  background: #111;
  color: #fff;
  font-size: 1.5rem;
  text-align: right;
  position: relative;
  z-index: 1;
}

.common-subtitle {
  width: fit-content;
  margin: var(--s10) auto var(--s3) 0;
  padding: var(--s3) var(--s5) var(--s3) 0;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 900;
  position: relative;
}
.common-subtitle:before {
  content: "";
  width: calc(100% + 5rem);
  height: 100%;
  background: #111;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.common-subtitle span.sm {
  font-size: 2rem;
  font-weight: 500;
  display: block;
}
.common-subtitle a {
  padding-right: 5rem;
  background: url(img/arrow-01-white-right.svg) no-repeat right center/3.5rem auto;
  text-decoration: none;
  color: #fff;
}
.common-subtitle a:hover {
  opacity: 0.6;
}

.common-subtitle2 {
  margin: var(--s2) 0 var(--s4) 0;
  padding: var(--s1) 0 var(--s1) var(--s2);
  border-left: solid 0.6rem #111;
  border-bottom: solid 1px #111;
  font-size: 3rem;
  font-weight: 900;
}

.common-lead {
  max-width: 96rem;
  margin: var(--s3) auto var(--s6);
}

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

    TOP parts

*/
.base-gray {
  padding-bottom: var(--s6);
  position: relative;
}
.base-gray:before {
  content: "";
  width: calc(100% + 10rem);
  height: calc(100% + 28rem);
  background: #F3F4F6;
  position: absolute;
  left: -5rem;
  bottom: 0;
  z-index: -2;
}

.title-box {
  width: fit-content;
  margin: 0 auto var(--s10);
  padding: var(--s1) var(--s4);
  border: solid 0.3rem #111;
  background: #fff;
  font-size: 3rem;
  font-weight: 900;
  position: relative;
}
.title-box:after {
  content: "";
  width: 76.2rem;
  height: 8rem;
  background: url(img/deco-line.png) no-repeat center top/100% 100%;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}

.card-number {
  padding: var(--s8) var(--s3) var(--s3);
  background: #fff;
  position: relative;
}
.card-number:before {
  content: "";
  width: 8rem;
  height: 8rem;
  background: url(img/txt-01.png) no-repeat center/auto 4.7rem, linear-gradient(to right, #1A6DE5 0, #A96EC9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: calc(var(--s4) * -1);
  transform: translateX(-50%);
}
.card-number:nth-of-type(2):before {
  background: url(img/txt-02.png) no-repeat center/auto 4.7rem, linear-gradient(to right, #1A6DE5 0, #A96EC9 100%);
}
.card-number:nth-of-type(3):before {
  background: url(img/txt-03.png) no-repeat center/auto 4.7rem, linear-gradient(to right, #1A6DE5 0, #A96EC9 100%);
}
.card-number__title {
  margin-bottom: var(--s3);
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
}
.card-number__title span.sm {
  font-size: 1.6rem;
}
.card-number__pic {
  margin-bottom: var(--s3);
}

.card-course {
  border: solid 1px #245CB1;
  background: #fff;
}
.card-course__title {
  min-height: 14.5rem;
  padding: var(--s3);
  background: #245CB1;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.card-course__title--taiken {
  background: url(img/icon-taiken.png) no-repeat left var(--s1) center/10.8rem auto, #245CB1;
  font-size: 3rem;
}
.card-course__title--taiken .help-btn {
  margin-bottom: 0;
}
.card-course__title--cat01 {
  background: url(img/icon-cat01.png) no-repeat left var(--s1) center/8.4rem auto, #245CB1;
}
.card-course__title--cat02 {
  background: url(img/icon-cat02.png) no-repeat left var(--s1) center/8.4rem auto, #245CB1;
}
.card-course__title--cat03 {
  background: url(img/icon-cat03.png) no-repeat left var(--s1) center/8.4rem auto, #245CB1;
}
.card-course__title--cat04 {
  background: url(img/icon-cat04.png) no-repeat left var(--s1) center/8.4rem auto, #245CB1;
}
.card-course__title--cat05 {
  min-height: 8.7rem;
  background: url(img/icon-cat05.png) no-repeat left var(--s2) center/6.4rem auto, #245CB1;
}
.card-course__title--cat06 {
  min-height: 8.7rem;
  background: url(img/icon-cat06.png) no-repeat left var(--s2) center/6.4rem auto, #245CB1;
}
.card-course__main {
  padding: var(--s2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.card-course__cost {
  margin-top: var(--s1);
  margin-bottom: var(--s4);
  font-size: 2.4rem;
  font-weight: 900;
}
.card-course__cost span.sm {
  font-size: 1.8rem;
}
.card-course__cost--second {
  margin: 0 auto var(--s2);
}
.card-course__ex {
  width: 100%;
  min-height: 11rem;
  padding: var(--s2);
  background: #166DE61a;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-course__ex p {
  line-height: 1.5;
}
.card-course__ex--tag {
  width: 7.8rem;
  padding: var(--s-2);
  background: #464646;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  border-radius: var(--s4);
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
}
.card-course__ex--gray {
  min-height: initial;
  padding: var(--s2) var(--s1);
  background: #F3F4F6;
}
.card-course__subcat {
  width: 100%;
}
.card-course--row {
  display: flex;
  min-height: 15rem;
}
.card-course--row .card-course__title {
  width: 50%;
}
.card-course--row .card-course__main {
  width: 50%;
}
.card-course--row .card-course__cost {
  margin-top: 0;
  margin-bottom: 0;
}

.border-dotline {
  padding-bottom: var(--s5);
  position: relative;
}
.border-dotline:before {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #11111180 0.3rem, transparent 0.3rem);
  background-size: 0.9rem 1px;
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
  top: calc(var(--s4) * -1);
}

.with-arrow {
  position: relative;
}
.with-arrow:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5rem 5.7rem 0 5.7rem;
  border-color: #111 transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -3rem;
  transform: translateX(-50%);
}

.box-white {
  padding: var(--s3);
  background: #fff;
}
.box-white .bg-blue {
  background: #166DE61a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-white li.course-list + li.course-list {
  margin-top: var(--s1);
}

.title-cat-3 {
  padding-left: var(--s5);
  font-size: 2.4rem;
  font-weight: 900;
  position: relative;
  text-align: center;
}
.title-cat-3:before {
  content: "";
  width: 7.8rem;
  height: 11.9rem;
  background: url(img/icon-badge.png) no-repeat center/contain;
  position: absolute;
  left: -6rem;
  top: 50%;
  transform: translateY(-50%);
}
.title-cat-3--second {
  padding: 0;
}
.title-cat-3--second:before {
  content: none;
}

.column-check {
  margin-top: var(--s1);
  display: flex;
  gap: var(--s2);
}
.column-check__title {
  width: 10rem;
  background: linear-gradient(to right, #1A6DE5 0, #A96EC9 100%);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.column-check__main {
  flex: 1;
}
.column-check__main p {
  line-height: 1.5;
}

.attention {
  text-align: right;
}

.box-bg-blue {
  margin-top: var(--s5);
  padding: var(--s4);
  background: #166DE61a;
}
.box-bg-blue .l-grid {
  --minmum: calc((100% - var(--s8)) / 2);
  grid-gap: var(--s8);
}

.grid-inner-box {
  position: relative;
}
.grid-inner-box:nth-of-type(1):after {
  content: "";
  width: 1px;
  height: 100%;
  background: #111;
  position: absolute;
  right: calc(var(--s4) * -1);
  top: 0;
}
.grid-inner-box__title {
  width: fit-content;
  margin: 0 auto var(--s3) auto;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  position: relative;
}
.grid-inner-box__title.icon-note:before {
  content: "";
  width: 3.6rem;
  height: 4rem;
  background: url(img/icon-note.png) no-repeat center/contain;
  position: absolute;
  left: -5rem;
  top: -0.5rem;
}
.grid-inner-box__title.icon-calc:before {
  content: "";
  width: 4rem;
  height: 4.6rem;
  background: url(img/icon-calc.png) no-repeat center/contain;
  position: absolute;
  left: -5rem;
  top: -0.5rem;
}
.grid-inner-box .attention {
  margin-top: var(--s4);
}

.tag-check {
  width: calc((100% - var(--s2)) / 2);
  padding: 0 var(--s2) 0 var(--s6);
  font-size: 1.8rem;
  font-weight: 900;
  position: relative;
}
.tag-check:before {
  content: "";
  width: 2.5rem;
  height: 2rem;
  background: url(img/icon-check.png) no-repeat center/contain;
  position: absolute;
  left: var(--s2);
  top: 0.2em;
}

.tag-01 {
  width: calc((100% - var(--s2)) / 2);
  padding: 1.2rem var(--s2);
  border-radius: var(--s-2);
  background: #464646;
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.6;
}
.tag-01.off {
  background: #C6C6C6;
  color: #11111133;
}
.tag-01.off .help-btn {
    opacity: .5;
    pointer-events: none;
}
.tag-01--long {
  width: 100%;
}

.card-01 {
  padding: var(--s1) var(--s3) var(--s3);
  text-decoration: none;
  background: linear-gradient(to bottom, transparent var(--s4), #fff var(--s4), #fff 100%);
}
.card-01__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
}
.card-01__title a {
  padding: 0 var(--s4) 0 var(--s2);
  background: url(img/arrow-02-black-right.svg) no-repeat center right/2.1rem auto;
  text-decoration: none;
}
.card-01__title a:hover {
  opacity: 0.6;
}
.card-01__tag {
  width: fit-content;
  margin-left: calc(var(--s3) * -1);
  padding: var(--s1) var(--s3);
  background: linear-gradient(to right, #1A6DE5 0, #A96EC9 100%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
}
.card-01__pic {
  text-align: center;
  height: 12.6rem;
}
.card-01__pic img {
  height: 100%;
  width: auto;
}

.section-deco1 {
  padding-bottom: 8rem;
  position: relative;
  z-index: 0;
}
.section-deco1:before {
  content: "";
  width: 100vw;
  height: calc(100% - 12rem);
  background: #F3F4F6;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.section02-title {
  min-height: 26rem;
  text-align: center;
  background: #111;
  color: #fff;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section02-title:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #111;
  position: absolute;
  right: 99%;
  top: 0;
}
.section02-title span.sm {
  display: block;
  margin-bottom: var(--s2);
  font-size: 3.2rem;
}
.section02-title a {
  display: inline-block;
  padding: 0 var(--s5);
  background: url(img/arrow-01-white-right.svg) no-repeat right bottom 0.3em/3.6rem auto;
  color: #fff;
  text-decoration: none;
}

.btn-fkds a {
  width: fit-content;
  padding: var(--s4) 10rem var(--s4) var(--s5);
  border: solid 0.2rem #111;
  border-radius: var(--s4) var(--s4) 0 var(--s4);
  background: #fff url(img/arrow-01-black-right.svg) no-repeat center right var(--s4)/3.6rem auto;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  display: block;
  text-decoration: none;
}
.btn-fkds a span.sm {
  font-size: 2.1rem;
  font-weight: 500;
}
.btn-fkds a:hover {
  opacity: 0.6;
}
.btn-fkds-wrap {
  margin: var(--s5) auto;
  padding: 0 50% 0 0;
  background: url(img/illust-sec03.png) no-repeat right center/44.5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s4);
}
.btn-fkds-wrap .btn-fkds:nth-of-type(1) {
  animation: fuwafuwa 3s infinite;
}
.btn-fkds-wrap .btn-fkds:nth-of-type(2) {
  margin-left: auto;
  margin-right: 0;
  animation: fuwafuwa01 3s infinite;
}
.btn-fkds-wrap .btn-fkds:nth-of-type(3) {
  margin-left: var(--s6);
  animation: fuwafuwa 3s infinite;
}
.btn-fkds-wrap2 {
  grid-gap: var(--s4);
  --minmum: calc((100% - var(--s4)) / 2);
}
.btn-fkds-wrap2 .btn-fkds a {
  width: 100%;
}

.title-column {
  margin-bottom: 12rem;
  display: flex;
  align-items: flex-end;
  gap: var(--s4);
  position: relative;
}
.title-column:before {
  content: "";
  width: 95.5rem;
  height: calc(100% + var(--s5));
  background: #F3F4F6;
  position: absolute;
  right: -6rem;
  top: var(--s5);
  z-index: -2;
}
.title-column:after {
  content: "";
  width: 55rem;
  height: 87.5rem;
  background: url(img/deco-pic-sec05.jpg) no-repeat center/cover;
  position: absolute;
  left: calc(27.5rem * -1);
  top: calc(100% - var(--s5));
  z-index: -1;
}
.title-column__main {
  width: 60%;
  min-height: 35rem;
  padding: var(--s5);
  border: solid 0.5rem #111;
  display: flex;
  align-items: center;
}
.title-column__side {
  width: 40%;
  padding-bottom: var(--s4);
}
.title-column__h2 {
  width: 100%;
  font-size: 4.2rem;
}
.title-column__h2 span.sm {
  font-size: 3.6rem;
}
.title-column__h2 a {
  display: block;
  padding-right: var(--s5);
  background: url(img/arrow-01-black-right.svg) no-repeat center right/3.6rem auto;
  text-decoration: none;
}
.title-column__h2 a:hover {
  opacity: 0.6;
}

.box-sec05 {
  max-width: 77.6rem;
  margin: 0 0 0 auto;
  padding-bottom: 6rem;
  grid-gap: var(--s10);
}
.box-sec05-inner + .box-sec05-inner {
  position: relative;
}
.box-sec05-inner + .box-sec05-inner:before {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #11111180 0.3rem, transparent 0.3rem);
  background-size: 0.9rem 1px;
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
  top: calc(var(--s5) * -1);
}

.card-02 {
  margin-bottom: var(--s4);
  display: flex;
  gap: var(--s3);
}
.card-02:hover {
  cursor: pointer;
  opacity: 0.6;
}
.card-02__num {
  width: 7.8rem;
}
.card-02__body {
  flex: 1;
  padding-left: var(--s3);
  padding-right: 5.6rem;
  border-left: solid 1px #111;
  background: url(img/more-btn-open.svg) no-repeat right center/4rem auto;
}
.card-02__tag {
  width: fit-content;
  margin-bottom: var(--s1);
  padding: var(--s-2) var(--s3);
  background: #111;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}
.card-02__title {
  font-size: 2.4rem;
  font-weight: 900;
}
.card-02__title span.st {
  font-size: 3rem;
  color: #245CB1;
}
.card-02.is-open .card-02__body {
  background-image: url(img/more-btn-close.svg);
}

.bg-sec06 {
  padding-top: 20rem;
  position: relative;
}
.bg-sec06:before {
  content: "";
  width: 100%;
  height: 50rem;
  background: url(img/bg-sec06.jpg) no-repeat center top/cover;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}

.box-media {
  max-width: 100rem;
  margin: var(--s10) auto;
  border-bottom: solid 1px #111;
}
.box-media__inner {
  padding: var(--s4) var(--s9) var(--s1);
}
.box-media__title {
  margin-bottom: var(--s4);
  padding-left: 11.5rem;
  font-size: 2.2rem;
  font-weight: 900;
  position: relative;
}
.box-media__title:before {
  content: "";
  width: 8.2rem;
  height: 7rem;
  background: url(img/zenkenlogo.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.box-media__title span.st {
  font-size: 3rem;
}

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

      sp base settings

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

  body {
    font-size: 1.4rem;
  }

  .sp_br {
    display: inline;
  }

  .pc_br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp layout center

  */
  .l-center {
    padding-right: var(--s1);
    padding-left: var(--s1);
    box-sizing: border-box;
  }

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

      sp layout stack

  */
  .l-stack {
    gap: var(--s4);
  }
  .l-stack--wide {
    gap: var(--s6);
  }
  .l-stack--narrow {
    gap: var(--s1);
  }

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

      sp layout cluster

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

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

      sp layout grid

  */
  .l-grid {
    grid-gap: var(--s2);
    grid-template-columns: 100%;
  }

  .l-grid-three {
    grid-gap: var(--s3);
    grid-template-columns: 100%;
  }

  .l-grid-four {
    grid-gap: var(--s2);
    grid-template-columns: 100%;
  }

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

      sp layout sidebar

  */
  .l-sidebar__side {
    display: none;
  }
  .l-sidebar__main {
    width: 100%;
  }

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

      sp layout column

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

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

      sp layout grid areas

  */
  .l-grid-areas {
    grid-template-areas: "catch" "text" "img" "list" "text2";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto auto;
    grid-gap: var(--s2);
  }

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

      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-x: auto;
    overflow-y: hidden;
  }
  .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;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp btn

  */
  .btn-internal {
    width: 94%;
    margin: var(--s3) auto;
  }
  .btn-internal a {
    min-height: var(--s7);
    background-size: 2rem auto;
    padding: 1.8rem var(--s6);
    font-size: 1.5rem;
  }
  .btn-internal:hover a {
    transform: translate(0, 0);
  }
  .btn-internal--up a {
    background-size: auto 2.2rem;
  }

  .btn-web {
    width: 94%;
    margin: var(--s3) auto;
  }
  .btn-web a {
    min-height: var(--s7);
    background-size: 2rem auto;
    padding: 1.8rem var(--s6);
    font-size: 1.5rem;
  }
  .btn-web:hover a {
    transform: translate(0, 0);
  }

  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    padding-right: 3rem;
    background-size: 2rem auto;
  }
  .btn-link a:hover {
    text-decoration: underline;
    opacity: 1;
  }

  .btn-tel {
    width: 94%;
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    min-height: var(--s7);
    margin: 0 auto;
    padding: var(--s1) var(--s6);
    background: #A96EC9 url("img/tel2.svg") no-repeat center left var(--s2)/1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
  .btn-tel::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    border-width: 0 1px 1px 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(0.5rem, 0.5rem);
  }

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

      sp table

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

  .table-label thead {
    display: none;
  }
  .table-label tbody th {
    background: #F5F7F7;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #F5F7F7;
    border-right: solid 1px #C7C7C7;
    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;
  }

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

      sp caption

  */
  .caption {
    font-size: 0.9rem;
  }

  .caption-scroll {
    font-size: 0.9rem;
  }
  .caption-scroll::-webkit-scrollbar {
    height: 0.4rem;
  }
  .caption-scroll::-webkit-scrollbar-track {
    border-radius: 0.2rem;
  }
  .caption-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.2rem;
  }

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

    catch

  */
  .catch-01 {
    font-size: 1.8rem;
  }

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

    sp pankuzu

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

      toc

  */
  .toc-wrap__title {
    padding: var(--s4) var(--s3) var(--s4) 10rem;
    background-size: 6.5rem auto;
    background-position: left var(--s3) center;
  }
  .toc-wrap__main {
    padding: 0 var(--s2) var(--s3) var(--s3);
  }

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

      sp footer

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

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

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

  .footer-logo {
    margin: var(--s3) auto;
    width: 15rem;
  }
  .footer-logo__link:hover {
    opacity: 1;
  }

  .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: 1.4rem;
    height: 1.4rem;
    background: url("img/arrow-03-black-down.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
  }
  .footer-menu-title__link:hover {
    opacity: 1;
  }
  .footer-menu-title__link.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .footer-menu-title__link--not-toggle::after {
    background: url("img/arrow-03-black-right.svg") no-repeat center/auto 1em;
  }

  .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);
  }
  .footer-menu__link:hover {
    opacity: 1;
  }

  .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-menu-sub__link:hover {
    opacity: 1;
  }

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

  .footer-menu__banner {
    width: calc(100% - 7rem);
    margin: 0;
    position: fixed;
    left: 0;
    bottom: 0.6rem;
    z-index: 200;
  }
  .footer-menu__banner .btn-web {
    margin: 0;
    width: 100%;
  }
  .footer-menu__banner .btn-web a {
    padding: var(--s1);
    font-size: 1.4rem;
    text-align: left;
  }
  .footer-menu__banner .btn-web::after{
    content:none;
  }
  .footer-menu__banner .gnavi-banner__item a {
    padding-right: var(--s4);
    background-size: 2rem auto;
    background-position: right var(--s1) center;
  }
  
  .footer-menu__banner.js-footermenu-appear {
      opacity: 0;
      visibility: hidden;
  }

  .footer-menu__banner.js-footermenu-appear.is-fixed {
    opacity: 1;
    visibility: visible;
  }
  
  /*
  ---------------------------------------------

    sp gnavi

  */
  .gnavi-btn {
    width: var(--s6);
    height: var(--s6);
  }
  .gnavi-btn span {
    width: var(--s3);
    height: 0.2rem;
    left: 1.2rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.6rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.4rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 3.2rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.8rem) rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.8rem) rotate(45deg);
  }

  .gnavi-area {
    width: 100%;
  }

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

      sp page

  */
  .page-top {
    width: var(--s7);
    height: var(--s7);
    right: 0;
    bottom: var(--s1);
  }
  .page-top__link:hover {
    opacity: 1;
  }

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

       sp toggle sp

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

  .tab-btn {
    width: calc((100% - var(--s2)) / 2);
    font-size: 1.2rem;
    flex: initial;
  }
  .tab-btn-wrapper {
    flex-wrap: wrap;
    grid-gap: var(--s2);
  }

  .tab-content {
    padding: var(--s3) var(--s2) var(--s4);
  }
  .tab-content__title {
    font-size: 2.2rem;
  }
  .tab-content__subtitle {
    padding: 1.2rem var(--s7);
    font-size: 1.8rem;
    text-align: center;
  }
  .tab-content__subtitle:before {
    width: 7rem;
    left: 0;
  }

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

      sp help

  */
  .help-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    margin: auto;
  }
  .help-content {
    width: 65vw;
  }
  .help-content--pos-left {
    left: -1.8rem;
    transform: translate(0, -100%);
  }
  .help-content--pos-left::after {
    left: 2.2rem;
    transform: translate(0, 100%);
  }
  .help-content--pos-right {
    right: -1.8rem;
    left: auto;
    transform: translate(0, -100%);
  }
  .help-content--pos-right::after {
    left: auto;
    right: 2.2rem;
    transform: translate(0, 100%);
  }

  .main-area h2 {
    font-size: 2.3rem;
  }
  .main-area h3 {
    font-size: 2rem;
  }
  .main-area h4 {
    font-size: 1.7rem;
  }

  .main-area--low h1, .main-area--low h2, .main-area--low h3, .main-area--low h4, .main-area--low h5, .main-area--low h6 {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low h1 {
    margin: 0 auto var(--s1);
    padding: var(--s1) var(--s2);
    font-size: 2.5rem;
    min-height: 10rem;
  }
  .main-area--low h2 {
    padding: var(--s1) var(--s1) var(--s1) var(--s4);
  }
  .main-area--low h2:before {
    height: 0.4rem;
  }
  .main-area--low h2 a {
    background-size: 1.8rem auto;
  }
  .main-area--low h3 {
    padding: 1rem 0;
  }
  .main-area--low h3 a {
    background-size: 1.8rem auto;
    background-position: right center;
  }
  .main-area--low h3.icon-title {
    padding-left: 9rem;
  }
  .main-area--low h3.icon-title .icon-title__tag {
    width: 8rem;
    height: 8rem;
    font-size: 1.4rem;
  }
  .main-area--low h3.icon-title .icon-title__tag span.st {
    font-size: 2rem;
  }
  .main-area--low h3.icon-title span.small {
    font-size: 1.5rem;
  }
  .main-area--low h4 a {
    background-size: 1.8rem auto;
    background-position: right center;
  }
  .main-area--low h5 {
    font-size: 1.6rem;
  }
  .main-area--low h5 a {
    background-size: 1.8rem auto;
    background-position: right center;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp Header

  */
  .header-area--low:before {
    height: 100%;
    background-image: url(img/mv-lower-sp.jpg);
  }
  .header-area--slide2 {
    padding-top: var(--s1);
  }

  .header-menu-logo {
    width: auto;
    height: 4rem;
  }
  .header-menu-logo img {
    height: 100%;
    width: auto;
  }


  .toc_parts {
    bottom: 8rem;
    top: auto;
  }
  .toc_parts .toc_ttl {
    width: 5.6rem;
    padding: var(--s-2);
    padding-bottom: var(--s4);
    bottom: 0;
    top: auto;
    font-size: 1.4rem;
  }
  .toc_parts .toc_ttl:before {
    right: 2.2rem;
  }
  .toc_parts .toc_ttl:after {
    right: 2.7rem;
  }
  .toc_parts .toc_block {
    bottom: 0;
    top: auto;
  }

  .main-area--low {
    padding-bottom: 6rem;
    overflow: hidden;
  }

  .pr-text {
    line-height: 1.3;
  }

  .pr-lower {
    font-size: 1rem;
  }

  .slide01-inner {
    padding: var(--s5) 0;
  }
  .slide01-inner:before {
    width: 92%;
    height: 80vh;
    left: -3rem;
    background-position: left -23rem top;
  }
  .slide01-inner__title {
    margin-bottom: var(--s3);
    margin-left: 29vw;
    font-size: 6.6vw;
    text-shadow: 0 0 0.8rem #000;
  }
  .slide01-inner .list-item {
    margin: 0 0 var(--s2) var(--s6);
    padding-left: var(--s4);
    font-size: 1.6rem;
  }
  .slide01-inner .list-item:before {
    width: var(--s3);
    height: var(--s2);
  }
  .slide01-inner__text01 {
    width: 7rem;
    font-size: 2.4rem;
    height: 90vw;
  }
  .slide01-inner__text02 {
    font-size: 2.8rem;
    text-align: left;
    line-height: 1.3;
  }
  .slide01-inner__text02 span.sm {
    font-size: 2rem;
  }

  .vertical-slider__slide:nth-child(2) {
    background-position: right top;
    background-size: 120% auto;
    height: 100%;
    min-height: auto;
  }

  .slide02-inner {
    padding-top: 1rem;
  }
  .slide02-inner__toplead {
    font-size: 1.8rem;
  }
  .slide02-inner__title {
    padding: var(--s3) var(--s3) var(--s3) 0;
    font-size: 2.8rem;
  }
  .slide02-inner__title span.sm {
    font-size: 2rem;
  }
  .slide02-inner__lead {
    font-size: 1.6rem;
    font-weight: 500;
  }

  .box-summary {
    margin-bottom: var(--s6);
    padding: var(--s2);
  }
  .box-summary:before {
    content: none;
  }
  .box-summary .l-column {
    flex-direction: column-reverse;
    position: relative;
  }
  .box-summary .l-column .box-summary__tab,
.box-summary .l-column .box-summary__en,
.box-summary .l-column .box-summary__name {
    width: calc(100% - 14rem);
  }
  .box-summary .l-column .box-summary__name {
    min-height: 6rem;
  }
  .box-summary .l-column__side {
    width: 13rem;
    position: absolute;
    right: 0;
    top: 0;
  }
  .box-summary__title {
    padding: var(--s2);
    font-size: 2.3rem;
  }
  .box-summary__title span.sm {
    display: inline-block;
    font-size: 1.8rem;
  }
  .box-summary__name {
    margin-bottom: var(--s2);
    font-size: 1.9rem;
  }
  .box-summary h2.box-summary__name {
    font-size: 1.9rem;
  }
  .box-summary__tab {
    margin-bottom: var(--s1);
    font-size: 1.5rem;
  }
  .box-summary__en {
    font-size: 1.5rem;
  }
  .box-summary--lower .box-summary__name {
    font-size: 1.9rem;
  }
  .box-summary__prof {
    margin-top: 8rem;
    padding: var(--s5) var(--s2) var(--s2);
  }
  .box-summary .prof-pic {
    width: 12rem;
    right: var(--s2);
    left: auto;
    top: calc(var(--s7) * -1);
    transform: none;
  }
  .box-summary .btn-tel {
    z-index: 1;
  }
  .box-summary .l-grid .btn-web,
.box-summary .l-grid .btn-internal,
.box-summary .l-grid .btn-tel {
    margin: var(--s1) auto 0;
  }

  .box-point {
    padding: var(--s3);
  }
  .box-point__title {
    padding: var(--s4) 0 0;
    background-size: 6.4rem;
    background-position: left top;
    font-size: 1.8rem;
  }

  .name-p {
    font-size: 1.2rem;
  }

  .box-comment {
    padding: var(--s2);
    display: block;
  }
  .box-comment__pic {
    width: 8rem;
    float: left;
    margin-right: var(--s2);
    margin-bottom: var(--s1);
  }

  .box-conclusion {
    width: 96%;
    margin-left: auto;
    margin-right: 0;
    padding: var(--s2);
  }
  .box-conclusion__en:before {
    width: calc(100% - 12rem);
  }
  .box-conclusion__en span {
    width: 17rem;
    margin-left: calc((var(--s2) + 1.2rem) * -1);
  }
  .box-conclusion__catch {
    padding: var(--s2);
    font-size: 1.8rem;
    background-size: 1.8rem auto;
  }

  section {
    padding: var(--s6) 0;
  }

  .common-title {
    margin-bottom: var(--s3);
    font-size: 2.5rem;
  }
  .common-title a {
    background-size: 2.8rem auto;
  }
  .common-title a:after {
    width: 2.2rem;
    height: 1.1rem;
  }

  .common-subtitle {
    min-width: 80%;
    margin-bottom: var(--s2);
  }
  .common-subtitle span.sm {
    margin-bottom: var(--s-2);
    font-size: 1.6rem;
    display: inline-block;
  }
  .common-subtitle a {
    background-size: 2.8rem auto;
  }

  .common-subtitle2 {
    margin-bottom: var(--s2);
    padding-left: var(--s1);
  }

  .common-lead {
    margin: var(--s2) auto;
  }

  /* Top parts   ----  */
  .title-box {
    margin-bottom: var(--s8);
    font-size: 1.9rem;
  }
  .title-box:after {
    content: none;
  }
  .title-box:before {
    content: "";
    width: 0.3rem;
    height: var(--s8);
    background: #111;
    position: absolute;
    left: 50%;
    top: 100%;
  }

  .card-number + .card-number {
    margin-top: var(--s4);
  }
  .card-number + .card-number:after {
    content: "";
    width: 0.3rem;
    height: var(--s8);
    background: #111;
    position: absolute;
    left: 50%;
    bottom: 100%;
    z-index: -1;
  }

  .card-course--row {
    min-height: initial;
  }
  .card-course__title {
    padding: var(--s2);
    min-height: 10rem;
  }
  .card-course__title--taiken {
    font-size: 2rem;
  }
  .card-course__title--taiken .help-btn {
    bottom: -0.2em;
  }
  .card-course__cost {
    margin: 0 auto var(--s3);
  }
  .card-course__ex {
    padding: var(--s1);
    min-height: 8rem;
  }
  .card-course__subcat {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
    --minmum: calc((100% - var(--s2)) / 2);
  }
  .card-course__subcat .card-course__ex {
    padding: 2rem var(--s1) var(--s1);
  }

  .with-arrow:after {
    border-width: 3rem 3.7rem 0 3.7rem;
  }

  .border-dotline {
    padding-bottom: var(--s3);
  }
  .border-dotline:before {
    top: calc(var(--s3) * -1);
  }

  .box-white .bg-blue {
    padding: var(--s3);
  }

  .title-cat-3 {
    padding-left: var(--s4);
    font-size: 2rem;
  }
  .title-cat-3:before {
    width: 4rem;
    height: 7rem;
    left: -1rem;
  }
  .title-cat-3--second {
    padding: 0;
  }

  .column-check {
    margin-top: var(--s2);
  }
  .column-check__title {
    width: 6.5rem;
    font-size: 1.4rem;
  }

  .tag-01 {
    width: calc((100% - var(--s1)) / 2);
  }
  .tag-01--long {
    width: 100%;
  }

  .tag-check {
    width: 100%;
    font-size: 1.6rem;
  }

  .box-bg-blue {
    margin-bottom: var(--s2);
    padding: var(--s3) var(--s2);
  }

  .grid-inner-box:nth-of-type(1):after {
    width: 100%;
    height: 1px;
    left: 0;
    right: auto;
    bottom: calc(var(--s4) * -1);
    top: auto;
  }

  .grid-inner-box__title.icon-calc {
    padding-left: var(--s5);
  }
  .grid-inner-box__title.icon-calc:before {
    left: -1rem;
  }

  .l-grid .btn-web,
.l-grid .btn-internal {
    margin: var(--s1) auto 0;
  }

  .card-01__title,
h4.card-01__title {
    font-size: 2rem;
  }

  .section02-title {
    width: 90%;
    min-height: 14rem;
  }
  .section02-title span.sm {
    font-size: 1.8rem;
  }
  .section02-title a {
    padding: 0 var(--s4);
    background-size: 2.8rem auto;
    background-position: right bottom 0.2em;
  }

  .section-deco1 {
    padding-bottom: var(--s5);
  }
  .section-deco1:before {
    height: calc(100% - 8rem);
  }

  .btn-fkds-wrap {
    margin-bottom: var(--s3);
    padding: 0 0 19.5rem;
    background-position: center bottom;
    background-size: auto 19rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--s2);
  }
  .btn-fkds-wrap .btn-fkds:nth-of-type(1) {
    margin: 0 auto;
  }
  .btn-fkds-wrap .btn-fkds:nth-of-type(2), .btn-fkds-wrap .btn-fkds:nth-of-type(3) {
    margin: 0;
    width: calc((100% - var(--s2)) / 2);
  }
  .btn-fkds-wrap .btn-fkds:nth-of-type(2) a, .btn-fkds-wrap .btn-fkds:nth-of-type(3) a {
    width: 100%;
  }
  .btn-fkds-wrap .btn-fkds:nth-of-type(3) {
    animation: fuwafuwa01 3s infinite;
  }
  .btn-fkds a {
    padding: var(--s2);
    border-radius: var(--s2) var(--s2) 0 var(--s2);
    background-size: 2rem auto;
    background-position: right var(--s2) bottom 1rem;
    font-size: 1.6rem;
  }
  .btn-fkds a span.sm {
    font-size: 1.4rem;
  }

  .title-column {
    flex-wrap: wrap;
    grid-gap: var(--s2);
  }
  .title-column:before {
    width: 37.5rem;
    height: 20rem;
    top: var(--s4);
    right: -7rem;
  }
  .title-column:after {
    width: 100%;
    height: 12rem;
    left: 0;
    top: calc(100% - var(--s3));
  }
  .title-column__main {
    width: 96%;
    min-height: initial;
    padding: var(--s4);
  }
  .title-column__side {
    width: 100%;
  }

  .title-column__h2 span.sm {
    font-size: 2rem;
  }
  .title-column__h2 a {
    background-size: 2.8rem auto;
  }

  .card-02 {
    display: block;
    margin-bottom: var(--s2);
    position: relative;
  }
  .card-02__num {
    width: 3.5rem;
    position: absolute;
    left: 0.2em;
    top: -0.2em;
  }
  .card-02__body {
    width: 100%;
    padding-left: 0;
    border: none;
    background-size: 3rem auto;
  }
  .card-02__tag {
    margin: 0 0 var(--s1) var(--s7);
    font-size: 1.6rem;
  }
  .card-02__title span.st {
    font-size: 2.4rem;
  }

  .box-sec05 {
    gap: var(--s7);
    padding-bottom: var(--s2);
  }

  .bg-sec06 {
    padding-top: 9rem;
  }
  .bg-sec06:before {
    height: 15rem;
  }

  .box-summary__tab span.st {
    margin-left: var(--s2);
    font-size: 1.8rem;
  }

  .box-media__inner {
    padding: var(--s1) 0 0 0;
  }
  .box-media__title {
    margin-bottom: var(--s2);
    padding-left: 6.5rem;
    font-size: 1.8rem;
  }
  .box-media__title:before {
    width: 4.8rem;
    height: 5rem;
  }
  .box-media__title span.st {
    font-size: 2rem;
  }
}
