@charset "UTF-8";
/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
 * Dela Gothic One is lisenced under the SIL Open Font License 1.1
 * by https://fonts.google.com/specimen/Dela+Gothic+One
 */
@font-face {
  font-family: "Dela Gothic One";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Dgo-400.woff2") format("woff2"), url("fonts/Dgo-400.woff") format("woff");
  font-display: swap;
}
/* 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);
}

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

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;
}
img.img-height {
  width: auto;
  max-width: inherit;
  height: 100%;
}

a {
  color: #000;
  transition: opacity 0.3s ease, color 0.3s ease;
  outline: none;
}

a:active {
  color: #000;
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    color: #000;
    text-decoration: none;
  }
}
p {
  line-height: 2;
}
p + p {
  margin-top: 1em;
}
p + .toc-wrap {
  margin-top: 3em;
}

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 loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes mv-title-loop {
  0% {
    transform: translate(0, 8rem);
    opacity: 0;
  }
  5% {
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: translate(0, 0);
    opacity: 1;
  }
  55% {
    transform: translate(0, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 8rem);
    opacity: 0;
  }
}
@keyframes lineAnimeWidth {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*  inView */
.fadeOut {
  opacity: 1;
  transition: opacity 1s ease-out 2s;
}

.fadeOut.animated {
  opacity: 0;
}

.fadeIn:after {
  transition: opacity 2s ease-out 2s;
}

.fadeIn.animated:after {
  opacity: 1;
}

.scaleUp {
  opacity: 0;
  transform: scale(0.7);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.scaleUp.animated {
  opacity: 1;
  transform: scale(1);
}

.fadeInUpTxt {
  opacity: 1;
  transform: translate(0, 8rem);
  transition: transform 0.8s ease-in-out, opacity 0.4s ease-in-out 3s;
}

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

.fadeInUpTxt2 {
  transform: translate(0, 8rem);
  transition: transform 0.8s ease-in-out 3s;
  position: absolute;
  left: 0;
  bottom: 0;
}

.fadeInUpTxt2.animated {
  transform: translate(0, 0);
}

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

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

@media screen and (max-width: 767px) {
  .fadeInUp {
    transform: translate(0, 3rem);
  }

  .fadeInUp.animated {
    transform: translate(0, 0);
  }
}
.lineUnder.animated:before {
  animation: lineAnimeWidth 1s ease-out 1s;
  animation-fill-mode: both;
}

.fadeInLink:before {
  opacity: 0;
  transition: opacity 1s ease-out 2s;
}

.fadeInLink.animated:before {
  opacity: 1;
}

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

    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(--s3);
}
.l-stack > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.l-stack-02 {
  margin-top: var(--s8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 11rem;
}
.l-stack-02 > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

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

    layout cluster

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

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

    layout grid

*/
.l-grid {
  --minmum: calc((100% - 6.8rem) / 2);
  display: grid;
  grid-gap: 6.8rem;
}

.l-grid-02 {
  --minmum: calc((100% - 2rem) / 2);
  display: grid;
  grid-gap: 2rem;
}

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

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

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

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

    layout sidebar

*/
.l-sidebar {
  margin-top: var(--s9);
  display: flex;
  gap: var(--s9);
  align-items: flex-start;
}
.l-sidebar__side {
  width: 30rem;
  height: calc(100vh - 9rem);
  padding-bottom: var(--s4);
  position: sticky;
  top: 9rem;
  overflow: scroll;
}
.l-sidebar__main {
  flex: 1;
}

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

    layout column

*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s5);
}
.l-column__side {
  width: 37rem;
}
.l-column__side02 {
  width: 22rem;
}
.l-column__side03 {
  width: 32.5rem;
}
.l-column__side04 {
  width: 34rem;
}
.l-column__side05 {
  width: 30rem;
}
.l-column__side06 {
  width: 51.5rem;
}
.l-column__side07 {
  width: 48rem;
}
.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: "catch img" "text img";
  grid-template-columns: 1fr 45rem;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s5) 10rem;
}
.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: "img catch" "img text";
  grid-template-columns: 45rem 1fr;
}
.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;
}

.l-grid-areas-02 {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 30rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s2) var(--s4);
}
.l-grid-areas-02__cell-01 {
  grid-area: catch;
}
.l-grid-areas-02__cell-02 {
  grid-area: img;
}
.l-grid-areas-02__cell-03 {
  grid-area: text;
}

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

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

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

    header 

*/
.header-area {
  width: calc(100% - var(--s12));
  margin: 0 auto;
  padding: 1rem 0;
  border-bottom: solid 1px #bfc0c3;
  display: flex;
  gap: var(--s3);
  align-items: center;
}
.header-area__logo {
  width: 22rem;
  margin: 0 auto 0 0;
}
.header-area__logo a {
  display: block;
}
.header-area__name {
  font-size: 1.1rem;
}
.header-area__name a {
  text-decoration: none;
}
.header-area__right {
  text-align: right;
  font-size: 1.1rem;
}

@media (hover: hover) {
  .header-area__name a:hover {
    opacity: 0.7;
  }

  .header-area__logo a:hover {
    opacity: 0.7;
  }
}
.header-navi {
  width: fit-content;
  display: flex;
  justify-content: flex-end;
  gap: var(--s2);
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 101;
}
.header-navi .btn-web {
  margin: 0;
}
.header-navi .btn-web a {
  width: fit-content;
  height: 6rem;
  min-height: initial;
  padding: var(--s-2) 6rem var(--s-2) var(--s2);
  border-radius: var(--s-2);
  text-align: left;
}

.js-header-appear,
.js-header-appear2 {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.js-header-appear.is-fixed,
.js-header-appear2.is-fixed {
  opacity: 1;
  visibility: visible;
}

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

    main-area

*/
.main-area {
  overflow-x: clip;
  position: relative;
}

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

    main visual

*/
.mainvisual {
  width: calc(100% - var(--s12));
  margin: 0 auto;
  padding: 3rem 0 5.5rem;
  border-bottom: solid 1px #bfc0c3;
}
.mainvisual__title {
  font-size: 6.4rem;
  font-weight: 700;
  position: relative;
}
.mainvisual__title span {
  display: block;
}
.mainvisual__title span.upper {
  width: fit-content;
  display: block;
  padding-bottom: 0.3rem;
  overflow: hidden;
  position: relative;
}
.mainvisual__title span.under {
  margin-left: auto;
  margin-right: 0;
  width: fit-content;
  display: block;
  padding-bottom: 0.3rem;
  text-align: right;
  overflow: hidden;
  position: relative;
}
.mainvisual__title span .line:before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: solid 1px #bfc0c3;
  position: absolute;
  left: 0;
  bottom: 0;
}
.mainvisual__title span .line-anime {
  padding-left: var(--s5);
  position: relative;
}
.mainvisual__title span .line-anime:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: lineAnimeWidth 4s infinite;
}
.mainvisual__title span.first-anime {
  animation: mv-title-loop 8s infinite;
}
.mainvisual__title span.second {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.mainvisual__title span.second-anime {
  animation: mv-title-loop 8s infinite;
  animation-delay: 4s;
  animation-fill-mode: both;
}
.mainvisual-inner {
  margin-top: var(--s5);
  display: flex;
  gap: var(--s5);
}
.mainvisual-inner__body {
  padding-bottom: var(--s3);
  flex: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.mainvisual-inner__body:before {
  content: "A new alternative";
  font-family: "Dela Gothic One";
  font-size: 5rem;
  color: #e8e8e8;
  position: absolute;
  right: 0;
  top: 0;
}
.mainvisual-inner__body p {
  font-size: 1.8rem;
}
.mainvisual-inner__pic {
  display: flex;
  width: 56%;
  height: 40rem;
  overflow: clip;
}
.mainvisual-inner__pic img {
  animation: loop 120s -60s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}
.mainvisual-inner__pic img + img {
  animation: loop2 120s linear infinite;
}

@media (hover: hover) {
  .mainvisual-bottom__inner a:hover {
    opacity: 0.7;
  }
}
/*
---------------------------------------------

    list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: var(--s5) 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: #f28100;
  border-radius: 10rem;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 1em;
}
.main-area ol:not([class]) {
  margin: var(--s5) 0;
  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: #0082d8;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  position: absolute;
  top: 0.1em;
  left: 0;
}
.main-area ol:not([class]) li a {
  text-decoration: none;
}
.main-area ol:not([class]) li + li {
  margin-top: 1em;
}

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

    btn

*/
.btn-internal {
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: 37.5rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 2rem var(--s8);
  border: solid 1px #191919;
  background: #fff url("img/arrow-01-white-right.svg") no-repeat center right 2rem/3rem auto;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 0.4s, opacity 0.4s, color 0.4s;
}
.btn-internal--right a {
  margin-left: auto;
  margin-right: 0;
}

@media (hover: hover) {
  .btn-internal a:hover {
    background-color: #545454;
    color: #fff;
    background-image: url(img/arrow-02-white-right.svg);
  }
}
.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 37.5rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 2rem var(--s8);
  background: url("img/icon-window.svg") no-repeat center right 2rem/3rem auto, #f28100;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 0.4s, opacity 0.4s;
}

@media (hover: hover) {
  .btn-web a:hover {
    background-color: #f25500;
  }
}
.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: 0.2rem var(--s4) var(--s-2) 0;
  background: url("img/arrow-01-black-right.svg") no-repeat center right/2rem auto;
  display: inline-block;
  font-weight: 700;
  line-height: 1.5;
}
.btn-link--white a {
  color: #fff;
  background-image: url(img/arrow-01-blue-right.svg);
}

