@charset "UTF-8";
/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP vertical";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700-vertical.woff2") format("woff2"), url("fonts/NS-700-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);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
}

@media screen and (max-width: 1000px) {
  :root {
    font-size: 1vw;
  }
}
body {
  margin: 0;
  padding: 0;
  color: #122645;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  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.4rem;
  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: #122645;
  transition: opacity 0.3s ease, color 0.3s ease;
  outline: none;
}

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

@media (hover: hover) {
  a:hover {
    color: #122645;
    text-decoration: none;
  }
}
p {
  line-height: 1.8;
}
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 loops {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loopsVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
/*  inView */
.slideLeft.is-inview span.bg {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

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

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

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

.fadeInUp.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}

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

    layout center

*/
.l-center {
  max-width: 100rem;
  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(--s4);
}
.l-stack > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.l-stack-02 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--s1);
}
.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% - var(--s3)) / 2);
  display: grid;
  grid-gap: var(--s4) var(--s3);
}

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

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

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

    layout sidebar

*/
.l-sidebar {
  display: flex;
  flex-direction: row-reverse;
}

.l-sidebar__side {
  width: 32rem;
  position: relative;
}

.l-sidebar__main {
  width: calc(100% - 32rem);
}

.l-sidebar--low {
  overflow: hidden;
}

@media screen and (max-width: 1365px) {
  .l-sidebar__side {
    display: none;
  }
  .l-sidebar__main {
    width: 100%;
    overflow-x: hidden;
  }
}
/*
---------------------------------------------

    layout column

*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}
.l-column__side {
  width: 50rem;
}
.l-column__side02 {
  width: 21.9rem;
}
.l-column__side03 {
  width: 23.8rem;
}
.l-column__side04 {
  width: 43.5rem;
}
.l-column__side05 {
  width: 12.4rem;
}
.l-column__side06 {
  width: 21.5rem;
}
.l-column__side07 {
  width: 35rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

.l-column-02 {
  display: flex;
  flex-wrap: wrap;
}
.l-column-02__side {
  width: 34.5rem;
  margin: 0;
}
.l-column-02__main {
  flex: 1;
}

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

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 44rem;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s3);
}
.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: 44rem 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: 41rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s3) var(--s8);
}
.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;
}

.l-grid-areas-03 {
  display: grid;
  grid-template-areas:
    "catch img"
    "text img";
  grid-template-columns: 1fr 50rem;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s4);
}
.l-grid-areas-03__cell-01 {
  grid-area: catch;
}
.l-grid-areas-03__cell-02 {
  grid-area: img;
}
.l-grid-areas-03__cell-03 {
  grid-area: text;
}
.sec-sponsored__pic img{
    border-radius: 1.5rem;
}

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

    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: 100%;
  padding: 2.8rem var(--s5);
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.header-area__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.header-area__title {
  display: flex;
  justify-content: flex-end;
}
.header-area__name {
  display: inline;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
  background: #d2f0fa;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.header-area__name a {
  text-decoration: none;
}
.header-area .sponsored-text {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}
.header-area__logo {
  width: 17rem;
}
.header-area .pr-text {
  width: 100%;
  text-align: right;
  font-size: 1.1rem;
  font-weight: 400;
}
.header-area .pr-text span{background-color:#cbf0fb;padding: 0.5rem;border-radius: 0.5rem;}
.header-area--low .header-area__name {
  font-size: 1.2rem;
  background: none;
}

@media (hover: hover) {
  .header-area__logo a:hover,
  .header-area__name a:hover,
  .header-navi__item a:hover,
  .low-logo a:hover {
    opacity: 0.6;
  }
}
.js-appear {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.js-appear.is-fixed {
  opacity: 1;
  visibility: visible;
}

.header-gnavi {
  position: relative;
  z-index: 99;
}

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

    main-area

*/
.main-area {
  position: relative;
}
.main-area--low {
  padding-bottom: var(--s10);
}

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

    main visual

*/
.mainvisual {
  padding: 1.6rem 2.2rem 0;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
.mainvisual-upper {
  height: calc(100vh - 3.2rem);
  min-height: 58rem;
  padding: 2.42rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(-62deg, #bfefff 0%, #fbf3ee 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.mainvisual-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: var(--s2);
  padding: 0 var(--s2);
  font-size: min(5.06vw, 8.8rem);
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 3;
}
.mainvisual-lead {
  padding: 0 var(--s2);
  font-size: min(1.85vw, 3rem);
  font-weight: 700;
  z-index: 3;
  position: relative;
}
.mainvisual-lead span.bg {
  margin: 0 var(--s-2);
  padding: 0 0.6rem;
  border-radius: 0.5rem;
  background: #0d6fba;
  color: #fff;
}
.mainvisual-pic {
  width: 100%;
  margin: auto;
  aspect-ratio: 1392/541;
  max-width: 180rem;
  position: relative;
}
.mainvisual .mv-illust {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.mainvisual .mv-pic1 {
  width: 18.11%;
  position: absolute;
  top: 18.96%;
  left: 78.83%;
}
.mainvisual .mv-pic2 {
  width: 32.3%;
  position: absolute;
  left: 34.88%;
  top: 17.03%;
}
.mainvisual .mv-pic3 {
  width: 19.49%;
  position: absolute;
  left: 14.75%;
  top: 7.96%;
}
.mainvisual .mv-pic4 {
  width: 20.67%;
  position: absolute;
  left: 0;
  top: 53.23%;
}
.mainvisual .mv-pic5 {
  width: 19.78%;
  position: absolute;
  left: 75.37%;
  top: 75.21%;
}

.mv-under {
  padding: 13rem 0 var(--s5);
}
.mv-under p {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.95;
  text-align: center;
}
.mv-under p + p {
  margin-top: var(--s5);
}
.mv-under__inner {
  position: relative;
}
.mv-under__inner:before {
  content: "";
  width: 16.7rem;
  height: 32.4rem;
  background: url(img/deco-sec1-left.png) no-repeat center/contain;
  position: absolute;
  left: -12rem;
  top: var(--s2);
}
.mv-under__inner:after {
  content: "";
  width: 16.7rem;
  height: 32.4rem;
  background: url(img/deco-sec1-right.png) no-repeat center/contain;
  position: absolute;
  right: -12rem;
  top: var(--s2);
}
.mv-under__text {
  margin-bottom: var(--s6);
}
.mv-under .bl {
  color: #0d6fba;
}

.mv-menu {
  margin-bottom: var(--s10);
  padding: var(--s4) 2.6rem 3.5rem;
  border-radius: 1rem;
  background: #fbf3ee;
}
.mv-menu__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto var(--s3);
  padding: 0 0 0 var(--s4);
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d6fba;
  position: relative;
}
.mv-menu__title:before {
  content: "";
  width: 2.1rem;
  height: 2.1rem;
  background: url(img/deco-icon-title.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.card-mv {
  padding-bottom: 2.4rem;
  border-radius: 1rem;
  background: #fff;
}
.card-mv__title {
  padding: 0 var(--s1) var(--s3);
  background: url(img/deco-card-title.png) no-repeat center bottom/3.4rem auto;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.card-mv__title span.sm {
  font-size: 1.4rem;
}
.card-mv__pic img {
  border-radius: 1rem 1rem 0 0;
}
.card-mv__text {
  padding: 0 var(--s2);
}

.mv-lower {
  width: calc(100% - var(--s2));
  margin: 1rem auto var(--s5);
  padding: 1.1rem 0;
  background: linear-gradient(to right, #fbf3ee 0%, #bfefff 100%);
  border-radius: 1.5rem;
}
.mv-lower__pic {
  margin: 0 auto;
  max-width: 128rem;
  width: 97%;
}

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

    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;
  line-height: 1.5;
  font-size: 1.5rem;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #f26025;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 0.8em;
}
.main-area ol:not([class]) {
  margin: var(--s5) 0;
  counter-reset: number;
}
.main-area ol:not([class]) li {
  padding: 0 0 0 2em;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  counter-increment: number;
}
.main-area ol:not([class]) li::before {
  content: counter(number);
  width: 1.6em;
  height: 1.6em;
  background: #bfefff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.main-area ol:not([class]) li a {
  text-decoration: none;
}
.main-area ol:not([class]) li + li {
  margin-top: 0.8em;
}

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

    btn

*/
.btn-internal {
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: 38rem;
  min-height: var(--s9);
  margin: 0 auto;
  padding: var(--s3) var(--s7);
  background: #122645 url("img/arrow-01-black-right.svg") no-repeat center right 1.9rem/2.3rem auto;
  border: 1px solid #57c2e7;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.6s;
  position: relative;
  z-index: 0;
}
.btn-internal a:before {
  content: "";
  width: 4rem;
  height: 2.7rem;
  background: url(img/icon-wifi-navy.svg) no-repeat center/contain;
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.btn-internal span.fk {
  width: -moz-fit-content;
  width: fit-content;
  padding: var(--s-2) var(--s2);
  background: #57c2e7;
  border-radius: var(--s6);
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  color: #122645;
  position: absolute;
  left: 50%;
  top: -1.2em;
  transform: translateX(-50%);
}
.btn-internal span.fk:before {
  content: "";
  width: 2.6rem;
  height: 1.3rem;
  background: url(img/fk-bottom-blue.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.btn-internal span.sm {
  font-size: 1.1rem;
  font-weight: 700;
  color: #57c2e7;
}
.btn-internal--fk a:before {
  content: none;
}

@media (hover: hover) {
  .btn-internal a:hover {
    opacity: 0.6;
  }
}
.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 38rem;
  min-height: var(--s9);
  margin: 0 auto;
  padding: var(--s3) var(--s7);
  background: #f26025 url("img/icon-window.svg") no-repeat center right 1.9rem/2.3rem auto;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.6s;
  position: relative;
}
.btn-web a:before {
  content: "";
  width: 4rem;
  height: 2.7rem;
  background: url(img/icon-wifi-orange.svg) no-repeat center/contain;
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn-web span.fk {
  width: -moz-fit-content;
  width: fit-content;
  padding: var(--s-2) var(--s2);
  background: #feeb3b;
  border-radius: var(--s6);
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  color: #122645;
  position: absolute;
  left: 50%;
  top: -1.2em;
  transform: translateX(-50%);
}
.btn-web span.fk:before {
  content: "";
  width: 2.6rem;
  height: 1.3rem;
  background: url(img/fk-bottom-yellow.svg) no-repeat center -1px/contain;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.btn-web--fk a:before {
  content: none;
}

@media (hover: hover) {
  .btn-web a:hover {
    opacity: 0.6;
  }
}
.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-blue-right.svg") no-repeat center right/2.4rem auto;
  display: inline-block;
  font-size: 1.6rem;
  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: 4rem;
}
.btn-column .btn-web,
.btn-column .btn-internal {
  margin: 0;
}

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

    TOC lower

*/
.toc-lower-wrap {
  max-width: 80rem;
  margin: var(--s8) auto;
  padding: 1.8rem 3.6rem 3rem;
  border: solid 1px #54bfe7;
  border-radius: 1.5rem;
  background: #fff;
  position: relative;
}
.toc-lower-wrap--relation {
  margin-top: 10rem;
  padding-bottom: var(--s2);
}
.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.8rem;
  font-weight: 700;
}
.toc-lower-wrap ul li + li,
.toc-lower-wrap ul:not([class]) li + li {
  margin-top: 1em;
}
.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.7rem;
  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.6rem;
  font-weight: 700;
  color: #f26025;
  position: absolute;
  top: 0;
  left: 0;
}
.toc-lower-wrap ul li.chapter-h-two a,
.toc-lower-wrap ul:not([class]) li.chapter-h-two a {
  background: none;
  text-decoration: none;
}
.toc-lower-wrap ul li.chapter-h-three,
.toc-lower-wrap ul:not([class]) li.chapter-h-three {
  margin: var(--s1) 0 var(--s1) var(--s3);
  padding: 0 0 0 1.5em;
  font-size: 1.5rem;
  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;
  text-decoration: none;
}
.toc-lower-wrap ul li.relation-links,
.toc-lower-wrap ul:not([class]) li.relation-links {
  padding: 0;
}
.toc-lower-wrap ul li.relation-links:before,
.toc-lower-wrap ul:not([class]) li.relation-links:before {
  content: none;
}
.toc-lower-wrap ul li.relation-links a,
.toc-lower-wrap ul:not([class]) li.relation-links a {
  display: inline-block;
  padding: 0 0 0 2.2em;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  text-decoration: none;
}
.toc-lower-wrap ul li.relation-links a:before,
.toc-lower-wrap ul:not([class]) li.relation-links a:before {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background: url(img/arrow-01-blue-right.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.1em;
}

.toc-lower__title {
  margin-bottom: 1.5rem;
  padding-bottom: 2rem;
  background: url(img/deco-card-title.png) no-repeat left bottom/3.4rem auto;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.toc-lower__title--relation {
  color: #0d6fba;
}

@media (hover: hover) {
  .toc-lower-wrap a:hover {
    opacity: 0.6;
  }
}
.related-article01-more {
  display: none;
}

.relation-links p.catch-01 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #122645;
}

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

    table

*/
.main-area--low table {
  width: 100%;
  margin: var(--s5) 0;
  border-collapse: collapse;
  border-top: 1px solid #c7c7c7;
  border-left: 1px solid #c7c7c7;
}
.main-area--low table th,
.main-area--low table td {
  padding: var(--s2);
  border-right: solid 1px #c7c7c7;
  border-bottom: solid 1px #c7c7c7;
  line-height: 1.5;
  word-break: break-all;
}
.main-area--low table th {
  background: #fbf3ee;
}
.main-area--low table td {
  background: #fff;
}
.main-area--low table tbody th {
  background: #fbf3ee;
}

.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.1rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
}
.caption a {
  color: #999;
}
.caption--white {
  color: #fff;
}
.caption--white a {
  color: #fff;
}
.caption--left {
  text-align: left;
}

.caption2 {
  margin-top: 0.8em;
  text-align: center;
  font-size: 1.3rem;
  color: #8b8b8b;
}

.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: 700;
  line-height: 1.5;
  color: #0d6fba;
}

.catch-02 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0d6fba;
}

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

	text

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

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

.txt_bold_bk {
  font-weight: 700;
}

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

	subgrid card

*/
.subgrid-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-gap: 1.2rem;
}

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

    float wrap

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

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

	pankuzu

*/
#pankuzu {
  width: 100%;
  margin: 0 0 var(--s1);
  padding: var(--s1) 0;
  color: #999999;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: thin;
}
#pankuzu a {
  color: #999;
}
#pankuzu::-webkit-scrollbar {
  height: 0.3rem;
}
#pankuzu::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
#pankuzu::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

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

    footer

