@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: 1100px) {
  :root {
    font-size: 0.9090909091vw;
  }
}
body {
  margin: 0;
  padding: 0;
  color: #141537;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

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

li {
  list-style: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.img-height {
  width: auto;
  max-width: inherit;
  height: 100%;
}

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

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

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

strong {
  font-weight: 700;
}

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

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

@media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
 [data-target="scrollable-icon"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
@media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }
}
/*
---------------------------------------------

    animation

*/
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loops {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/*  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.animated {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInUpDeg {
  opacity: 0;
  transform: translate(-1.5rem, 2rem);
  transition: transform 0.8s ease, opacity 0.8s ease, background 0.8s ease;
}

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

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

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

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

    layout center

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

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

    layout stack

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

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

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

    layout cluster

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

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

    layout grid

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

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

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

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

.l-grid-four-02 {
  display: grid;
  grid-template-columns: 8.2rem repeat(3, 1fr);
  gap: 2rem;
}

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

    layout sidebar

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

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

    layout column

*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}
.l-column__side {
  width: 48rem;
}
.l-column__side02 {
  display: flex;
  width: 22rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-column__side03 {
  width: 41rem;
}
.l-column__side04 {
  width: 36rem;
}
.l-column__side05 {
  width: 18rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

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

    layout grid areas

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

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

    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 {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: var(--s3);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.header-area__inner {
  flex: 1;
}
.header-area__name {
  display: inline;
  font-size: 1.1rem;
}
.header-area__name a {
  text-decoration: none;
}
.header-area .sponsored-text {
  display: inline;
  margin-left: var(--s2);
  font-size: 1.1rem;
}
.header-area__logo {
  width: 20.6rem;
}

.lower-upper {
  padding: 12rem 0 var(--s10);
  background: #e6f5ff url(img/mv-pic-low.png) no-repeat;
  background-position: calc(50% + 42.4rem) bottom;
  background-size: 43rem auto;
  position: relative;
}
.lower-upper:before {
  content: "";
  width: 64.7rem;
  height: 27.2rem;
  background: url(img/mv-low-bg.png) no-repeat center bottom/contain;
  position: absolute;
  left: calc(50% - 100rem);
  bottom: 0;
  opacity: 0.5;
}

.header-scroll-navi {
  width: 100%;
  height: 7rem;
  padding: 0.8rem 8rem 0.8rem var(--s1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  gap: var(--s3);
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  transition: opacity 0.3s, visibility 0.3s;
}
.header-scroll-navi .header-area__logo {
  width: 20.6rem;
  margin-left: 0;
  margin-right: auto;
}

@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;
}
.js-appear.is-fixed {
  opacity: 1;
  visibility: visible;
}

.header-navi {
  display: flex;
  gap: var(--s5);
}
.header-navi__item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header-navi__item:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #666;
  position: absolute;
  right: -2rem;
  top: 0;
}
.header-navi__item:last-child:before {
  content: none;
}
.header-navi__item a {
  text-decoration: none;
  text-align: center;
}

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

    main-area

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

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

    main visual

*/
.mainvisual {
  padding: 17rem 0 0;
  background: #e6f5ff;
  position: relative;
  z-index: 0;
  overflow: visible;
}
.mainvisual-inner {
  max-width: 128rem;
  margin: 0 auto;
  padding-bottom: 9rem;
  padding-left: var(--s2);
  padding-right: var(--s2);
  position: relative;
}
.mainvisual-inner:before {
  content: "";
  width: 85.8rem;
  height: 71.3rem;
  background: url(img/mv-pic.png) no-repeat center/contain;
  position: absolute;
  left: calc(50% - 10rem);
  bottom: 0;
}
.mainvisual-title {
  font-size: 9.8rem;
  font-weight: 700;
  line-height: 1.6;
}
.mainvisual-title span.bg {
  font-size: 8.4rem;
  width: fit-content;
  margin-bottom: var(--s2);
  padding: 0 var(--s1) var(--s2);
  display: block;
  position: relative;
  clip-path: polygon(0% 0%, 0% 0, 0% 100%, 0% 100%);
  transition: clip-path 1s cubic-bezier(0.09, 0.89, 0.57, 0.98);
}
.mainvisual-title span.bg:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
  top: -0.06em;
  left: 0;
  z-index: -1;
}
.mainvisual-title span.bg:nth-of-type(2) {
  transition-delay: 0.3s;
}
.mainvisual-title span.bg:nth-of-type(3) {
  margin-bottom: 0;
  transition-delay: 0.6s;
}
.mainvisual-title span.st {
  color: #0194fd;
  font-size: 9.8rem;
}
.mainvisual-lead {
  margin-bottom: var(--s6);
  font-size: 3.0rem;
  font-weight: 700;
}
.mainvisual-lead span.st {
  margin: 0 var(--s1);
  padding: 0 var(--s1);
  color: #fff;
  font-size: 3.8rem;
  position: relative;
}
.mainvisual-lead span.st:before {
  content: "";
  width: 9.4rem;
  height: 9.4rem;
  border-radius: 50%;
  background: #0071c5;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
/*
@media screen and (max-width: 1300px) {
    .mainvisual-title {
        font-size: 5.2rem;
    }
	.mainvisual-title span.st {
  color: #0194fd;
		}
}
*/
@media screen and (max-width: 1550px) {
	.mainvisual {
  padding: 12rem 0 0;
}
    .mainvisual-title {
  line-height: 1.35;
    }
  .mainvisual-title span.bg {
  font-size: 7rem;
  margin-bottom: var(--s3);
  }
	.mainvisual-title span.st {
  font-size: 9.0rem;
		}
	.mainvisual-lead {
  margin-bottom: var(--s4);
  font-size: 2.4rem;
  font-weight: 700;
	}
.mainvisual-lead span.st {
  font-size: 3.4rem;
}
}
/*
---------------------------------------------

    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;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #0194fd;
  border-radius: 1rem;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 1em;
}
.main-area .subList li a,
.main-area ul:not([class]) li a {
  text-decoration: none;
}
.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;
  position: relative;
  counter-increment: number;
}
.main-area ol:not([class]) li::before {
  content: counter(number);
  width: 1.6em;
  height: 1.6em;
  background: #141537;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  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: 1em;
}

@media (hover: hover) {
  .main-area .subList li a:hover,
.main-area ul:not([class]) li a:hover,
.main-area ol:not([class]) li a:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    btn

*/
.btn-internal {
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: 35rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 2.2rem var(--s8);
  background: #0194fd url("img/arrow-01-blue-right.svg") no-repeat center right var(--s2)/4rem auto;
  border-radius: 10rem;
  box-shadow: 0.4rem 0.4rem 0.4rem rgba(20, 21, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transform: translate(0, 0);
  transition: box-shadow 0.4s, transform 0.4s, background-position 0.4s, opacity 0.4s;
}
.btn-internal--right a {
  margin-left: auto;
  margin-right: 0;
}
.btn-internal--top {
  margin: 0;
}
.btn-internal--top a {
  width: 24rem;
  min-height: initial;
  padding: var(--s1) var(--s8) var(--s1) var(--s5);
  font-size: 1.5rem;
  background-size: 3rem auto;
}

@media (hover: hover) {
  .btn-internal a:hover {
    transform: translate(0.3rem, 0.3rem);
    box-shadow: none;
  }
}
.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 35rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 2.2rem var(--s8);
  background: url("img/icon-window.svg") no-repeat center right var(--s2)/4rem auto, #ff8a00;
  border-radius: 10rem;
  box-shadow: 0 0 1.6rem rgba(20, 21, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transform: translate(0, 0);
  transition: transform 0.4s, box-shadow 0.4s, background-position 0.4s, opacity 0.4s;
}

@media (hover: hover) {
  .btn-web a:hover {
    transform: translate(0.3rem, 0.3rem);
    box-shadow: none;
  }
}
.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: 0.2rem var(--s5) var(--s-2) 0;
  background: url("img/arrow-02-black-right.svg") no-repeat center right/3rem auto;
  display: inline-block;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.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--left {
  justify-content: flex-start;
}
.btn-column .btn-web,
.btn-column .btn-internal {
  margin: 0;
}
.btn-column .btn-web a,
.btn-column .btn-internal a {
  width: 100%;
  max-width: 37.5rem;
  min-width: 33rem;
}

.btn-share__link {
  width: fit-content;
  padding: var(--s1) var(--s4) var(--s1) var(--s2);
  border-radius: var(--s5);
  display: flex;
  align-items: center;
  background: #141537;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
}
.btn-share__link img {
  width: 3.6rem;
  margin-right: var(--s1);
}

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

    TOC lower

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

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

    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: #e6f5ff;
}
.main-area--low table td {
  background: #fff;
}
.main-area--low table tbody th {
  background: #e6f5ff;
}

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

.caption-scroll {
  margin-top: 0.8em;
  color: #999;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: thin;
}
.caption-scroll a {
  color: #999;
}
.caption-scroll::-webkit-scrollbar {
  height: 0.6rem;
}
.caption-scroll::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

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

	catch

*/
.catch-01 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0071c5;
}

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

	text

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

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

.txt_bold-black {
  font-weight: 700;
  border-bottom: solid 0.1rem #141537;
}

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

	subgrid card

*/
.subgrid-card-01 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 12;
  grid-gap: 0;
}

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

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

    help

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

.help-content {
  width: 40rem;
  padding: var(--s3);
  background: #0194fd;
  color: #fff;
  font-weight: 400;
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  transition: opacity 0.6s;
  visibility: hidden;
  opacity: 0;
}
.help-content::after {
  content: "";
  width: 3.5rem;
  height: 2.5rem;
  background: url(img/fkds-tip-top.png) no-repeat center top/contain;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: scale(-1);
}
.help-content.is-show {
  visibility: visible;
  opacity: 1;
}

.help-title {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
}

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

    float wrap

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

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

	pankuzu

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

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

    footer

*/
.footer-area {
  margin-top: 11.5rem;
  padding: 9rem 0 0;
  background: rgba(1, 148, 253, 0.1);
  position: relative;
}