@media (hover: hover) {
  .btn-link a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.btn-tel {
  display: none;
}

.btn-column {
  margin: var(--s5) 0;
  display: flex;
  justify-content: center;
  gap: var(--s5);
}
.btn-column .btn-web,
.btn-column .btn-internal {
  margin: 0;
}
.btn-column .btn-web--pic1, .btn-column .btn-web--pic2,
.btn-column .btn-internal--pic1,
.btn-column .btn-internal--pic2 {
  margin-top: 11rem;
}

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

    TOC lower

*/
.toc-lower-wrap {
  max-width: 90rem;
  margin: var(--s8) auto var(--s10);
  padding: var(--s3) var(--s7) var(--s5);
  border: solid 1px #e5e5e5;
  border-radius: var(--s4);
  background: #fff;
  position: relative;
}
.toc-lower-wrap ul,
.toc-lower-wrap ul:not([class]) {
  margin-top: 0;
  margin-bottom: 0;
  counter-reset: numb;
}
.toc-lower-wrap ul li,
.toc-lower-wrap ul:not([class]) li {
  font-size: 1.6rem;
}
.toc-lower-wrap ul li + li,
.toc-lower-wrap ul:not([class]) li + li {
  margin-top: 1.2em;
}
.toc-lower-wrap ul li.chapter-h-two,
.toc-lower-wrap ul:not([class]) li.chapter-h-two {
  padding: 0 0 0 1.8em;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  counter-increment: numb;
}
.toc-lower-wrap ul li.chapter-h-two::before,
.toc-lower-wrap ul:not([class]) li.chapter-h-two::before {
  content: counter(numb, decimal-leading-zero);
  font-size: 1.3rem;
  font-weight: 700;
  position: absolute;
  top: 0.25em;
  left: 0.4rem;
}
.toc-lower-wrap ul li.chapter-h-two a,
.toc-lower-wrap ul:not([class]) li.chapter-h-two a {
  background: none;
}
.toc-lower-wrap ul li.chapter-h-three,
.toc-lower-wrap ul:not([class]) li.chapter-h-three {
  margin: var(--s2) 0 var(--s1) var(--s4);
  padding: 0 0 0 1.5em;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  position: relative;
}
.toc-lower-wrap ul li.chapter-h-three:before,
.toc-lower-wrap ul:not([class]) li.chapter-h-three:before {
  content: "└";
  position: absolute;
  left: 0;
  top: 0.1em;
}
.toc-lower-wrap ul li.chapter-h-three a,
.toc-lower-wrap ul:not([class]) li.chapter-h-three a {
  background: none;
}
.toc-lower-wrap ul li.relation-links,
.toc-lower-wrap ul:not([class]) li.relation-links {
  padding: 0 0 0 1.8em;
  font-size: 1.6rem;
  font-weight: 900;
  position: relative;
}
.toc-lower-wrap ul li.relation-links:before,
.toc-lower-wrap ul:not([class]) li.relation-links:before {
  width: 2rem;
  height: 2rem;
  background: url(img/arrow-01-white-right.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
}
.toc-lower-wrap a {
  display: block;
  text-decoration: none;
}

.toc-lower__title {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  font-weight: 700;
}
.toc-lower__title--relation {
  color: #0082d8;
}

@media (hover: hover) {
  .toc-lower-wrap a:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    table

*/
table {
  width: 100%;
  margin: var(--s5) 0;
  border-collapse: collapse;
  border-top: 1px solid #c7c7c7;
  border-left: 1px solid #c7c7c7;
}

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

th {
  background: #ecf7ff;
}

td {
  background: #fff;
}

tbody th {
  background: #ecf7ff;
}

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

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

    tab

*/
.tab-btn {
  width: calc((100% - var(--s3)) / 4);
  padding: 1.8rem var(--s4);
  background: #e8e8e8;
  border-radius: var(--s1) var(--s1) 0 0;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color ease 0.6s;
  position: relative;
  z-index: 1;
}
.tab-btn.is-active {
  margin-bottom: -1px;
  padding: 2rem var(--s1);
  background-color: #e9f6ff;
  border: 1px solid #000;
  border-bottom: none;
  font-size: 2.2rem;
}

.tab-btn-wrapper {
  margin-top: var(--s8);
  padding: 0 var(--s7);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s1);
}

.tab-content {
  padding: var(--s6) var(--s7);
  background: #e9f6ff;
  border: 1px solid #000;
  display: none;
  opacity: 0;
  position: relative;
}
.tab-content.is-active {
  display: block;
  animation: tabAnimation ease 0.6s forwards;
}

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

    caption

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

.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: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0061c2;
}

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

	text

*/
.marker {
  border-bottom: solid 0.4rem #f3b8a6;
  font-weight: 700;
}

.marker2 {
  background: linear-gradient(transparent 60%, #d6efff 60%);
}

.txt_bold {
  font-weight: 700;
  color: #f28100;
}

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

	subgrid card

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

.subgrid-card-02 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-gap: 0;
}

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

    float wrap

*/
.float-wrap {
  display: flow-root;
  margin: var(--s4) 0;
}
.float-wrap .float-img.fr {
  width: 37rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}
.float-wrap .float-img.fl {
  width: 37rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.float-wrap .float-img.ct {
  width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}

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

	pankuzu

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

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

    footer

*/
.footer-area {
  margin-top: 12rem;
  padding: 9rem 0 0;
  background: #e8e8e8;
  position: relative;
}

.footer-about {
  margin-bottom: var(--s8);
  padding: var(--s5) var(--s7) var(--s4);
  background: #fff;
  border-radius: var(--s2);
  align-items: center;
}
.footer-about__logo {
  display: block;
  width: 22rem;
}
.footer-about__title {
  margin-bottom: var(--s1);
  font-size: 2rem;
  font-weight: 700;
}
.footer-about .btn-link {
  margin-bottom: 0;
}

@media (hover: hover) {
  a.footer-about__logo:hover {
    opacity: 0.7;
  }
}
.footer-main {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
.footer-main__logo {
  width: 33.3rem;
  margin: 0 auto var(--s9);
}

.footer-bottom {
  padding: var(--s1) 0;
  background: #0061c2;
}
.footer-bottom__inner {
  max-width: 100rem;
  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.5rem;
  font-weight: 800;
  line-height: 1.5;
  border-bottom: 1px solid #909090;
}
.footer-menu-title__link {
  padding: var(--s-2) 0;
  display: block;
  text-decoration: none;
}
.footer-menu-title__link.official {
  padding-left: 3rem;
  position: relative;
}
.footer-menu-title__link.official:before {
  content: "";
  width: 2.1rem;
  height: 1.7rem;
  background: url(img/icon-window2.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .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.4rem;
  line-height: 1.5;
}
.footer-menu__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}

@media (hover: hover) {
  .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;
}

@media (hover: hover) {
  .footer-menu-sub__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.footer-disclaimer {
  width: 70rem;
  margin: var(--s8) auto var(--s6);
  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;
  color: #fff;
}
.footer-copyright__link {
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-copyright__link:hover {
    text-decoration: underline;
  }
}
.footer-sitemap {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}
.footer-sitemap__link {
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-sitemap__link:hover {
    text-decoration: underline;
    color: #fff;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 6rem;
  height: 6rem;
  background: #fff;
  border: solid 1px #909090;
  border-radius: 0.4rem;
  display: block;
  position: relative;
  z-index: 102;
  cursor: pointer;
}
.gnavi-btn span {
  width: 3rem;
  height: 0.2rem;
  display: inline-block;
  background: #191919;
  position: absolute;
  left: 1.4rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 2.9rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 3.8rem;
}
.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(-1rem) rotate(45deg);
}

.gnavi-area {
  width: 40rem;
  height: 100vh;
  padding: 8rem 0 var(--s5);
  background: #e8e8e8;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.gnavi-area__logo {
  width: 18rem;
  margin: 0 auto var(--s2);
}
.gnavi-area .gnavi-btn {
  position: fixed;
  right: 1rem;
  top: 1rem;
}

.gnavi-box__title {
  padding: 1.2rem var(--s6) 1.2rem var(--s2);
  border-bottom: 1px solid #999;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  cursor: pointer;
  transition: opacity 0.5s;
  position: relative;
}
.gnavi-box__title::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("img/arrow-03-black-down.svg") no-repeat center/contain;
  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.8);
}
.gnavi-box:first-child {
  border-top: 1px solid #999;
}

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

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

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

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

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

    page

*/
.page-top {
  width: 7.2rem;
  height: 7.2rem;
  position: fixed;
  right: 0;
  bottom: var(--s2);
  z-index: 10;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .page-top__link:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  line-height: 1.5;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: 3rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.2rem;
  height: 3rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: 3.8rem;
  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.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

@media (hover: hover) {
  .more-btn:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.more-content {
  display: none;
}

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

    グラデーション  more-content

*/
.more__content {
  position: relative;
  height: auto;
  max-height: 15rem;
  overflow: hidden;
  transition: max-height 0.4s;
}

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

.more__content.open {
  height: auto;
}

.more__content.open:after {
  z-index: -1;
  opacity: 0;
}

.more__content.sp-only {
  overflow: initial;
  max-height: initial;
}

.more__content.sp-only:after {
  content: none;
}

.more__btn {
  width: 22rem;
  min-width: 9rem;
  display: block;
  margin: var(--s2) auto -6.5rem;
  padding: 1.2rem 4.5rem 1.2rem;
  border-radius: 5rem;
  background: #e8e8e8;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.more__btn::before {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background: url(img/btn-more.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translate(0, -50%);
}
.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.6rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: 2.7rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}

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

.more__btn.for-sp {
  display: none;
}

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

    lower-parts

*/
.parts-comment-wrap {
  margin: var(--s6) 0;
  display: flex;
  gap: var(--s5);
}
.parts-comment-wrap__side {
  width: 10rem;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.3;
  position: relative;
}
.parts-comment-wrap__main {
  flex: 1;
}
.parts-comment-wrap--reverse {
  flex-direction: row-reverse;
}
.parts-comment-name {
  margin-top: var(--s-2);
  font-size: 1.8rem;
  font-weight: 700;
}
.parts-comment-name span.sm {
  font-size: 1.5rem;
}

.card-comment {
  padding: var(--s4);
  border-radius: var(--s2);
  background: rgba(0, 121, 216, 0.1);
}

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

    titles

*/
.main-area h1,
.main-area h2,
.main-area h3,
.main-area h4,
.main-area h5,
.main-area h6 {
  word-wrap: break-word;
}
.main-area--low h1,
.main-area--low h2,
.main-area--low h3,
.main-area--low h4,
.main-area--low h5,
.main-area--low h6 {
  font-weight: 700;
}
.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: var(--s4);
  text-decoration: none;
}

@media (hover: hover) {
  .main-area h2:not([class]) a:hover,
.main-area h3:not([class]) a:hover,
.main-area h4:not([class]) a:hover,
.main-area h5:not([class]) a:hover,
.main-area h6:not([class]) a:hover {
    opacity: 0.6;
  }
}
.title-block {
  width: calc(100% - var(--s12));
  margin: 0 auto;
  padding-bottom: var(--s6);
  border-bottom: solid 1px #bfc0c3;
  background: url(img/h1-deco.png) no-repeat;
  background-position: left calc(50% + 46rem) bottom var(--s2);
  background-size: auto 20rem;
}

h1:not([class]) {
  max-width: 82rem;
  margin: var(--s2) 0 0;
  padding-top: 6.2rem;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
h1:not([class]):before {
  content: "Contents";
  font-family: "Dela Gothic One";
  font-size: 5rem;
  color: #e8e8e8;
  position: absolute;
  left: 0;
  top: 0;
}

.main-area--low h2:not([class]) {
  margin: var(--s7) auto var(--s3);
  padding: var(--s2) var(--s3);
  background: #0082d8;
  border-radius: var(--s1);
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-02-white-right.svg) no-repeat right center;
  background-size: 2.8rem auto;
  color: #fff;
}
.main-area--low h3:not([class]) {
  margin: var(--s6) auto var(--s3);
  padding: 1.2rem 0;
  border-bottom: solid 1px #959595;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
}
.main-area--low h4:not([class]),
.main-area--low h5:not([class]) {
  margin: var(--s5) auto var(--s2);
  padding-left: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #0061c2;
  position: relative;
}
.main-area--low h4:not([class]):before,
.main-area--low h5:not([class]):before {
  content: "";
  width: 1rem;
  height: 100%;
  border-radius: var(--s1);
  background: #0061c2;
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h4:not([class]) a,
.main-area--low h5:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
  color: #0061c2;
}
.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  font-size: 1.7rem;
}
.main-area--low .icon-title {
  margin: var(--s7) auto var(--s5);
  padding: var(--s2) 0 var(--s2) 11rem;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.main-area--low .icon-title:before {
  content: "";
  width: 9rem;
  height: 9rem;
  background: url(img/icon-point.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

    TOP common

*/
.common-title {
  margin-bottom: var(--s4);
  font-size: 2.8rem;
  font-weight: 700;
}
.common-title a {
  display: inline-block;
  padding-right: 6rem;
  position: relative;
}
.common-title a:before {
  content: "";
  width: 3.3rem;
  height: 3.3rem;
  background: url(img/arrow-01-white-right.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.title-animation span.fadeInUp {
  display: inline-block;
  transition-delay: calc(0.03s * var(--index));
}
.title-animation span.line {
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.title-animation span.line:before {
  content: "";
  width: 100%;
  border-bottom: solid 1px #191919;
  position: absolute;
  left: 0;
  bottom: 0;
}
.title-animation span.base {
  display: inline-block;
  overflow: hidden;
}

@media (hover: hover) {
  .common-title a:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    TOP section

*/
.sec01 {
  padding: var(--s5) 0;
  background: url(img/sec01-pic-1.png) no-repeat left 82rem top var(--s3)/29rem auto;
}
.sec01-lead {
  max-width: 55rem;
}

.sec01-under {
  margin-top: var(--s12);
  padding-left: 50%;
  padding-bottom: var(--s3);
  position: relative;
}
.sec01-under:after {
  content: "";
  width: 55%;
  height: 1px;
  background: #191919;
  position: absolute;
  right: 0;
  bottom: 0;
}
.sec01-under__list {
  padding-left: var(--s2);
  position: relative;
}
.sec01-under__list:before {
  content: "";
  width: 28rem;
  height: 25rem;
  background: url(img/sec01-pic-2.png) no-repeat center/contain;
  position: absolute;
  left: -30rem;
  bottom: -1rem;
}
.sec01-under__item {
  width: fit-content;
  padding: var(--s1) var(--s3) var(--s1) 5.1rem;
  background: #d6efff url(img/icon-check.svg) no-repeat var(--s3) center/1.7rem auto;
  border-radius: var(--s1);
  font-size: 1.6rem;
  font-weight: 700;
}
.sec01-under__item + .sec01-under__item {
  margin-top: 1.2rem;
}

.sec02 {
  padding: 10rem 0 2rem;
  position: relative;
}
.sec02:before {
  content: "";
  width: 100%;
  height: 84rem;
  background: linear-gradient(to bottom, #fff 0%, #ecf7ff 55%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec02-title {
  margin-bottom: var(--s6);
  max-width: 55rem;
  font-size: 3.6rem;
  font-weight: 700;
}
.sec02-title span.cl {
  color: #0082d8;
}
.sec02 .l-center {
  background: url(img/sec02-pic-1.png) no-repeat right top/48rem auto;
}

.box-sponsored {
  margin: var(--s10) 0;
  padding: var(--s7) var(--s9) var(--s7) 0;
  position: relative;
}
.box-sponsored:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #0061c2;
  border-top-right-radius: var(--s10);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.box-sponsored__upper {
  margin-bottom: var(--s6);
  display: flex;
  gap: var(--s3);
  align-items: center;
}
.box-sponsored__label {
  width: fit-content;
  padding: 1.4rem var(--s2);
  background: #191919;
  border-radius: var(--s1);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.box-sponsored__label span.sm {
  font-size: 1.6rem;
  font-weight: 400;
}
.box-sponsored__name {
  flex: 1;
  color: #fff;
}
.box-sponsored .name-company {
  font-size: 3.2rem;
  font-weight: 700;
}
.box-sponsored .name-title {
  display: block;
}
.box-sponsored__pic {
  width: 32.5rem;
  position: relative;
}
.box-sponsored__pic:before {
  content: "";
  width: 12rem;
  height: 12rem;
  background: url(img/logo-kawasaki.png) no-repeat center/contain;
  position: absolute;
  left: -4rem;
  bottom: -3rem;
}
.box-sponsored__pic img {
  border-radius: var(--s2);
}
.box-sponsored__profile {
  color: #fff;
}
.box-sponsored .btn-column {
  margin-bottom: 0;
}

.sec03 {
  padding: 0 0 var(--s10);
  background: linear-gradient(to bottom, #fff 29rem, #f1f1f1 29rem);
}
.sec03-cards {
  margin: var(--s6) 0 11rem;
}
.sec03-ttlcolumn {
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
}
.sec03-ttlcolumn .common-title {
  flex: 1;
}
.sec03-lead {
  width: 50%;
  font-size: 2rem;
}
.sec03-lead span.st {
  font-weight: 700;
}

.card-case {
  padding: 0 var(--s2) var(--s2);
  position: relative;
  z-index: 0;
}
.card-case:before {
  content: "";
  width: 100%;
  height: calc(100% - var(--s3));
  background: #fff;
  border: solid 1px #191919;
  border-radius: var(--s3);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.card-case__title {
  width: fit-content;
  margin: 0 auto;
  padding: var(--s1) var(--s3);
  border-radius: var(--s1);
  background: #191919;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.box-interview {
  margin: var(--s8) 0;
  padding: var(--s9) var(--s10) var(--s7);
  background: #fff;
  border-radius: var(--s3);
}
.box-interview__title {
  margin-bottom: var(--s6);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.8;
  position: relative;
}
.box-interview__title-en {
  font-size: 2rem;
  font-weight: 700;
  color: #0061c2;
}
.box-interview__pic {
  position: relative;
}
.box-interview__pic img {
  border-radius: 50%;
}
.box-interview__subtitle {
  margin-bottom: var(--s7);
  padding: var(--s2) 0;
  font-size: 3.4rem;
  font-weight: 700;
  color: #0061c2;
  position: relative;
  z-index: 0;
}
.box-interview__subtitle:before {
  content: "";
  width: 110rem;
  height: 100%;
  background: #e9f6ff;
  position: absolute;
  left: calc(var(--s10) * -1);
  top: 0;
  z-index: -1;
}
.box-interview .btn-link {
  margin-top: 2rem;
}
.box-interview--low {
  padding: var(--s7) var(--s6);
  border: solid 1px #0082d8;
}
.box-interview--low .box-interview__subtitle:before {
  width: calc(100rem - 2px);
  left: calc(var(--s6) * -1);
}

.interviewer-info {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}

.box-qa {
  margin-top: var(--s6);
  padding: var(--s4) 0;
  border-top: solid 1px #191919;
  border-bottom: solid 1px #191919;
}
.box-qa__title {
  margin-bottom: var(--s4);
  padding-left: var(--s7);
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
}
.box-qa__title:before {
  content: "";
  width: 4.4rem;
  height: 3.9rem;
  background: url(img/txt-q.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}
.box-qa__body {
  padding-left: var(--s7);
}
.box-qa__answer {
  margin-bottom: var(--s4);
  font-size: 2.8rem;
  position: relative;
}
.box-qa__answer:before {
  content: "";
  width: 4.4rem;
  height: 3.9rem;
  background: url(img/txt-a.png) no-repeat center/contain;
  position: absolute;
  left: calc(var(--s7) * -1);
  top: 0;
}
.box-qa + .box-qa {
  margin-top: 0;
  border-top: none;
}
.box-qa--low {
  margin: var(--s10) 0;
}

.box-change {
  margin-top: var(--s8);
  padding: var(--s5) 0;
  position: relative;
  z-index: 0;
}
.box-change:before {
  content: "";
  width: calc(100% + var(--s8));
  height: 100%;
  border-radius: var(--s2);
  background: #e9f6ff;
  position: absolute;
  left: calc(var(--s4) * -1);
  top: 0;
  z-index: -1;
}
.box-change__title {
  margin-bottom: var(--s8);
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
}
.box-change__title span.tag-block {
  margin-bottom: var(--s2);
  background: url(img/line-change.png) no-repeat center/contain;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: var(--s4);
  font-size: 2.4rem;
}
.box-change__title span.tag-block span {
  display: block;
  width: fit-content;
  padding: var(--s1) 2rem var(--s1) var(--s3);
  background: #0061c2;
  color: #fff;
  line-height: 1;
}
.box-change__title span.before {
  position: relative;
}
.box-change__title span.before:before {
  content: "";
  width: 1.6rem;
  height: 100%;
  background: url(img/corner-blue.png) no-repeat left top/100% 100%;
  position: absolute;
  left: 100%;
  top: 0;
}
.box-change__title span.after {
  margin-top: 3rem;
  padding: var(--s1) var(--s3) var(--s1) 2rem;
  background: #0061c2;
  position: relative;
}
.box-change__title span.after:before {
  content: "";
  width: 1.6rem;
  height: 100%;
  background: url(img/corner-blue.png) no-repeat left top/100% 100%;
  position: absolute;
  right: 100%;
  top: 0;
  transform: scale(-1, -1);
}

.box-schedule__title {
  padding-bottom: 0.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  position: relative;
  position: relative;
}
.box-schedule__title:before {
  content: "";
  width: 1px;
  height: calc(100% - 9.4rem);
  border-right: dashed 1px #191919;
  position: absolute;
  left: 4.7rem;
  top: 9.5rem;
  z-index: -1;
}
.box-schedule__title .tag {
  width: 9.4rem;
  height: 9.4rem;
  background: #0061c2;
  border-radius: var(--s1);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-schedule__title .day {
  padding-top: 1rem;
  flex: 1;
  font-size: 2.4rem;
  font-weight: 700;
}
.box-schedule__title .day span.sm {
  font-size: 2rem;
}
.box-schedule__title .pic {
  height: 15.4rem;
  margin: var(--s1) auto var(--s1) var(--s3);
}
.box-schedule__summary {
  margin-top: var(--s4);
  padding: var(--s2);
  background: #fff;
  border-radius: var(--s1);
  font-size: 1.4rem;
}

.schedule-dl {
  margin-left: var(--s1);
  display: flex;
  gap: 1.4rem;
  position: relative;
}
.schedule-dl:before {
  content: "";
  width: 1px;
  height: 100%;
  border-right: dashed 1px #191919;
  position: absolute;
  left: 3.9rem;
  top: 7.8rem;
  z-index: -1;
}
.schedule-dl.a1:before {
   height: 137%;
}
.schedule-dl.a2:before {
   height: 137%;
}
.schedule-dl:last-child:before {
  content: none;
}
.schedule-dl__term {
  width: 7.8rem;
  height: 7.8rem;
  margin-bottom: var(--s2);
  padding: var(-s1);
  border-radius: 50%;
  background: #191919;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-dl__catch {
  min-height: 7.8rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.schedule-dl__desc {
  flex: 1;
}
.schedule-dl + .schedule-dl {
  margin-top: var(--s4);
}
.schedule-dl + .schedule-dl.a2,.schedule-dl + .schedule-dl.a3{
  margin-top: 14rem;
}
.box-summary {
  margin: 11rem 0 var(--s7);
  padding: var(--s2) 0 var(--s4);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
  z-index: 0;
}
.box-summary:before {
  content: "Summary";
  background: #f1f1f1;
  font-family: "Dela Gothic One";
  font-size: 10rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: -2rem;
  top: -6.5rem;
  z-index: -1;
}
.box-summary:last-child {
  margin-bottom: 0;
}
.box-summary__title {
  margin-bottom: var(--s4);
  font-size: 2.8rem;
  font-weight: 700;
  color: #0061c2;
}
.box-summary__body {
  max-width: 94rem;
  margin: 0 0 0 auto;
}
.box-summary--low {
  margin: 12rem 0 var(--s8);
  padding: var(--s4) 0;
  position: relative;
}
.box-summary--low:after {
  content: "";
  width: calc(100% + var(--s9) * 2);
  height: calc(100% + var(--s4));
  background: #f1f1f1;
  border-radius: var(--s3);
  position: absolute;
  left: calc(var(--s9) * -1);
  bottom: 0;
  z-index: -2;
}
.box-summary--low .box-summary {
  margin-top: 0;
}

.sec04 {
  padding: 9.2rem 0 12rem;
}

.box-feature {
  margin-bottom: 7rem;
}
.box-feature__title {
  font-size: 3.6rem;
  font-weight: 700;
}
.box-feature__title span.upper {
  margin-bottom: var(--s1);
  display: flex;
  gap: var(--s3);
  align-items: center;
}
.box-feature__title span.tag {
  width: fit-content;
  padding: var(--s-2) var(--s2);
  background: #191919;
  border-radius: var(--s1);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.box-feature__title span.name {
  flex: 1;
  font-size: 3rem;
}
.box-feature__body p {
  font-size: 1.5rem;
}
.box-feature__pic img {
  border-radius: var(--s3);
}

.area-corner {
  padding: 9rem 0;
  position: relative;
  z-index: 0;
}
.area-corner:before {
  content: "";
  width: calc(100vw + 96rem);
  height: 100%;
  background: #0061c2;
  border-radius: var(--s10) 0 0 var(--s10);
  position: absolute;
  left: -9.6rem;
  top: 0;
  z-index: -1;
}
.area-corner__inner {
  margin-bottom: 11rem;
  background: url(img/sec04-pic-2.png) no-repeat left var(--s7) bottom/41.1rem auto;
}
.area-corner__subtitle {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}
.area-corner__title {
  margin-bottom: var(--s4);
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
}
.area-corner__summary-title {
  margin-bottom: var(--s4);
  padding-left: 15.5rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.area-corner__summary-title:before {
  content: "";
  width: 14.5rem;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
}
.area-corner__summary-body {
  padding-left: 15.5rem;
  color: #fff;
}
.area-corner .btn-column:last-child {
  margin-bottom: 0;
}

.card-type {
  padding: var(--s3) var(--s4);
  background: #fff;
  border-radius: var(--s2);
}
.card-type__title {
  margin-bottom: var(--s2);
  padding-left: var(--s2);
  border-left: solid 1rem #f28100;
  font-size: 2rem;
  font-weight: 700;
}
.card-type + .card-type {
  margin-top: var(--s2);
}

.box-introduce {
  margin: var(--s8) 0;
  padding: var(--s5) 0 var(--s5) var(--s7);
  border-radius: var(--s3);
  position: relative;
  z-index: 0;
}
.box-introduce:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #f4f4f4;
  border-radius: var(--s3) 0 0 var(--s3);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-introduce__title {
  margin-bottom: var(--s3);
  font-size: 2.8rem;
  font-weight: 700;
  color: #f28100;
}
.box-introduce__pic img {
  border-radius: 50%;
}
.box-introduce__block {
  margin-bottom: var(--s4);
  display: flex;
  gap: var(--s2);
  justify-content: flex-end;
  font-size: 1.6rem;
  font-weight: 700;
}
.box-introduce__block .name {
  white-space: nowrap;
  width: fit-content;
}
.box-introduce__block .carrer {
  width: fit-content;
}

.sec05 {
  padding-bottom: 12rem;
}
.sec05-column {
  gap: var(--s7);
}
.sec05-subtitle {
  margin-bottom: var(--s2);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 0;
}
.sec05-subtitle span {
  padding-right: var(--s1);
  background: #e9f6ff;
}
.sec05-subtitle:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.sec05-list {
  margin: var(--s2) 0 var(--s6);
}
.sec05-list:last-child {
  margin-bottom: 0;
}
.sec05-list__item {
  padding-left: 1.8rem;
  position: relative;
}
.sec05-list__item:before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec05-list__item + .sec05-list__item {
  margin-top: var(--s1);
}

.card-botann {
  padding: 1.2rem var(--s8) 1.2rem 2rem;
  background: #444 url(img/arrow-02-white-right.svg) no-repeat right 2rem center/3rem auto;
  border-radius: var(--s2);
  border: solid 0.2rem #444;
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.card-botann img {
  display: block;
  width: 8rem;
}

@media (hover: hover) {
  .card-botann:hover {
    background-color: #fff;
    color: #000;
    background-image: url(img/arrow-01-white-right.svg);
  }
}
.text-line {
  position: relative;
}
.text-line:before {
  content: "";
  width: 33.3rem;
  height: calc(100% + 1rem);
  border: solid 0.5rem #191919;
  position: absolute;
  right: 0;
  top: -0.5rem;
  box-sizing: border-box;
}

@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(--s2);
    padding-left: var(--s2);
    box-sizing: border-box;
  }

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

      sp layout stack

  */
  .l-stack {
    gap: var(--s2);
  }

  .l-stack-02 {
    margin-top: var(--s5);
    gap: var(--s8);
  }

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

      sp layout cluster

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

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

      sp layout grid

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

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

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

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

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

      sp layout sidebar

  */
  .l-sidebar {
    margin-top: var(--s4);
    flex-wrap: wrap;
  }
  .l-sidebar__side {
    width: 100%;
    height: auto;
    position: static;
  }
  .l-sidebar__main {
    width: 100%;
  }

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

      sp layout column

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

  .l-column-02 {
    gap: var(--s2);
    position: relative;
  }
  .l-column-02__side {
    width: 14rem;
    margin: 0;
  }
  .l-column-02__main {
    width: 100%;
    flex: none;
  }

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

      sp layout grid areas

  */
  .l-grid-areas {
    grid-template-areas: "catch" "img" "text";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    grid-gap: var(--s1);
  }
  .l-grid-areas.sec01-column {
    grid-template-columns: 100%;
  }
  .l-grid-areas.sec01-column.l-grid-areas--row-reverse {
    grid-template-columns: 100%;
  }

  .l-grid-areas-02 {
    grid-template-areas: "catch" "img" "text";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
  }

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

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    margin: var(--s5) 0;
    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;
  }
  .l-scroll-x-sp table,
.l-scroll-x-sp img {
    width: 70rem;
    max-width: initial;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      header area

  */
  .header-area {
    width: calc(100% - var(--s2));
    padding: var(--s1) 0;
    display: block;
  }
  .header-area .gnavi-btn {
    position: absolute;
    top: var(--s1);
    right: var(--s1);
    z-index: 101;
  }
  .header-area__logo {
    width: 15rem;
    margin-bottom: var(--s1);
  }
  .header-area__right {
    text-align: left;
  }
  .header-area__name {
    padding-right: 6.5rem;
  }

  .header-navi .btn-web {
    position: fixed;
    left: 0;
    bottom: 0;
  }
  .header-navi .btn-web a {
    font-size: 1.4rem;
    border-radius: 0 var(--s1) 0 0;
  }

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

      main visual

  */
  .mainvisual {
    width: calc(100% - var(--s2));
    padding: var(--s3) var(--s1) var(--s2);
  }
  .mainvisual__title {
    font-size: 2.4rem;
  }
  .mainvisual-inner {
    margin-top: var(--s3);
    flex-wrap: wrap;
  }
  .mainvisual-inner__pic {
    width: 100%;
    height: 18rem;
  }
  .mainvisual-inner__body {
    width: 100%;
    padding-bottom: 0;
    flex: initial;
	display: block;
  }
  .mainvisual-inner__body:before {
    margin-top: -3.5rem;
    font-size: 2rem;
  }
  .mainvisual-inner__body p {
    font-size: 1.5rem;
  }
	.mainvisual-inner__body .pr-text{
    font-size: 1.1rem;
  }

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

      toc　lower

  */
  .toc-lower-wrap {
    margin: var(--s5) auto;
    padding-left: var(--s3);
    padding-right: var(--s3);
    border-radius: var(--s3);
  }
  .toc-lower-wrap--relation .toc-lower__body {
    padding-bottom: var(--s3);
  }
  .toc-lower-wrap ul li + li {
    margin-top: var(--s2);
  }
  .toc-lower-wrap ul li.chapter-h-two {
    font-size: 1.6rem;
  }
  .toc-lower-wrap ul li.chapter-h-two:before {
    top: 0.15em;
  }
  .toc-lower-wrap ul li.chapter-h-three {
    font-size: 1.4rem;
  }
  .toc-lower-wrap ul:not([class]) li {
    font-size: 1.5rem;
  }
  .toc-lower-wrap .more__btn {
    margin-top: var(--s1);
    margin-bottom: -6.5rem;
  }
  .toc-lower__title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .toc-lower__title span.en img {
    height: 2.5rem;
  }

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

      list

  */
  .main-area .subList li:before,
.main-area ol:not([class]) li:before {
    top: 0;
  }

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

      sp btn

  */
  .btn-internal,
.btn-web {
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    width: 94%;
    min-height: 6rem;
    padding-right: 5rem;
    padding-left: 5rem;
    background-position: right 2rem center, 0 0;
    background-size: 2.4rem auto, auto;
    font-size: 1.5rem;
  }

  .btn-internal--right a {
    margin-right: auto;
  }

  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    padding-right: 2.8rem;
    background-size: 2rem auto;
    font-size: 1.4rem;
  }

  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 94%;
    min-height: 6rem;
    margin: 0 auto;
    padding: var(--s2) var(--s6);
    background: url("img/icon-tel.png") no-repeat center left var(--s3)/2.2rem auto, #ff9c2a;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }

  .btn-column {
    margin: var(--s2) 0;
    flex-direction: column;
    gap: var(--s3);
  }
  .btn-column .btn-web,
.btn-column .btn-internal,
.btn-column .btn-tel {
    margin: 0;
  }
  .btn-column .btn-web--pic1, .btn-column .btn-web--pic2,
.btn-column .btn-internal--pic1,
.btn-column .btn-internal--pic2,
.btn-column .btn-tel--pic1,
.btn-column .btn-tel--pic2 {
    margin-top: 7rem;
  }
  .btn-column--top {
    margin: var(--s2) auto 0;
    gap: var(--s1);
  }
  .btn-column--top .box-btns {
    margin: 0 auto var(--s4);
  }
  .btn-column--share {
    flex-direction: row;
    gap: var(--s1);
  }

  .btn-share__link {
    padding-right: var(--s2);
    padding-left: var(--s2);
    font-size: 1.1rem;
  }
  .btn-share__link img {
    width: 3rem;
  }

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

      sp table

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

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

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

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

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

  	sp catch

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

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

  	subgrid card

  */
  .subgrid-card {
    grid-gap: 0;
  }

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

      sp float wrap

  */
  .float-wrap .float-img.fr {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .float-wrap .float-img.fl {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .float-wrap .float-img.ct {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

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

  	sp pankuzu

  */
  #pankuzu {
    margin: var(--s1) 0 var(--s2);
  }

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

      sp footer

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

  .footer-about {
    max-width: 86%;
    margin: 0 auto var(--s3);
    padding: var(--s4) var(--s3) var(--s3);
  }
  .footer-about__logo {
    width: 18rem;
    margin: -4.5rem auto var(--s1);
  }
  .footer-about__title {
    font-size: 1.5rem;
  }
  .footer-about p {
    font-size: 1.3rem;
  }

  .footer-main {
    padding-right: 0;
    padding-left: 0;
    box-sizing: border-box;
  }
  .footer-main__logo {
    width: 23rem;
    margin: 0 auto var(--s4);
  }

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

  .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.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 1.4rem;
  }
  .footer-menu-title__link.official {
    margin-left: var(--s2);
  }

  .footer-menu {
    padding: var(--s1) 0;
    background: rgba(255, 255, 255, 0.3);
    gap: 0;
  }
  .footer-menu__item {
    width: 100%;
  }
  .footer-menu__link {
    padding: var(--s1) var(--s2);
  }

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

  .footer-banner-01 {
    width: 50%;
    right: auto;
    left: 0;
    bottom: 0;
    border-radius: 0;
    border-left: none;
    border-bottom: 0;
    border-right: solid 0.2rem #2d2a47;
  }
  .footer-banner-01 .upper {
    padding: var(--s-2) var(--s1);
    border-radius: 0;
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .footer-banner-01 .upper:before {
    width: 4.5rem;
    height: 5rem;
    right: -1rem;
  }
  .footer-banner-01 .upper span.st {
    font-size: 1.3rem;
  }
  .footer-banner-01 .under {
    padding: var(--s-2) var(--s1);
    font-size: 1.3rem;
    background-position: right var(--s1) center;
    background-size: 1.3rem auto;
  }

  .footer-banner-02 {
    width: 50%;
    right: 0;
    left: auto;
    bottom: 0;
    border-radius: 0;
    border-right: none;
    border-left: solid 0.2rem #0082d8;
    border-bottom: 0;
  }
  .footer-banner-02 .upper {
    padding: var(--s-2) var(--s1);
    font-size: 1.3rem;
  }
  .footer-banner-02 .upper:before {
    width: 3.5rem;
    height: 3.5rem;
    top: var(--s1);
  }
  .footer-banner-02 .under {
    padding: var(--s-2) var(--s1);
    border-radius: 0;
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .footer-banner-02 .under span.sm {
    font-size: 1.3rem;
  }
  .footer-banner-02 .under span.sm2 {
    font-size: 1.2rem;
  }

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

  	sp gnavi

  */
  .gnavi-btn {
    width: 5rem;
    height: 5rem;
  }
  .gnavi-btn span {
    width: 2.7rem;
    left: 1rem;
  }
  .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%;
    padding: var(--s5) 0 var(--s4);
  }
  .gnavi-area__logo {
    display: block;
    width: 20rem;
    margin: 0 auto var(--s2);
  }
  .gnavi-area .gnavi-btn {
    right: var(--s1);
    top: var(--s1);
  }

  .gnavi-logo {
    width: 22rem;
    margin: 0 auto var(--s2);
    padding-right: var(--s3);
  }

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

      sp page

  */
  .page-top {
    width: 4.5rem;
    height: 4.5rem;
    bottom: 0;
  }

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

       sp toggle sp

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

  .toggle-btn:after {
    height: var(--s3);
    right: 3.5rem;
  }
  .toggle-btn:before {
    width: var(--s3);
  }

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

       tab

  */
  .tab-btn-wrapper {
    margin-top: var(--s4);
    padding: 0 var(--s1);
  }

  .tab-btn {
    height: 5.2rem;
    padding: 0.8rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tab-btn.is-active {
    height: 6.2rem;
    font-size: 1.2rem;
  }

  .tab-content {
    padding: var(--s2);
  }
  .tab-content.is-active {
    animation: tabAnimation ease 0.1s forwards;
  }

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

      sponsored

  */
  .area-sponsored {
    margin-bottom: var(--s5);
  }
  .area-sponsored--mb {
    margin-bottom: 0;
  }
  .area-sponsored:before {
    width: 100%;
    height: calc(100% - var(--s2));
    top: var(--s2);
    border-radius: var(--s2);
  }
  .area-sponsored:after {
    font-size: 3.4rem;
    top: -0.5rem;
    left: auto;
    right: 0;
  }
  .area-sponsored__tag {
    padding: 0 var(--s5) 0 0;
    font-size: 2.2rem;
  }
  .area-sponsored__tag:before {
    width: 100%;
    top: var(--s2);
  }
  .area-sponsored__tag--low {
    margin-left: 0;
  }
  .area-sponsored__inner {
    padding: 0 var(--s2);
  }
  .area-sponsored__column {
    margin-bottom: var(--s2);
    flex-wrap: wrap;
    gap: var(--s3);
  }
  .area-sponsored__logo {
    width: 100%;
    text-align: center;
  }
  .area-sponsored__logo img {
    width: 18rem;
  }
  .area-sponsored__catch {
    width: 100%;
    font-size: 1.8rem;
  }
  .area-sponsored__catch span.st {
    font-size: 2.2rem;
  }
  .area-sponsored .arrow-corner {
    left: auto;
    right: 0;
  }

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

      lower-parts

  */
  .tag-list {
    flex-wrap: wrap;
    gap: var(--s1);
  }
  .tag-list__title {
    width: 100%;
    font-size: 1.6rem;
  }

  .card-comment {
    padding: var(--s2);
    border-width: 0.2rem;
  }
  .card-comment:before {
    width: 1.2rem;
    height: 1.6rem;
    left: -1.1rem;
    top: var(--s4);
  }
  .card-comment__catch {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .card-comment p.card-comment__catch {
    line-height: 1.5;
  }

  .parts-comment-wrap {
    gap: var(--s2);
  }
  .parts-comment-wrap__side {
    width: 7rem;
  }
  .parts-comment-wrap__side p {
    margin-top: var(--s-2);
    line-height: 1.5;
  }
  .parts-comment-wrap__side p span.st {
    font-size: 1.4rem;
  }

  .parts-comment-name {
    font-size: 1.5rem;
  }
  .parts-comment-name span.sm {
    font-size: 1.3rem;
  }

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

      SP titles

  */
  .main-area--low h2:not([class]),
.main-area--low h3:not([class]),
.main-area--low h4:not([class]),
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low .title-block {
    width: calc(100% - var(--s2));
    padding-bottom: var(--s4);
    background-position: right top var(--s4);
    background-size: auto 6rem;
  }
  .main-area--low .title-block .l-center {
    padding-left: 0;
    padding-right: 0;
  }
  .main-area--low h1:not([class]) {
    margin-top: var(--s2);
    padding-top: var(--s5);
    font-size: 2.2rem;
  }
  .main-area--low h1:not([class]):before {
    font-size: 2.6rem;
    line-height: 1;
  }
  .main-area--low h2:not([class]) {
    font-size: 1.9rem;
    padding: 1.2rem var(--s2) 1.2rem var(--s2);
    border-radius: var(--s-2);
    border-width: 0.6rem;
    background-size: 15rem auto;
  }
  .main-area--low h2:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]) {
    padding-bottom: var(--s1);
    font-size: 1.7rem;
  }
  .main-area--low h3:not([class]):before {
    width: 2.4rem;
  }
  .main-area--low h3:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h4:not([class]) {
    padding-left: 1.4rem;
    font-size: 1.5rem;
  }
  .main-area--low h4:not([class]):before {
    width: 0.6rem;
  }
  .main-area--low h4:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h5:not([class]) {
    font-size: 1.4rem;
  }
  .main-area--low h5:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h6:not([class]) {
    font-size: 1.4rem;
  }

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

      SP end

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

      TOP section

  */
  .common-title {
    margin-bottom: var(--s2);
    font-size: 1.9rem;
  }

  .sec01 {
    padding-top: 5rem;
    background-size: 8.6rem auto;
    background-position: right var(--s1) top var(--s1);
  }
  .sec01-under {
    margin-top: var(--s8);
    padding-left: 0;
  }
  .sec01-under:after {
    width: 100%;
  }
  .sec01-under__list {
    padding-left: 0;
  }
  .sec01-under__list:before {
    width: 10rem;
    height: 10rem;
    left: auto;
    right: 0;
    bottom: auto;
    top: -8rem;
    z-index: -1;
  }
  .sec01-under__item {
    width: 100%;
    padding: var(--s1) var(--s2) var(--s1) 3rem;
    background-position: var(--s1) center;
    background-size: 1.4rem auto;
    font-size: 1.3rem;
  }
  .sec01-under__item:first-of-type {
    width: fit-content;
  }

  .sec02 {
    padding: 0 0 var(--s5) 0;
  }
  .sec02:before {
    height: 94rem;
  }
  .sec02 .l-center {
    background: none;
  }
  .sec02-title {
    margin-bottom: var(--s2);
    padding-bottom: 25rem;
    background: url(img/sec02-pic-1.png) no-repeat center bottom/auto 25rem;
    font-size: 2.2rem;
  }

  .box-sponsored {
    margin: var(--s6) 0 0;
    padding: var(--s2) var(--s2) var(--s5) 0;
  }
  .box-sponsored__upper {
    margin-bottom: var(--s3);
    flex-flow: wrap;
    gap: var(--s1);
  }
  .box-sponsored__label {
    padding: var(--s1);
    font-size: 1.4rem;
  }
  .box-sponsored__label span.sm {
    font-size: 1.3rem;
  }
  .box-sponsored__name {
    width: 100%;
    flex: initial;
  }
  .box-sponsored .name-title {
    font-size: 1.5rem;
  }
  .box-sponsored .name-company {
    font-size: 2.2rem;
  }
  .box-sponsored__pic {
    width: 90%;
    margin-left: auto;
    margin-right: 0;
  }
  .box-sponsored__pic:before {
    width: 8rem;
    height: 8rem;
    bottom: -1rem;
    left: -3.5rem;
  }
  .box-sponsored--low {
    margin-bottom: var(--s8);
  }

  .sec03 {
    padding-bottom: var(--s8);
  }
  .sec03-cards {
    margin: var(--s3) 0;
  }
  .sec03-ttlcolumn {
    flex-wrap: wrap;
    gap: var(--s2);
  }
  .sec03-ttlcolumn .common-title {
    width: 100%;
    flex: initial;
  }
  .sec03-lead {
    width: 100%;
  }
  .sec03-lead p {
    font-size: 1.6rem;
  }

  .card-case:before {
    height: calc(100% - var(--s2));
  }
  .card-case__title {
    padding: var(--s-2) var(--s1);
    font-size: 1.6rem;
  }

  .box-interview {
    padding: var(--s3) var(--s2);
  }
  .box-interview__title {
    margin-bottom: var(--s2);
    font-size: 2.2rem;
  }
  .box-interview__title:before {
    font-size: 1.6rem;
  }
  .box-interview__title-en {
    font-size: 1.6rem;
  }
  .box-interview__subtitle {
    margin-bottom: 0;
    font-size: 1.8rem;
  }
  .box-interview__subtitle:before {
    width: calc(100% + var(--s4));
    left: calc(var(--s2) * -1);
  }
  .box-interview__pic {
    width: 76%;
    margin: 0 auto var(--s1);
  }
  .box-interview--low .box-interview__subtitle:before {
    width: calc(100% + var(--s4));
    left: calc(var(--s2) * -1);
  }

  .box-qa {
    margin-top: var(--s5);
  }
  .box-qa__title {
    padding: 0 0 0 var(--s4);
    font-size: 1.6rem;
  }
  .box-qa__title:before {
    width: 2.4rem;
    height: 2.6rem;
    left: 0;
  }
  .box-qa__answer {
    padding: 0 0 0 var(--s4);
    font-size: 1.6rem;
  }
  .box-qa__answer:before {
    width: 2.4rem;
    height: 2.6rem;
    left: 0;
  }
  .box-qa__body {
    padding-left: 0;
  }
  .box-qa__catch {
    margin-bottom: var(--s2);
    padding-left: var(--s6);
    font-size: 1.7rem;
  }
  .box-qa__catch:before {
    left: 1rem;
    width: 2.5rem;
    height: 2.8rem;
  }
  .box-qa--low {
    margin: var(--s8) 0;
  }

  .box-change {
    margin-top: var(--s5);
    padding-bottom: var(--s1);
  }
  .box-change:before {
    width: 100%;
    left: 0;
  }
  .box-change__title {
    margin-bottom: var(--s3);
    font-size: 2rem;
  }
  .box-change__title span.tag-block {
    margin-bottom: var(--s1);
    font-size: 1.6rem;
  }
  .box-change__title span.tag-block span {
    padding: var(--s1);
  }
  .box-change__title span.before:before {
    width: 1.2rem;
  }
  .box-change__title span.after {
    margin-top: 1.4rem;
  }
  .box-change__title span.after:before {
    width: 1.2rem;
    right: 99.8%;
  }

  .box-schedule {
    padding: 0 1rem;
  }
  .box-schedule__title::before {
    height: 100%;
    top: 0;
    left: 3.2rem;
  }
  .box-schedule__title .tag {
    width: 6.5rem;
    height: 6.5rem;
    font-size: 1.4rem;
  }
  .box-schedule__title .day {
    font-size: 1.8rem;
  }
  .box-schedule__title .day span.sm {
    font-size: 1.4rem;
  }
  .box-schedule__title .pic {
    height: 10rem;
  }
  .box-schedule__summary {
    margin-top: var(--s2);
    margin-bottom: var(--s4);
  }

  .schedule-dl {
    margin-left: 0;
    gap: var(--s1);
  }
  .schedule-dl:before {
    left: 3.2rem;
    top: var(--s2);
  }
	.schedule-dl.a1:before {
   height: 100%;
}
.schedule-dl.a2:before {
   height: 100%;
}
  .schedule-dl__term {
    width: 6.5rem;
    height: 6.5rem;
    font-size: 1.5rem;
  }
  .schedule-dl__catch {
    min-height: 6.5rem;
    font-size: 1.5rem;
  }
  .schedule-dl + .schedule-dl {
    margin-top: var(--s2);
  }
.schedule-dl + .schedule-dl.a2, .schedule-dl + .schedule-dl.a3 {
  margin-top: var(--s2);
}
  .box-summary {
    margin: var(--s8) 0;
    padding-top: var(--s1);
    padding-bottom: var(--s2);
  }
  .box-summary:before {
    font-size: 4.5rem;
    left: -1rem;
    top: -3rem;
  }
  .box-summary__title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }

  .box-feature {
    margin-bottom: var(--s5);
  }
  .box-feature__title {
    font-size: 2rem;
    text-align: center;
  }
  .box-feature__title span.upper {
    gap: var(--s1);
    justify-content: center;
  }
  .box-feature__title span.tag {
    font-size: 1.3rem;
  }
  .box-feature__title span.name {
    flex: none;
    font-size: 1.5rem;
  }
  .box-feature__pic {
    width: 70%;
    margin: 0 auto;
  }
  .box-feature__body p {
    font-size: 1.4rem;
  }

  .sec04 {
    padding: var(--s8) 0;
  }

  .area-corner {
    padding: var(--s5) 0;
  }
  .area-corner:before {
    border-radius: var(--s5) 0 0 var(--s5);
    left: calc(var(--s2) * -1);
  }
  .area-corner__subtitle {
    font-size: 1.8rem;
  }
  .area-corner__inner {
    margin-bottom: var(--s6);
  }
  .area-corner__title {
    font-size: 2.2rem;
  }
  .area-corner__summary-title {
    margin-bottom: var(--s2);
    padding-left: var(--s4);
    font-size: 1.6rem;
  }
  .area-corner__summary-title::before {
    width: var(--s3);
  }
  .area-corner__summary-body {
    padding-left: 0;
  }

  .card-type {
    padding: var(--s2);
  }
  .card-type__title {
    padding-left: var(--s1);
    border-width: 0.5rem;
    font-size: 1.6rem;
  }

  .box-introduce {
    margin: var(--s4) 0;
    padding: var(--s2) 0 var(--s2) var(--s2);
  }
  .box-introduce__title {
    font-size: 1.8rem;
  }
  .box-introduce__block {
    gap: var(--s1);
    font-size: 1.3rem;
  }
  .box-introduce__column {
    flex-direction: column-reverse;
  }
  .box-introduce__pic {
    width: 50%;
    margin: 0 auto;
  }

  .sec05 {
    padding-bottom: var(--s8);
  }
  .sec05-subtitle {
    margin-bottom: var(--s1);
    font-size: 1.6rem;
  }
  .sec05-list {
    margin-top: var(--s1);
    margin-bottom: var(--s2);
  }

  .card-botann {
    padding-right: var(--s4);
    padding-left: var(--s1);
    background-size: 2.2rem auto;
    background-position: right 1.2rem center;
    gap: 1rem;
    font-size: 1.6rem;
  }
  .card-botann img {
    width: 5rem;
  }

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

      SP end

  */
}