*/
.footer-area {
  position: relative;
}
.footer-area:after {
  content: "";
  width: 100vw;
  height: calc(100% - 12rem);
  background: #0d6fba;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-about {
  margin: 6rem auto var(--s8);
  padding: 6.5rem 5rem var(--s4);
  border-radius: 1.5rem;
  border: solid 1px #57c2e7;
  background: #f3f8fc;
  display: flex;
  gap: var(--s5);
  position: relative;
}
.footer-about:before {
  content: "ABOUT";
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  color: #57c2e7;
  position: absolute;
  left: 5rem;
  top: var(--s2);
}
.footer-about__logo {
  margin-top: var(--s3);
  display: block;
}
.footer-about__title {
  margin-bottom: var(--s1);
  font-size: 2rem;
  font-weight: 700;
}
.footer-about .btn-link {
  margin-bottom: 0;
}

.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-box + .footer-box {
  margin-top: var(--s5);
}

.footer-menu-title {
  margin-bottom: var(--s1);
  font-weight: 800;
  line-height: 1.5;
  border-bottom: 1px solid #fff;
}
.footer-menu-title__link {
  padding: var(--s1) var(--s6) var(--s1) 0;
  background: url(img/arrow-01-blue-right.svg) no-repeat center right var(--s2)/2.3rem auto;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-menu-title__link:hover {
    opacity: 0.6;
    color: #fff;
  }
  .footer-about__logo:hover {
    opacity: 0.6;
  }
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem var(--s2);
}
.footer-menu__item {
  width: calc((100% - var(--s2) * 3) / 4);
  font-size: 1.4rem;
  line-height: 1.5;
}
.footer-menu__link {
  display: block;
  padding: var(--s1) var(--s3) var(--s1) 0;
  background: url(img/arrow-02-blue-right.svg) no-repeat center right/0.6rem auto;
  text-decoration: none;
  color: #fff;
}
.footer-menu__link br {
  display: none;
}

@media (hover: hover) {
  .footer-menu__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.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;
  color: #fff;
  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: 64rem;
  margin: var(--s8) auto var(--s6);
  padding: 1.8rem 2rem;
  border-radius: 1rem;
  border: solid 1px #57c2e7;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}
.footer-disclaimer__text a {
  color: #fff;
}

@media (hover: hover) {
  .footer-disclaimer__text a:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
  }
}
.footer-nocopy {
  margin: var(--s5) 0;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

.footer-copyright {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 var(--s12);
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}
.footer-copyright__link {
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-copyright__link:hover {
    text-decoration: underline;
    color: #fff;
  }
  .footer-disclaimer__text a:hover {
    text-decoration: underline;
    color: #fff;
  }
}
.footer-bottom {
  padding: var(--s1) 0;
  background: #122645;
  position: relative;
  z-index: 0;
}
.footer-bottom:after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #122645;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.footer-bottom__inner {
  max-width: 100rem;
  position: relative;
}

.footer-sitemap {
  margin: 0 0 0 auto;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  right: var(--s3);
  top: 0;
}
.footer-sitemap__link {
  color: #fff;
}

@media (hover: hover) {
  .footer-sitemap__link:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .footer-banner:hover {
    opacity: 0.7;
    color: #fff;
  }
}
.fixed-banner {
  display: none;
}