.footer-about {
  max-width: 90rem;
  margin: 0 auto var(--s8);
  padding: var(--s4) var(--s6);
  background: #fff;
  display: flex;
  align-items: center;
  gap: var(--s9);
}
.footer-about__logo {
  display: block;
  width: 20.6rem;
}
.footer-about__title {
  margin-bottom: var(--s1);
  font-size: 2rem;
  font-weight: 700;
}
.footer-about p {
  font-size: 1.3rem;
}
.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-bottom {
  padding: var(--s1) 0;
  background: #141537;
}
.footer-bottom__inner {
  max-width: 100rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-menu-title {
  margin-bottom: var(--s1);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
  border-bottom: 1px solid #909090;
}
.footer-menu-title__link {
  padding: var(--s-2) var(--s4) var(--s-2) 0;
  display: inline-block;
  text-decoration: none;
}

@media (hover: hover) {
  .footer-menu-title__link:hover {
    opacity: 0.6;
  }
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem var(--s2);
}
.footer-menu__item {
  width: calc((100% - var(--s2) * 3) / 4);
  padding: var(--s1) var(--s1) var(--s1) 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
.footer-menu__link {
  margin-bottom: var(--s1);
  padding: var(--s1) var(--s3) var(--s1) 0;
  text-decoration: none;
}

@media (hover: hover) {
  .footer-menu__link:hover {
    opacity: 0.6;
  }
}
.footer-menu-sub {
  margin-top: var(--s1);
  margin-left: var(--s1);
}
.footer-menu-sub__item {
  font-size: 1.2rem;
  line-height: 1.5;
}
.footer-menu-sub__link {
  padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
  display: block;
  text-decoration: none;
  position: relative;
}
.footer-menu-sub__link::before {
  content: "-";
  position: absolute;
  top: var(--s-2);
  left: 0;
}

@media (hover: hover) {
  .footer-menu-sub__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.footer-disclaimer {
  width: 70rem;
  margin: var(--s8) auto var(--s6);
  font-size: 1rem;
  line-height: 1.5;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}

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

.footer-copyright {
  font-size: 1.2rem;
  color: #fff;
}
.footer-copyright__link {
  text-decoration: none;
  color: #fff;
}

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

@media (hover: hover) {
  .footer-sitemap__link:hover {
    text-decoration: underline;
    color: #fff;
  }
}
.footer-banner {
  padding: 1.2rem var(--s6) 1.2rem var(--s7);
  text-decoration: none;
  border-radius: var(--s6) 0 0 var(--s6);
  background: #ff8a00 url(img/banner-pic.png) no-repeat left var(--s2) center/6.1rem auto;
  box-shadow: 0 0 1.6rem rgba(20, 21, 55, 0.2);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  position: fixed;
  right: 0;
  bottom: 10rem;
}
.footer-banner:before {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(img/icon-window2.svg) no-repeat center/contain;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(0, -50%);
}

@media (hover: hover) {
  .footer-banner:hover {
    opacity: 0.7;
    color: #fff;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 6rem;
  height: 6rem;
  background: #141537;
  display: block;
  position: fixed;
  right: 0.6rem;
  top: 0.6rem;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: 3rem;
  height: 0.2rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1.5rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 2.9rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 3.8rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(1rem) 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.8rem) rotate(45deg);
}

.gnavi-area {
  width: 40rem;
  height: 100vh;
  padding: 8rem 0 var(--s5);
  background: #e6f5ff;
  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-box__title {
  padding: 1.2rem var(--s6) 1.2rem var(--s2);
  border-bottom: 1px solid #999;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  cursor: pointer;
  transition: opacity 0.5s;
  position: relative;
}
.gnavi-box__title::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("img/arrow-03-black-down.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%) rotate(0);
  transition: transform 0.3s;
}
.gnavi-box__title:hover {
  opacity: 1;
}
.gnavi-box__title.is-open::after {
  transform: translate(0, -50%) rotate(180deg);
}
.gnavi-box__content {
  background: rgba(255, 255, 255, 0.8);
}
.gnavi-box:first-child {
  border-top: 1px solid #999;
}

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

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

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

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

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

    page

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

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

    toggle sp

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

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

    toggle

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

.toggle-content {
  display: none;
}

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

    more

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

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

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

    グラデーション  more-content

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

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

.more__content.open {
  height: auto;
}

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

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

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

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

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

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

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

.tag-01 {
  width: 200px;
  padding: 0.8rem var(--s2);
  background: #141537;
  border-radius: var(--s5);
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  z-index: 3;
}

.tag-02 {
  /* width: 152px; */
  padding: 0.4rem var(--s2);
  background: #141537;
  border-radius: var(--s5);
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
}

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

    lower-parts

*/
.box-understand {
  max-width: 90rem;
  margin: var(--s6) auto;
  background: #fffde4;
}
.box-understand__title {
  width: fit-content;
  margin-bottom: var(--s3);
  padding: var(--s3) var(--s5);
  border-bottom-right-radius: var(--s3);
  background: #feeb00;
  font-size: 2rem;
  font-weight: 700;
  color: #141537;
  line-height: 1;
}
.box-understand .check-list {
  padding: 0 var(--s8) var(--s5);
}
.box-understand .check-list__item {
  padding-left: var(--s5);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.box-understand .check-list__item:before {
  content: "";
  width: 3rem;
  height: 2.4rem;
  background: url(img/icon-check.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.box-understand .check-list__item + .check-list__item {
  margin-top: var(--s2);
}

.lower-schedule {
  margin: var(--s10) 0;
  padding: 3.4rem var(--s6);
  background: #fffde4;
  position: relative;
}
.lower-schedule:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #0071c5;
  position: absolute;
  left: 0;
  top: 7.5rem;
}

.schedule-dl__time {
  margin-bottom: var(--s2);
  padding-bottom: var(--s3);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0071c5;
  position: relative;
}
.schedule-dl__time:before {
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background: #0071c5;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.schedule-dl__desc {
  padding: var(--s3);
  background: #fff;
  font-size: 1.3rem;
}
.schedule-dl__desc span {
  display: block;
  margin-bottom: var(--s1);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.schedule-slider__arrows {
  width: calc(100% + 14rem);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.schedule-slider__arrows .splide__arrows {
  justify-content: space-between;
}

.box-voice {
  /* max-width: 95.5rem; */
  margin: var(--s12) 0;
  padding: var(--s4) var(--s8) var(--s4) 0;
  position: relative;
}
.box-voice:before {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s6));
  background: rgba(119, 237, 213, 0.2);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.box-voice .fkds-title {
  border-color: #141537;
  font-size: 2rem;
  color: #141537;
}
.box-voice .fkds-title:before {
  background-image: url(img/fkds-tip-line2.png);
}
.box-voice__pic {
  margin: -2rem auto -1rem;
  border-radius: 50%;
  border: solid 1.8rem #77edd5;
}
.box-voice__pic img {
  border-radius: 50%;
}
.box-voice .tag-01 {
  margin: 0 auto;
}
.box-voice--right {
  /* margin: var(--s8) 0 var(--s10) auto; */
  padding: var(--s4) 0 var(--s4) var(--s8);
}
.box-voice--right:before {
  right: auto;
  left: 0;
  background: #fffde4;
}
.box-voice--right .box-voice__pic {
  border-color: #feeb00;
}

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

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

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

    titles

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

.icon-title {
  margin: var(--s5) 0 var(--s5) var(--s6);
  padding: var(--s4) var(--s6) var(--s4) var(--s12);
  background: #fffde4;
  font-size: 3.2rem;
  font-weight: 700;
  position: relative;
}
.icon-title:before {
  content: "";
  width: 9.4rem;
  height: 11.3rem;
  background: url(img/icon-check-title.png) no-repeat center/contain;
  position: absolute;
  left: -5.2rem;
  top: 50%;
  transform: translate(0, -50%);
}

.icon-title p {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 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: 0;
  max-width: 75rem;
  min-height: 14.4rem;
  font-size: 4.4rem;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
}

.main-area--low h2:not([class]) {
  margin: var(--s10) auto var(--s5);
  padding: var(--s2) var(--s3) var(--s2) 5.7rem;
  background: #e6f5ff url(img/h2-deco.svg) no-repeat left top/3.8rem auto;
  font-size: 3.2rem;
  font-weight: 700;
  color: #0071c5;
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 3rem auto;
  color: #0071c5;
}
.main-area--low h3:not([class]) {
  margin: var(--s8) auto var(--s4);
  padding: 1.2rem 0 1.2rem 1.4rem;
  border-bottom: solid 0.3rem #0071c5;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0071c5;
  line-height: 1.2;
  position: relative;
}
.main-area--low h3:not([class]):before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #0071c5;
  border: solid 0.6rem #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  bottom: -1.2rem;
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-02-black-right.svg) no-repeat right center;
  background-size: 3rem auto;
  color: #0071c5;
}
.main-area--low h4:not([class]) {
  margin: var(--s5) auto var(--s2);
  padding-bottom: var(--s1);
  border-bottom: dashed 1px #141537;
  font-size: 2rem;
  font-weight: 700;
}
.main-area--low h4:not([class]) a {
  background: url(img/arrow-02-black-right.svg) no-repeat right center;
  background-size: 3rem auto;
}
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding-left: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.main-area--low h5:not([class]):before,
.main-area--low h6:not([class]):before {
  content: "";
  width: 0.6rem;
  height: 100%;
  background: #ff8a00;
  border-radius: var(--s1);
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h5:not([class]) a,
.main-area--low h6:not([class]) a {
  background: url(img/arrow-02-black-right.svg) no-repeat right center;
  background-size: 3rem auto;
}

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

    TOP common

*/
.common-title {
  width: fit-content;
  margin-bottom: var(--s3);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.common-title--right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.common-title--ct {
  margin: 0 auto var(--s3);
  text-align: center;
}
.common-title span.sm {
  display: inline-block;
  font-size: 3rem;
}
.common-title span.sm2 {
  font-size: 4.2rem;
}
.common-title span.st {
  background: linear-gradient(transparent 80%, rgb(43 167 255 / 50%) 80%);
}
.common-title a {
  padding-right: var(--s8);
  background: url(img/arrow-02-black-right.svg) no-repeat top 60% right/auto 3rem;
  text-decoration: none;
}

@media (hover: hover) {
  .common-title a:hover {
    opacity: 0.6;
  }
}
.common-lead {
  max-width: 67rem;
  margin-bottom: var(--s6);
}
.common-lead2 {
  max-width: 67rem;
  margin-bottom: var(--s6);
  text-align: right;
}
.common-lead--ct {
  margin: 0 auto;
  text-align: center;
}
.common-lead--right {
  margin-right: 0;
  margin-left: auto;
}
.common-lead--long {
  max-width: 85rem;
  margin: 0 auto var(--s7);
  text-align: center;
}

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

    TOP section

*/
.sec01 {
  padding: var(--s11) 0 var(--s8);
}
.sec01 .common-title {
  position: relative;
}
.sec01 .common-title:before {
  content: "";
  width: 18.9rem;
  height: 16.8rem;
  background: url(img/deco-circle-8.png) no-repeat center/contain;
  position: absolute;
  right: -12rem;
  top: -3.6rem;
  z-index: -1;
}

.box-list-wrap {
  margin: var(--s5) 0;
  padding: var(--s4);
  padding-right: 0;
  position: relative;
}
.box-list-wrap:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: rgba(255, 233, 180, 0.4);
  position: absolute;
  border-radius: var(--s4) 0 0 var(--s4);
  left: 0;
  top: 0;
  z-index: -1;
}
.box-list__title {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 900;
}
.box-list__item {
  padding: 0 0 0 1em;
  position: relative;
  font-size: 1.8rem;
  font-weight: 900;
}
.box-list__item::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #ff8a00;
  border-radius: 1rem;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.box-list__item + .box-list__item {
  margin-top: var(--s2);
}

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

    tab

*/
.tab-column {
  margin: var(--s4) 0;
}
.tab-column__btns {
  align-items: flex-end;
}
.tab-column__btns--bottom {
  display: none;
  margin-top: var(--s3);
  align-items: flex-start;
}

.tab-btn {
  margin-bottom: var(--s2);
  padding: 1.4rem var(--s2) 1.4rem 9.6rem;
  border-radius: var(--s2);
  background: #656578;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.4s ease;
  position: relative;
}
.tab-btn.is-active {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #fff;
  border: solid 0.2rem #141537;
  opacity: 1;
  color: #141537;
}
.tab-btn--01:before {
  content: "";
  width: 5.6rem;
  height: 5.6rem;
  background: url(img/icon-tab-1.png) no-repeat center/contain;
  position: absolute;
  left: var(--s3);
  top: 50%;
  transform: translateY(-50%);
}
.tab-btn--02:before {
  content: "";
  width: 5.6rem;
  height: 5.6rem;
  background: url(img/icon-tab-2.png) no-repeat center/contain;
  position: absolute;
  left: var(--s3);
  top: 50%;
  transform: translateY(-50%);
}
.tab-btn--03:before {
  content: "";
  width: 5.6rem;
  height: 5.6rem;
  background: url(img/icon-tab-3.png) no-repeat center/contain;
  position: absolute;
  left: var(--s3);
  top: 50%;
  transform: translateY(-50%);
}
.tab-btn--04:before {
  content: "";
  width: 5.6rem;
  height: 5.6rem;
  background: url(img/icon-tab-4.png) no-repeat center/contain;
  position: absolute;
  left: var(--s3);
  top: 50%;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .tab-btn:hover {
    opacity: 0.3;
  }

  .tab-btn.is-active:hover {
    opacity: 1;
  }
}
.tab-content {
  background: #fff;
  border: solid 1px #141537;
  display: none;
  opacity: 0;
  z-index: 0;
  position: relative;
}
.tab-content.is-active {
  display: block;
  animation: tabAnimation ease 0.6s forwards;
}

.tab-content__title {
  padding: 14rem 0 0;
  background: url(img/sec01-box-bg-.jpg) no-repeat center top/cover;
  display: flex;
  justify-content: flex-start;
  position: relative;
  flex-direction: column;
}
.tab-content__title--02 {
  background-image: url(img/sec01-box-bg-2.jpg);
}
.tab-content__title--03 {
  background-image: url(img/sec01-box-bg-3.jpg);
}
.tab-content__title--04 {
  background-image: url(img/sec01-box-bg-4.jpg);
}
.tab-content .sec01-subtitle {
  font-family: "NS-700-vertical", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
  color: #fff;
}
.tab-content .sec01-subtitle-icon {
  width: 7rem;
  height: 7rem;
  position: absolute;
  left: 50%;
  top: var(--s5);
  transform: translateX(-50%);
}
.tab-content .l-column {
  gap: 0;
}
.tab-content .l-column__main {
  padding: var(--s5) var(--s7);
  background: #fffde4;
}
.tab-content .title-inner {
  margin-bottom: var(--s4);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.tab-content .l-grid {
  --minmum: calc((100% - var(--s2)) / 2);
  gap: var(--s2);
	margin: var(--s4) 0;
}
.tab-content .l-grid__episode {
  flex-shrink: 0;
}
.tab-content .l-grid__episode-label {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 19px;
  color: #ffb865;
  line-height: 1.5;
  white-space: nowrap;
}
.tab-content .l-grid__boxes {
  display: flex;
  gap: 16px;
  flex: 1;
}
.tab-content .box1 {
  background-color: #fff;
  padding: var(--s3);
  position: relative;
}
.tab-content .box1:before {
  content: "EPISODE.";
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 19px;
  color: #ffb865;
  line-height: 1.5;
  white-space: nowrap;
  position: absolute;
  left: var(--s2);
  top: -1.4rem;
}
.tab-content .box1__text {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
}
.tab-content .arrow {
  margin-top: var(--s4);
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.tab-content .arrow svg {
  display: block;
}
.tab-content .skill-section {
  max-width: 60rem;
  position: relative;
  margin: 0 auto var(--s3);
}
.tab-content .skill-section__title {
  display: flex;
  justify-content: center;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}
.tab-content .skill-section__title-text {
  background-color: white;
  border: 2px solid #0071c5;
  border-radius: var(--s6);
  padding: var(--s-2) var(--s3);
  font-size: 2rem;
  font-weight: 700;
  color: #0071c5;
  line-height: 1.7;
  white-space: nowrap;
}
.tab-content .skill-section__content {
  background-color: #0071c5;
  padding: var(--s5) var(--s6);
  position: relative;
}
.tab-content .skill-section__pic {
  width: 11rem;
    height: 11rem;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}
.tab-content .list-item {
  padding-left: var(--s5);
  font-size: 22px;
  font-weight: 700;
  color: white;
  position: relative;
}
.tab-content .list-item:before {
  content: "";
  width: 3rem;
  height: 2.4rem;
  background: url(img/icon-check.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.tab-content .list-item + .list-item {
  margin-top: var(--s2);
}
.tab-content .description__text {
  max-width: 60rem;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
  color: black;
  line-height: 26px;
}

.sec02-title-box {
  margin-bottom: var(--s6);
  padding-bottom: 1rem;
  /* opacity: 0.75; */
  background: url(img/sec02-illust-1.png) no-repeat left 5.8rem bottom/auto 100%;
  position: relative;
}
.sec02-title-box:before {
  content: "";
  width: 39.1rem;
  height: 37.6rem;
  background: url(img/deco-circle-1.png) no-repeat center/contain;
  position: absolute;
  right: -19rem;
  top: 3rem;
  z-index: -1;
}

.sec02-subtitle-box {
  order: 1;
}
.sec02-subtitle-box__pic {
  width: 30rem;
  /* opacity: 0.75; */
  margin: 0 auto;
}

.sec02-subtitle-box2__pic {
  width: 15.5rem;
  /* opacity: 0.75; */
  margin: 0 auto;
}

.fkds-title {
  width: fit-content;
  margin-bottom: var(--s4);
  padding: 1.2rem var(--s3);
  border-radius: var(--s8);
  margin-left:5rem;
  border: solid 1px #0194fd;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0071c5;
  position: relative;
}
.fkds-title:before {
  content: "";
  width: 2.4rem;
  height: 2rem;
  background: url(img/fkds-tip-white.png) no-repeat center top/contain;
  position: absolute;
  left: 9rem;
  bottom: -2rem;
}
.fkds-title--sm {
  font-size: 2rem;
	    line-height: 1.4;
}
.fkds-title--sm:before {
  transform: scale(-1, 1);
  left: 40%;
}
.fkds-title--black {
  border-color: #141537;
  color: #141537;
  font-size: 2rem;
}
.fkds-title--black:before {
  background-image: url(img/fkds-tip-line.png);
}

.card-column {
  margin-top: var(--s8);
  margin-bottom: var(--s8);
  display: flex;
  gap: var(--s5);
}
.card-column:last-child {
  position: relative;
}
.card-column:last-child:before {
  content: "";
  width: 30rem;
  height: 30rem;
  background: #fffde3;
  border-radius: 50%;
  position: absolute;
  left: -15rem;
  top: 7.6rem;
  z-index: -1;
}

.card-flip {
　cursor: pointer;
  margin-top: var(--s5);
  display: flex;
  position: relative;
  border-radius: var(--s3);
  transform: translate(0, 0);
  transition: transform 0.4s;
}
.card-flip:before {
  content: "";
  width: 10.4rem;
  height: 3rem;
  background: url(img/card-click.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -3.2rem;
}
.card-flip__btn {
　display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: 2;
}
.card-flip__title {
  height: fit-content;
  padding: 5.2rem var(--s2) var(--s2);
  border-top-right-radius: var(--s3);
  background: #0194fd;
  font-family: "NS-700-vertical", sans-serif;
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-align: center;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.card-flip__title:before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: var(--s3);
  transform: translateX(-50%);
}
.card-flip__title:after {
  content: "";
  width: 100%;
  height: 3.5rem;
  background: linear-gradient(-159deg, #0194fd 50%, transparent 50%);
  position: absolute;
  left: 0;
  top: 99.8%;
}
.card-flip__title--orange {
  background: #ff8a00;
}
.card-flip__title--orange:after {
  background: linear-gradient(-159deg, #ff8a00 50%, transparent 50%);
}
.card-flip__title--yellow {
  background: #edffc2;
  color: #141537;
  text-align: right;
}
.card-flip__title--yellow:before {
  background: #141537;
  right: 2.9rem;
  left: auto;
  transform: none;
}
.card-flip__title--yellow:after {
  background: linear-gradient(-166deg, #edffc2 50%, transparent 50%);
}
.card-flip__title--green {
  background: #77edd5;
  color: #141537;
}
.card-flip__title--green:before {
  background: #141537;
}
.card-flip__title--green:after {
  background: linear-gradient(-159deg, #77edd5 50%, transparent 50%);
}
.card-flip__pic {
  width: 100%;
  position: relative;
}
.card-flip__pic:before {
  content: "SOFTTENNIS";
  font-family: "Open Sans", sans-serif;
  font-size: 4.8rem;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  paint-order: stroke;
  position: absolute;
  left: -12rem;
  bottom: 10.5rem;
  transform: rotate(90deg);
}
.card-flip__pic.lacrosse:before {
  content: "SWIMMING";
  left: -10.7rem;
  bottom: 9.3rem;
}
.card-flip__pic.tennis:before {
  content: "MARATHON";
  left: -11.3rem;
  bottom: 10.2rem;
}
.card-flip__pic.handball:before {
  content: "BASEBALL";
  left: -9.2rem;
  bottom: 7.6rem;
}
.card-flip__name {
  margin-top:1.5rem;
  color: #fff;
  text-align: center;
  line-height: 1.6;
}
.card-flip__name--black {
  color: #141537;
}
.card-flip__content {
  width: 34rem;
  padding: var(--s3);
  border-radius: var(--s3);
  background: #0194fd;
  box-shadow: 0.4rem 0.4rem 1rem rgba(20, 21, 55, 0.3);
  position: relative;
  opacity: 1;
  transform: scale(1, 1);
  transition: opacity 0.4s, box-shadow 0.4s, transform 0.4s;
}
.card-flip.is-invert .card-flip__content {
  opacity: 0;
  transform: scale(-1, 1);
}
.card-flip__content--orange {
  background: #ff8a00;
}
.card-flip__content--yellow {
  background: #edffc2;
}
.card-flip__content--green {
  background: #77edd5;
}
.card-flip__content02 {
  width: 34rem;
  padding: var(--s3);
  border-radius: var(--s3);
  background: #0194fd;
  box-shadow: 0.4rem 0.4rem 1rem rgba(20, 21, 55, 0.3);
  margin-left: -34rem;
  opacity: 0;
  transform: scale(-1, 1);
  transition: opacity 0.4s, box-shadow 0.4s, transform 0.4s;
}
.card-flip.is-invert .card-flip__content02 {
  opacity: 1;
  transform: scale(1, 1);
}
.card-flip__content02--orange {
  background: #ff8a00;
}
.card-flip__content02--yellow {
  background: #edffc2;
}
.card-flip__content02--green {
  background: #77edd5;
}
.card-flip__pic2 {
  position: relative;
}
.card-flip__subtitle {
  width: fit-content;
  margin: -4rem auto var(--s1) 0;
  padding: var(--s1) var(--s2) var(--s1) 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 0;
}
.card-flip__subtitle:before {
  content: "";
  width: calc(100% + var(--s3));
  height: 100%;
  background: #141537;
  position: absolute;
  top: 0;
  left: calc(var(--s3) * -1);
  z-index: -1;
}
.card-flip__text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #fff;
  padding-top:1rem;
  padding-bottom:1rem;
}
.card-flip__text--black {
  color: #141537;
}
.card-flip.is-invert .card-flip__btn {
  pointer-events: none;
}

button.card-flip__btn {
  width: 34rem;
  height: 100%;
}

.card-flip.is-invert button.card-flip__btn {
  height: calc(100% - 8rem);
}

.card-flip.is-invert .card-flip__content02 {
  opacity: 1;
  transform: scale(1, 1);
}
.card-flip.is-invert .card-flip__content02,
.card-flip.is-invert .card-flip__content02 a {
  pointer-events: auto;
}

.btn-card,
.btn-card a {
  position: relative;
  z-index: 5;
}
.btn-card {
  width: 98%;
  position: relative;
  margin: var(--s2) auto 0;
  z-index: 3;
}
.btn-card a {
  display: block;
  width: 100%;
  position: relative;
  padding: var(--s1) var(--s4);
  border-radius: var(--s10);
  border: solid 0.2rem #141537;
  background: #fff url(img/arrow-02-black-right.svg) no-repeat center right var(--s2)/auto 2rem;
  box-shadow: 0.4rem 0.4rem 0.4rem rgba(20, 21, 55, 0.2);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transform: translate(0, 0);
  transition: box-shadow 0.4s, transform 0.4s, background-position 0.4s, opacity 0.4s;
  z-index: 3;
}

@media (hover: hover) {
  .card-flip:hover {
    transform: translate(0.3rem, 0.3rem);
  }
  .card-flip:hover .card-flip__content,
.card-flip:hover .card-flip__content02 {
    box-shadow: none;
  }
}
@media (hover: hover) {
  .btn-card a:hover {
    transform: translate(0.3rem, 0.3rem);
    box-shadow: none;
  }
}
.sec03 {
  padding: 17rem 0 9rem;
  position: relative;
  z-index: 0;
}
.sec03:before {
  content: "";
  width: 86rem;
  height: 86rem;
  background: #f4faff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 6.8rem;
  transform: translateX(-50%);
  z-index: -1;
}
.sec03:after {
  content: "";
  width: 9.8rem;
  height: 15.4rem;
  background: url(img/deco-circle-2.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.box-sponsored {
  padding: 13.5rem var(--s7) var(--s7);
  position: relative;
  z-index: 0;
}
.box-sponsored:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #0071c5;
  position: absolute;
  left: -4rem;
  top: 0;
  z-index: -1;
}
.box-sponsored:after {
  content: "SPONSORED BY";
  font-family: "Open Sans", sans-serif;
  font-size: 11rem;
  font-style: italic;
  line-height: 1;
  position: absolute;
  left: 1.9rem;
  top: 0;
  color: transparent;
  -webkit-text-stroke: 1px #ababab;
  text-stroke: 1px #ababab;
  paint-order: stroke;
}
.box-sponsored__inner {
  margin-top: var(--s4);
  padding: var(--s3) var(--s4) var(--s4);
  background: #fff;
}
.box-sponsored__inner .btn-internal {
  margin-top: var(--s3);
  margin-bottom: 0;
}
.box-sponsored__tag {
  width: fit-content;
  padding: 0 var(--s3);
  border: solid 0.2rem #141537;
  background: #fff;
  border-radius: var(--s3);
  font-size: 1.8rem;
  font-weight: 700;
}
.box-sponsored__name {
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  padding-top:1rem;
}
.box-sponsored--lower {
  margin: var(--s12) auto;
}

.area-point {
  margin-top: calc(var(--s9) * -1);
  padding: 14.8rem 0 39rem;
  background: url(img/sec03-bg-photo.jpg) no-repeat center top/cover;
  overflow: clip;
}
.area-point--second {
  margin-top: var(--s5);
  padding-top: 6.7rem;
  padding-bottom: var(--s8);
}
.area-point .l-center {
  position: relative;
  z-index: 0;
}
.area-point__title {
  padding-top: var(--s5);
  font-family: "Open Sans", sans-serif;
  font-size: 12.8rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(169, 169, 169, 0.5);
  text-stroke: 1px rgba(169, 169, 169, 0.5);
  paint-order: stroke;
  text-align: center;
  position: relative;
  z-index: 0;
}
.area-point__title:before {
  content: "";
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: rgba(20, 21, 55, 0.8);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.area-point__title--second:before {
  top: -12.7rem;
}
/*.area-point__title--second:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 33px 39px 0 39px;
  border-color: rgba(255, 255, 255, 0.8) transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: var(--s2);
  transform: translateX(-50%);
}*/
.area-point__text {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  position: relative;
}
.area-point__text span.st {
  font-size: 5.2rem;
}
.area-point__text span.st2 {
  margin: 0 var(--s2);
  padding: 1rem var(--s3);
  background: #0194fd;
  border-radius: 50%;
  font-size: 5.2rem;
}
.area-point__text span.line {
  position: relative;
  z-index: 0;
}
.area-point__text span.line:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.area-point__text + .area-point__text {
  margin-top: 12rem;
}

.slide-area {
  margin-top: -22.6rem;
  padding: 16rem 0 var(--s11);
  background: url(img/bg-round-white.svg) no-repeat center top/100% 22.6rem, linear-gradient(to bottom, transparent 22.6rem, #fff 22.6rem);
  position: relative;
  z-index: 0;
}
.slide-area__title {
  text-align: center;
  font-size: 5.2rem;
  font-weight: 700;
  position: relative;
  padding-bottom:5rem;
  z-index: 0;
}
.slide-area__title span {
  font-size: 3.8rem;
}
.slide-area__title:before {
  content: "";
  width: 34.7rem;
  height: 25.6rem;
  /*background: url(img/mv-low-bg.png) no-repeat center/contain;*/
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  z-index: -1;
}
.slide-area__inner {
  margin-top: 9rem;
  padding-left: var(--s6);
  position: relative;
}
.slide-area__inner:before {
  content: "";
  width: 100vw;
  height: 10.4rem;
  background: rgba(1, 148, 253, 0.2);
  position: absolute;
  left: 50%;
  top: 6.8rem;
  transform: translateX(-50%);
  z-index: -1;
}

.flow-slider__arrows {
  margin-top: 3.5rem;
  margin-left: calc(var(--s6) * -1);
}
.flow-slider .splide__track {
  overflow: visible;
}

.splide__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s3);
}

.splide__arrow {
  width: 4.5rem;
  height: 3.1rem;
  background: no-repeat center/contain;
  cursor: pointer;
  position: static;
  top: 0;
  transition: opacity 0.3s;
}
.splide__arrow--prev {
  background-image: url("img/arrow-prev.png");
}
.splide__arrow--next {
  background-image: url("img/arrow-next.png");
}

@media (hover: hover) {
  .splide__arrow:hover {
    opacity: 0.6;
  }
}
.flow-slider__slide {
  border: solid 1px #141537;
  position: relative;
}
.flow-slider__slide:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 18px;
  border-color: transparent transparent transparent #141537;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.flow-slider__slide:last-child:before {
  display: none;
}
.flow-slider__slide--st {
  border-color: #0194fd;
}
.flow-slider__slide--st .flow-slider__title {
  background: #0194fd;
}
.flow-slider__slide--st .fkds-title {
  font-size: 2rem;
  white-space: nowrap;
  position: absolute;
  left: 30%;
  bottom: calc(100% - var(--s1));
  transform: translateX(-50%);
}
.flow-slider__title {
  padding: 1.4rem var(--s3);
  background: #141537;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.flow-slider__body {
  padding: 2rem;
  background: #fff;
}

.slider__navi {
  width: fit-content;
  position: relative;
}
.slider__navi .splide__pagination {
  font-size: 0;
}
.slider__navi .splide__pagination__page {
  width: 4.8rem;
  height: 0.6rem;
  background: #d9d9d9;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.6s;
}
.slider__navi .splide__pagination__page.is-active {
  background-color: #141537;
  cursor: default;
}

.flow-slider.splide:not(.is-overflow) .splide__pagination {
  display: flex;
}
/*
.flow-slider.splide:not(.is-overflow) .slider__navi .splide__pagination__page.is-active {
  background-color: #d9d9d9;
}
.flow-slider.splide:not(.is-overflow) .splide__arrow--prev {
  background-image: url(img/arrow-prev-gray.png);
}
.flow-slider.splide:not(.is-overflow) .splide__arrow--next {
  background-image: url(img/arrow-next-gray.png);
}
*/
.sec04 {
  padding: 10rem 0 0;
  background: #e6f5ff;
}
.sec04 .fkds-title {
  position: absolute;
  top: -3rem;
  left: 10%;
  z-index: 1;
}

.sec04-side {
  position: relative;
  z-index: 0;
}
.sec04-side:before {
  content: "";
  width: 100vw;
  height: calc(100% - 3rem);
  background: #fff;
  position: absolute;
  left: -3.2rem;
  bottom: 0;
  z-index: -1;
}

.sec04-catch {
  margin-bottom: var(--s3);
  padding: 1.2rem var(--s3);
  background: #0071c5;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.sec04-text {
  padding-bottom: var(--s3);
  font-size: 1.4rem;
  font-weight: bold;
}

.map-area {
  position: relative;
  width: 100%;
  height: 47.248vw;
  /* 830 / 1530 * 100 */
}

/* 背景画像 */
.map-illust {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 47.248vw;
  border-top-left-radius: 6.536vw;
  /* 100px / 1530 * 100 */
}

.map-illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 6.536vw;
}

/* ボタンモーダル共通スタイル */
.btn-modal {
  position: absolute;
  width: 14.432vw;
  /* 256px / 1530 * 100 */
  height: 8.877vw;
  /* 145px / 1530 * 100 */
  transform: translate(0, 0);
  transition: transform 0.4s;
  cursor: pointer;
}

@media (hover: hover) {
  .btn-modal:hover {
    transform: translate(0.3rem, 0.3rem);
  }
  .btn-modal:hover .btn-frame {
    box-shadow: none;
  }
}
/* 各ボタンの位置 - vwベース */
.btn-modal-1 {
 left: 14.255vw;
    top: 25.464vw;
}

.btn-modal-3 {
     left: 43.542vw;
  top: 0.5vw;
  /* 418px / 1530 * 100 */
}

.btn-modal-2 {
left: 28.078vw;
    top: 12vw;
}

.btn-modal-5 {
 left: 59.131vw;
    top: 25.614vw;
}

.btn-modal-4 {
left: 74vw;
    top: 19.131vw;
}

/* ボタンフレーム */
.btn-frame {
  position: absolute;
  bottom: 14.48%;
  left: 50%;
  transform: translateX(-50%);
  top: 23.45%;
  width: 100%;
  background: #0194fd url(img/btn-modal.png) no-repeat right 1.569vw center/auto 1.792vw;
  /* アイコンは24px / 1530 * 100 */
  border: 0.196vw solid #fff;
  /* 3px / 1530 * 100 */
  border-radius: 2.941vw;
  /* 45px / 1530 * 100 */
  /* box-shadow: 0px 0.261vw 0.523vw 0px rgba(20, 21, 55, 0.4); */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.307vw;
  /* 20px / 1530 * 100 */
  padding: 2.092vw 1.569vw;
  /* 32px 24px */
}
.btn-frame:before {
  content: "";
  width: 1.8vw;
  height: 1.37vw;
  /* 21px / 1530 * 100 */
  background: url(img/fkds-tip.png) no-repeat center top/contain;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-60%);
}

.btn-frame-text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.307vw;
  /* 20px / 1530 * 100 */
  color: #fff;
  text-align: center;
  line-height: normal;
}

/* 番号バッジ */
.btn-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 3.922vw;
  /* 60px / 1530 * 100 */
  height: 3.922vw;
  background: #fff;
  border: 0.196vw solid #0194fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.092vw;
  /* 32px / 1530 * 100 */
  color: #0194fd;
  z-index: 1;
}

/* position-op (フォークリフトOP) */
.position-op {
 position: absolute;
    left: 35.902vw;
    top: 31.163vw;
    width: fit-content;
}
.position-op:before {
content: "";
    width: 1.8vw;
    height: 1.37vw;
    background: url(img/fkds-tip-white2.png) no-repeat center top / contain;
    position: absolute;
    left: 20%;
    top: -15%;
    transform: translateX(-60%) rotate(180deg);
}

.position-op-bg {
  width: 100%;
  padding: 0.8vw 0.8vw 0vw 0.8vw;
  /* 14px / 1530 * 100 */
  background-color: #fff;
  /* border: 0.196vw solid #141537; */
}

.position-op-title {
  font-size: 2rem;
  /* 20px / 1530 * 100 */
  font-weight: 700;
  color: #0194fd;
  white-space: nowrap;
  text-align: center;
}

.position-op-description {
  padding: 0.8vw 1vw;
  /* 10px / 1530 * 100 */
  background-color: #fff;
  color: #0194fd;
	font-size: 1.4rem;
  /* border: 0.131vw solid #ffffff; */
}

/* position-op2 (所長) */
.position-op2 {
  padding: 0.8vw 1vw;
  /* 14px / 1530 * 100 */
  background-color: rgba(255, 255, 255);
  /* border: 0.196vw solid #141537; */
  position: absolute;
  left: 55.706vw;
    top: 10.039vw;
  width: fit-content;
  /* 273px / 1530 * 100 */
  /*box-shadow: 0px 0.261vw 0.523vw 0px rgba(20, 21, 55, 0.4);*/
  font-weight: 700;
  font-size: 2.0rem;
  /* 20px / 1530 * 100 */
  color: #0194fd;
  white-space: nowrap;
  text-align: center;
}
.position-op2 .sm{
	font-size: 1.4rem;
}
.position-op2:before {
  content: "";
  width: 1.8vw;
  height: 1.37vw;
  /* 21px / 1530 * 100 */
  background: url(img/fkds-tip-white2.png) no-repeat center top/contain;
  position: absolute;
  left: 40%;
  top: 100%;
  transform: translateX(-50%);
}

.remodal-inner {
  min-height: 33rem;
  padding: var(--s4) var(--s5) var(--s4) 17.8rem;
  background: #e6f5ff url(img/modal-inner-pic.png) no-repeat left center/13rem auto;
  text-align: left;
}
.remodal-inner.bg-02 {
  background-image: url(img/modal-inner-pic-2.png);
}
.remodal-inner.bg-03 {
  background-image: url(img/modal-inner-pic-3.png);
}
.remodal-inner.bg-04 {
  background-image: url(img/modal-inner-pic-4.png);
}
.remodal-inner.bg-05 {
  background-image: url(img/modal-inner-pic-5.png);
}

.remodal-title {
  width: fit-content;
  margin-top: var(--s6);
  margin-bottom: var(--s3);
  padding: 1.2rem var(--s3);
  background: #fff;
  border: solid 1px #0194fd;
  border-radius: var(--s8);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.remodal-title .btn-number {
  width: 6rem;
  height: 6rem;
  background: #0194fd;
  top: -5rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}
.remodal-inner.bg-01 .remodal-title:before {
    content: "1";
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    background: #0194fd;
    text-align: center;
    top: -4.5rem;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
}
.remodal-inner.bg-02 .remodal-title:before {
    content: "2";
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    background: #0194fd;
    text-align: center;
    top: -4.5rem;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
}
.remodal-inner.bg-03 .remodal-title:before {
    content: "3";
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    background: #0194fd;
    text-align: center;
    top: -4.5rem;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
}
.remodal-inner.bg-04 .remodal-title:before {
    content: "4";
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    background: #0194fd;
    text-align: center;
    top: -4.5rem;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
}
.remodal-inner.bg-05 .remodal-title:before {
    content: "5";
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    background: #0194fd;
    text-align: center;
    top: -4.5rem;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
}
.remodal-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.movie-modal {
  max-width: 32rem;
  margin: 0 auto;
}

.youtube-movie {
  width: 100%;
  padding-top: 177.77%;
  /* アスペクト比：9/16 */
  position: relative;
}
.youtube-movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.sec05 {
  padding: 10rem 0;
}

.voice-slider__slide {
  margin-top: var(--s6);
  padding: var(--s3);
  border-radius: var(--s3);
  background: #ff8a00;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.voice-slider__slide--blue {
  background: #0194fd;
}
.voice-slider__slide--yellow {
  background: #feeb00;
}
.voice-slider__slide--green {
  background: #77edd5;
}
.voice-slider__tag {
  width: fit-content;
  margin: -4rem auto var(--s2);
  padding: 0.4rem var(--s3);
  border: solid 1px #141537;
  background: #fff;
  border-radius: var(--s5);
  font-size: 1.6rem;
  font-weight: 700;
}
.voice-slider__catch {
  text-align: center;
  margin-bottom: var(--s2);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
.voice-slider__catch--black {
  color: #141537;
}
.voice-slider__image {
  position: relative;
}
.voice-slider__image img {
  /* border-radius: var(--s2); */
}
.voice-slider .btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
}

.sec06 {
  padding: var(--s7) 0 18rem;
  background: #e6f5ff;
}

.sec06-side-box {
  min-height: 35.4rem;
  padding-top: var(--s2);
  background: url(img/sec05-illust-1.png) no-repeat left top/100% auto;
}
.sec06 .box-summary .fkds-title {
    font-size: 2.4rem;
}

.graph-grid {
  margin-top: var(--s7);
}
.graph-grid__left--sp {
  display: none;
}

.graph-title {
  width: fit-content;
  margin: 0 auto -4rem;
  padding: var(--s1) var(--s3);
  border-radius: var(--s5);
  text-align: center;
  /* background: #0194fd; */
  font-size: 2.4rem;
  font-weight: 700;
  color: #141537;
  position: relative;
}
.graph-title span {
  display: inline-block;
  width: fit-content;
  margin-bottom: var(--s0);
  padding: 0.4rem var(--s3);
  border-radius: var(--s8);
  border: solid 1px #141537;
  background: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
  color: #141537;
  position: relative;
}
.graph-title--orange {
  background: #ff8a00;
}
.graph-title--green {
  background: #60d5be;
}

.graph-data {
  padding: var(--s8) 0 var(--s3);
  background: #fff;
  text-align: center;
}
.graph-data img {
  width: 24rem;
}

.grid-time {
  width: 100%;
  background: #141537;
  border-radius: var(--s5);
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

.grid-cell {
  display: flex;
  align-items: center;
}

.grid-cell-wt {
  padding: var(--s2) var(--s2);
  background: #FFE8CC;
  font-size: 1.7rem;
  font-weight: 700;
  position: relative;
  border: solid 2px #ffffff;
}

.grid-cell-gr {
  padding: var(--s2) var(--s2);
  background: #b1ffec;
  border: solid 2px #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
  position: relative;
}

.grid-cell-bl {
  padding: var(--s2) var(--s2);
  background: #bfe5ff;
  border: solid 2px #ffffff;
  font-size:1.7rem;
  font-weight: 700;
  position: relative;
}

.grid-cell-gray {
  padding: var(--s2) var(--s2);
  background: #eee;
  border: solid 2px #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
	color:#818181;
  position: relative;
}

.box-summary {
  margin: 11rem 0 var(--s12);
  padding: 0 32rem var(--s5) var(--s7);
  position: relative;
  z-index: 0;
}
.box-summary:before {
  content: "";
  width: 100%;
  height: calc(100% - var(--s3));
  background: #fffde4;
  border: solid 1px #0194fd;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.box-summary:after {
  content: "";
  width: 17.4rem;
  height: 20rem;
  background: url(img/deco-circle-3.png) no-repeat center/contain;
  position: absolute;
  left: -11.6rem;
  bottom: -4rem;
}
.box-summary__text {
  font-weight: 700;
}
.box-summary__pic {
  width: 26.3rem;
  position: absolute;
  right: var(--s3);
  bottom: 0;
}
.box-summary .btn-internal,
.box-summary .btn-web {
  margin: var(--s3) auto 0;
}
.box-summary-02 {
  margin: 11rem 0 var(--s12);
  padding: 0 8rem var(--s5);
  position: relative;
  z-index: 0;
}
.box-summary-02:before {
  content: "";
  width: 100%;
  height: calc(100% - var(--s3));
  background: #fffde4;
  border: solid 1px #0194fd;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.box-summary-02:after {
  content: "";
  width: 17.4rem;
  height: 20rem;
  background: url(img/deco-circle-3.png) no-repeat center/contain;
  position: absolute;
  left: -11.6rem;
  bottom: -4rem;
}
.box-summary-02__text {
  font-weight: 700;
}
.box-summary-02__pic {
  width: 30.3rem;
  position: absolute;
  right: var(--s2);
  bottom: 0;
}
.box-summary-02 .btn-internal,
.box-summary-02 .btn-web {
  margin: var(--s3) auto 0;
}

.card-qa__pic{
  position: relative;
  left:-1rem;
  top: 3rem;
}
.card-qa__pic::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
 /* background: #fff; */
  border-radius: 50%;
  top: 68%;
  left: 45%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.card-qa__pic img {
  position: relative;
  z-index: 1;
}

.card-qa__pic01{
  width: 100%;
  position: relative;
  top: 3rem;
  /* left:-1rem; */
  z-index: 1;
}
.card-qa__pic01::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  /* background: #fff; */
  border-radius: 50%;
  top: 60%;
  right: 45%;
  transform: translate(50%, -50%);
  z-index: -1;
}

.card-qa__pic02{
  width: 100%;
  transform: scaleX(-1);
}
.card-qa__pic02::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  /* background: #fff; */
  border-radius: 50%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.card-qa__pic02 img {
  position: relative;
  left: -3rem;
  z-index: 1;
}

.card-qa__pic03{
  width: 90%;
  position: relative;
  z-index: 1;
}
.card-qa__pic03::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: #fff;
  border-radius: 50%;
  top: 60%;
  right: 45%;
  transform: translate(50%, -50%);
  z-index: -1;
}
.card-qa__pic03 img {
  position: relative;
  top:1rem;
  z-index: 1;
}

.card-qa__pic04{
position: relative;
  width: 90%;
}
.card-qa__pic04::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: #fff;
  border-radius: 50%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.card-qa__pic04 img {
  position: relative;
  top:1rem;
  z-index: 1;
}

.sec07 {
  margin-top: -22.6rem;
  padding: 14rem 0 var(--s11);
  background: url(img/bg-round-white.svg) no-repeat center top/100% 22.6rem, linear-gradient(to bottom, transparent 22.6rem, #fff 22.6rem);
  position: relative;
  z-index: 0;
}

.sec08 {
  padding-bottom: 8rem;
}
.sec08-inner {
  padding: 0 var(--s3);
}
.sec08-column {
  --minmum: calc((100% - var(--s11)) / 2);
  gap: var(--s3) var(--s11);
}
.sec08 .l-center {
  position: relative;
}
.sec08 .l-center:before {
  content: "";
  width: 29rem;
  height: 28rem;
  background: url(img/deco-circle-1.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 0;
}

.sec09 {
  padding: 12rem 0 0;
  background: #f3f3f2;
}
.sec09-under {
  padding: var(--s11) 0 12rem;
  background: url(img/sec10-bg.jpg) no-repeat center top/cover;
  overflow: clip;
}
.sec09-under .l-center {
  position: relative;
  z-index: 0;
}
.sec09-under .l-center:before {
  content: "";
  width: 141.7rem;
  height: 141.7rem;
  background: #f4faff;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: -10rem;
  z-index: -1;
}
.sec09-under__text {
  margin-top: var(--s8);
  max-width: 88rem;
  font-size: 2rem;
}
.sec09-under__text p + p {
  margin-top: var(--s4);
}

.card-qa {
  margin: var(--s8) 0;
}
.card-qa__title {
  width: fit-content;
  margin: 0 auto -2rem 0;
  padding: 1.5rem var(--s3) 1.5rem var(--s10);
  background: #141537;
  border: solid 0.2rem #141537;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}
.card-qa__title:before {
  content: "Q";
  width: 6.1rem;
  height: 6rem;
  padding: var(--s-2) 0 0 var(--s1);
  background: #ff8a00;
  border-bottom-right-radius: var(--s6);
  font-family: "Open Sans", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  color: #fff;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
}
.card-qa__answer {
  padding: var(--s5) var(--s4) var(--s3);
  background: #fff;
  border: solid 1px #0194fd;
  position: relative;
}
.card-qa__answer:before {
  content: "";
  width: 1.8rem;
  height: 100%;
  background: url(img/fkds-tip-left.png) no-repeat center right/contain;
  position: absolute;
  right: 100%;
  top: var(--s-2);
  z-index:1;
}
.card-qa__answer--reverse:before {
  right: auto;
  left: 100%;
  background: url(img/fkds-tip-right.png) no-repeat center left/contain;
}
.card-qa--low .card-qa__answer:before {
  content: none;
}

.answer-title {
  margin-bottom: var(--s3);
  padding: 0 0 0 4.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.answer-title:before {
  content: "A";
  font-family: "Open Sans", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  color: #ff8a00;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: -0.15em;
}

.card-terning {
  transition: opacity 0.4s;
}
.card-terning__pic{
  border: solid 1px #ddd;
}
.card-terning .fkds-title {
  margin-bottom: -1rem;
  font-size: 2rem;
  text-align: center;
}
.card-terning__catch {
  padding: var(--s2) var(--s11) var(--s2) var(--s3);
  background: #141537 url(img/btn-modal.png) no-repeat right 2rem center/auto 4.4rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.card-terning__modal-pic {
  width: 20rem;
  position: absolute;
  left: var(--s4);
  top: -6rem;
}
.card-terning__name {
  font-size: 2.2rem;
  font-weight: 700;
}
.card-terning__modal-body {
  padding: var(--s2) var(--s3) var(--s3);
  background: #fff;
}
.card-terning__modal-body + .card-terning__modal-body {
  margin-top: var(--s1);
}
.card-terning__modal-catch {
  margin-bottom: var(--s2);
  padding-left: var(--s3);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.card-terning__modal-catch:before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: #77edd5;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-terning:nth-of-type(even) {
  margin-top: var(--s7);
}

@media (hover: hover) {
  .card-terning:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}
.remodal-second {
  max-width: 72rem;
  max-height: calc(100vh - 16rem);
}

.remodal--movie {
  max-width: 32rem;
}

.remodal-inner02 {
  min-height: 33rem;
  padding: var(--s4) var(--s7);
  background: #e6f5ff;
  text-align: left;
  position: relative;
}
.remodal-inner02 .l-cluster {
  margin-bottom: var(--s4);
  padding-left: 20rem;
  align-items: center;
}
.remodal-inner02--lower {
  margin-top: 12rem;
  padding-left: var(--s6);
  padding-right: var(--s6);
}
.remodal-inner02--lower:before {
  content: "";
  width: 20.6rem;
  height: 22.4rem;
  background: url(img/deco-circle-7.png) no-repeat center/contain;
  position: absolute;
  right: -4rem;
  top: -6rem;
}
.remodal-inner02--lower .card-terning__name {
  width: 100%;
}
.remodal-inner02--lower .card-terning__modal-pic {
  width: 24rem;
  top: -4rem;
  left: var(--s6);
}
.remodal-inner02--lower .l-cluster {
  padding-left: 27rem;
}

.remodal-inner-scroll {
  max-height: calc(100vh - 22rem);
  overflow-y: auto;
  position: relative;
}

.sec10 {
  padding: 12rem 0;
}
.sec10-column {
  margin-top: var(--s8);
}

.card-sec10 {
  padding: var(--s3) 6rem var(--s3) 0;
  border-top: solid 0.2rem #141537;
  border-bottom: solid 0.2rem #141537;
  background: url(img/arrow-02-black-right.svg) no-repeat right center/4.5rem auto;
  text-decoration: none;
  display: flex;
  gap: var(--s2);
  align-items: center;
}
.card-sec10__pic {
  width: 7rem;
}
.card-sec10__title {
  font-size: 1.8rem;
  font-weight: 700;
}

@media (hover: hover) {
  .card-sec10:hover {
    opacity: 0.6;
  }
}
.sec11 {
  background: linear-gradient(to bottom, transparent 13rem, #fffde4 13rem);
}
.sec11-title {
  width: fit-content;
  padding: 0 var(--s8) 0 0;
  position: relative;
  z-index: 0;
}
.sec11-title:before {
  content: "";
  width: 100vw;
  height: calc(100% + var(--s3));
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec11-title:after {
  content: "";
  width: 27.7rem;
  height: 24.4rem;
  background: url(img/deco-circle-6.png) no-repeat center/contain;
  position: absolute;
  right: -40rem;
  top: var(--s5);
}
.sec11-column {
  margin: var(--s10) 0 var(--s12);
  gap: var(--s6);
  --minmum: calc((100% - var(--s4)) / 2);
  position: relative;
  z-index: 0;
}

.card-sec11 {
  min-height: 28.6rem;
  padding: var(--s3);
  padding-right: 15.6rem;
  background: url(img/sec11-pic-1.jpg) no-repeat center/cover;
  box-shadow: 0.4rem 0.4rem 1.5rem rgba(20, 21, 55, 0.25);
  display: flex;
  align-items: flex-end;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: opacity 0.4s;
}
.card-sec12 {
  min-height: 28.6rem;
  padding: var(--s3);
  padding-right: 18.6rem;
  background: url(img/sec11-pic-2.jpg) no-repeat center/cover;
  box-shadow: 0.4rem 0.4rem 1.5rem rgba(20, 21, 55, 0.25);
  display: flex;
  align-items: flex-end;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: opacity 0.4s;
}
.card-sec13 {
  min-height: 28.6rem;
  padding: var(--s3);
  padding-right: 18.6rem;
  background: url(img/sec11-pic-3.jpg) no-repeat center/cover;
  box-shadow: 0.4rem 0.4rem 1.5rem rgba(20, 21, 55, 0.25);
  display: flex;
  align-items: flex-end;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: opacity 0.4s;
}
.card-sec14 {
  min-height: 28.6rem;
  padding: var(--s3);
  padding-right: 18.6rem;
  background: url(img/sec11-pic-4.jpg) no-repeat center/cover;
  box-shadow: 0.4rem 0.4rem 1.5rem rgba(20, 21, 55, 0.25);
  display: flex;
  align-items: flex-end;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: opacity 0.4s;
}
.card-sec11__btn {
  width: 15.7rem;
  position: absolute;
  right: 0;
  bottom: var(--s4);
}
.bg-white {
  font-size: 1.6rem;
  color: #141537;
  background: #fff;
  padding: 0.2rem 0.6rem;
  line-height: 1.6;
}

@media (hover: hover) {
  .card-sec11:hover {
    opacity: 0.7;
    color: #fff;
  }
	.card-sec12:hover {
    opacity: 0.7;
    color: #fff;
  }
  .card-sec13:hover {
    opacity: 0.7;
    color: #fff;
  }
  .card-sec14:hover {
    opacity: 0.7;
    color: #fff;
  }
}
.area-sponsored {
  padding: 0 0 var(--s8);
  background: #e6f5ff;
}
.area-sponsored__inner {
  padding-bottom: var(--s7);
  position: relative;
  z-index: 0;
}
.area-sponsored__inner:before {
  content: "";
  width: calc(100% + 10rem);
  height: calc(100% - 1.4rem);
  background: #fff;
  position: absolute;
  left: -5rem;
  bottom: 0;
  z-index: -1;
}
.area-sponsored__column {
  margin-top: var(--s5);
}
.area-sponsored__title {
  margin-bottom: var(--s5);
  padding-right: 50rem;
  background: url(img/logo-daiwa-blue.png) no-repeat right center/contain;
  font-size: 3.4rem;
  font-weight: 700;
}
.area-sponsored__name {
  margin-bottom: var(--s3);
  color: #0071c5;
  font-size: 3.8rem;
  font-weight: 700;
}
.area-sponsored__subtitle {
  margin: 8rem 0 var(--s5);
  font-size: 5.2rem;
  font-weight: 700;
}
.area-sponsored__subtitle span.sm {
  font-size: 2.8rem;
}

.loop-animation {
  width: 480.2rem;
  height: 28rem;
  margin-bottom: -8rem;
  background: url(img/loop-anime-pic.png) repeat-x left top/auto 100%;
  animation: loops 200s linear infinite;
}

.card-merit {
  padding: 12.8rem var(--s4) var(--s4);
  position: relative;
  z-index: 0;
}
.card-merit:before {
  content: "";
  width: 100%;
  height: calc(100% - 6rem);
  background: #fffde4;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.card-merit:after {
  content: "01";
  font-family: "Open Sans", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px #cbeaff;
  text-stroke: 1px #cbeaff;
  paint-order: stroke;
  position: absolute;
  left: var(--s1);
  top: 5rem;
  z-index: -1;
}
.card-merit:nth-of-type(2):after {
  content: "02";
}
.card-merit:nth-of-type(3):after {
  content: "03";
}
.card-merit__icon {
  width: 11rem;
  height: 11rem;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.card-merit__title {
  margin-bottom: var(--s3);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-merit__text {
  padding-top: var(--s2);
}

.sec12 {
  padding: 3rem 0;
  background: #e6f5ff;
}

.sec-column {
  padding-top: var(--s6);
}

.card-link__title {
  padding: var(--s3);
  padding-right: var(--s7);
  background: #141537 url(img/arrow-02-white-right.svg) no-repeat center right var(--s2)/auto 2rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.card-link-column {
  margin-top: var(--s6);
}

@media (hover: hover) {
  .card-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

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

  body {
    font-size: 1.5rem;
  }

  .sp_br {
    display: inline;
  }

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

      sp layout center

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

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

      sp layout stack

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

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

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

      sp layout cluster

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

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

      sp layout grid

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

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

  .l-grid-three,
.l-grid-three-02 {
    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 {
    margin-top: var(--s4);
    flex-wrap: wrap;
  }
  .l-sidebar__side {
    width: 100%;
    height: auto;
    position: static;
  }
  .l-sidebar__main {
    width: 100%;
  }

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

      sp layout column

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

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

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

      sp layout grid areas

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

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

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

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    margin: var(--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;
    width: 80rem;
  }
  .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;
    align-items: flex-start;
    gap: var(--s1);
  }
  .header-area__inner {
    width: 100%;
    padding-right: 6rem;
  }
  .header-area__logo {
    width: 10rem;
  }
  .header-area__name {
    display: block;
    line-height: 1.2;
  }
  .header-area .sponsored-text {
    margin: 0;
    line-height: 1.2;
    display: block;
  }

  .header-scroll-navi {
    width: calc(100% - 10rem);
    height: auto;
    display: block;
    background: none;
    backdrop-filter: none;
    padding: 0;
    top: auto;
    bottom: 0;
  }
  .header-scroll-navi .header-area__logo {
    display: none;
  }
  .header-scroll-navi .header-navi {
    display: none;
  }

  .lower-upper {
    margin-bottom: var(--s1);
    padding: var(--s10) 0 3rem;
    background-position: right -2rem bottom;
    background-size: 15rem auto;
  }
  .lower-upper:before {
    width: 23rem;
    height: 9rem;
    left: -4rem;
  }

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

      main visual

  */
  .mainvisual {
    margin-bottom: var(--s2);
    padding: var(--s11) var(--s2) 0;
	overflow: hidden;
  }
  .mainvisual-inner {
    padding-bottom: var(--s4);
    padding-left: 0;
  }
  .mainvisual-inner:before {
    width: 29rem;
    height: 24rem;
    left: auto;
    right: -6rem;
  }
  .mainvisual-title {
    font-size: 3rem;
  }
  .mainvisual-title span.st {
    font-size: 4.6rem;
  }
  .mainvisual-title span.bg {
  font-size: 3.4rem;
	      padding: 0 var(--s1) 5px;
  margin-bottom: var(--s2);
  }
  .mainvisual-lead {
    margin-bottom: var(--s4);
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .mainvisual-lead span.st {
    font-size: 2rem;
  }
  .mainvisual-lead span.st:before {
    content: "";
    width: 6rem;
    height: 6rem;
  }

  .tag-01 {
    font-size: 1.3rem;
  }

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

      toc　lower

  */
  .toc-wrap {
    margin: var(--s4) auto;
  }
  .toc-wrap ul li.chapter-h-two,
.toc-wrap ul:not([class]) li.chapter-h-two {
    font-size: 1.6rem;
  }
  .toc-wrap ul li.chapter-h-three,
.toc-wrap ul:not([class]) li.chapter-h-three {
    font-size: 1.4rem;
  }

  .toc-wrap__title {
    padding: var(--s2);
    font-size: 1.8rem;
  }

  .toc-wrap__main {
    padding: var(--s2) var(--s2) var(--s3);
  }

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

      list

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

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

      sp btn

  */
  .btn-internal,
.btn-web {
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    width: 100%;
    min-height: 6rem;
    padding-right: 5.5rem;
    padding-left: 4.0rem;
    background-position: right var(--s3) center;
    background-size: 2.8rem auto;
    font-size: 1.4rem;
  }

  .btn-internal--top {
    margin: 0;
  }
  .btn-internal--top a {
    width: 100%;
    border-radius: var(--s3) var(--s3) 0 0;
  }

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

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

  .btn-column {
    margin: var(--s2) 0;
    flex-direction: column;
    gap: var(--s3);
  }
  .btn-column .btn-web,
.btn-column .btn-internal,
.btn-column .btn-tel {
    margin: 0;
  }
  .btn-column .btn-web a,
.btn-column .btn-internal a,
.btn-column .btn-tel a {
    min-width: initial;
    width: 94%;
  }

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

      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: #e6f5ff;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #e6f5ff;
    border-right: solid 1px #c7c7c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    text-align: center;
  }
  .table-label__cell {
    padding: var(--s1) var(--s2);
  }

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

      sp caption

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

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

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

  	sp catch

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

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

  	subgrid card

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

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

  	help

  */
  .help-content {
    width: 80%;
    padding: var(--s1);
    transform: none;
    left: auto;
    right: 0;
  }
  .help-content:after {
    width: 2rem;
    height: 1.5rem;
  }
  .help-content p {
    font-size: 1.3rem;
    line-height: 1.7;
  }

  .help-title {
    margin-bottom: var(--s1);
    font-size: 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 {
    margin-top: var(--s8);
    padding: var(--s6) 0 0;
  }

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

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

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

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

  .footer-menu-title {
    margin-bottom: 0;
  }
  .footer-menu-title__link {
    padding: var(--s1) var(--s4) var(--s1) var(--s2);
    background: none;
    display: block;
    position: relative;
  }
  .footer-menu-title__link::after {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: url("img/arrow-03-black-down.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
  }
  .footer-menu-title__link.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .footer-menu-title__link--not-toggle::after {
    background: url("img/arrow-03-black-right.svg") no-repeat center/auto 1.4rem;
  }

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

  .footer-menu-sub {
    margin-left: var(--s2);
  }
  .footer-menu-sub__link {
    padding: var(--s1) var(--s2) var(--s1) 1.1em;
  }
  .footer-menu-sub__link::before {
    top: var(--s1);
  }

  .footer-disclaimer {
    width: calc(100% - var(--s2));
    margin: var(--s2) auto;
    padding: var(--s1) var(--s2);
  }

  .footer-nocopy {
    margin: var(--s2) var(--s1);
    font-size: 1rem;
  }

  .footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .footer-sitemap {
    display: none;
  }

  .footer-banner {
    width: fit-content;
    padding: var(--s1) var(--s6) var(--s1);
    background-size: 4.6rem auto;
    right: auto;
    left: 0;
    bottom: 0;
    border-radius: 0 var(--s2) 0 0;
    font-size: 1.3rem;
  }
  .footer-banner:before {
    width: 2.4rem;
    height: 2.4rem;
  }

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

  	sp gnavi

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

  .gnavi-area {
    width: 100%;
    padding: var(--s5) 0 var(--s4);
  }
  .gnavi-area__logo {
    display: block;
    width: 20rem;
    margin: 0 auto var(--s2);
  }

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

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

      sp page

  */
  .page-top {
    width: 5.5rem;
    height: 5.5rem;
    bottom: 0.6rem;
    right: 0.6rem;
  }

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

       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: 2.1rem;
    height: 0.3rem;
    background: #141537;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
  .toggle-btn-sp::after {
    content: "";
    width: 0.3rem;
    height: 2.1rem;
    background: #141537;
    position: absolute;
    top: 50%;
    right: 0.9rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
  }
  .toggle-btn-sp.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
  }

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

       sp more-gradient

  */
  .more-gradient-sp-btn {
    width: 18rem;
    padding: var(--s1) var(--s5);
    background: #fff;
    border-radius: 10rem;
    border: solid 1px #666;
    display: block;
    font-size: 1.4rem;
    text-align: center;
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 2rem;
    z-index: 1;
    transform: translateX(-50%);
    transition: background-color 0.6s;
  }

  .more-gradient-sp-btn::before {
    content: "";
    width: var(--s2);
    height: 0.2rem;
    background: #141537;
    border-radius: 0.2rem;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%);
  }

  .more-gradient-sp-btn::after {
    content: "";
    width: 0.2rem;
    height: var(--s2);
    background: #141537;
    border-radius: 0.2rem;
    position: absolute;
    top: 50%;
    right: var(--s3);
    transform: translate(50%, -50%);
    transition: transform 0.6s;
  }

  .more-gradient-sp-btn.is-open::after {
    transform: translate(0, -50%) rotate(90deg);
  }

  .more-gradient-sp-content {
    height: 13rem;
    padding-bottom: var(--s6);
    overflow: hidden;
    position: relative;
    transition: height 0.6s ease;
  }

  .more-gradient-sp-content::after {
    content: "";
    width: 100%;
    height: 13rem;
    background: linear-gradient(to bottom, transparent, #fff);
    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;
  }

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

      lower-parts

  */
  .box-understand {
    margin: var(--s5) 0;
  }
  .box-understand__title {
    margin-bottom: var(--s2);
    padding: var(--s2);
    font-size: 1.4rem;
  }
  .box-understand .check-list {
    padding: 0 var(--s3) var(--s3);
  }
  .box-understand .check-list__item {
    padding-left: var(--s4);
    font-size: 1.6rem;
  }
  .box-understand .check-list__item:before {
    width: 2.5rem;
    height: 2rem;
  }

  .lower-schedule {
    padding: var(--s3) var(--s2);
  }
  .lower-schedule:before {
    top: 5.9rem;
  }
  .lower-schedule .splide__arrow {
    width: 3.4rem;
  }

  .schedule-dl__desc {
    padding: var(--s2);
  }
  .schedule-dl__desc span {
    font-size: 1.5rem;
  }

  .schedule-slider__arrows {
    width: calc(100% + 6rem);
  }

  .box-voice {
    margin: var(--s5) 0;
    padding: var(--s3) var(--s2) var(--s3) 0;
  }
  .box-voice__pic {
    width: 12rem;
    height: 12rem;
    margin-top: -3rem;
    border-width: 1rem;
  }
  .box-voice .l-column__side05 {
    margin-bottom: -4rem;
  }
  .box-voice--right {
    padding: var(--s3) 0 var(--s3) var(--s2);
  }
  .box-voice .fkds-title {
    font-size: 1.6rem;
  }
  .box-voice .fkds-title:before {
    width: 2rem;
    height: 1.6rem;
    bottom: -1.6rem;
  }

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

      SP titles

  */
  .pr-text {
    text-align: left;
  }

   .icon-title {
    margin-left: var(--s2);
    padding: var(--s2) var(--s3) var(--s2) var(--s5);
    font-size: 1.8rem;
  }
  .icon-title:before {
    width: 6.2rem;
    height: 5.8rem;
    left: -2rem;
	top: 5%;
  }

  h1:not([class]) {
    width: calc(100% - 8rem);
    min-height: 7rem;
    margin: 0;
    font-size: 2.0rem;
  }
  h1:not([class]):before {
    content: none;
  }

  .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(--s5) auto var(--s2);
  }
  .main-area--low h2:not([class]) {
    font-size: 2rem;
    padding: 1.2rem var(--s2) 1.2rem var(--s3);
    background-size: 1.8rem auto;
  }
  .main-area--low h2:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]) {
    padding-left: var(--s-2);
    font-size: 1.8rem;
  }
  .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]) {
    font-size: 1.6rem;
  }
  .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.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%;
    margin-bottom: var(--s4);
    font-size: 2.5rem;
  }
  .common-title a {
    padding-right: 4rem;
    background-size: 2.4rem auto;
  }
  .common-title span.sm {
    font-size: 1.6rem;
  }
  .common-title span.sm2 {
    font-size: 1.8rem;
  }

  .common-lead {
  max-width: 67rem;
  margin-bottom: var(--s6);
}
  .common-lead--ct {
    text-align: left;
  }
  .common-lead--long {
    margin-bottom: var(--s2);
	text-align: left;
  }

  .sec01 {
    padding-top: var(--s4);
    padding-bottom: 0;
  }
  .sec01 .l-column__side {
    display: none;
  }
  .sec01 .common-title:before {
    width: 10rem;
    height: 10rem;
    top: -2rem;
    right: var(--s4);
  }

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

       tab

  */
  .tab-column__btns {
    align-items: initial;
  }

  .tab-column__btns--bottom {
    display: grid;
  }

  .tab-btn {
    min-width: calc((100% - var(--s1)) / 2);
    min-height: 6.4rem;
    padding: var(--s3) var(--s1) var(--s1);
    border-radius: var(--s1);
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .tab-btn__name {
    font-size: 1.2rem;
  }
   .tab-btn .tag-01 {
    padding: 0.2rem var(--s1);
    font-size: 1.1rem;
  }
  .tab-btn.is-active {
    padding: var(--s3) var(--s1) var(--s1);
    border-width: 0.1rem;
  }
  .tab-btn--01:before, .tab-btn--02:before, .tab-btn--03:before, .tab-btn--04:before, .tab-btn--05:before {
    width: 3rem;
    height: 3rem;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .tab-content__inner {
    padding: 0 var(--s2) var(--s7);
  }
  .tab-content__title {
    padding: var(--s2);
    padding-left: var(--s4);
    background-position: center top -14rem;
  }
  .tab-content .sec01-subtitle-icon {
    width: 4rem;
    height: 4rem;
    left: var(--s1);
    top: 50%;
    transform: translateY(-50%);
  }
  .tab-content .sec01-subtitle {
    font-size: 1.8rem;
    writing-mode: horizontal-tb;
  }
  .tab-content .title-inner {
    font-size: 1.8rem;
  }
  .tab-content .box1__text {
    font-size: 1.4rem;
  }
  .tab-content .skill-section__title-text {
    font-size: 1.6rem;
  }
  .tab-content .skill-section__content {
    padding: var(--s4) var(--s2) var(--s2);
  }
  .tab-content .skill-section__pic {
  width: 10rem;
        height: 10rem;
        right: -1rem;
        top: -8rem;
    z-index: 1;
  }
  .tab-content .list-item {
    padding-left: var(--s4);
    font-size: 1.5rem;
  }
  .tab-content .list-item:before {
    width: 2rem;
    height: 1.8rem;
  }
  .tab-content .l-column__main {
    padding: var(--s2);
  }
  .tab-content .btn-link {
    margin-top: var(--s2);
  }

  .tab-btn-02 {
    padding: var(--s1) var(--s2);
    border-radius: var(--s1) var(--s1) 0 0;
    font-size: 1.2rem;
    border-width: 0.2rem;
  }
  .tab-btn-02.is-active {
    padding: var(--s2);
    margin-bottom: calc(0.2rem * -1);
  }

  .tab-content--02 {
    border-width: 0.2rem;
  }

  .sec02-title-box {
    padding-top: var(--s7);
    padding-bottom: 0;
    background-size: 7.2rem auto;
    background: url(img/sec02-illust-1.png) no-repeat left 5.8rem bottom/auto 45%;
    background-position: left top;
  }
  .sec02-title-box:before {
    height: 16rem;
    right: -14rem;
    top: var(--s4);
  }

  .fkds-title {
    font-size: 1.5rem;
	margin-left: 0rem;
  }
  .fkds-title--sm {
    font-size: 1.5rem;
  }

  .sec02-subtitle-box {
    margin-bottom: -7rem;
  }
  .sec02-subtitle-box__pic {
    width: 12rem;
    margin: -10rem 0 0 auto;
  }

  .sec02-subtitle-box2 {
    margin-bottom: -2rem;
  }
  .sec02-subtitle-box2__pic {
    width: 6rem;
    margin: -15rem auto 0 1rem;
  }
  .sec02-subtitle-box2 .fkds-title {
    margin-top: 4rem;
    margin-left: auto;
    margin-right: 0;
  }
  .sec02-subtitle-box2 .fkds-title:before {
    transform: scale(-1, 1);
  }

  .card-column {
	margin-top: var(--s4);
    margin-bottom: var(--s4);
    flex-direction: column;
	  gap: var(--s4);
  }

  .sec02-subtitle-box {
    order: 0;
  }

  .card-flip {
	  margin-top: var(--s3);
    width: fit-content;
  }
  .card-flip__title {
    font-size: 3rem;
  }

  .sec03 {
    padding: 12rem 0 var(--s8);
  }
  .sec03:after {
    width: 5rem;
    height: 14rem;
  }

  .box-sponsored {
    padding: var(--s7) 0 var(--s3) var(--s2);
  }
  .box-sponsored--lower {
  margin: var(--s6) auto;
	}
  .box-sponsored:before {
    left: 0;
  }
  .box-sponsored:after {
    font-size: 4rem;
    display: block;
    width: 90%;
    text-align: center;
  }
  .box-sponsored__tag {
     /* margin-bottom: var(--s1); */
    padding: var(--s-2) var(--s2);
    font-size: 1.4rem;
  }
  .box-sponsored__name {
    font-size: 2rem;
    padding-top:1rem;
  }
  .box-sponsored__logo {
    width: 26rem;
    margin: 0 auto;
  }
  .box-sponsored__inner {
    margin-top: var(--s2);
	padding: var(--s3) var(--s3) var(--s4);
  }

  .area-point {
    padding-top: 11rem;
    padding-bottom: 10rem;
  }
  .area-point__title {
    padding-top: var(--s3);
    font-size: 5rem;
  }
  .area-point__title:before {
    width: 30rem;
    height: 30rem;
  }
  .area-point__text {
    font-size: 1.6rem;
    line-height: 2;
  }
  .area-point__text span.st {
    font-size: 2.2rem;
  }
  .area-point__text span.st2 {
    padding-top: var(--s1);
    padding-bottom: var(--s1);
    font-size: 2.2rem;
	 margin: 0 var(--s1);
  }
  .area-point__text span.line {
    display: inline-block;
  }
  .area-point__text span.line:before {
    bottom: 0.5rem;
  }
  .area-point__text + .area-point__text {
    margin-top: var(--s4);
  }
  .area-point--second {
    padding: var(--s4) 0;
  }

  .slide-area {
    margin-top: -7rem;
    padding-top: var(--s12);
    background-size: 100% 7rem;
	padding: 10rem 0 var(--s1);
  }
  .slide-area__title {
    font-size: 2.4rem;
  }
  .slide-area__title span {
  font-size: 1.9rem;
}
  .slide-area__title:before {
    width: 25rem;
    height: 16rem;
    top: 30%;
  }
  .slide-area__inner {
    margin-top: var(--s10);
  }
  .slide-area__inner:before {
    height: 7.6rem;
  }

  .splide__arrows {
    gap: var(--s2);
  }

  .flow-slider__arrows {
    padding: 0 var(--s3);
  }

  .slider__navi .splide__pagination__page {
    width: var(--s3);
  }

  .flow-slider__slide--st .fkds-title {
    font-size: 1.6rem;
	left: 50%;
  }

  .sec04 {
    padding-top: var(--s7);
  }
  .sec04-catch {
    margin-bottom: var(--s2);
    font-size: 1.6rem;
  }
  .sec04-side {
    padding-right: var(--s2);
  }
  .sec04-text {
    font-size: 1.4rem;
  }
  .sec04 .common-title {
    margin-bottom: var(--s1);
  }
  .sec04 .fkds-title {
    margin-top: -4rem;
    font-size: 1.4rem;
	z-index:3;
	    left: 4%;
	      top: -1rem;
  }

  .map-area {
    height: 33rem;
    margin-top: var(--s8);
  }

  .map-illust {
    height: 36rem;
  }
	
  .map-illust img {
    content: url(img/map-illustsp.png);
  }

  .btn-modal {
    width: 14rem;
  }
 .btn-modal-1 {
           left: 5px;
        top: 22rem;
  }
  .btn-modal-2 {
    left: 4rem;
        top: 13rem;
    width: 12rem;
  }
  .btn-modal-3 {
    left: 14rem;
    top: 2rem;
  }
  .btn-modal-4 {
            left: 24rem;
        right: auto;
        top: 15rem;
  }
  .btn-modal-5 {
           left: auto;
        right: 38px;
        top: auto;
        bottom: 6rem;
  }

  .btn-frame {
 padding: 1.5rem 1.5rem 1.7rem 0.5rem;
    border-radius: var(--s8);
    background-size: 1.4rem auto;
  }
  .btn-frame:before {
    width: 1rem;
    height: 1.4rem;
  }

  .btn-frame-text {
    font-size: 1.6rem;
  }

  .btn-number {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
    top: -0.6rem;
  }

  .position-op {
         width: fit-content;
        bottom: auto;
        top: 3rem;
        right: auto;
        left: 7px;
  }
  .position-op:before {
         width: 1rem;
        height: 1.4rem;
        transform: translateX(-60%) scaleX(-1);
        left: auto;
        right: 40%;
        top: 100%;
  }

  .position-op-title {
    font-size: 1.3rem;
  }

  .position-op2 {
    width: fit-content;
    padding: var(--s-2) var(--s1);
    font-size: 1.4rem;
            left: 19rem;
        top: 8rem;
  }
	.position-op2 .sm{
	font-size: 1.2rem;
}
  .position-op2:before {
    width: 1rem;
    height: 1.4rem;
  }

  .position-op-description {
           padding: 5px;
        font-size: 1rem;
        line-height: 1.4;
  }

  .remodal {
    width: 86%;
  }
  .remodal-inner {
    padding: var(--s3);
    background-size: 5rem auto;
    background-position: left var(--s3);
  }
  .remodal-title {
    margin: var(--s4) auto var(--s2);
  }
  .remodal-title .btn-number {
    width: 4rem;
    height: 4rem;
    font-size: 2.6rem;
    top: -3rem;
  }

  .sec05 {
    padding: var(--s7) 0;
  }

  .voice-slider__tag {
    margin-top: -3rem;
    font-size: 1.6rem;
  }

  .voice-slider__slide {
    margin-top: var(--s3);
  }

  .movie-modal {
    max-width: 30rem;
  }

  .sec06-side-box {
           min-height: 20rem;
        background-size: 21rem auto;
  }
  .sec06-side-box .fkds-title {
    margin: var(--s2) 2rem var(--s1) auto;
  }
	.sec06 .box-summary .fkds-title {
    font-size: 1.8rem;
}

  .graph-grid {
    margin-top: var(--s3);
    position: relative;
    z-index: 1;
  }
  .graph-grid__left--sp {
    display: grid;
  }

  .graph-title {
    font-size: 1.8rem;
  }
.graph-title span {
  display: inline-block;
  width: fit-content;
  margin-bottom: var(--s0);
  padding: 1.0rem var(--s3);
  border-radius: var(--s8);
  border: solid 1px #141537;
  background: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  color: #141537;
  position: relative;
}
  .graph-data {
    padding: var(--s10) 0 var(--s2);
  }
  .graph-data img {
    width: 16rem;
  }

  .grid-time {
    font-size: 1.4rem;
  }

  .grid-cell-gr,
.grid-cell-wt, .grid-cell-bl, .grid-cell-gray{
    padding: var(--s2);
	font-size: 1.5rem;
  }

  .tab-btn-graph {
    padding: var(--s1) var(--s2);
    border-radius: var(--s1);
    font-size: 1.5rem;
    font-weight: 700;
    background: #656578;
    color: #fff;
    position: relative;
  }
  .tab-btn-graph.is-active {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: #0194fd;
  }
  .tab-btn-graph.is-active:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 7px 0 7px;
    border-color: #0194fd transparent transparent transparent;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }
  .tab-btn-graph:nth-of-type(2).is-active {
    background: #ff8a00;
  }
  .tab-btn-graph:nth-of-type(2).is-active:before {
    border-color: #ff8a00 transparent transparent transparent;
  }
  .tab-btn-graph:nth-of-type(3).is-active {
    background: #60d5be;
  }
  .tab-btn-graph:nth-of-type(3).is-active:before {
    border-color: #60d5be transparent transparent transparent;
  }

  .tab-btns-graph {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: flex-end;
	  margin-top: -4rem;
  }
  .tab-btns-graph--bottom {
    margin-top: var(--s3);
  }
  .tab-btns-graph--bottom .tab-btn-graph.is-active:before {
    border-width: 0 7px 10px 7px;
    border-color: transparent transparent #0194fd transparent;
    top: auto;
    bottom: 100%;
  }
  .tab-btns-graph--bottom .tab-btn-graph:nth-of-type(2).is-active:before {
    border-color: transparent transparent #ff8a00 transparent;
  }
  .tab-btns-graph--bottom .tab-btn-graph:nth-of-type(3).is-active:before {
    border-color: transparent transparent #60d5be transparent;
  }

  .tab-content-02.sp-only {
    display: none;
    opacity: 0;
    z-index: 0;
    position: relative;
  }
  .tab-content-02.sp-only.is-active {
    display: grid;
    opacity: 1;
    animation: tabAnimation ease 0.6s forwards;
  }

  .box-summary {
    margin: var(--s8) 0 var(--s6);
    padding: 0 var(--s3) var(--s8);
  }
  .box-summary::after {
    width: 8rem;
    height: 8rem;
    left: -2rem;
    bottom: -2rem;
  }
  .box-summary__pic {
    width: 19rem;
    height: 7.6rem;
    right: -0.8rem;
  }
	
  .box-summary-02 {
    margin: var(--s8) 0 var(--s6);
    padding: 0 var(--s3) var(--s8);
  }
  .box-summary-02::after {
    width: 8rem;
    height: 8rem;
    left: -2rem;
    bottom: -2rem;
  }

  .sec06 {
    padding-bottom: 12rem;
  }

  .sec07 {
    margin-top: calc(var(--s12) * -1);
    padding-top: var(--s8);
	padding: 8rem 0 var(--s4);
    background: url(img/bg-round-white.svg) no-repeat center top/100% 7rem, linear-gradient(to bottom, transparent 7rem, #fff 7rem);
  }
  .sec07-pic {
    height: 38rem;
  }

  .sec08 {
    padding-bottom: var(--s4);
  }
  .sec08-inner {
    padding: 0;
  }
  .sec08 .l-center:before {
    width: 11rem;
    height: 11rem;
    top: 0;
    right: var(--s1);
  }

  .card-terning:nth-of-type(even) {
    margin-top: 0;
  }
  .card-terning .fkds-title {
    font-size: 1.6rem;
  }
  .card-terning__catch {
    font-size: 1.6rem;
    background-size: 3.2rem auto;
  }
  .card-terning__modal-pic {
    width: 10rem;
    height: 10rem;
    left: var(--s2);
  }
  .card-terning__modal-catch {
    padding-left: var(--s2);
    font-size: 1.4rem;
  }
  .card-terning__modal-catch:before {
    width: 1.2rem;
    height: 1.2rem;
  }
  .card-terning__name {
    width: 100%;
    padding-left: 10rem;
    font-size: 1.6rem;
  }

  .remodal-inner02 {
    padding: var(--s3) var(--s2) var(--s2);
  }
  .remodal-inner02 .l-cluster {
    margin-bottom: var(--s2);
    padding-left: 0;
  }
  .remodal-inner02--lower {
    padding-top: var(--s1);
  }
  .remodal-inner02--lower:before {
    width: 10rem;
    height: 10rem;
    right: -1rem;
  }
  .remodal-inner02--lower .card-terning__modal-pic {
    position: static;
    margin-top: -4rem;
    margin-bottom: var(--s1);
    width: 20rem;
    height: auto;
  }
  .remodal-inner02--lower .card-terning__name {
    padding-left: 0;
  }

  .sec09 {
    padding: var(--s6) 0 0;
  }

  .card-qa {
    margin: var(--s3) 0;
    gap: 0;
  }
  .card-qa .l-column__side02 {
    display: flex;
    align-items: center;
    gap: var(--s1);
    flex-direction: row;
  }
  .card-qa__pic {
    width: 14rem;
    height: 13rem;
  }
  .card-qa__pic01 {
    width: 13rem;
    height: 14rem;
    left: 0.2rem;
    transform: scaleX(-1);
  }
  .card-qa__pic02 {
    width: 18rem;
    height: 14rem;
  }
  .card-qa__pic03 {
    width: 15rem;
    height: 15rem;
  }
  .card-qa__pic04 {
    width: 15rem;
    height: 15rem;
  }
  .card-qa .tag-01 {
    /* margin-bottom: var(--s2); */
  }
  .card-qa__title {
    padding-left: var(--s7);
    font-size: 1.6rem;
  }
  .card-qa__title:before {
    width: 4.6rem;
    height: 5rem;
    font-size: 3rem;
  }
  .card-qa__answer {
    padding: var(--s4) var(--s2) var(--s3);
  }
  .card-qa__answer:before {
    content: none;
  }

  .answer-title {
    margin-bottom: var(--s2);
    padding-left: var(--s4);
    font-size: 1.6rem;
  }
  .answer-title::before {
    font-size: 2.6rem;
    left: var(--s-2);
    top: -0.1rem;
  }

  .sec09-under {
    margin-top: var(--s5);
    padding: var(--s8) 0;
  }
  .sec09-under__text {
    font-size: 1.4rem;
    margin-top: 0;
  }
  .sec09-under .l-center:before {
    right: -10rem;
  }

  .sec10 {
    padding: var(--s8) 0;
  }
  .sec10-column {
    margin-top: var(--s5);
    gap: 0;
  }

  .card-sec10 {
    padding-top: var(--s2);
    padding-bottom: var(--s2);
    padding-right: var(--s7);
    border-bottom: none;
    background-size: 3.2rem auto;
  }
  .card-sec10:last-child {
    border-bottom: solid 0.2rem #141537;
  }

  .sec11-title {
    padding-right: var(--s2);
  }
  .sec11-title:after {
    width: 10rem;
    height: 10rem;
    right: 0;
    top: 0;
    z-index: -1;
  }

  .card-sec11 {
    min-height: 18rem;
    padding: var(--s2) var(--s11) 0 var(--s2);
    padding-bottom: var(--s2);
	line-height:1.5;
    font-size: 1.5rem;
  }
  .card-sec11__btn {
    width: 9rem;
    bottom: var(--s2);
  }

  .card-sec12 {
    min-height: 18rem;
    padding: var(--s2) var(--s11) 0 var(--s2);
    padding-bottom: var(--s2);
	line-height:1.5;
    font-size: 1.5rem;
  }
  .card-sec12__btn {
    width: 9rem;
    bottom: var(--s2);
  }

  .card-sec13 {
    min-height: 18rem;
    padding: var(--s2) var(--s11) 0 var(--s2);
    padding-bottom: var(--s2);
	line-height:1.5;
    font-size: 1.5rem;
  }
  .card-sec13__btn {
    width: 9rem;
    bottom: var(--s2);
  }

  .card-sec14 {
    min-height: 18rem;
    padding: var(--s2) var(--s11) 0 var(--s2);
    padding-bottom: var(--s2);
	line-height:1.5;
    font-size: 1.5rem;
  }
  .card-sec14__btn {
    width: 9rem;
    bottom: var(--s2);
  }

  .area-point__title--second:after {
    border-width: 18px 25px 0 25px;
  }

  .area-sponsored {
  padding: 0 0 var(--s3);
  background: #e6f5ff;
}
  .area-sponsored__inner:before {
    width: calc(100% - var(--s2) * 2);
    left: var(--s2);
  }

  .loop-animation {
    height: 13rem;
    margin-bottom: -4rem;
    animation-duration: 300s;
  }

  .area-sponsored__title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
    padding-right: 0;
    padding-bottom: 7rem;
    background-size: auto 6rem;
    background-position: center bottom;
  }
  .area-sponsored .inner-upper {
    padding: 0 var(--s2);
  }
  .area-sponsored .inner-upper .fkds-title {
    margin-bottom: var(--s2);
    font-size: 1.6rem;
  }
  .area-sponsored .inner-upper .fkds-title:before {
    width: 1.8rem;
    height: 2rem;
  }
  .area-sponsored__name {
    font-size: 2rem;
  }
  .area-sponsored__subtitle {
    margin-top: var(--s5);
    margin-bottom: var(--s2);
    padding: 0 var(--s2);
    font-size: 2.2rem;
  }
  .area-sponsored__subtitle span.sm {
    font-size: 1.6rem;
  }
  .area-sponsored__column {
    padding: 0 var(--s2);
  }
  .area-sponsored__inner {
    padding-bottom: var(--s3);
  }

  .card-merit {
    padding: var(--s10) var(--s2) var(--s3);
  }
  .card-merit:before {
    height: calc(100% - 4rem);
  }
  .card-merit__icon {
    width: 6rem;
    height: 6rem;
  }
  .card-merit__title {
    margin-bottom: 0;
    font-size: 1.6rem;
  }

  .sec12 .btn-column {
    padding: 0 var(--s2);
    margin-top: var(--s5);
  }

  .card-link-column {
    margin-top: var(--s4);
    gap: var(--s3);
  }

  .card-link__title {
    padding: var(--s2);
    font-size: 1.6rem;
  }
	
  .bg-white {
	font-size: 1.2rem;
  }

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

      SP end

  */
}