@media screen and (max-width: 1365px) and (min-width: 767px) {
  .fixed-banner--bottom {
    display: block;
    position: fixed;
    left: 0;
    bottom: var(--s1);
    width: 31rem;
    z-index: 9;
  }
  .fixed-banner .sidebar-area__btn {
    width: 100%;
    margin: 0;
    padding-top: 1.8rem;
    padding-left: var(--s4);
    border-radius: 0 var(--s8) var(--s8) 0;
  }
  .fixed-banner .sidebar-area__btn:before {
    content: none;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 7.1rem;
  height: 7.1rem;
  border-radius: 0 0 0 3.5rem;
  background: #57c2e7;
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn:before {
  content: "menu";
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  left: 1.5rem;
  top: 0.5rem;
}
.gnavi-btn span {
  width: 3.3rem;
  height: 0.2rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 2.1rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2.9rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.8rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 4.7rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.9rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-0.9rem) rotate(45deg);
}

.gnavi-area {
  width: 40rem;
  height: 100vh;
  padding: 8rem var(--s2) var(--s5);
  background: #BFEFFF;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  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 .sidebar-area__btn {
	margin: 2rem 5rem var(--s1) 0;
	}

.gnavi-box__title{
  padding: 1.2rem var(--s6) 1.2rem 0;
  border-bottom: 1px solid #056dba;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  cursor: pointer;
  transition: opacity 0.5s;
  position: relative;
}
.gnavi-menu__item{
  transition: opacity 0.5s;
}
.gnavi-box__title::after {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: url("img/arrow-01-blue-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,
.gnavi-menu__item:hover{
  opacity: 0.5;
}
.gnavi-box__title.is-open::after {
  transform: translate(0, -50%) rotate(180deg);
}
.gnavi-box__content {
  margin-top: var(--s1);
}

.gnavi-menu__item,
.gnavi-menu-sub__item {
  position: relative;
}
.gnavi-menu__item br,
.gnavi-menu-sub__item br {
  display: none;
}
.gnavi-menu__link,
.gnavi-menu-sub__link {
  padding: 0.9rem var(--s6) 0.9rem 0;
  background: url(img/arrow-02-blue-right.svg) no-repeat center right 2.6rem/0.9rem auto;
  display: block;
  font-size: 1.5rem;
  color: #122545;
  line-height: 1.5;
  text-decoration: none;
}

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

@media (hover: hover) {
  .gnavi-menu-sub__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
/*
---------------------------------------------

    page

*/
.page-top {
  width: 6.8rem;
  height: 6.8rem;
  position: fixed;
  right: 1.2rem;
  bottom: 3.2rem;
  z-index: 10;
  transition: opacity 0.3s;
}

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

    sidebar navi

*/
.sidebar-area {
  width: 32rem;
  padding: var(--s3) 2rem var(--s1);
  border-radius: 0 3rem 3rem 0;
  background: #f3f8fcc9;
  border: solid 1px #bfefff;
  border-left: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  backdrop-filter: blur(7px);
}
.sidebar-area__logo {
  width: 26rem;
  margin-bottom: 3rem;
  text-align: center;
}
.sidebar-area__btn {
  display: block;
  margin: 2rem 0 var(--s1);
  padding: var(--s2) var(--s2) var(--s2) 0;
  border-radius: 0 var(--s8) var(--s8) 0;
  background: #122645 url(img/arrow-01-black-right.svg) no-repeat center right var(--s2)/2.3rem auto;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.sidebar-area__btn:before {
  content: "";
  width: 2rem;
  height: 100%;
  background: #122645;
  position: absolute;
  right: 100%;
  top: 0;
}
.sidebar-area__btn span.tag {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: var(--s1);
  background: #57c2e7;
  padding: var(--s-2) var(--s2);
  border-radius: var(--s6);
  font-size: 1.3rem;
  font-weight: 700;
  color: #122645;
  position: relative;
}
.sidebar-area__btn span.tag:before {
  content: "";
  width: 2.3rem;
  height: 1rem;
  background: url(img/fk-bottom-blue.svg) no-repeat center top/contain;
  position: absolute;
  left: 2rem;
  top: 100%;
}
.sidebar-area__btn--02 {
  background-color: #f26025;
  background-image: url(img/icon-window.svg);
}
.sidebar-area__btn--02:before {
  background-color: #f26025;
}
.sidebar-area__btn--02 span.tag {
  background: #feeb3b;
}
.sidebar-area__btn--02 span.tag:before {
  background-image: url(img/fk-bottom-yellow.svg);
}
.sidebar-area__list {
  padding-right: var(--s2);
}
.sidebar-area__list__item a {
  display: block;
  padding: var(--s2) var(--s3) var(--s2) 0;
  background: url(img/arrow-01-blue-right.svg) no-repeat center right/2.3rem auto;
  border-bottom: solid 1px #57c2e7;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
}
.sidebar-area__list__item:last-child a {
  border-bottom: none;
}

@media (hover: hover) {
  .sidebar-area__btn:hover {
    opacity: 0.7;
    color: #fff;
  }
  .sidebar-area__list__item a:hover,
  .sidebar-area__logo a:hover {
    opacity: 0.7;
  }
}
/*
---------------------------------------------

    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: 2.7rem;
  height: 0.3rem;
  background: #122645;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.3rem;
  height: 2.7rem;
  background: #122645;
  position: absolute;
  top: 50%;
  right: 3.6rem;
  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 {
  padding-bottom: var(--s2);
  position: relative;
  height: auto;
  max-height: var(--more-collapsed-height, 9rem);
  overflow: hidden;
  transition: max-height 0.5s ease;
  -webkit-mask-image: linear-gradient(to bottom, black 10%, transparent 90%);
  mask-image: linear-gradient(to bottom, black 10%, transparent 90%);
}

.more__content.open {
  max-height: var(--more-open-height, 200vh);
  -webkit-mask-image: none;
  mask-image: none;
}

.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: 11rem;
  display: block;
  margin: 0 auto;
  padding: 0.6rem 4.5rem 0.6rem var(--s2);
  border-radius: 5rem;
  border: solid 1px #51bce7;
  background: #fff;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #57c2e7;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: -2rem;
  transform: translateX(-50%);
  transition: opacity 0.3s;
  z-index: 1;
}
.more__btn::before {
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: url(img/icon-more.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 1.7rem;
  transform: translateY(-50%);
}

.more__btn.is-open::before {
  background-image: url(img/icon-more-cl.svg);
}

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

.more-gradient-sp-btn {
  display: none;
}

.tag-01 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem var(--s1);
  background: #bfefff;
  border-radius: var(--s5);
  font-size: 1.3rem;
  font-weight: 700;
}

.tag-name {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
}

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

    tab

*/
.tab-column {
  margin: var(--s4) 0 var(--s2);
  display: flex;
  gap: var(--s2);
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
  position: relative;
}
.tab-column--bottom {
  display: none;
  margin-top: var(--s3);
  align-items: flex-start;
}

.tab-btn {
  width: 44rem;
  padding: 2.6rem 2rem 2.6rem 2rem;
  border-radius: 1rem;
  background: #0d6fba;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.4s ease;
  position: relative;
  opacity: 0.5;
}
.tab-btn span.bg {
  margin-right: var(--s1);
  padding: 0 var(--s1);
  border-radius: 0.5rem;
  background: #fff;
  font-size: 2.6rem;
  color: #122645;
}
.tab-btn:after {
  content: "";
  width: 5.5rem;
  height: 15.7rem;
  background: url(img/tab-illust-1.png) no-repeat center/contain;
  position: absolute;
  left: 1.8rem;
  bottom: 0.9rem;
}
.tab-btn.is-active {
  opacity: 1;
}
.tab-btn.is-active:before {
  content: "";
  width: 12.3rem;
  height: 6rem;
  background: url(img/fk-bottom-blue2.svg) no-repeat center top -1px/100% 100%;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.tab-btn--02 {
  padding: 2.6rem 4rem 2.6rem 1rem;
  background: #02ad43;
}
.tab-btn--02::after {
  content: "";
  width: 6rem;
  height: 13.7rem;
  background: url(img/tab-illust-2.png) no-repeat center/contain;
  position: absolute;
  right: 1.3rem;
  left: auto;
  bottom: 1.5rem;
}
.tab-btn--02.is-active:before {
  background-image: url(img/fk-bottom-green.svg);
}

@media (hover: hover) {
  .tab-btn:hover {
    opacity: 0.3;
  }
  .tab-btn.is-active:hover {
    opacity: 1;
  }
}
.tab-content {
  padding: 3.8rem 0 3.8rem 3rem;
  background: #fbf3ee;
  border-left: solid 2rem #0d6fba;
  border-radius: 1.5rem 0 0 1.5rem;
  display: none;
  opacity: 0;
  z-index: 0;
  position: relative;
}
.tab-content:before {
  content: "";
  width: 50vw;
  height: 100%;
  background: #fbf3ee;
  position: absolute;
  left: 100%;
  top: 0;
}
.tab-content.color2 {
  border-color: #02ad43;
}
.tab-content.is-active {
  display: block;
  animation: tabAnimation ease 0.6s forwards;
}

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

    lower-parts

*/
.box-summary {
  margin: 10rem auto;
  padding: var(--s-2) 8rem var(--s5) 5rem;
  position: relative;
}
.box-summary:before {
  content: "";
  width: calc(100% + (100vw - 100% - 32rem) / 2);
  height: 100%;
  border: solid 1px #57c2e7;
  border-right: none;
  border-radius: 1.5rem 0 0 1.5rem;
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-summary:after {
  content: "";
  width: 14rem;
  height: 26rem;
  background: url(img/summary-illust.png) no-repeat center/contain;
  position: absolute;
  right: 11rem;
  top: -4.2rem;
}
.box-summary__tag {
  margin-top: -0.2em;
  margin-bottom: var(--s2);
  font-family: "Montserrat", sans-serif;
  font-size: 4.6rem;
  line-height: 1;
  color: #bfefff;
}
.box-summary__title {
  max-width: 63rem;
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.box-summary__text {
  max-width: 63rem;
}
.box-summary .btn-column {
  margin-bottom: 0;
}
.box-summary .btn-internal {
  margin-bottom: var(--s1);
}

.sec-qa-low {
  margin: 10rem 0;
}

.low-interview {
  margin: 10rem auto;
  padding: 0 0 3.8rem 6.4rem;
  background: linear-gradient(to right, #0d6fba 2.7rem, #fbf3ee 2.7rem);
  border-radius: 1.5rem 0 0 1.5rem;
  position: relative;
}
.low-interview:before {
  content: "";
  width: calc((100vw - 100% - 32rem) / 2);
  height: 100%;
  background: #fbf3ee;
  position: absolute;
  left: 100%;
  top: 0;
}
.low-interview__title {
  margin-bottom: var(--s1);
  margin-left: -2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  background: linear-gradient(to bottom, #f26025 0%, #f6ccb4 60%, #77dcff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.low-qa {
  padding-left: 1rem;
  margin: 5rem 0;
}
.low-qa__answer {
  margin-bottom: var(--s5);
}
.low-qa__q {
  margin-bottom: 2.7rem;
  font-size: 2rem;
  font-weight: 700;
  color: #0d6fba;
  position: relative;
}
.low-qa__q:before {
  content: "";
  width: 2rem;
  height: 1px;
  background: #0d6fba;
  position: absolute;
  left: -4rem;
  top: 50%;
}
.low-qa__a {
  margin: 0 0 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.low-qa__a:before {
  content: "A.";
  font-family: "Montserrat", sans-serif;
  font-size: 2.6rem;
  color: #57c2e7;
  position: absolute;
  right: calc(100% + var(--s1));
  top: -0.2em;
}
.low-qa .float-wrap {
  margin-top: var(--s3);
}

.related-article01-more {
  display: none;
}

.relation-links p.catch-01 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #122645;
}

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

    titles

*/
.pr-text {
  font-size: 1.1rem;
}

.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;
  }
}
h1:not([class]) {
  margin: var(--s9) auto;
  padding: 0 4.6rem;
  max-width: 73.6rem;
  min-height: 14.2rem;
  font-size: 4.2rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}
h1:not([class]):before {
  content: "";
  width: 7.3rem;
  height: 14.2rem;
  background: url(img/deco-sec1-left.png) no-repeat center/contain;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
h1:not([class]):after {
  content: "";
  width: 7.3rem;
  height: 14.2rem;
  background: url(img/deco-sec1-right.png) no-repeat center/contain;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.main-area--low h2:not([class]) {
  margin: var(--s7) auto var(--s3);
  padding: var(--s2) var(--s4) var(--s2) 6.5rem;
  background: linear-gradient(90deg, #0d6fba 0%, #57c2e7 100%);
  border-radius: var(--s10) 0px 0px var(--s10);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.main-area--low h2:not([class]):before {
  content: "";
  width: 2.1rem;
  height: 2.1rem;
  background: url(img/deco-icon-title.png) no-repeat center/contain;
  position: absolute;
  left: 2.6rem;
  top: 50%;
  transform: translateY(-50%);
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.3rem auto;
  color: #fff;
}
.main-area--low h3:not([class]) {
  margin: var(--s6) auto var(--s3);
  padding: 1.2rem 0;
  background: radial-gradient(circle, #f26025 0 1.5px, transparent 1.5px) repeat-x left bottom / 10px 3px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.3rem auto;
}
.main-area--low h4:not([class]) {
  margin: var(--s5) auto var(--s2);
  padding: var(--s-2) 0;
  font-size: 2.1rem;
  font-weight: 700;
  color: #0d6fba;
}
.main-area--low h4:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.3rem auto;
  color: #0d6fba;
}
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  font-size: 1.8rem;
  font-weight: 700;
}
.main-area--low h5:not([class]) a,
.main-area--low h6:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.3rem auto;
}

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

    TOP common

*/
.common-title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
.common-title--white {
  color: #fff;
}
.common-title--ct {
  margin: 0 auto var(--s3);
  text-align: center;
}
.common-title span.sm {
  display: block;
  font-size: 2.4rem;
}
.common-title span.bl {
  color: #0d6fba;
}
.common-title a {
  padding-right: var(--s5);
  background: url(img/arrow-01-blue-right.svg) no-repeat top 60% right/auto 2.3rem;
  text-decoration: none;
}

@media (hover: hover) {
  .common-title a:hover {
    opacity: 0.6;
  }
}
.common-tag {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: var(--s2);
  padding: 0.2rem var(--s2) 0.2rem 4.2rem;
  border-radius: var(--s3);
  background: #ecf0f4 url(img/deco-icon-title.png) no-repeat center left 1.5rem / 2.1rem auto;
  color: #0d6fba;
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
}
.common-tag--white {
  background-color: #fff;
}

.common-lead {
  width: 47rem;
}
.common-lead--ct {
  margin: 0 auto;
  text-align: center;
}
.common-lead--right {
  margin-right: 0;
  margin-left: auto;
}
.common-lead--white {
  color: #fff;
}

.title-column {
  margin-bottom: var(--s6);
  display: flex;
  align-items: flex-end;
}
.title-column__left {
  flex: 1;
}

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

    TOP section

*/
.sec-check {
  padding: var(--s11) 0px var(--s2);
}
.sec-check__list {
  max-width: 90rem;
  margin: 0 auto;
  --minmum: calc((100% - var(--s2) * 2) / 3);
  grid-gap: var(--s2);
}
.sec-check__tag {
  margin-bottom: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 3.8rem;
  line-height: 1;
  color: #ff8554;
}
.sec-check__tag--02 {
  color: #feeb3b;
}
.sec-check__tag--03 {
  color: #57c2e7;
}
.sec-check__subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.sec-check__lead {
  color: #fff;
}
.sec-check__point {
  margin-top: var(--s4);
  padding: 0.5rem 0 2.2rem 1.9rem;
  position: relative;
  z-index: 0;
}
.sec-check__point:before {
  content: "";
  width: calc(100% + var(--s1));
  height: 100%;
  background: #bfefff;
  border-radius: 1rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec-check__point__title {
  margin-bottom: var(--s-2);
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: #1a9bc8;
}
.sec-check__point ul:not([class]) {
  margin: 0;
}
.sec-check__point ul:not([class]) li:before {
  width: 0.7rem;
  height: 0.7rem;
  top: 0.5em;
}
.sec-check__fkds {
  max-width: 90rem;
  margin: 0 auto 10.9rem;
  padding: 3.5rem 5rem var(--s10);
  position: relative;
}
.sec-check__fkds:before {
  content: "";
  width: 100%;
  height: 50.7rem;
  background: linear-gradient(to top, #f48e62 0%, #f6ccb4 25%, #77dcff 89%, #ffffff 100%);
  border-radius: 20.6rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: -1;
}
.sec-check__fkds:after {
  content: "";
  width: 12.3rem;
  height: 6rem;
  background: url(img/fk-bottom-orenge.svg) no-repeat center top/contain;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  opacity: 0.5;
}
.sec-check__fkds__text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.sec-check__fkds__text + .sec-check__fkds__text {
  margin-top: var(--s3);
}
.sec-check__fkds__text span.bg {
  padding: 0 var(--s1);
  border-radius: 0.5rem;
  background: #fff;
}
.sec-check__under {
  margin: var(--s11) 0 0;
  padding-bottom: 9.6rem;
  background: url(img/deco-dot-vertical.png) no-repeat center bottom/auto 5.8rem;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  position: relative;
}
.sec-check__under:before {
  content: "";
  width: 24rem;
  height: 37.5rem;
  background: url(img/sec01-illust-left.png) no-repeat center/contain;
  position: absolute;
  left: -6rem;
  bottom: 2.6rem;
}
.sec-check__under:after {
  content: "";
  width: 20.6rem;
  height: 36.7rem;
  background: url(img/sec01-illust-right.png) no-repeat center/contain;
  position: absolute;
  right: -2.7rem;
  bottom: 0;
}

.check-item {
  padding: var(--s-2) 1.1rem 2.6rem;
  border-radius: 1.5rem;
  background-color: #004b85;
  background-image: url(img/icon-more.png);
  background-repeat: no-repeat;
  background-position: center bottom 0.7rem;
  background-size: 5.9rem auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
}
.check-item.is-active {
  background-color: #0d6fba;
  transform: translateY(-2.6rem);
}
.check-item.is-active:before {
  content: "";
  width: 7.9rem;
  height: 3rem;
  background: url(img/fk-bottom-blue2.svg) no-repeat center top -1px/contain;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}

@media (hover: hover) {
  .check-item:hover {
    opacity: 0.7;
    cursor: pointer;
  }
  .check-item.is-active:hover {
    opacity: 1;
    cursor: default;
  }
}
.check-box__tag {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 3.1rem;
  color: #ff8554;
}
.check-box__tag--02 {
  color: #feeb3b;
}
.check-box__tag--03 {
  color: #57c2e7;
}
.check-box__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.check-box__title span.st {
  font-size: 2.4rem;
}
.check-box__lead {
  margin-top: 1.2rem;
  padding: var(--s1) 1.4rem;
  background: #0061ac;
  border-radius: 1rem;
  color: #fff;
}

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

    check-slider

*/
.slick-track {
  display: flex;
}

.check-slider {
  margin: 1.4rem 0 0;
}
.check-slider-wrap {
  width: 100vw;
  margin-left: calc(32rem * -1);
}
.check-slider .slide-item {
  margin: 0 1.6rem;
  height: auto;
  box-sizing: border-box;
  float: none;
  border-radius: 1.5rem;
  background: #0d6fba;
}
.check-slider .slick-list {
  padding-left: calc(32rem + (100vw - 132rem) / 2);
}
.check-slider .slide__inner {
  width: 100rem;
  margin: auto;
  padding: var(--s7) var(--s6) var(--s7) 4.2rem;
  position: relative;
}
.check-slider .slide__inner .btn-internal {
  margin-bottom: 0;
}
.check-slider .check-illust img {
  border-radius: 1.5rem;
}
.check-slider .check-illust img.for-sp {
  display: none;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("img/arrow-slide.png") left top no-repeat;
  background-size: contain;
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.prev-arrow {
  left: calc(50% - 36rem);
  transform: translateY(-50%) scale(-1, 1);
}

.next-arrow {
  right: calc(50% - 67.5rem);
}

.slide-dots {
  text-align: center;
  margin: 0 0 0;
  padding: 0 0;
  font-size: 0;
}
.slide-dots li {
  display: inline-block;
  margin: 0 1rem;
}
.slide-dots li button {
  background: #c4c4c4;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border-radius: 50%;
  position: relative;
  text-indent: -9999px;
}
.slide-dots li.slick-active button {
  background: #525252;
}

@media screen and (max-width: 1365px) {
  .check-slider-wrap {
    width: 100vw;
    margin-left: 0;
  }
  .next-arrow {
    right: calc(50% - 55rem);
  }
  .prev-arrow {
    left: calc(50% - 55rem);
  }
}
.sec-interview {
  margin: var(--s5) 0 13.8rem;
  overflow-x: clip;
}
.sec-interview .common-lead {
  width: 43rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.logo-area__text {
  flex: 1;
  max-width: 8.6rem;
  padding: var(--s-2) 1.4rem;
  border-radius: 1rem;
  background: #0d6fba;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
}
.logo-area__logo {
  width: 25.6rem;
}

.prof-pic {
  width: 20.6rem;
  height: 20.6rem;
}
.prof-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.interview-upper {
  text-align: center;
  padding-left: 1.3rem;
}
.interview-upper .l-cluster {
  margin: 1.1rem auto var(--s-2);
  justify-content: center;
}
.interview-title {
  margin-bottom: var(--s3);
  font-size: 3rem;
  font-weight: 700;
}
.low-interview .interview-quote {
  background-color: #ffffff;
}
.interview-quote {
  border-left: 3px solid #4a90d9;
  background-color: #f5f9ff;
  padding: 16px 20px;
  margin: 16px 0;
}
.interview-subtitle {
  margin-right: -1rem;
  padding-top: var(--s4);
  background: url(img/deco-card-title.png) no-repeat left top/3.8rem auto;
  font-size: 2.4rem;
  font-weight: 700;
}
.interview-pic {
  margin-top: -8rem;
}
.interview-pic img {
  border-radius: 1.5rem;
}
.interview-inner {
  margin-top: 6rem;
  padding: 3.6rem 0 2.6rem var(--s5);
  position: relative;
  z-index: 0;
}
.interview-inner:before {
  content: "";
  width: 100vw;
  height: calc(100% + var(--s8));
  background: #fff;
  border-radius: 1.5rem 0 0 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.tab-content .btn-internal {
  margin-top: 0;
}

.sec-step {
  padding: 4.3rem 0 6rem;
  background: #f3f8fc;
  position: relative;
}
.sec-step:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #f3f8fc;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec-step__time {
  width: 11rem;
  margin-bottom: -2rem;
  padding: 0.9rem var(--s1);
  border-radius: var(--s5);
  background: #122645;
  text-align: center;
  color: #fff;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.sec-step__time:before {
  content: "";
  width: 4.3rem;
  height: 2.1rem;
  background: url(img/fk-bottom-navy.svg) no-repeat center top/contain;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.sec-step__time span.sm {
  font-size: 1.8rem;
}
.sec-step__time span.sm2 {
  font-size: 1.7rem;
  line-height: 1.2;
  display: block;
}
.sec-step__subtitle {
  margin: 0 0 0 -1rem;
  padding: 1.8rem 0 1.2rem;
  padding-left: 11rem;
  border-radius: var(--s10) 0 0 var(--s10);
  background: linear-gradient(to right, #0d6fba 0%, #57c2e7 100%);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}
.sec-step__subtitle:before {
  content: "";
  width: calc((100vw - 100% - 32rem) / 2 + 0.5rem);
  height: 100%;
  background: #57c2e7;
  position: absolute;
  left: 100%;
  top: 0;
}
.sec-step__subtitle:after {
  content: "";
  width: 15.2rem;
  height: 14.8rem;
  background: url(img/step-illust-1.png) no-repeat center/contain;
  position: absolute;
  right: 11.1rem;
  bottom: -1.1rem;
}
.sec-step__subtitle--02 {
  /* margin-top: var(--s4); */
}
.sec-step__subtitle--02::after {
  width: 16rem;
  height: 15.9rem;
  background-image: url(img/step-illust-2.png);
  right: 11.3rem;
  bottom: -2rem;
}
.sec-step__subtitle--03::after {
  width: 13.6rem;
  height: 13.6rem;
  background-image: url(img/step-illust-3.png);
  right: 8.8rem;
}
.sec-step__subtitle--04::after {
  width: 16.6rem;
  height: 13.2rem;
  background-image: url(img/step-illust-4.png);
  right: 6rem;
  bottom: -2rem;
}
.sec-step__inner {
  padding: var(--s4) 0 var(--s6) 10rem;
  position: relative;
}
.sec-step__inner:before {
  content: "";
  width: 0.3rem;
  height: 100%;
  background: radial-gradient(circle, #0d6fba 0 1.5px, transparent 1.5px) repeat-y left top/3px 13px;
  position: absolute;
  left: 5rem;
  top: 0;
}
.sec-step__inner .btn-internal {
  margin: var(--s3) auto 0;
}
.sec-step__pic img {
  border-radius: 1.5rem;
}

.box-comment {
  margin-right: 3.7rem;
  padding: var(--s2) 4.2rem var(--s2) var(--s3);
  border: solid 1px #57c2e7;
  border-radius: 1.5rem;
  background: #fff;
  position: relative;
}
.box-comment__title {
  margin: 0 0 var(--s1);
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d6fba;
}
.box-comment__pic {
  width: 8.8rem;
  position: absolute;
  right: -4.9rem;
  top: 50%;
  transform: translateY(-50%);
}
.box-comment p {
  font-size: 1.5rem;
  font-weight: 700;
}

.box-voice {
  margin: var(--s7) auto;
  padding: 0.4rem;
  position: relative;
  z-index: 0;
}

.box-voice .btn-web {
    margin: var(--s5) auto var(--s3);
}
.box-voice::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; /* 一番下に敷く */
  border-radius: 1.5rem;
  background: linear-gradient(to bottom, #f26025 0%, #f6ccb4 60%, #77dcff 100%);
}
.box-voice__ttlblock {
  padding: 2rem var(--s4) 1.3rem;
  border-radius: 1.3rem 1.3rem 0 0;
  background: #fbf3ee;
}
.box-voice__body {
  padding: 2.7rem var(--s8);
  border-radius: 0 0 1.3rem 1.3rem;
  background: #fff;
}
.box-voice__tag {
  margin-bottom: var(--s1);
  display: flex;
  gap: var(--s1);
  justify-content: center;
}
.box-voice__tag .tag {
  padding: 0.2rem 1.9rem;
  border-radius: var(--s5);
  background: linear-gradient(to bottom, #f26025 0%, #f6ccb4 60%, #77dcff 100%);
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  color: #fff;
}
.box-voice__tag .st {
  font-size: 2.1rem;
  font-weight: 700;
}
.box-voice__title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.box-voice .btn-internal {
  /* position: absolute; */
  left: 50%;
  bottom: 0rem;
  transform: translateX(-50%);
}
.box-voice--low {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.voice-pic {
  width: 12.4rem;
  height: 12.4rem;
}
.voice-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.card-voice__inner {
  gap: var(--s1);
}
.card-voice .name {
  text-align: center;
  font-weight: 700;
  color: #707070;
}

.sec-qa {
  padding: 9.6rem 0;
}
.sec-qa__grid {
  align-items: start;
}

.qa-column {
  align-items: flex-end;
  gap: 5rem;
}
.qa-column__pic {
  width: 21.5rem;
  height: 21.5rem;
  padding: var(--s1);
  background: linear-gradient(to bottom, #f26025 0%, #f6ccb4 60%, #77dcff 100%);
  border-radius: 50%;
  position: relative;
}
.qa-column__pic:before {
  content: "";
  width: 8.8rem;
  height: 9.7rem;
  background: url(img/icon-comment-3.png) no-repeat center/contain;
  position: absolute;
  right: -1.5rem;
  bottom: 0;
}
.qa-column__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.qa-column__name {
  margin-top: 0.4rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.qa-column__name span.sm {
  font-size: 1.1rem;
}
.qa-column__body {
  margin-bottom: var(--s1);
  padding: var(--s5);
  border-radius: 1.5rem;
  border: solid 1px #57c2e7;
  background: #f3f8fc;
  position: relative;
}
.qa-column__body:before {
  content: "";
  width: 2.5rem;
  height: 5.2rem;
  background: url(img/fk-left-blue.svg) no-repeat center right/contain;
  position: absolute;
  top: 2.9rem;
  right: 100%;
}
.qa-column .qa-title {
  margin-bottom: var(--s2);
  font-size: 2.5rem;
  font-weight: 700;
}

.card-qa {
  padding: 1.8rem;
  grid-row: span 2;
  grid-gap: var(--s2);
  background: #fbf3ee;
  border-radius: 1.5rem;
  position: relative;
}
.card-qa__title {
  margin-bottom: var(--s2);
  padding: 2.2rem var(--s1) 2.2rem 5.3rem;
  border-radius: 0.6rem;
  background: #fff;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.card-qa__title:before {
  content: "Q1.";
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: #f26025;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.card-qa:nth-of-type(2) .card-qa__title:before {
  content: "Q2.";
}
.card-qa:nth-of-type(3) .card-qa__title:before {
  content: "Q3.";
}
.card-qa:nth-of-type(4) .card-qa__title:before {
  content: "Q4.";
}
.card-qa .more__content {
  --more-collapsed-height: 9rem;
  --more-open-height: 120vh;
  padding-bottom: var(--s5);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 64%);
          mask-image: linear-gradient(to bottom, black 0%, transparent 64%);
}
.card-qa .more__content.open {
  max-height: var(--more-open-height, 200vh);
  -webkit-mask-image: none;
  mask-image: none;
}
.card-qa .more__btn {
  bottom: 1.3rem;
}

.sec-sponsored {
  padding: 1.5rem 0 var(--s11);
  position: relative;
}

.sec-sponsored.sec-sponsored--low{margin: 10rem 0;}
.sec-sponsored:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: url(img/bg-sponsored.jpg) no-repeat center/cover;
  background-attachment: fixed;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec-sponsored--low:before {
  width: 100vw;
  right: calc((100vw - 100% - 32rem) / 2 * -1);
}
.sec-sponsored .en-title {
  margin-bottom: var(--s7);
  padding-bottom: var(--s2);
  background: url(img/deco-card-title.png) no-repeat center bottom/3.4rem auto;
  font-family: "Montserrat", sans-serif;
  font-size: 6.1rem;
  font-weight: 700;
  color: #57c2e7;
  text-align: center;
}
.sec-sponsored .name {
  margin-top: var(--s1);
  color: #fff;
  text-align: center;
}
.sec-sponsored__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
}
.sec-sponsored__title span.sm {
  display: block;
  font-size: 1.4rem;
}
.sec-sponsored__catch {
  margin-bottom: var(--s2);
  padding: var(--s3) var(--s4) var(--s3) 0;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  z-index: 0;
}
.sec-sponsored__catch:before {
  content: "";
  width: calc(100% + var(--s8));
  height: 100%;
  background: #fff;
  border-radius: 0 1rem 1rem 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec-sponsored__inner {
  max-width: 95rem;
}
.sec-sponsored__text p {
  color: #fff;
}

@media screen and (max-width: 1365px) {
  .sec-sponsored--low:before {
    width: 100vw;
    margin-left: -50vw;
  }
}
.btn-contact {
  display: block;
  max-width: 80rem;
  margin: 5.5rem auto var(--s8);
  padding: 0 2rem 2rem;
  background: #f6ccb4;
  border-radius: 1.2rem;
  text-decoration: none;
}
.btn-contact__tag {
  margin-bottom: -0.3rem;
  margin-left: var(--s2);
  font-family: "Montserrat", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
  color: #fff;
}
.btn-contact__inner {
  padding: 1.9rem 1.8rem 1.9rem 2.9rem;
  background: #fff;
  border-radius: 1rem;
  gap: 0;
}
.btn-contact__lead {
  margin-bottom: var(--s1);
  font-weight: 700;
}
.btn-contact__title {
  font-size: 2.2rem;
  font-weight: 700;
}
.btn-contact__title span.bg {
  position: relative;
  z-index: 0;
}
.btn-contact__title span.bg:before {
  content: "";
  width: 100%;
  height: 100%;
  padding: 0 var(--s1);
  background: #f2ffc5;
  border-radius: 0.4rem;
  position: absolute;
  left: -0.8rem;
  top: 0;
  z-index: -1;
}
.btn-contact__btn {
  padding: var(--s3) var(--s5) var(--s3) var(--s3);
  border-radius: var(--s6);
  background: #f26025 url(img/icon-window.svg) no-repeat center right 1rem/2.3rem auto;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
}
.btn-contact__btn:before {
  content: "";
  width: 8.8rem;
  height: 8.5rem;
  background: url(img/icon-sponsored-btn.png) no-repeat center/contain;
  position: absolute;
  left: -4rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn-contact p{
  padding: 2rem 0;
}

@media (hover: hover) {
  .btn-contact:hover {
    opacity: 0.7;
  }
}
.box-recruit {
  padding: 0 36rem var(--s1) var(--s5);
  background: #f5f5f5;
  border-radius: 1rem 0 0 1rem;
  position: relative;
}
.box-recruit:before {
  content: "";
  width: calc((100vw - 100% - 32rem) / 2);
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
}
.box-recruit__tag {
  font-family: "Montserrat", sans-serif;
  font-size: 7.8rem;
  line-height: 1;
  background: linear-gradient(to bottom, rgba(242, 96, 37, 0.5) 0%, rgba(246, 204, 180, 0.5) 60%, rgba(119, 220, 255, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-recruit__title {
  margin-bottom: 1.2rem;
  font-size: 2.5rem;
  font-weight: 700;
}
.box-recruit .caption {
  margin-bottom: var(--s2);
}
.box-recruit .loop-photo {
  width: 33.7rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 1.2rem;
  flex-direction: column;
  overflow: hidden;
}
.box-recruit .loop-photo-pic {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  animation: loopsVertical 60s linear infinite;
}
.box-recruit--low {
  margin: 10rem auto;
}

.recruit-info {
  margin: 1rem 0 0;
  display: flex;
}
.recruit-info__title {
  padding: 1rem var(--s1);
  width: 12rem;
  background: #bfefff;
  border-radius: 1rem 0 0 1rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recruit-info__title span.sm {
  display: block;
  font-size: 1.2rem;
}
.recruit-info__detail {
  flex: 1;
  background: #fff;
  border-radius: 0 1rem 1rem 0;
  padding: 1rem 1.2rem;
}
.recruit-info__detail span.st {
  display: block;
  font-weight: 700;
}

.btn-detail a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: var(--s1) 0 0 auto;
  padding: var(--s-2) var(--s5) var(--s-2) var(--s2);
  border-radius: var(--s6);
  border: solid 1px #57c2e7;
  background: #fff url(img/arrow-01-blue-right.svg) no-repeat center right 1.4rem/1.6rem auto;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

@media (hover: hover) {
  .btn-detail a:hover {
    opacity: 0.7;
  }
}
.banner {
  display: block;
  margin: 9rem auto;
  padding: 4rem 5rem;
  border-radius: 1.5rem;
  background: linear-gradient(to right, #0d6fba, #57c2e7);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.banner:before {
  content: "";
  width: 51%;
  height: 100%;
  background: url(img/banner-bg.png) no-repeat left center/cover;
  position: absolute;
  right: 0;
  top: 0;
}
.banner-lead {
  margin-bottom: 1.4rem;
  padding-left: 3rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.banner-lead:before {
  content: "";
  width: 2.1rem;
  height: 2.1rem;
  background: url(img/deco-icon-title.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.banner-title {
  max-width: 56rem;
  margin-bottom: var(--s2);
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
}
.banner-text {
  max-width: 55.5rem;
  padding: 1.4rem 8rem 1.4rem var(--s2);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  line-height: 1.7;
}
.banner-pic {
  width: 34.2rem;
  position: absolute;
  right: 3.7rem;
  top: 1.7rem;
}
.banner-btn {
  width: 11rem;
  position: absolute;
  right: 5rem;
  bottom: 2.7rem;
}

@media (hover: hover) {
  .banner:hover {
    opacity: 0.7;
  }
}
.sec-column-grid {
  margin-bottom: var(--s10);
}

.card-column {
  grid-row: span 2;
  grid-gap: 0;
  position: relative;
  text-decoration: none;
}
.card-column__title {
  padding: 1.5rem 2rem;
  border-radius: 1rem 1rem 0 0;
  background: #0d6fba;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
}
.card-column__text {
  padding: 2rem 2rem 6rem;
  border: solid 1px #57c2e7;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  font-size: 1.5rem;
  line-height: 1.5;
  position: relative;
}
.card-column__btn {
  width: 11rem;
  position: absolute;
  bottom: var(--s2);
  right: var(--s2);
}

@media (hover: hover) {
  .card-column:hover {
    opacity: 0.7;
  }
}
@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;
  }
  p {
    line-height: 1.7;
  }
}
@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(--s4);
  }
  .l-stack-02 {
    gap: var(--s1);
  }
  /*
  ---------------------------------------------

      sp layout cluster

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

      sp layout grid

  */
  .l-grid {
    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(--s2);
    grid-template-columns: 100%;
  }
  .l-grid-four {
    --minmum: calc((100% - var(--s1) * 3) / 4);
    gap: var(--s1);
  }
  .l-grid-four-02 {
    grid-template-columns: 5rem repeat(1, 1fr);
    gap: var(--s1);
  }
  /*
  ---------------------------------------------

      sp layout sidebar

  */
  .l-sidebar__main {
    width: 100%;
    overflow-x: hidden;
  }
  /*
  ---------------------------------------------

      sp layout column

  */
  .l-column {
    gap: var(--s2);
  }
  .l-column__side, .l-column__side02, .l-column__side03, .l-column__side04, .l-column__side06, .l-column__side07, .l-column__side08 {
    width: 100%;
  }
  .l-column__main {
    width: 100%;
  }
  .l-column--sp-reverse {
    flex-direction: column-reverse;
  }
  .l-column-02 {
    gap: 0;
    position: relative;
  }
  .l-column-02__side {
    width: 100%;
    height: 22rem;
    margin: 0;
  }
  .l-column-02__main {
    width: 100%;
    flex: none;
  }
  /*
  ---------------------------------------------

      sp layout grid areas

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

      sp layout scroll

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

      header area

  */
  .header-area {
    padding: 0.6rem;
    padding-top: var(--s2);
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: var(--s1);
  }
  .header-area__inner {
    width: 100%;
    gap: 0.6rem;
  }
  .header-area__title {
    flex-direction: column;
    justify-content: flex-start;
  }
  .header-area__logo {
    width: 100%;
  }
  .header-area__logo img {
    display: none;
  }
  .header-area__logo a {
    display: block;
    width: 17rem;
    margin: 0 auto;
  }
  .header-area__name {
    width: 255px;
    margin: 0 auto;
    display: block;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(to left, #c7effd 0%, #f2f2f1 100%);
  }
  .header-area .sponsored-text {
    margin: var(--s-2);
    line-height: 1.2;
    display: block;
  }
  .header-area .pr-text {
    text-align: center;
  }
  .header-area--low {
    padding: 1.8rem 0 1.4rem;
    position: static;
    background: linear-gradient(to right, #fbf3ee 0%, #bfefff 100%);
  }
  .header-area--low .header-area__logo img {
    display: block;
  }
  .header-area--low .header-area__name {
    font-size: 1.6rem;
  }
  .mv-lower {
    display: none;
  }
  /*
  ---------------------------------------------

      main-area

  */
  .main-area--low {
    padding-bottom: 0;
  }
  /*
  ---------------------------------------------

      main visual

  */
  .mainvisual {
    padding: 0;
  }
  .mainvisual-upper {
    height: auto;
    min-height: initial;
    padding: 8rem 1.1rem var(--s2) 1.5rem;
    border-radius: 0;
    background: linear-gradient(to left, #c7effd 0%, #f2f2f1 100%);
  }
  .mainvisual-title {
    margin: 0 0 0.5rem;
    padding: 0;
    font-size: 4.9rem;
    line-height: 1.2;
  }
  .mainvisual-lead {
    margin-bottom: 1.2rem;
    padding: 0;
    font-size: 1.8rem;
  }
  .mainvisual .pr-text {
    padding: 0;
  }
  .mainvisual-pic {
    aspect-ratio: 367/303;
  }
  .mainvisual .mv-pic1 {
    z-index: 3;
    width: 24.1%;
    top: auto;
    bottom: -5%;
    left: 72.83%;
  }
  .mainvisual .mv-pic2 {
    width: 55.59%;
    left: 20.88%;
  }
  .mainvisual .mv-pic3 {
    width: 27.25%;
    left: -2%;
    top: 0.96%;
  }
  .mainvisual .mv-pic4,
  .mainvisual .mv-pic5 {
    display: none;
  }
  .mv-under {
    padding: var(--s6) 0 var(--s1);
    background: url(img/deco-sec1-sp.png) no-repeat right 2.2rem top 2.5rem/15.1rem auto;
  }
  .mv-under__inner:before, .mv-under__inner:after {
    content: none;
  }
  .mv-under__text {
    margin-bottom: var(--s4);
  }
  .mv-under__text p {
    font-size: 1.7rem;
    text-align: left;
    line-height: 1.7;
  }
  .mv-under__text p + p {
    margin-top: var(--s3);
  }
  .mv-menu {
    margin-left: calc(var(--s2) * -1);
    margin-right: calc(var(--s2) * -1);
    margin-bottom: 0;
    padding: 3.6rem var(--s2);
    border-radius: 0;
  }
  .mv-menu__title {
    font-size: 2rem;
}
  .card-mv__pic {
    height: 13.5rem;
    overflow: hidden;
  }
  .card-mv__pic img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .sidebar-area__btn {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    font-size: 1.5rem;
  }
  /*
  ---------------------------------------------

      toc lower

  */
  .toc-lower-wrap {
    margin: var(--s5) auto;
    padding: var(--s2) var(--s3);
  }
  .toc-lower-wrap--relation {
    padding-bottom: 0;
  }
  .toc-lower-wrap:before {
    height: 3.5rem;
    top: -1.5rem;
  }
  .toc-lower-wrap ul li + li {
    margin-top: var(--s2);
  }
	
	.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 {
    font-size: 1.4rem;
  }
  .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 li.relation-links a {
    width: 100%;
  }
  .toc-lower-wrap ul:not([class]) li {
    font-size: 1.5rem;
  }
  .toc-lower__body {
    padding-bottom: var(--s1);
  }
  .toc-lower__title {
    margin-bottom: var(--s3);
    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(--s4) auto var(--s3);
  }
  .btn-internal a,
  .btn-web a {
    width: 90%;
    min-height: 6rem;
    padding: 2rem 4.4rem;
    background-size: 2.3rem auto;
    background-position: right 1.2rem center;
    font-size: 1.5rem;
  }
  .btn-internal:after,
  .btn-web:after {
    transform: translate(0.4rem, 0.4rem);
  }
  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    padding-right: 2.8rem;
    font-size: 1.4rem;
  }
  .btn-tel {
    width: 31rem;
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 100%;
    min-height: 9rem;
    margin: 0 auto;
    padding: var(--s2) 5rem;
    background: #02ad43 url("img/icon-tel.png") no-repeat center left var(--s3)/4rem auto;
    border-radius: 10rem;
    box-shadow: 0 0 1.6rem rgba(18, 38, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .btn-column {
    margin: var(--s4) auto;
    flex-direction: column;
    gap: 2rem;
  }
  .btn-column .btn-web,
  .btn-column .btn-internal,
  .btn-column .btn-tel {
    margin: 0;
  }
  .btn-column .btn-web--fk,
  .btn-column .btn-internal--fk {
    margin-top: var(--s2);
  }
  /*
  ---------------------------------------------

      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: #fbf3ee;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #fbf3ee;
    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;
  }
  .catch-02 {
    font-size: 1.5rem;
  }
  /*
  ---------------------------------------------

  	subgrid card

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

      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 {
    padding: var(--s6) 0 0;
  }
  .footer-area:after {
    height: calc(100% - 28rem);
  }
  .footer-about {
    margin: 0 auto var(--s3);
    padding: var(--s3) 2rem;
    padding-top: 6rem;
    position: relative;
    display: block;
  }
  .footer-about:before {
    width: 100%;
    font-size: 2.2rem;
    text-align: center;
    left: 0;
    top: 2.8rem;
  }
  .footer-about .l-column__side02 {
    display: none;
  }
  .footer-about__title {
    padding-bottom: 7.6rem;
    margin-bottom: 2.2rem;
    font-size: 1.9rem;
    text-align: center;
    background: url(img/logo.png) no-repeat center bottom/21.6rem auto;
  }
  .footer-about p {
    line-height: 1.7;
  }
  .footer-about__logo {
    display: none;
  }
  .footer-main {
    padding-right: 2.7rem;
    padding-left: 2.7rem;
    box-sizing: border-box;
  }
  .footer-main__logo {
    width: 23rem;
    margin: 0 auto var(--s4);
  }
  .footer-bottom {
    padding: var(--s1) 0 9rem;
  }
  .footer-box + .footer-box {
    margin-top: 0;
  }
  .footer-menu-title {
    margin-bottom: 0;
  }
  .footer-menu-title__link {
    padding: var(--s2) var(--s5) var(--s2) 1.2rem;
    background: none;
    display: block;
    font-size: 1.5rem;
    color: #fff;
    position: relative;
  }
  .footer-menu-title__link::after {
    content: "";
    width: 2.3rem;
    height: 2.3rem;
    background: url("img/arrow-01-blue-down.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: var(--s1);
    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-01-blue-right.svg") no-repeat center/auto 2.3rem;
  }
  .footer-menu-title__link:active {
    color: #fff;
  }
  .footer-menu {
    gap: 0;
  }
  .footer-menu__item {
    width: 100%;
    padding: 0;
    border-bottom: solid 1px #fff;
    font-size: 1.5rem;
  }
  .footer-menu__link {
    margin-bottom: 0;
    padding: 1.1rem var(--s4) 1.1rem var(--s2);
    background-position: right var(--s2) center;
    display: block;
    font-weight: 400;
    font-size: 1.3rem;
  }
  .footer-menu-sub {
    margin-left: var(--s2);
    margin-top: 0;
    margin-bottom: var(--s1);
  }
  .footer-menu-sub__link {
    padding: var(--s1) var(--s2) var(--s1) 1.1em;
  }
  .footer-menu-sub__link::before {
    top: var(--s1);
  }
  .footer-disclaimer {
    width: 100%;
    margin: var(--s2) 0;
    padding: var(--s1) 0;
    border: none;
  }
  .footer-nocopy {
    margin: var(--s2) var(--s1);
    font-size: 1.2rem;
  }
  .footer-copyright {
    width: 100%;
    padding: 0;
  }
  .footer-sitemap {
    display: none;
  }
  /*
  ---------------------------------------------

  	sp gnavi

  */
  .gnavi-btn {
    width: 6rem;
    height: 6rem;
  }
  .gnavi-btn:before {
    top: 0.6rem;
    left: 1.2rem;
    font-size: 1.2rem;
  }
  .gnavi-btn span {
    width: 2.8rem;
    left: 1.7rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 2.7rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 3.4rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 4.1rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.7rem) rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.7rem) rotate(45deg);
  }
  .gnavi-area {
    width: 100%;
    padding: 1.8rem var(--s2) var(--s2);
  }
  .gnavi-area__logo {
    display: block;
    width: 17rem;
    margin: 0 0 var(--s2) 0;
  }
  .gnavi-logo {
    width: 22rem;
    margin: 0 auto var(--s2);
    padding-right: var(--s3);
  }
  /*
  ---------------------------------------------

      sp page

  */
  .page-top {
    width: 5.2rem;
    height: 5.2rem;
    bottom: 0.6rem;
    right: var(--s1);
  }
  /*
  ---------------------------------------------

      footer-banner

  */
  .fixed-banner {
    display: block;
    margin: 0;
  }
  .fixed-banner a {
    display: block;
    width: 28rem;
    min-height: initial;
    margin: 0;
    padding: 1rem var(--s4) 1rem var(--s3);
    background-position: right 1.3rem center;
    border-radius: 3rem 3rem 0 0;
    font-size: 1.4rem;
    position: fixed;
    right: auto;
    left: 0;
    bottom: 0;
    z-index: 9;
  }
  .fixed-banner a:before {
    width: 3.6rem;
    left: var(--s1);
  }
  .fixed-banner--bottom {
    display: none;
  }
  /*
  ---------------------------------------------

       sp toggle sp

  */
  .toggle-sp-content {
    display: none;
  }
  .toggle-btn:after {
    height: var(--s3);
    right: 3.5rem;
  }
  .toggle-btn:before {
    width: var(--s3);
  }
  .toggle-btn-sp {
    display: block;
    width: 100%;
    padding-right: var(--s4);
    position: relative;
  }
  .toggle-btn-sp::before {
    content: "";
    width: 1.7rem;
    height: 0.3rem;
    background: #122645;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
  .toggle-btn-sp::after {
    content: "";
    width: 0.3rem;
    height: 1.7rem;
    background: #122645;
    position: absolute;
    top: 50%;
    right: 0.7rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
  }
  .toggle-btn-sp.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
  }
  .btn-more-sp {
    margin-top: var(--s2);
    text-align: right;
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
  }
  /*
  ---------------------------------------------

       sp more-gradient

  */
  .more-gradient-sp-btn {
    width: 11rem;
    display: block;
    margin: 0 auto;
    padding: 0.6rem 4.5rem 0.6rem var(--s2);
    border-radius: 5rem;
    border: solid 1px #bfefff;
    background: #fff;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #57c2e7;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    z-index: 2;
  }
  .more-gradient-sp-btn::before {
    content: "";
    width: 2.3rem;
    height: 2.3rem;
    background: url(img/icon-more.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 1.7rem;
    transform: translateY(-50%);
  }
  .more-gradient-sp-btn.is-open::before {
    background-image: url(img/icon-more-cl.svg);
  }
  .more-gradient-sp-content {
    height: 9rem;
    padding-bottom: 4.4rem;
    overflow: hidden;
    position: relative;
    transition: height 0.6s ease;
  }
  .more-gradient-sp-content::after {
    content: "";
    width: 100%;
    height: 9rem;
    background: linear-gradient(to bottom, transparent 0%, #fbf3ee 64%);
    opacity: 1;
    visibility: visible;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  .more-gradient-sp-content.is-open::after {
    opacity: 0;
    visibility: hidden;
  }
  /*
  ---------------------------------------------

    tab 

  */
  .tab-column {
    margin-bottom: 1rem;
    gap: 1rem;
  }
  .tab-column--bottom {
    display: flex;
    margin-top: 1.9rem;
    margin-bottom: 0;
    position: relative;
  }
  .tab-column--bottom:before {
    content: "";
    width: 100vw;
    height: calc(100% + 3rem);
    background: #f3f8fc;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  .tab-column--bottom .tab-btn:after {
    content: none;
  }
  .tab-column--bottom .tab-btn.is-active:before {
    top: auto;
    bottom: 100%;
    transform: translateX(-50%) scale(1, -1);
  }
  .tab-btn {
    padding: 1.4rem var(--s1);
    font-size: 1.3rem;
  }
  .tab-btn:after {
    width: 3.1rem;
    height: 8.8rem;
    left: 0;
    top: -4.4rem;
  }
  .tab-btn--02:after {
    width: 3.6rem;
    height: 8.2rem;
    left: auto;
    right: 0;
    top: -3.5rem;
  }
  .tab-btn span.bg {
    margin-right: 0;
    padding: 0 0.3rem;
    font-size: 1.5rem;
  }
  .tab-btn.is-active:before {
    width: 5rem;
    height: 1.9rem;
  }
  .tab-content {
    border-width: 0.9rem;
    padding: 1.9rem 0 5rem 1.9rem;
    border-radius: 1rem 0 0 1rem;
  }
  .tab-content-wrap {
    margin-left: calc(var(--s2) * -1);
  }
  /*
  ---------------------------------------------

      lower-parts

  */
  .box-summary {
    padding: var(--s-2) 0 var(--s5) 2.3rem;
  }
  .box-summary:before {
    width: calc(100% + var(--s2));
  }
  .box-summary:after {
    width: 5.5rem;
    height: 10.2rem;
    right: 0;
    top: -3rem;
  }
  .box-summary__tag {
    font-size: 3.2rem;
  }
  .box-summary__title {
    padding-right: 7.5rem;
    font-size: 2rem;
  }
  .low-interview {
    margin-left: calc(var(--s2) * -1);
    padding-bottom: var(--s2);
    padding-left: 2.8rem;
    background: linear-gradient(to right, #0d6fba 0.9rem, #fbf3ee 0.9rem);
    border-radius: 1rem 0 0 1rem;
  }
  .low-interview:before {
    width: var(--s2);
  }
  .low-interview__title {
    margin-left: 0;
    text-align: center;
    font-size: 3.2rem;
  }
  .low-qa {
    padding-left: 0;
  }
  .low-qa__q {
    margin-left: var(--s4);
    font-size: 1.9rem;
  }
  .low-qa__q:before {
    width: 2.2rem;
    left: -3.4rem;
    top: 0.7em;
    transform: none;
  }
  .low-qa__a {
    margin-left: var(--s4);
    font-size: 1.6rem;
  }
  /*
  ---------------------------------------------

      SP titles

  */
  .pr-text {
    text-align: left;
  }
  h1:not([class]) {
    min-height: 5.3rem;
    margin: var(--s2) 0 0;
    padding: 0 3.2rem;
    font-size: 2.6rem;
  }
  h1:not([class]):before {
    width: 2.7rem;
    right: auto;
    left: 0;
  }
  h1:not([class]):after {
    width: 2.7rem;
    right: 0;
    left: auto;
  }
  .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 h2:not([class]) {
    font-size: 2.2rem;
    padding: 2rem var(--s2) 2rem 5.3rem;
    border-radius: var(--s1);
  }
  .main-area--low h2:not([class]):before {
    left: 2.3rem;
  }
  .main-area--low h2:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]) {
    font-size: 2.2rem;
  }
  .main-area--low h3:not([class]):before {
    width: 0.8rem;
    height: 0.8rem;
    border-width: 0.4rem;
    bottom: -0.9rem;
    left: -1rem;
  }
  .main-area--low h3:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h4:not([class]) {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    font-size: 2rem;
  }
  .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.8rem;
  }
  .main-area--low h5:not([class])::before {
    width: 1.5rem;
  }
  .main-area--low h5:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h6:not([class]) {
    font-size: 1.5rem;
  }
  /*
  ---------------------------------------------

      SP end

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

      TOP section

  */
  .common-title {
    width: 100%;
    font-size: 2.6rem;
  }
  .common-title a {
    padding-right: 4rem;
    background-size: 2.4rem auto;
  }
  .common-title span.sm {
    font-size: 1.8rem;
  }
  .common-title span.sm2 {
    font-size: 1.9rem;
  }
  .common-lead {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
  .common-tag {
    margin-bottom: var(--s1);
  }
  .title-column {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .sec-check {
    padding: var(--s8) 0 0;
  }
  .sec-check__list {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
    gap: 0.6rem;
  }
  .sec-check__subtitle {
    margin-bottom: 0;
    font-size: 2rem;
  }
  .sec-check__tag {
    margin-bottom: var(--s1);
    font-size: 3.8rem;
  }
  .sec-check__point ul:not([class]) li {
    font-size: 1.4rem;
  }
  .sec-check__point:before {
    width: calc(100% + 1.7rem);
    border-radius: 1rem 0 0 1rem;
  }
  .sec-check__fkds {
    margin-bottom: var(--s10);
    padding: var(--s4) 0 var(--s6);
  }
  .sec-check__fkds:before {
    width: 100vw;
    height: 66.7rem;
    border-radius: 0 0 6rem 6rem;
    background: linear-gradient(to top, #f48e62 0%, #f6ccb4 10%, #77dcff 100%);
  }
  .sec-check__fkds:after {
    height: 4rem;
    background-size: 100% 100%;
  }
  .sec-check__fkds__text {
    font-size: 1.6rem;
  }
  .sec-check__under {
    margin-top: var(--s10);
    padding-bottom: 8.3rem;
    font-size: 1.8rem;
  }
  .sec-check__under:before {
    width: 29.6rem;
    height: 8.3rem;
    background: url(img/sec01-illust-top.png) no-repeat center top/contain;
    left: 1.7rem;
    bottom: auto;
    top: -6rem;
  }
  .sec-check__under::after {
    width: 100%;
    height: 7.6rem;
    background: url(img/sec01-illust-bottom.png) no-repeat center bottom/contain;
    left: 0;
    bottom: 1.5rem;
  }
  .check-slider {
    margin-top: 0.9rem;
  }
  .check-slider-wrap {
    width: 100vw;
    margin-left: 0;
  }
  .check-slider .slick-list {
    padding-left: 0;
  }
  .check-slider .check-illust img {
    border-radius: 1rem;
  }
  .check-slider .check-illust img.for-sp {
    display: block;
  }
  .check-slider .check-illust img.for-pc {
    display: none;
  }
  .check-slider .slide__inner {
    width: 32.4rem;
    padding: 1.8rem;
  }
  .check-slider .slide__inner .btn-internal a {
    width: 100%;
  }
  .check-slider .slide-item {
    margin: 0 0.9rem;
    padding-bottom: 1rem;
  }
  .check-box__tag {
    margin: -0.3rem auto var(--s1);
    font-size: 2rem;
    line-height: 1;
  }
  .check-box__title {
    font-size: 1.6rem;
  }
  .check-box__title span.st {
    font-size: 2rem;
  }
  .check-box__title span.st--pc {
    font-size: 1.6rem;
  }
  .check-box__lead {
    display: none;
  }
  .check-item {
    padding-bottom: 1.1rem;
    background-image: none;
  }
  .check-item.is-active {
    transform: translateY(-1.8rem);
  }
  .check-item.is-active:before {
    width: 6rem;
  }
  .slide-arrow {
    width: 3.2rem;
    top: 32%;
  }
  .prev-arrow {
    left: 0.7rem;
  }
  .next-arrow {
    right: 0.7rem;
  }
  .logo-area {
    justify-content: center;
    gap: 0.5rem;
  }
  .logo-area__text {
    flex: none;
    width: -moz-fit-content;
    width: fit-content;
    max-width: initial;
    padding: 0.3rem 0.6rem;
    border-radius: var(--s-2);
  }
  .logo-area__logo {
    width: 17.6rem;
  }
  .sec-interview {
    margin-bottom: 0;
  }
  .interview-upper {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .interview-upper .l-cluster {
    justify-content: flex-start;
  }
  .prof-pic {
    width: 9.8rem;
    height: 9.8rem;
  }
  .prof-name {
    text-align: left;
  }
  .interview-title {
    margin-bottom: var(--s1);
    font-size: 2rem;
  }
  .interview-inner {
    margin-top: 1.3rem;
    padding: 3rem 1.8rem;
  }
  .interview-inner:before {
    width: 100%;
    height: calc(100% + 14rem);
    border-radius: 1rem;
  }
  .interview-subtitle {
    margin-bottom: var(--s1);
    padding-top: 1.8rem;
    background-size: 3.4rem auto;
    font-size: 1.8rem;
  }
  .interview-pic {
    width: 20.3rem;
    margin: 0 auto;
  }
  .sec-step__time {
    width: 3.6rem;
    margin-bottom: -8rem;
    padding: 1.5rem 0 1.8rem;
    font-family: "Noto Sans JP vertical", sans-serif;
    writing-mode: vertical-rl;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0.9rem;
  }
  .sec-step__time span.sm {
    font-size: 1.2rem;
  }
  .sec-step__time span.sm2 {
    font-size: 1.4rem;
  }
  .sec-step__time span.up {
    text-orientation: upright;
  }
  .sec-step__time span.yoko {
    text-combine-upright: all;
    font-family: Meiryo, sans-serif;
    font-size: 2.1rem;
    font-weight: bold;
    -webkit-text-combine: horizontal; /* Safari対策 */
    display: inline-block;
    line-height: 1;
    text-align: center;
  }
  .sec-step__time:before {
    width: 3rem;
    height: 1.4rem;
    transform: rotate(-90deg);
    left: auto;
    right: -2rem;
    top: 2.4rem;
  }
  .sec-step__subtitle {
    margin-left: 1.2rem;
    padding: 1.4rem 0 1.4rem var(--s5);
    font-size: 2rem;
  }
  .sec-step__subtitle:before {
    width: var(--s2);
  }
  .sec-step__subtitle:after {
    background-image: url(img/step-illust-1-sp.png);
    width: 10.9rem;
    height: 10.9rem;
    right: 0;
    bottom: 0.6rem;
  }
  .sec-step__subtitle--02:after {
    width: 8rem;
    height: 10rem;
    background-image: url(img/step-illust-2-sp.png);
    right: -1rem;
  }
  .sec-step__subtitle--03:after {
    background-image: url(img/step-illust-3.png);
    width: 6.6rem;
    height: 6.6rem;
    right: -0.7rem;
    bottom: auto;
    top: -3.3rem;
  }
  .sec-step__inner {
    padding: var(--s2) 0 var(--s4) 3rem;
  }
  .sec-step__inner.last {
    padding-bottom: 0;
  }
  .sec-step__inner.last::before {
    height: 100%;
    top: 0;
  }
  .sec-step__inner:before {
    left: 1.5rem;
    height: calc(100% + var(--s4));
    top: calc(var(--s2) * -1);
    background-size: 3px 10px;
  }
  .sec-step__inner .btn-internal {
    margin-top: var(--s4);
    margin-bottom: var(--s4);
  }
  .sec-step__inner .btn-internal a {
    width: 96%;
  }
  .sec-step__inner .l-stack {
    gap: var(--s6);
  }
  .sec-step__pic {
    max-width: 28.5rem;
    margin: 0 auto;
  }
  .sec-step__upper {
    position: relative;
  }
  p.inner-p {
    padding-left: 2.1rem;
  }
  .box-comment {
    margin: var(--s4) 0 0;
    padding: 1.3rem 1.9rem;
  }
  .box-comment__pic {
    right: auto;
    left: 1.3rem;
    top: -3.6rem;
    transform: none;
  }
  .box-comment__title {
    min-height: 4.6rem;
    padding-left: 9.9rem;
  }
  .box-voice {
    margin-top: var(--s9);
    margin-bottom: 0;
    padding: 0.2rem;
  }
  .box-voice__ttlblock {
    padding: 2.7rem 1rem 1rem;
  }
  .box-voice__tag {
    margin-bottom: 0;
    flex-direction: column;
  }
  .box-voice__tag .tag {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 1.3rem;
    position: absolute;
    left: 50%;
    top: -4rem;
    transform: translateX(-50%);
  }
  .box-voice__tag .tag:before {
    content: "";
    width: 3rem;
    height: 1.4rem;
    background: url(img/fk-bottom-blue3.svg) no-repeat center top/contain;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }
  .box-voice__tag .st {
    font-size: 1.6rem;
    text-align: center;
  }
  .box-voice__title {
    font-size: 2rem;
  }
  .box-voice__body {
    padding: var(--s3) 1.4rem;
  }
  .box-voice .btn-internal {
    margin-top: 4.6rem;
    margin-bottom: 1rem;
    position: static;
    transform: none;
  }
  .box-voice .btn-internal a {
    width: 96%;
  }
  .card-voice {
    padding: 0;
  }
  .card-voice__inner {
    flex-direction: column;
    position: relative;
  }
  .card-voice .l-cluster {
    padding-left: 9.5rem;
  }
  .card-voice .name {
    padding-left: 10rem;
    text-align: left;
  }
  .card-voice__txt {
    padding-top: var(--s2);
  }
  .voice-pic {
    width: 8.7rem;
    height: 8.7rem;
    position: absolute;
    left: 0;
  }
  .sec-qa {
    padding-bottom: var(--s8);
  }
  .sec-qa .title-column {
    margin-bottom: var(--s3);
  }
  .sec-qa__grid {
    margin-top: 4.5rem;
    gap: 1.8rem;
  }
  .sec-qa-low {
    margin: 5rem 0;
}
  .qa-column__pic {
    width: 17.2rem;
    height: 17.2rem;
    margin: 0 auto var(--s1);
    padding: 0.7rem;
  }
  .qa-column__pic:before {
    right: -4rem;
  }
  .qa-column__body {
    margin-top: 2.5rem;
    padding: var(--s3) 2.2rem;
  }
  .qa-column__body:before {
    transform: rotate(90deg) translateX(-50%) translateY(13px);
    bottom: 100%;
    top: -2.5rem;
    right: auto;
    left: 50%;
  }
  .qa-column .qa-title {
    font-size: 2rem;
  }
  .card-qa {
    padding: 1.9rem 1.5rem 1.5rem;
  }
  .card-qa__title {
    padding: 1rem 1rem 1rem 4.7rem;
    font-size: 1.6rem;
  }
  .sec-sponsored {
    padding-bottom: 5.2rem;
  }
  .sec-sponsored:before {
    background-attachment: initial;
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: center top;
  }
  .sec-sponsored .en-title {
    margin-bottom: 3.7rem;
    font-size: 4.5rem;
  }
  .sec-sponsored__title {
    font-size: 2.5rem;
    text-align: center;
  }
  .sec-sponsored__catch {
    padding: 1.5rem var(--s3);
    font-size: 2rem;
  }
  .sec-sponsored__catch:before {
    width: 100%;
    border-radius: 1rem;
  }
  .sec-sponsored--low:before {
    width: 100vw;
    left: 50%;
    top: 0;
  }
  .btn-contact {
    margin: var(--s4) 0 3.6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .btn-contact__title {
    text-align: center;
  }
  .btn-contact__inner {
    padding: 2.5rem 1rem;
  }
  .btn-contact__lead {
    margin-bottom: var(--s2);
    padding-left: 13.7rem;
    position: relative;
  }
  .btn-contact__lead:before {
    content: "";
    width: 8.8rem;
    height: 8.5rem;
    background: url(img/icon-sponsored-btn.png) no-repeat center/contain;
    position: absolute;
    left: var(--s5);
    top: 50%;
    transform: translateY(-50%);
  }
  .btn-contact__btn {
    background-position: right 1.3rem center;
  }
  .btn-contact__btn:before {
    content: none;
  }
  .box-recruit {
    margin-top: 6rem;
    padding: 16rem 0 1rem 2rem;
    border-radius: 0;
  }
  .box-recruit:before {
    width: var(--s2);
  }
  .box-recruit .loop-photo {
    width: calc(100% + var(--s2) * 2);
    height: 13rem;
    left: calc(var(--s2) * -1);
    top: var(--s3);
    flex-direction: row;
  }
  .box-recruit .loop-photo-pic {
    width: -moz-max-content;
    width: max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    height: 100%;
    flex: 0 0 auto;
    flex-direction: row;
    animation: loops 60s linear infinite;
  }
  .box-recruit .loop-photo-pic > div {
    height: 100%;
    flex: 0 0 auto;
  }
  .box-recruit .loop-photo-pic img {
    width: auto;
    height: 100%;
    display: block;
  }
  .box-recruit__tag {
    font-size: 4.6rem;
    text-align: right;
  }
  .box-recruit__title {
    margin-top: -2.4rem;
  }
  .box-recruit .btn-web a {
    width: 94%;
  }
  .recruit-info__title {
    width: 5.3rem;
    padding: 1rem 0.5rem;
  }
  .recruit-info__title span.sm {
    font-size: 0.8rem;
    font-weight: 400;
  }
  .recruit-info__detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .banner {
    overflow: visible;
    margin-bottom: 4.5rem;
    padding: 17.8rem 1.5rem 1.7rem;
    background: url(img/banner-bg-sp.jpg) no-repeat center top/100% auto, linear-gradient(to bottom, #0d6fba, #57c2e7);
  }
  .banner:before {
    content: none;
  }
  .banner-pic {
    width: 26rem;
    top: -3rem;
  }
  .banner-btn {
    position: static;
    margin: 1rem 0 0 auto;
  }
  .banner-lead {
    font-size: 1.4rem;
  }
  .banner-title {
    font-size: 2.4rem;
    text-align: center;
  }
  .banner-text {
    padding: var(--s2);
  }
  .card-column {
    position: relative;
    display: block;
  }
  .card-column__title {
    padding: 2.2rem 2rem 4.7rem;
    border-radius: 1rem;
  }
  .card-column__text {
    display: none;
  }
  .card-column__btn {
    width: 8.3rem;
    bottom: var(--s2);
  }
  /*
  ---------------------------------------------

      SP end

  */
}


/* ==========================================================================
   ここから下に横ぶれ・横スクロールバー対策を正しく追記
   ========================================================================== */

/* 1. 全体の横幅とはみ出しを確実に防止（パソコン・スマホ共通） */
html, body {
  width: 100%;
  overflow-x: hidden;
}
body {
  min-width: 375px; /* ViewportExtraとの計算のズレをなくしてスマホのガタつきを防止 */
}

/* 2. スマホ時に右側へ画面1個分大暴走していた背景を中央に引き戻す */
@media screen and (max-width: 767px) {
  .sec-sponsored--low:before {
    left: 50% !important;           /* 画面の水平中央を基準点にする */
    right: auto !important;          /* PC用の右側引っ張りを完全にリセット */
    width: 100vw !important;         /* 背景の横幅を「画面幅ぴったり」に指定 */
    margin-left: 0 !important;       /* ★過去の余計なマイナスマージンを確実にゼロリセット */
    transform: translateX(-50%) !important; /* ★要素の幅の半分だけ左に引き戻して画面端にジャストフィットさせる */
  }
}

/* 3. 画面外の固定メニュー（ドロワー）がスクロール領域を広げてしまうバグをカット */
.gnavi-area {
  visibility: hidden; /* 閉じている時はブラウザの計算（存在）から完全に消す */
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.is-gnavi-open .gnavi-area {
  visibility: visible; /* 開いた時だけ出現させる */
}