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

    base settings

*/
:root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
}

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

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

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

li {
  list-style: none;
}

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

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

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

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

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

strong {
  font-weight: 700;
}

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

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

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

    animation

*/
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loops {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes loopsReverse {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes loopsVertical {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 0% -200%;
  }
}
@keyframes loopsVerticalReverse {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 0% 200%;
  }
}
/*  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: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
.l-center--narrow {
  max-width: 100rem;
}

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

    layout stack

*/
.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--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);
  margin-bottom: 2rem;
}

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

    layout grid

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

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

.l-grid-three {
  --minmum: calc((100% - var(--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), 100%), 1fr));
  }
}
/*
---------------------------------------------

    layout sidebar

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

.l-sidebar__side {
  width: 30rem;
}

.l-sidebar__main {
  flex: 1;
}

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

@media screen and (max-width: 1365px) {
  .l-sidebar__side {
    display: none;
  }

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

    layout column

*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}
.l-column__side {
  width: 14rem;
}
.l-column__side02 {
  width: 15.5rem;
}
.l-column__side03 {
  width: 55rem;
}
.l-column__side04 {
  width: 44rem;
}
.l-column__side05 {
  width: 46rem;
}
.l-column__side06 {
  width: 27rem;
}
.l-column__side07 {
  width: 12rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

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

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

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 44rem;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s3) 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: 44rem 1fr;
}
.l-grid-areas--align-center {
  grid-template-rows: auto auto;
}
.l-grid-areas--align-center .l-grid-areas__cell-01 {
  place-self: end start;
}
.l-grid-areas--align-center .l-grid-areas__cell-02 {
  place-self: center;
}
.l-grid-areas--align-center .l-grid-areas__cell-03 {
  place-self: start;
}

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

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

    layout scroll x

*/
.l-scroll-x {
  width: 100%;
  padding-bottom: var(--s1);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: 0.6rem;
}
.l-scroll-x::-webkit-scrollbar {
  height: 0.6rem;
}
.l-scroll-x::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.l-scroll-x::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

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

    header 

*/
.header-area {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.header-area__inner {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.header-area__title {
  display: flex;
  justify-content: flex-end;
}
.header-area__name {
  display: inline;
  font-size: 1.1rem;
  text-align: right;
}
.header-area__name a {
  text-decoration: none;
}
.header-area .sponsored-text {
  display: inline;
  margin-left: var(--s2);
  font-size: 1.1rem;
  text-align: right;
}
.header-area__logo {
  width: 30.6rem;
}
.header-area .pr-text {
  width: 100%;
  text-align: right;
}
.header-area--low {
  color: #fff;
}
.header-area--low a {
  color: #fff;
}

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

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

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

    main-area

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

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

    main visual

*/
.mainvisual {
  margin-bottom: var(--s6);
  padding: 16rem 0 0;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
.mainvisual-inner {
  max-width: 110rem;
  margin: 0 auto;
  padding-bottom: 16.8rem;
  position: relative;
}
.mainvisual-inner:before {
  content: "";
  width: 62.2rem;
  height: 68.3rem;
  background: url(img/mv-pic.png) no-repeat center bottom/contain;
  position: absolute;
  left: 45rem;
  bottom: 0;
  z-index: 1;
}
.mainvisual-title {
  width: fit-content;
  font-size: 6.7rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 0;
}
.mainvisual-title:before {
  content: "";
  width: 100vw;
  height: 11.1rem;
  background: linear-gradient(to left, rgba(247, 186, 57, 0.4) 0%, #ea6109 100rem);
  position: absolute;
  right: -25rem;
  bottom: -7rem;
  z-index: -1;
}
.mainvisual-title span.bg {
  margin: 0 var(--s1);
  padding: 0 var(--s1);
  background: #0b1f43;
  color: #fff;
}
.mainvisual-title span.sm {
  display: block;
  margin-bottom: var(--s3);
  font-size: 4.7rem;
}
.mainvisual-title span.rt {
  display: block;
  padding-right: var(--s3);
  text-align: right;
}
.mainvisual-title span.cl {
  color: #ea6109;
}
.mainvisual-title span.sm2 {
  font-size: 4.7rem;
}
.mainvisual-bg {
  width: 86rem;
  height: 58rem;
  position: absolute;
  left: 38.9rem;
  bottom: 0;
  z-index: -1;
}
.mainvisual-arrow {
  width: 83rem;
  position: absolute;
  left: 38.9rem;
  bottom: 3rem;
  z-index: 3;
}
.mainvisual-arrow span.bg {
  display: block;
  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-arrow img {
  display: block;
}

.mv-lower {
  margin-bottom: 12.4rem;
  padding: 7.5rem 0 12.4rem;
  position: relative;
}
.mv-lower:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: url(img/mv-bg-low.jpg) no-repeat center/cover;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.mv-lower:after {
  content: "";
  width: 62vw;
  height: 15.7rem;
  background: url(img/mv-pic-low.png) no-repeat center/contain;
  position: absolute;
  right: var(--s3);
  bottom: -8rem;
}

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

    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: #f29600;
  border-radius: 1rem;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 0.8em;
}
.main-area ol:not([class]) {
  margin: var(--s5) 0;
  counter-reset: number;
}
.main-area ol:not([class]) li {
  padding: 0 0 0 2em;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.main-area ol:not([class]) li::before {
  content: counter(number);
  width: 1.6em;
  height: 1.6em;
  background: #0b1f43;
  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;
}

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

    btn

*/
.btn-internal {
  width: 38.5rem;
  margin: var(--s5) auto;
  position: relative;
  z-index: 0;
}
.btn-internal:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: solid 1px #005ad8;
  border-radius: 10rem;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.6rem, 0.6rem);
}
.btn-internal a {
  width: 100%;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 2rem var(--s7);
  background: #005ad8 url("img/arrow-01-white-right.svg") no-repeat center right var(--s2)/3rem auto;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transform: translate(0, 0);
  transition: transform 0.4s;
  flex-direction: column;
}

@media (hover: hover) {
  .btn-internal a:hover {
    transform: translate(0.6rem, 0.6rem);
  }
}
.btn-web {
  width: 38.5rem;
  margin: var(--s5) auto;
  position: relative;
  z-index: 0;
}
.btn-web:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: solid 1px #ea6109;
  border-radius: 10rem;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.6rem, 0.6rem);
}
.btn-web a {
  width: 100%;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 2rem var(--s7);
  background: url("img/icon-window.svg") no-repeat center right var(--s2)/3rem auto, linear-gradient(to right, #ea6109 0%, #f7ba39 100%);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transform: translate(0, 0);
  transition: transform 0.4s;
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .btn-web a:hover {
    transform: translate(0.6rem, 0.6rem);
  }
}
.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: 0.2rem var(--s4) var(--s-2) 0;
  background: url("img/arrow-01-blue-right.svg") no-repeat center right/2.4rem auto;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  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 .btn-web,
.btn-column .btn-internal {
  margin: 0;
}

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

    TOC lower

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

.toc-lower__title {
  margin-bottom: var(--s3);
  padding-left: var(--s5);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
}
.toc-lower__title:before {
  content: "";
  width: var(--s4);
  height: 2px;
  background: #ea6109;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.toc-lower__title--relation {
  color: #005ad8;
}

.toc-lower__body {
  padding-bottom: var(--s3);
}

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

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

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

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

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

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

    caption

*/
.caption {
  margin-top: 1.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;
  color: #0b1f43;
}

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

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

	catch

*/
.catch-01 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #005ad8;
}

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

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

	text

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

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

.txt_bold-black {
  font-weight: 700;
}

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

	subgrid card

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

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

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

    float wrap

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

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

	pankuzu

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

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

    footer

*/
.footer-area {
  padding: 9rem 0 0;
  background: #0b1f43;
  position: relative;
}
.footer-area:after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #0b1f43;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-about {
  max-width: 90rem;
  margin: 0 auto var(--s8);
  padding: var(--s4) var(--s6);
  background: #fff;
  display: flex;
  align-items: center;
  gap: var(--s6);
}
.footer-about__logo {
  display: block;
}
.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: #005ad8;
  position: relative;
  z-index: 0;
}
.footer-bottom:after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #005ad8;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.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(--s6) var(--s-2) 0;
  background: url(img/arrow-01-blue-right.svg) no-repeat center right var(--s2)/1.8rem auto;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-menu-title__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 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;
  color: #fff;
}

@media (hover: hover) {
  .footer-menu__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.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;
  color: #fff;
  position: relative;
}
.footer-menu-sub__link::before {
  content: "-";
  position: absolute;
  top: var(--s-2);
  left: 0;
}

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

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

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

  .footer-disclaimer__text a:hover {
    text-decoration: underline;
    color: #fff;
  }
}
.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;
  }
}
@media (hover: hover) {
  .footer-banner:hover {
    opacity: 0.7;
    color: #fff;
  }
}
.fixed-banner {
  display: none;
}

@media screen and (max-width: 1365px) {
  .fixed-banner {
    display: block;
    position: fixed;
    right: 12rem;
    top: 0.6rem;
    width: 29rem;
    z-index: 9;
  }
  .fixed-banner .sidebar-area__btn {
    width: 100%;
    margin: 0;
    padding-top: 0;
    padding-left: var(--s5);
    border-radius: var(--s8);
  }
  .fixed-banner .sidebar-area__btn:before {
    content: none;
  }
  .fixed-banner .sidebar-area__btn span.tag {
    padding-left: var(--s2);
    border-radius: 0 0 var(--s1) var(--s1);
  }
  .fixed-banner .sidebar-area__btn span.tag:before {
    content: none;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 10rem;
  height: 4rem;
  border-radius: var(--s8);
  background: #0b1f43;
  display: block;
  position: fixed;
  right: 1.2rem;
  top: 0.6rem;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: 5.2rem;
  height: 1px;
  display: inline-block;
  background: #f29600;
  position: absolute;
  left: 2.4rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 1.2rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 2rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 2.8rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.8rem) rotate(-24deg);
}
.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(24deg);
}

.gnavi-area {
  width: 40rem;
  height: 100vh;
  padding: 8rem 0 var(--s5);
  background: #f4f4f4;
  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(--s5);
  z-index: 10;
  transition: opacity 0.3s;
}
.page-top img{
  border-radius:10px 0 0 10px;
}

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

    sidebar navi

*/
.sidebar-area {
  width: 30rem;
  padding: var(--s3) 2rem var(--s1);
  border-radius: 0 1rem 1rem 0;
  background: #fff;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translate(0, -50%);
}
.sidebar-area__logo {
  margin-bottom: var(--s4);
  text-align: center;
}
.sidebar-area__logo .txt {
  margin-top: var(--s-2);
  font-size: 1.2rem;
}
.sidebar-area__btn {
  display: block;
  margin: 2rem 0 var(--s1);
  padding: var(--s2) var(--s2) var(--s2) 0;
  border-radius: 0 var(--s8) var(--s8) 0;
  background: #005ad8 url(img/arrow-01-white-right.svg) no-repeat center right var(--s2)/2.4rem auto;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.btn {
  display: block;
  margin: 2rem 0 var(--s1);
  padding: var(--s2) var(--s2) var(--s2) 0;
  border-radius: 0 var(--s8) var(--s8) 0;
  background: #005ad8 url(img/arrow-01-white-right.svg) no-repeat center right var(--s2)/2.4rem auto;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.sidebar-area__btn:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #005ad8;
  position: absolute;
  right: 99.8%;
  top: 0;
}
.sidebar-area__btn span.tag {
  display: block;
  width: fit-content;
  margin-bottom: var(--s-2);
  background: rgba(255,105,0,1);
  padding: var(--s-2) var(--s2) var(--s-2) 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  border-radius: 0 var(--s1)  var(--s1) 0;
  
  
  
  
  @charset "UTF-8";
/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https: //fonts.google.com/specimen/Noto+Sans+JP
*/
  @font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
  font-display: swap;
}
  @font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
  font-display: swap;
}
/*
---------------------------------------------

    base settings

*/
:
  root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
}
  @media screen and (max-width: 1000px) {
  :root {
    font-size: 1vw;
  }
}
  body {
  margin: 0;
  padding: 0;
  color: #0b1f43;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
  h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  clear: both;
}
  ul,
ol,
dl,
p,
img,
form,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  border: 0;
}
  li {
  list-style: none;
}
  input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
  img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
  img.img-height {
  width: auto;
  max-width: inherit;
  height: 100%;
}
  a {
  color: #0b1f43;
  transition: opacity 0.3s ease, color 0.3s ease;
  outline: none;
}
  a:active {
  color: #0b1f43;
  text-decoration: none;
}
  @media (hover: hover) {
  a:hover {
    color: #0b1f43;
  text-decoration: none;
  }
}
  p {
  line-height: 1.7;
}
  p + p {
  margin-top: 1em;
}
  p + .toc-wrap {
  margin-top: 3em;
}
  strong {
  font-weight: 700;
}
  em {
  font-style: italic;
  font-weight: normal;
}
  small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}
  @media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
}
  @media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }
}
/*
---------------------------------------------

    animation

*/
  @keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
  opacity: 1;
  }
}
  @keyframes loops {
  0% {
    background-position: 0% 0;
  }
  100% {
  background-position: -200% 0;
  }
}
  @keyframes loopsReverse {
  0% {
    background-position: 0% 0;
  }
  100% {
  background-position: 200% 0;
  }
}
  @keyframes loopsVertical {
  0% {
    background-position: 0% 0;
  }
  100% {
  background-position: 0% -200%;
  }
}
  @keyframes loopsVerticalReverse {
  0% {
    background-position: 0% 0;
  }
  100% {
  background-position: 0% 200%;
  }
}
/*  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: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
.l-center--narrow {
  max-width: 100rem;
}

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

    layout stack

*/
.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--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);
  margin-bottom: 2rem;
}

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

    layout grid

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

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

.l-grid-three {
  --minmum: calc((100% - var(--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), 100%), 1fr));
  }
}
/*
---------------------------------------------

    layout sidebar

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

.l-sidebar__side {
  width: 30rem;
}

.l-sidebar__main {
  flex: 1;
}

.l-sidebar--low {
  overflow: hidden;
}
  @media screen and (max-width: 1365px) {
  .l-sidebar__side {
    display: none;
  }

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

    layout column

*/
.l-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}
.l-column__side {
  width: 14rem;
}
.l-column__side02 {
  width: 15.5rem;
}
.l-column__side03 {
  width: 55rem;
}
.l-column__side04 {
  width: 44rem;
}
.l-column__side05 {
  width: 46rem;
}
.l-column__side06 {
  width: 27rem;
}
.l-column__side07 {
  width: 12rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

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

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

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas:
    "catch img"
    "text img";
  grid-template-columns: 1fr 44rem;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s3) 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: 44rem 1fr;
}
.l-grid-areas--align-center {
  grid-template-rows: auto auto;
}
.l-grid-areas--align-center .l-grid-areas__cell-01 {
  place-self: end start;
}
.l-grid-areas--align-center .l-grid-areas__cell-02 {
  place-self: center;
}
.l-grid-areas--align-center .l-grid-areas__cell-03 {
  place-self: start;
}

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

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

    layout scroll x

*/
.l-scroll-x {
  width: 100%;
  padding-bottom: var(--s1);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: 0.6rem;
}
.l-scroll-x::
  -webkit-scrollbar {
  height: 0.6rem;
}
.l-scroll-x::
  -webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.l-scroll-x::
  -webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

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

    header 

*/
.header-area {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.header-area__inner {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.header-area__title {
  display: flex;
  justify-content: flex-end;
}
.header-area__name {
  display: inline;
  font-size: 1.1rem;
  text-align: right;
}
.header-area__name
  a {
  text-decoration: none;
}
.header-area .sponsored-text {
  display: inline;
  margin-left: var(--s2);
  font-size: 1.1rem;
  text-align: right;
}
.header-area__logo {
  width: 30.6rem;
}
.header-area .pr-text {
  width: 100%;
  text-align: right;
}
.header-area--low {
  color: #fff;
}
.header-area--low
  a {
  color: #fff;
}
  @media (hover: hover) {
  .header-area__logo a:hover,
.header-area__name a:hover,
.header-navi__item a:hover,
.low-logo a:hover {
    opacity: 0.6;
  }
}
.js-appear {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.js-appear.is-fixed {
  opacity: 1;
  visibility: visible;
}

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

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

    main-area

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

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

    main visual

*/
.mainvisual {
  margin-bottom: var(--s6);
  padding: 16rem 0 0;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
.mainvisual-inner {
  max-width: 110rem;
  margin: 0 auto;
  padding-bottom: 16.8rem;
  position: relative;
}
.mainvisual-inner:
  before {
  content: "";
  width: 62.2rem;
  height: 68.3rem;
  background: url(img/mv-pic.png) no-repeat center bottom/contain;
  position: absolute;
  left: 45rem;
  bottom: 0;
  z-index: 1;
}
.mainvisual-title {
  width: fit-content;
  font-size: 6.7rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 0;
}
.mainvisual-title:
  before {
  content: "";
  width: 100vw;
  height: 11.1rem;
  background: linear-gradient(to left, rgba(247, 186, 57, 0.4) 0%, #ea6109 100rem);
  position: absolute;
  right: -25rem;
  bottom: -7rem;
  z-index: -1;
}
.mainvisual-title
  span.bg {
  margin: 0 var(--s1);
  padding: 0 var(--s1);
  background: #0b1f43;
  color: #fff;
}
.mainvisual-title
  span.sm {
  display: block;
  margin-bottom: var(--s3);
  font-size: 4.7rem;
}
.mainvisual-title
  span.rt {
  display: block;
  padding-right: var(--s3);
  text-align: right;
}
.mainvisual-title
  span.cl {
  color: #ea6109;
}
.mainvisual-title
  span.sm2 {
  font-size: 4.7rem;
}
.mainvisual-bg {
  width: 86rem;
  height: 58rem;
  position: absolute;
  left: 38.9rem;
  bottom: 0;
  z-index: -1;
}
.mainvisual-arrow {
  width: 83rem;
  position: absolute;
  left: 38.9rem;
  bottom: 3rem;
  z-index: 3;
}
.mainvisual-arrow
  span.bg {
  display: block;
  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-arrow
  img {
  display: block;
}

.mv-lower {
  margin-bottom: 12.4rem;
  padding: 7.5rem 0 12.4rem;
  position: relative;
}
.mv-lower:
  before {
  content: "";
  width: 100vw;
  height: 100%;
  background: url(img/mv-bg-low.jpg) no-repeat center/cover;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.mv-lower:
  after {
  content: "";
  width: 62vw;
  height: 15.7rem;
  background: url(img/mv-pic-low.png) no-repeat center/contain;
  position: absolute;
  right: var(--s3);
  bottom: -8rem;
}

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

    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: #f29600;
  border-radius: 1rem;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.main-area .subList
  li + li,
.main-area ul:not([class]) li + li {
  margin-top: 0.8em;
}
.main-area
  ol:not([class]) {
  margin: var(--s5) 0;
  counter-reset: number;
}
.main-area
  ol:not([class]) li {
  padding: 0 0 0 2em;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.main-area
  ol:not([class]) li::before {
  content: counter(number);
  width: 1.6em;
  height: 1.6em;
  background: #0b1f43;
  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;
}

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

    btn

*/
.btn-internal {
  width: 38.5rem;
  margin: var(--s5) auto;
  position: relative;
  z-index: 0;
}
.btn-internal:
  after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: solid 1px #005ad8;
  border-radius: 10rem;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.6rem, 0.6rem);
}
.btn-internal
  a {
  width: 100%;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 2rem var(--s7);
  background: #005ad8 url("img/arrow-01-white-right.svg") no-repeat center right var(--s2)/3rem auto;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transform: translate(0, 0);
  transition: transform 0.4s;
  flex-direction: column;
}
  @media (hover: hover) {
  .btn-internal a:hover {
    transform: translate(0.6rem, 0.6rem);
  }
}
.btn-web {
  width: 38.5rem;
  margin: var(--s5) auto;
  position: relative;
  z-index: 0;
}
.btn-web:
  after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: solid 1px #ea6109;
  border-radius: 10rem;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.6rem, 0.6rem);
}
.btn-web
  a {
  width: 100%;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 2rem var(--s7);
  background: url("img/icon-window.svg") no-repeat center right var(--s2)/3rem auto, linear-gradient(to right, #ea6109 0%, #f7ba39 100%);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transform: translate(0, 0);
  transition: transform 0.4s;
  position: relative;
  z-index: 1;
}
  @media (hover: hover) {
  .btn-web a:hover {
    transform: translate(0.6rem, 0.6rem);
  }
}
.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link
  a {
  margin: 0;
  padding: 0.2rem var(--s4) var(--s-2) 0;
  background: url("img/arrow-01-blue-right.svg") no-repeat center right/2.4rem auto;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  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 .btn-web,
.btn-column .btn-internal {
  margin: 0;
}

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

    TOC lower

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

.toc-lower__title {
  margin-bottom: var(--s3);
  padding-left: var(--s5);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
}
.toc-lower__title:
  before {
  content: "";
  width: var(--s4);
  height: 2px;
  background: #ea6109;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.toc-lower__title--relation {
  color: #005ad8;
}

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

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

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

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

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

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

    caption

*/
.caption {
  margin-top: 1.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;
  color: #0b1f43;
}

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

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

 catch

*/
.catch-01 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #005ad8;
}

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

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

 text

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

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

.txt_bold-black {
  font-weight: 700;
}

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

 subgrid card

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

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

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

    float wrap

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

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

 pankuzu

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

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

    footer

*/
.footer-area {
  padding: 9rem 0 0;
  background: #0b1f43;
  position: relative;
}
.footer-area:
  after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #0b1f43;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-about {
  max-width: 90rem;
  margin: 0 auto var(--s8);
  padding: var(--s4) var(--s6);
  background: #fff;
  display: flex;
  align-items: center;
  gap: var(--s6);
}
.footer-about__logo {
  display: block;
}
.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: #005ad8;
  position: relative;
  z-index: 0;
}
.footer-bottom:
  after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #005ad8;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.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(--s6) var(--s-2) 0;
  background: url(img/arrow-01-blue-right.svg) no-repeat center right var(--s2)/1.8rem auto;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
  @media (hover: hover) {
  .footer-menu-title__link:hover {
    opacity: 0.6;
  color: #fff;
  }
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 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;
  color: #fff;
}
  @media (hover: hover) {
  .footer-menu__link:hover {
    opacity: 0.6;
  color: #fff;
  }
}
.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;
  color: #fff;
  position: relative;
}
.footer-menu-sub__link::
  before {
  content: "-";
  position: absolute;
  top: var(--s-2);
  left: 0;
}
  @media (hover: hover) {
  .footer-menu-sub__link:hover {
    opacity: 0.6;
  color: #fff;
  }
}
.footer-disclaimer {
  width: 70rem;
  margin: var(--s8) auto var(--s6);
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}
.footer-disclaimer__text
  a {
  color: #fff;
}

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

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

  .footer-disclaimer__text a:
  hover {
    text-decoration: underline;
  color: #fff;
  }
}
.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;
  }
}
  @media (hover: hover) {
  .footer-banner:hover {
    opacity: 0.7;
  color: #fff;
  }
}
.fixed-banner {
  display: none;
}
  @media screen and (max-width: 1365px) {
  .fixed-banner {
    display: block;
  position: fixed;
  right: 12rem;
  top: 0.6rem;
  width: 29rem;
  z-index: 9;
  }
  .fixed-banner .sidebar-area__btn {
  width: 100%;
  margin: 0;
  padding-top: 0;
  padding-left: var(--s5);
  border-radius: var(--s8);
  }
  .fixed-banner .sidebar-area__btn:
  before {
    content: none;
  }
  .fixed-banner .sidebar-area__btn span.tag {
  padding-left: var(--s2);
  border-radius: 0 0 var(--s1) var(--s1);
  }
  .fixed-banner .sidebar-area__btn span.tag:
  before {
    content: none;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 10rem;
  height: 4rem;
  border-radius: var(--s8);
  background: #0b1f43;
  display: block;
  position: fixed;
  right: 1.2rem;
  top: 0.6rem;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn
  span {
  width: 5.2rem;
  height: 1px;
  display: inline-block;
  background: #f29600;
  position: absolute;
  left: 2.4rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn
  span:nth-of-type(1) {
  top: 1.2rem;
}
.gnavi-btn
  span:nth-of-type(2) {
  top: 2rem;
}
.gnavi-btn
  span:nth-of-type(3) {
  top: 2.8rem;
}
.gnavi-btn.is-active
  span:nth-of-type(1) {
  transform: translateY(0.8rem) rotate(-24deg);
}
.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(24deg);
}

.gnavi-area {
  width: 40rem;
  height: 100vh;
  padding: 8rem 0 var(--s5);
  background: #f4f4f4;
  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(--s5);
  z-index: 10;
  transition: opacity 0.3s;
}
.page-top
  img{
  border-radius:10px 0 0 10px;
}
  @media (hover: hover) {
  .page-top__link:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    sidebar navi

*/
.sidebar-area {
  width: 30rem;
  padding: var(--s3) 2rem var(--s1);
  border-radius: 0 1rem 1rem 0;
  background: #fff;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translate(0, -50%);
}
.sidebar-area__logo {
  margin-bottom: var(--s4);
  text-align: center;
}
.sidebar-area__logo .txt {
  margin-top: var(--s-2);
  font-size: 1.2rem;
}
.sidebar-area__btn {
  display: block;
  margin: 2rem 0 var(--s1);
  padding: var(--s2) var(--s2) var(--s2) 0;
  border-radius: 0 var(--s8) var(--s8) 0;
  background: #005ad8 url(img/arrow-01-white-right.svg) no-repeat center right var(--s2)/2.4rem auto;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.btn {
  display: block;
  margin: 2rem 0 var(--s1);
  padding: var(--s2) var(--s2) var(--s2) 0;
  border-radius: 0 var(--s8) var(--s8) 0;
  background: #005ad8 url(img/arrow-01-white-right.svg) no-repeat center right var(--s2)/2.4rem auto;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.sidebar-area__btn:
  before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #005ad8;
  position: absolute;
  right: 99.8%;
  top: 0;
}
.sidebar-area__btn
  span.tag {
  display: block;
  width: fit-content;
  margin-bottom: var(--s-2);
  background: rgba(255,105,0,1);
  padding: var(--s-2) var(--s2) var(--s-2) 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
}

.btn-internal
  span.tag {
  display: block;
  width: fit-content;
  background: rgba(255,105,0,1);
  padding: var(--s-2) var(--s1) var(--s-2);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  margin: 0 0 1rem;
  border-radius: var(--s1) var(--s1);
}
.sidebar-area__btn
  span.tag:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: rgba(255,105,0,1);
  position: absolute;
  right: 99%;
  top: 0;
}
.sidebar-area__list {
  padding-right: var(--s2);
}
.sidebar-area__list__item
  a {
  display: block;
  padding: var(--s2) var(--s3) var(--s2) 0;
  background: url(img/arrow-01-orange-right.svg) no-repeat center right/2.4rem auto;
  border-bottom: solid 1px #d9d9d9;
  text-decoration: none;
  font-weight: 700;
}
.sidebar-area__list__item:
  last-child a {
  border-bottom: none;
}
  @media (hover: hover) {
  .sidebar-area__btn:hover {
    opacity: 0.7;
  color: #fff;
  }

  .sidebar-area__list__item a:
  hover,
.sidebar-area__logo a:hover {
    opacity: 0.7;
  }
}
/*
---------------------------------------------

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  line-height: 1.5;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::
  before {
  content: "";
  width: 2.7rem;
  height: 0.3rem;
  background: #0b1f43;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::
  after {
  content: "";
  width: 0.3rem;
  height: 2.7rem;
  background: #0b1f43;
  position: absolute;
  top: 50%;
  right: 3.6rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.toggle-btn.is-open::
  after {
  transform: translate(0, -50%) rotate(270deg);
}

.toggle-content {
  display: none;
}

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

    more

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

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

    グラデーション  more-content

*/
.more__content {
  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 -8rem;
  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: 1.6rem;
  height: 0.2rem;
  background: #0b1f43;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
}
.more__btn::
  after {
  content: "";
  width: 0.2rem;
  height: 1.6rem;
  background: #0b1f43;
  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: fit-content;
  padding: 0.4rem var(--s1);
  background: #fff;
  border: solid 1px #e0e0e0;
  border-radius: var(--s-2);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ea6109;
}

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

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

    lower-parts

*/
.icon-title {
  margin: var(--s5) 0 var(--s5) var(--s2);
  padding: var(--s2) var(--s3) var(--s2) var(--s12);
  background: #fef8eb;
  border-radius: var(--s1);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.icon-title
  span {
  width: fit-content;
  display: block;
  padding: var(--s-2) var(--s2);
  background: #ea6109;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: calc(var(--s2) * -1);
  top: 50%;
  transform: translateY(-50%);
}

.card-voice {
  padding: var(--s4) var(--s6);
  background: #f4f4f4;
  border-radius: var(--s1);
}
.card-voice-wrap {
  margin: var(--s4) 0 var(--s8);
}
.card-voice-wrap.l-column--row-reverse .card-voice__pic:
  before {
  right: auto;
  left: 100%;
}
.card-voice__title {
  margin: 0 0 var(--s2) 0;
  padding: var(--s2) var(--s3);
  border-radius: var(--s1);
  background: #ea6109;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.card-voice__pic {
  position: relative;
}
.card-voice__pic
  img{
          border-radius: 50%;
  border: solid 1px #ea6109;
}
.card-voice__pic:
  before {
  content: "";
  width: 6.4rem;
  height: 1px;
  background: #ea6109;
  position: absolute;
  right: 100%;
  top: 6rem;
}

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

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

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

    titles

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

.main-area
  h1,
.main-area h2,
.main-area h3,
.main-area h4,
.main-area h5,
.main-area h6 {
  word-wrap: break-word;
}
.main-area--low
  h1,
.main-area--low h2,
.main-area--low h3,
.main-area--low h4,
.main-area--low h5,
.main-area--low h6 {
  font-weight: 700;
}
.main-area--low
  h1 a,
.main-area--low h2 a,
.main-area--low h3 a,
.main-area--low h4 a,
.main-area--low h5 a,
.main-area--low h6 a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
}
  @media (hover: hover) {
  .main-area h2:not([class]) a:hover,
.main-area h3:not([class]) a:hover,
.main-area h4:not([class]) a:hover,
.main-area h5:not([class]) a:hover,
.main-area h6:not([class]) a:hover {
    opacity: 0.6;
  }
}
  h1:not([class]) {
  margin: 0;
  max-width: 95rem;
  min-height: 14.4rem;
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 0;
}
  h1:not([class]):before {
  content: "";
  width: 6.4rem;
  height: 1px;
  background: #fff;
  position: absolute;
  left: -8.2rem;
  top: 0.7em;
}

.main-area--low
  h2:not([class]) {
  margin: var(--s7) auto var(--s3);
  padding: var(--s2) var(--s4) var(--s2);
  border-radius: var(--s1) var(--s1) 0 0;
  border-bottom: solid 0.6rem #f7ba39;
  background: linear-gradient(to right, #005ad8 70%, #0b1f43 100%);
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}
.main-area--low
  h2:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 2.4rem auto;
  color: #fff;
}
.main-area--low
  h3:not([class]) {
  margin: var(--s6) auto var(--s3);
  padding: 1rem 0 2.2rem 2.2rem;
  border-bottom: solid 1px #b4b5b6;
  border-left: solid 0.3rem #0b1f43;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.main-area--low
  h3:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.4rem auto;
  color: linear-gradient(to right, #ea6109 0%, #f7ba39 100%);
}
.main-area--low
  h4:not([class]) {
  margin: var(--s5) auto var(--s2);
  padding: var(--s-2) 0 var(--s-2) 3rem;
  font-size: 2rem;
  font-weight: 700;
  color: #005ad8;
  position: relative;
}
.main-area--low
  h4:not([class]):before {
  content: "";
  width: 0.3rem;
  height: 100%;
  border-radius: 0.2rem;
  background: #005ad8;
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low
  h4:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.4rem auto;
  color: #005ad8;
}
.main-area--low
  h5:not([class]),
.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding-left: var(--s4);
  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: 2rem;
  height: 1px;
  background: #0b1f43;
  position: absolute;
  left: 0;
  top: 0.7em;
}
.main-area--low
  h5:not([class]) a,
.main-area--low h6:not([class]) a {
  background: url(img/arrow-01-black-right.svg) no-repeat right center;
  background-size: 2rem auto;
}

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

    TOP common

*/
.common-title {
  width: fit-content;
  font-size: 4rem;
  font-weight: 700;
  position: relative;
}
.common-title--white {
  color: #fff;
}
.common-title--ct {
  margin: 0 auto var(--s3);
  text-align: center;
}
.common-title
  span.sm {
  display: inline-block;
  font-size: 2.4rem;
}
.common-title
  span.cl {
  color: #f29600;
}
.common-title
  span.st {
  background: linear-gradient(to bottom, transparent 65%, rgba(0, 90, 216, 0.5) 65%);
}
.common-title
  a {
  padding-right: var(--s6);
  text-decoration: none;
  background: url("img/arrow-01-white-right.svg") no-repeat bottom right/var(--s5) var(--s6);
}
  @media (hover: hover) {
  .common-title a:hover {
    opacity: 0.6;
  }
}
.common-lead {
  max-width: 67rem;
}
.common-lead--ct {
  margin: 0 auto;
  text-align: center;
}
.common-lead--right {
  margin-right: 0;
  margin-left: auto;
}
.common-lead--white {
  color: #fff;
}

.common-ttlblock {
  margin-bottom: var(--s6);
  align-items: flex-end;
}
.common-ttlblock--align-start {
  align-items: flex-start;
}

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

    TOP section

*/
.page-link {
  margin-bottom: var(--s6);
  padding: var(--s4) 0;
  border-top: solid 1px #a9a9a9;
  border-bottom: solid 1px #a9a9a9;
  gap: var(--s3);
  position: relative;
}
.page-link:
  before {
  content: "INDEX";
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #ea6109;
  position: absolute;
  left: var(--s2);
  top: var(--s4);
  transform: rotate(90deg);
  transform-origin: left top;
}
.page-link__title {
  padding-left: 3rem;
  font-size: 2rem;
  font-weight: 700;
}
.page-link__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem var(--s1);
  counter-reset: number;
}
.page-link__item {
  width: calc((100% - var(--s1)) / 2);
  counter-increment: number;
  position: relative;
}
.page-link__item
  a {
  padding: 0 2.8rem;
  background: url(img/arrow-01-blue-down.svg) no-repeat center right/auto 2rem;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 700;
}
.page-link__item
  a:before {
  content: counter(number, decimal-leading-zero) ". ";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #005ad8;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0.1em;
  left: 0;
}

.sec01-main {
  padding-top: 10rem;
  background: url(img/sec01-pic-1.png) no-repeat right top/37.7rem auto;
}
.sec01-main__en {
  margin-bottom: var(--s6);
  width: 41rem;
}
.sec01-main__text
  p {
  font-size: 2rem;
  font-weight: 700;
}
.sec01-main__text
  p + p {
  margin-top: var(--s4);
}

.bg-arrow {
  background: url(img/sec01-bg.png) no-repeat center/93rem auto;
  background-position: calc(50% + 15rem) center;
  background-attachment: fixed;
}
  @media screen and (max-width: 1365px) {
  .bg-arrow {
    background-position: center;
  }
}
.box-sponsored {
  margin: var(--s10) 0;
}
.box-sponsored__title {
  margin-bottom: var(--s6);
  padding: var(--s2) 0;
  position: relative;
  z-index: 0;
}
.box-sponsored__title:
  before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #ea6109;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.box-sponsored__title:
  after {
  content: "";
  width: 3.2rem;
  height: 100%;
  background: url(img/title-arrow-orange.png) no-repeat left center/100% 100%;
  position: absolute;
  left: 99.98%;
  top: 0;
}
.box-sponsored__en {
  margin-bottom: var(--s1);
  width: 59.6rem;
}
.box-sponsored__name {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
}
.box-sponsored .title-tag {
  margin: var(--s1) 0;
  padding-left: 4.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.box-sponsored .title-tag:
  before {
  content: "";
  width: 3.2rem;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.box-sponsored__body {
  min-height: 22rem;
  padding-left: 23rem;
  background: url(img/icon-deco.png) no-repeat left top/18.8rem auto;
}
.box-sponsored__subtitle {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  font-weight: 700;
}
  @media screen and (max-width: 1365px) {
  .box-sponsored__title:after {
    width: 3rem;
  }
}
.sec-fact {
  padding: 0 0 14rem;
  position: relative;
  z-index: 0;
}
.sec-fact .l-center {
  position: relative;
}
.sec-fact-en {
  width: 52.8rem;
  height: 9.2rem;
  position: absolute;
  left: var(--s3);
  top: 21rem;
}
.sec-fact:
  before {
  content: "";
  width: 100vw;
  height: calc(100% - 10rem);
  background: #0b1f43 url(img/bg-circle-navy.png) repeat-y center top -20rem/100% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sec-fact__tag {
  margin-bottom: var(--s4);
  font-family: "Outfit", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #005ad8;
}
.sec-fact__subtitle {
  font-size: 2rem;
  font-weight: 700;
}
.sec-fact__catch {
  margin-bottom: var(--s3);
  font-size: 2.6rem;
  font-weight: 700;
}
.sec-fact__pic {
  max-width: 58rem;
  margin: 0 0 var(--s8) auto;
}
.sec-fact__pic
  img {
  border-radius: var(--s1);
}
.sec-fact__pic--02 {
  margin-bottom: var(--s6);
}
.sec-fact__inner {
  padding: var(--s5);
  background: #fff;
  border-radius: var(--s1);
}
.sec-fact__inner + .sec-fact__inner {
  margin-top: var(--s5);
}
.sec-fact__inner
  ul:not([class]) {
  margin: var(--s2) 0;
}
.sec-fact__inner .l-grid-three {
  margin: var(--s3) 0;
}

.card-fact1 {
  padding-top: var(--s2);
  border-top: solid 1px #ea6109;
}
.card-fact1__tag {
  margin-bottom: var(--s2);
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #ea6109;
}
.card-fact1__title {
  margin-bottom: var(--s2);
  font-size: 1.6rem;
  font-weight: 700;
}

.fact2-graphic__item {
  border: solid 1px #c7c7c7;
}
.fact2-graphic .fact-table-pic {
  padding: 0.6rem;
  padding-bottom: var(--s6);
  background: #0b1f43 url(img/table-pic-1.png) no-repeat center bottom 1.8rem/16.8rem auto;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.fact2-graphic .fact-table-pic
  span.sm {
  font-size: 1.7rem;
}
.fact2-graphic .fact-table-pic--02 {
  background-image: url(img/table-pic-2.png);
  background-color: #005ad8;
}
.fact2-graphic .fact-table-pic .cell {
  padding: var(--s2);
}
.fact2-graphic .cell {
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fact2-graphic .cell:
  after {
  content: "";
  width: calc(100% - 2rem * 2);
  height: 1px;
  background: #d9d9d9;
  position: absolute;
  left: 2rem;
  bottom: 0;
}
.fact2-graphic .cell:
  last-child:after {
  content: none;
}
.fact2-graphic .label {
  width: 4.4rem;
  padding: 0.4rem;
  background: #ea6109;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  right: -3.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.fact2-graphic .txt-ct {
  text-align: center;
}

.sec-sponsored {
  padding: 15rem 0 10rem;
  position: relative;
  z-index: 0;
}
.sec-sponsored:
  before {
  content: "";
  width: 100vw;
  height: 100%;
  background: url(img/bg-sec04.jpg) no-repeat center/cover;
  background-attachment: fixed;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec-sponsored .l-center {
  position: relative;
}
.sec-sponsored .l-center:
  before {
  content: "";
  width: 93.6rem;
  height: 27.7rem;
  background: url(img/arrows-deco.png) no-repeat center/contain;
  position: absolute;
  left: -24rem;
  top: -17rem;
}
.sec-sponsored .l-center:
  after {
  content: "";
  width: 4.5rem;
  height: 7.6rem;
  background: url(img/arrows-section.png) no-repeat center/contain;
  position: absolute;
  left: var(--s8);
  bottom: -14rem;
  z-index: 1;
}
.sec-sponsored__ttlblock {
  padding: var(--s6) 0 var(--s4);
  position: relative;
}
.sec-sponsored__ttlblock:
  before {
  content: "";
  width: 100vw;
  height: 25rem;
  background: #ea6109;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec-sponsored__ttlblock:
  after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.5rem 0 12.5rem 3.2rem;
  border-color: transparent transparent transparent #ea6109;
  position: absolute;
  left: 100%;
  top: 0;
}
.sec-sponsored__tag {
  width: fit-content;
  padding-left: var(--s5);
  margin: 0 auto var(--s1);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.sec-sponsored__tag:
  before {
  content: "";
  width: 3.2rem;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec-sponsored__title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
}
.sec-sponsored__inner {
  padding: var(--s5);
  padding-bottom: 0;
  border-radius: var(--s1);
  background: #fff;
}
.sec-sponsored__inner .inner-title {
  margin-bottom: var(--s3);
  font-size: 2rem;
  font-weight: 700;
}
.sec-sponsored .box-sponsored__body {
  max-width: 86rem;
  margin: 2rem auto;
}
.sec-sponsored__subtitle {
  margin: var(--s6) 0 var(--s4);
  padding: var(--s4) 0 0;
  border-top: solid 1px rgba(11, 31, 67, 0.5);
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}
.sec-sponsored__subtitle:
  before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 22.5px 0 22.5px;
  border-color: #f29600 transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.sec-sponsored__subtitle
  span.sm {
  font-size: 2rem;
}
.sec-sponsored__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}
  @media screen and (max-width: 1365px) {
  .sec-sponsored__ttlblock:after {
    border-width: 12.5rem 0 12.5rem 3rem;
  }
}
.loop-animation {
  width: 100vw;
  height: 12rem;
  margin-bottom: var(--s2);
  background: url(img/loop-text.png) repeat-x left top/auto 10rem;
  animation: loopsReverse 50s linear infinite;
  position: absolute;
  right: 0;
  top: var(--s2);
}

.card-reason {
  width: calc((100% - (var(--s3)) * 2) / 3);
  padding: var(--s2) var(--s4) var(--s4);
  background: rgba(247, 186, 57, 0.1);
  border-radius: var(--s1);
}
.card-reason:nth-of-type(1), .card-reason:nth-of-type(2) {
  width: calc((100% - (var(--s3))) / 2);
}
.card-reason__tag {
  margin-bottom: var(--s2);
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #f29600;
}
.card-reason__title {
  margin-bottom: var(--s2);
  min-height: 6rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.card-reason__pic {
  margin-bottom: var(--s2);
}
.card-reason__pic
  img {
  border-radius: var(--s1);
}

.real-voice {
  margin: var(--s8) 0;
  padding: var(--s7) 0 var(--s4);
  position: relative;
  z-index: 0;
}
.real-voice:
  last-child {
  margin-bottom: 0;
}
.real-voice:
  before {
  content: "";
  width: calc(100% + var(--s5) * 2);
  height: calc(100% - var(--s4));
  background: #f4f4f4;
  border-radius: var(--s1);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.real-voice--point {
  padding: var(--s7) var(--s5) var(--s4);
}
.real-voice--point:
  before {
  width: 100%;
}
.real-voice--point .real-voice__pic {
  right: var(--s5);
}
.real-voice__tag {
  margin-bottom: var(--s3);
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ea6109;
  line-height: 1;
}
.real-voice__title {
  margin-bottom: var(--s3);
  padding: var(--s2) 36rem var(--s2) var(--s3);
  border-radius: var(--s1);
  background: #ea6109;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.real-voice__pic {
  max-width: 34rem;
  position: absolute;
  right: 0;
  top: 0;
}
.real-voice__pic
  img {
  border-radius: var(--s1);
  border: solid 1px #ea6109;
}
.real-voice__pic .l-cluster {
  margin-top: var(--s2);
  justify-content: center;
}
.real-voice__text {
  min-height: 10rem;
  max-width: 54rem;
}
.real-voice .btn-internal,
.real-voice .btn-web {
  margin-top: var(--s3);
  margin-bottom: var(--s2);
}

.sec-summary {
  padding: var(--s8) 0;
  position: relative;
  color: #fff;
}
.sec-summary:
  before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #0b1f43 url(img/bg-circle-navy.png) repeat-y center top -20rem/100% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sec-summary .l-center {
  position: relative;
}
.sec-summary .l-center:
  after {
  content: "";
  width: 6.5rem;
  height: 43.8rem;
  background: url(img/txt-summary-vt.png) no-repeat center/contain;
  position: absolute;
  left: -1rem;
  top: 0;
}
.sec-summary__body {
  max-width: 52rem;
  padding: 0 0 0 var(--s5);
}
.sec-summary__catch {
  margin-bottom: var(--s5);
  font-size: 3rem;
  font-weight: 700;
}
.sec-summary__catch
  span.sm {
  display: block;
  margin-bottom: var(--s4);
  font-size: 2.2rem;
}
.sec-summary__catch
  span.cl {
  color: #f7ba39;
}
.sec-summary .btn-internal,
.sec-summary .btn-web {
  margin-bottom: 0;
}
.sec-summary .loop-wrap {
  width: 44rem;
  height: calc(100% + var(--s8) * 2);
  position: absolute;
  right: var(--s3);
  top: calc(var(--s8) * -1);
  overflow: hidden;
}
.sec-summary .loop-photo1 {
  width: 21.3rem;
  height: 153.6rem;
  background: url(img/loop-right.png) repeat-y left top/100% auto;
  animation: loopsVertical 25s linear infinite;
  position: absolute;
  right: 0;
  top: 0;
}
.sec-summary .loop-photo2 {
  width: 21.3rem;
  height: 153.6rem;
  background: url(img/loop-left.png) repeat-y left top/100% auto;
  animation: loopsVerticalReverse 25s linear infinite;
  position: absolute;
  right: 22.8rem;
  top: 0;
}

.sec-work {
  padding: 20rem 0 10rem;
}
.sec-work .l-center {
  position: relative;
}
.sec-work-en {
  width: 27.4rem;
  height: 9.2rem;
  position: absolute;
  left: var(--s3);
  top: -10rem;
}
.sec-work__subtitle {
  margin-bottom: var(--s3);
  padding-left: 4.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.sec-work__subtitle:
  before {
  content: "";
  width: var(--s4);
  height: 1px;
  background: #ea6109;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slide-area__inner {
  margin-bottom: var(--s8);
  position: relative;
}
.slide-area__inner:
  before {
  content: "";
  width: calc(100% + (100vw - 100% - 30rem) / 2 + var(--s2));
  height: 12.4rem;
  background: linear-gradient(to right, #f7ba39 0%, #ea6109 100%);
  border-radius: var(--s1) 0 0 var(--s1);
  position: absolute;
  left: calc(var(--s2) * -1);
  bottom: 2.5rem;
  z-index: -1;
}
.slide-area__inner--buy:
  before {
  background: linear-gradient(to right, #005ad8 0%, #0b1f43 100%);
}
  @media screen and (max-width: 1365px) {
  .slide-area__inner:before {
    width: calc(100% + (100vw - 100%) / 2 + var(--s2));
  }
}
.flow-slider,
.buy-slider {
  padding: var(--s2) 0 0 var(--s2);
  width: calc(100% + (100vw - 100% - 30rem) / 2);
  overflow: hidden;
}
.flow-slider__arrows,
.buy-slider__arrows {
  margin-top: 2rem;
  margin-left: 0;
}
.flow-slider .splide__track,
.buy-slider .splide__track {
  overflow: visible;
}
  @media screen and (max-width: 1365px) {
  .flow-slider,
.buy-slider {
    width: calc(100% + (100vw - 100%) / 2);
  }

  .slide-area__inner:
  before {
    width: calc(100% + (100vw - 100%) / 2 + var(--s2));
  }
}
.splide__arrows {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--s2);
}

.splide__arrow {
  width: 5rem;
  height: 5rem;
  background: no-repeat center/contain;
  cursor: pointer;
  position: static;
  top: 0;
  transition: opacity 0.3s;
}
.splide__arrow--prev {
  background-image: url("img/arrow-prev.svg");
}
.splide__arrow--next {
  background-image: url("img/arrow-next.svg");
}
.splide__arrow--buy.splide__arrow--prev {
  background-image: url("img/arrow-prev-blue.svg");
}
.splide__arrow--buy.splide__arrow--next {
  background-image: url("img/arrow-next-blue.svg");
}
  @media (hover: hover) {
  .splide__arrow:hover {
    opacity: 0.6;
  }
}
.card-flip {
  display: flex;
  position: relative;
  border-radius: var(--s1);
  transform: translate(0, 0);
  transition: transform 0.4s;
}
.card-flip:
  before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 0 17px 12px;
  border-color: transparent transparent transparent #f29600;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.card-flip.last-card::
  before {
  content: none;
}
.card-flip__btn {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.card-flip__num {
  margin-bottom: var(--s1);
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ea6109;
  text-align: center;
}
.card-flip__num--blue {
  color: #005ad8;
}
.card-flip__title {
  margin-bottom: var(--s1);
  min-height: 6rem;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-flip__pic {
  width: 11.6rem;
  margin: 0 auto;
}
.card-flip__more {
  padding-right: var(--s3);
  text-align: right;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.card-flip__more:
  before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url(img/icon-plus.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-flip__back {
  padding-right: var(--s3);
  text-align: right;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.card-flip__back:
  before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url(img/arrow-01-black-left.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-flip__content {
  width: 24rem;
  padding: var(--s3);
  padding-bottom: var(--s2);
  border-radius: var(--s1);
  background: #fff;
  box-shadow: 0 0.4rem 1.6rem rgba(11, 31, 67, 0.1);
  position: relative;
  opacity: 1;
  transform: scale(1, 1);
  transition: opacity 0.4s, box-shadow 0.4s, transform 0.4s;
  flex-basis: 24rem;
}
.card-flip.is-invert .card-flip__content {
  opacity: 0;
  transform: scale(-1, 1);
}
.card-flip__content02 {
  width: 24rem;
  padding: var(--s3);
  padding-bottom: var(--s2);
  border-radius: var(--s1);
  background: #fff9ed;
  box-shadow: 0 0.4rem 1.6rem rgba(11, 31, 67, 0.1);
  margin-left: -24rem;
  opacity: 0;
  transform: scale(-1, 1);
  transition: opacity 0.4s, box-shadow 0.4s, transform 0.4s;
  flex-basis: 24rem;
}
.card-flip.is-invert .card-flip__content02 {
  opacity: 1;
  transform: scale(1, 1);
}
  button.card-flip__btn {
  width: 24rem;
  height: 100%;
}

.buy-slider .card-flip:
  before {
  border-color: transparent transparent transparent #005ad8;
}

.card-flip.is-invert .card-flip__content02 {
  opacity: 1;
  transform: scale(1, 1);
}
  @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: 0 0 0.6rem rgba(11, 31, 67, 0.1);
  }
}
.point-title {
  margin: var(--s10) 0 -4rem;
  font-size: 2.6rem;
  font-weight: 700;
  position: relative;
}
.point-title:
  before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ea6109;
  position: absolute;
  left: 0;
  top: 1.2rem;
  z-index: -1;
}
.point-title:
  after {
  content: "";
  width: 28.8rem;
  height: 9rem;
  background: url(img/txt-point.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: var(--s3);
  z-index: 1;
}
.point-title
  span.sm {
  width: fit-content;
  display: block;
  padding-right: var(--s2);
  font-size: 2rem;
  background: #fff;
}
.point-title
  span.main {
  display: inline-block;
  max-width: 63rem;
}

.sec-interview {
  padding: var(--s12) 0;
  position: relative;
  z-index: 0;
}
.sec-interview:
  before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #ea6109 url(img/bg-circle-orange.png) repeat-y center top -20rem/100% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sec-interview .l-center {
  position: relative;
}
.sec-interview .l-center:
  before {
  content: "";
  width: 68.6rem;
  height: 12rem;
  background: url(img/txt-interview.png) no-repeat center/contain;
  position: absolute;
  right: -1rem;
  top: -8rem;
}
.sec-interview__inner {
  padding: 11rem var(--s6) var(--s3);
  position: relative;
  z-index: 0;
}
.sec-interview__inner:
  before {
  content: "";
  width: 100%;
  height: calc(100% - 6.2rem);
  background: #fff;
  border-radius: var(--s1);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sec-interview__pic {
  width: 33.5rem;
  position: absolute;
  right: var(--s6);
  top: 0;
}
.sec-interview__pic
  img {
  border-radius: var(--s1);
  border: solid 1px #ea6109;
}
.sec-interview__title {
  max-width: 53rem;
  margin: var(--s3) 0;
  font-size: 2.6rem;
  font-weight: 700;
}
.sec-interview__text {
  max-width: 53rem;
}
.sec-interview__feature {
  margin: var(--s7) 0;
  position: relative;
  z-index: 0;
}
.sec-interview__feature:
  before {
  content: "";
  width: calc(100% + var(--s6));
  height: 100%;
  background: rgba(247, 186, 57, 0.2) url(img/bg-comma.png) no-repeat right 5rem top 2.5rem/12.3rem auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec-interview .common-title
  a{
color: #fff;
}

.feature-body {
  padding: var(--s4);
}

.feature-pic
  img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.feature-lead {
  margin-bottom: var(--s2);
  padding-left: 4.2rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ea6109;
}

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

.sec-benefits {
  padding: 9.6rem 0 2rem;
  position: relative;
  z-index: 0;
}
.sec-benefits .l-center {
  position: relative;
}
.sec-benefits .l-center:
  before {
  content: "";
  width: 40rem;
  height: 9.2rem;
  background: url(img/txt-benefits.png) no-repeat center/contain;
  position: absolute;
  left: var(--s3);
  top: 21rem;
}

.card-benefit {
  padding-left: var(--s4);
  border-left: solid 1px #f7ba39;
}
.card-benefit__title {
  margin-bottom: var(--s2);
  padding-left: 10rem;
  min-height: 7rem;
  background: url(img/icon-benefit-1.png) no-repeat left center/auto 7rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.card-benefit__title--02 {
  background-image: url(img/icon-benefit-2.png);
}
.card-benefit__title--03 {
  background-image: url(img/icon-benefit-3.png);
}
.card-benefit__title--04 {
  background-image: url(img/icon-benefit-4.png);
}
.card-benefit__title--05 {
  background-image: url(img/icon-benefit-5.png);
}

.box-summary {
  margin: 10rem 0;
  padding: 9.2rem var(--s5) var(--s5) var(--s5);
  position: relative;
}
.box-summary:
  before {
  content: "";
  width: calc(100% + (100vw - 100% - 30rem) / 2);
  height: 100%;
  background: linear-gradient(to right, #0b1f43 0%, #1c4ea9);
  border-radius: var(--s1) 0 0 var(--s1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-summary:
  after {
  content: "";
  width: 30rem;
  height: 6rem;
  background: url(img/txt-summary.png) no-repeat center/contain;
  position: absolute;
  left: var(--s5);
  top: 3rem;
}
.box-summary__inner {
  padding: var(--s5) var(--s5) var(--s6);
  position: relative;
  z-index: 0;
}
.box-summary__inner:
  before {
  content: "";
  width: calc(100% + (100vw - 100% - 30rem) / 2);
  height: 100%;
  background: #fff;
  border-radius: var(--s1) 0 0 var(--s1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-summary__title {
  margin-bottom: var(--s3);
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}
.box-summary__title:
  before {
  content: "";
  width: 6.2rem;
  height: 0.6rem;
  background: #ea6109;
  position: absolute;
  left: 0;
  top: -2.5rem;
}
.box-summary__title
  span.cl {
  color: #ea6109;
}
.box-summary .btn-column {
  margin-bottom: 0;
}
  @media screen and (max-width: 1365px) {
  .box-summary:before {
    width: calc(100% + (100vw - 100%) / 2);
  }

  .box-summary__inner:
  before {
    width: calc(100% + (100vw - 100%) / 2);
  }
}
.sec-qa {
  padding: 0 0 14rem;
  position: relative;
  z-index: 0;
}
.sec-qa .l-center {
  position: relative;
}
.sec-qa:
  before {
  content: "";
  width: 100vw;
  height: calc(100% - 10rem);
  background: #f4f4f4;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sec-qa-en {
  width: 23.7rem;
  height: 9.2rem;
  position: absolute;
  left: var(--s3);
  top: 21rem;
}
.sec-qa .l-grid {
  margin-top: var(--s3);
}
.sec-qa .l-grid .card-qa + .card-qa {
  margin-top: 0;
}

.card-qa {
  display: block;
  padding: var(--s1) var(--s4) var(--s3);
  border-radius: var(--s1);
  background: #fff;
  box-shadow: 0 0.4rem 2rem rgba(11, 31, 67, 0.1);
  text-decoration: none;
  transform: translate(0, 0);
  transition: transform 0.4s, box-shadow 0.4s;
}
.card-qa__title {
  margin-bottom: var(--s3);
  padding: var(--s3) 0 var(--s3) 5rem;
  border-bottom: solid 1px #f4f4f4;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.card-qa__title:
  before {
  content: "Q.";
  color: #d9d9d9;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-qa__answer {
  margin-bottom: var(--s3);
  padding-left: 5rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.8;
  position: relative;
}
.card-qa__answer:
  before {
  content: "A.";
  color: #ea6109;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-qa__btn {
  width: 100%;
  margin: var(--s2) 0 0 auto;
  padding: 0.2rem var(--s4) 0.2rem 0;
  background: url("img/arrow-01-blue-right.svg") no-repeat center right/2.4rem auto;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: right;
}
.card-qa + .card-qa {
  margin-top: var(--s3);
}
.card-qa--low {
  padding-top: var(--s3);
  box-shadow: none;
  border-radius: 0;
}
.card-qa--low + .card-qa--low {
  border-top: solid 1px rgba(11, 31, 67, 0.5);
}
  @media (hover: hover) {
  a.card-qa:hover {
    transform: translate(0.6rem, 0.6rem);
  box-shadow: none;
  }
}
  @media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

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

  body {
  font-size: 1.4rem;
  }

  .sp_br {
  display: inline;
  }

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

      sp layout center

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

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

      sp layout stack

  */
  .l-stack {
  gap: var(--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(--s3);
  grid-template-columns: 100%;
  }

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

  .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__main {
  width: 100%;
  overflow-x: hidden;
  }

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

      sp layout column

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

  .l-column-02 {
  gap: 0;
  position: relative;
  }
  .l-column-02__side {
  width: 100%;
  height: 22rem;
  margin: 0;
  }
  .l-column-02__main {
  width: 100%;
  flex: none;
  }

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

      sp layout grid areas

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

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

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

      sp layout scroll

  */
  .l-scroll-x-sp {
  width: 100%;
  margin: var(--s2) 0 var(--s4);
  padding-bottom: 0.6rem;
  overflow-x: scroll;
  overflow-y: hidden;
  }
  .l-scroll-x-sp::
  -webkit-scrollbar {
    height: 0.6rem;
  }
  .l-scroll-x-sp::
  -webkit-scrollbar-track {
    border-radius: 0.3rem;
  background: #eee;
  }
  .l-scroll-x-sp::
  -webkit-scrollbar-thumb {
    border-radius: 0.3rem;
  background: #ddd;
  }
  .l-scroll-x-sp table,
.l-scroll-x-sp img {
  max-width: initial;
  }
  .l-scroll-x-sp table {
  margin: 0;
  max-width: initial;
  width: 70rem;
  }
}
  @media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      header area

  */
  .header-area {
    padding: 0.6rem;
  align-items: flex-start;
  flex-direction: column-reverse;
  gap: var(--s1);
  }
  .header-area__inner {
  width: 100%;
  justify-content: flex-start;
  }
  .header-area__title {
  flex-direction: column;
  justify-content: flex-start;
  }
  .header-area__logo {
  width: 20rem;
  margin: var(--s1) auto;
  }
  .header-area__name {
  display: block;
  line-height: 1.2;
  text-align: left;
  }
  .header-area .sponsored-text {
  margin: 0;
  line-height: 1.2;
  display: block;
  text-align: left;
  }
  .header-area--low {
  flex-direction: column-reverse;
  }

  .mv-lower {
  margin-bottom: var(--s5);
  padding-bottom: 5rem;
  }
  .mv-lower:
  after {
    width: 30rem;
  height: 5rem;
  bottom: -2.5rem;
  right: var(--s2);
  }

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

      main visual

  */
  .mainvisual {
  padding: var(--s12) var(--s2) 0;
  }
  .mainvisual-title {
  font-size: 2.8rem;
  }
  .mainvisual-title:
  before {
    height: 4rem;
  bottom: -2rem;
  right: auto;
  left: calc(var(--s2) * -1);
  }
  .mainvisual-title span.bg {
  font-size: 2rem;
  }
  .mainvisual-title span.bg:
  first-child {
    margin-left: 0;
  }
  .mainvisual-title span.sm {
  font-size: 2rem;
  }
  .mainvisual-title span.sm2 {
  font-size: 2rem;
  }
  .mainvisual-title span.rt {
  text-align: left;
  }
  .mainvisual-bg {
  left: 0;
  width: 160%;
  height: 20rem;
  left: -8rem;
  }
  .mainvisual-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  }
  .mainvisual-inner {
  margin-bottom: var(--s2);
  padding-bottom: 6rem;
  }
  .mainvisual-inner:
  before {
    width: 23.2rem;
  height: 26.3rem;
  right: -5rem;
  left: auto;
  bottom: 0;
  }
  .mainvisual-arrow {
  left: 0;
  width: 90vw;
  bottom: 0;
  }

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

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

      toc lower

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

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

      list

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

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

      sp btn

  */
  .btn-internal,
.btn-web {
  width: 32rem;
  margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
  min-height: 6rem;
  padding-right: 5rem;
  padding-left: 4rem;
  background-size: 2.4rem auto, auto;
  font-size: 1.4rem;
  }
  .btn-internal:
  after,
.btn-web:after {
    transform: translate(0.4rem, 0.4rem);
  }

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

  .btn-tel {
  width: 32rem;
  margin: var(--s3) auto;
  display: block;
  position: relative;
  position: relative;
  z-index: 0;
  }
  .btn-tel:
  after {
    content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: solid 1px #0b1f43;
  border-radius: 10rem;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(0.4rem, 0.4rem);
  }
  .btn-tel a {
  width: 100%;
  min-height: 6rem;
  margin: 0 auto;
  padding: var(--s2) 5rem;
  background: #0b1f43 url("img/icon-tel.png") no-repeat center left var(--s3)/2.2rem auto;
  border-radius: 10rem;
  box-shadow: 0 0 1.6rem rgba(11, 31, 67, 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) auto;
  flex-direction: column;
  gap: var(--s3);
  }
  .btn-column .btn-web,
.btn-column .btn-internal,
.btn-column .btn-tel {
  margin: 0 auto;
  }

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

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

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

      sp caption

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

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

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

   sp catch

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

  .catch-02 {
  font-size: 1.5rem;
  }

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

   subgrid card

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

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

      sp float wrap

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

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

   sp pankuzu

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

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

      sp footer

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

  .footer-about {
  max-width: 86%;
  margin: 0 auto var(--s3);
  padding: var(--s3);
  position: relative;
  }
  .footer-about .l-column__side02 {
  display: none;
  }
  .footer-about__title {
  padding-bottom: var(--s9);
  margin-bottom: var(--s2);
  font-size: 1.5rem;
  text-align: center;
  background: url(img/logo-square.png) no-repeat center bottom/7.5rem auto;
  }
  .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 9rem;
  }

  .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-white-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-white-right.svg") no-repeat center/auto 1.4rem;
  }

  .footer-menu {
  padding: var(--s1) 0;
  background: rgba(255, 255, 255, 0.1);
  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: 6.6rem;
  height: 4rem;
  }
  .gnavi-btn span {
  width: 2.8rem;
  left: 1.9rem;
  }
  .gnavi-btn span:nth-of-type(1) {
  top: 1.3rem;
  }
  .gnavi-btn span:nth-of-type(2) {
  top: 2rem;
  }
  .gnavi-btn span:nth-of-type(3) {
  top: 2.7rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.7rem) rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-0.7rem) rotate(45deg);
  }

  .gnavi-area {
  width: 100%;
  padding: 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;
  }

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

      footer-banner

  */
  .fixed-banner .sidebar-area__btn {
  width: 28rem;
  margin: 0;
  padding: 0 var(--s4) 0.6rem var(--s2);
  border-radius: 0 var(--s5) var(--s5) 0;
  font-size: 1.3rem;
  position: fixed;
  left: 0;
  bottom: 0.6rem;
  }
  .fixed-banner .sidebar-area__btn span.tag {
  border-bottom-right-radius: var(--s1);
  }

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

       sp toggle sp

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

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

  .toggle-btn-sp {
  display: block;
  width: 100%;
  padding-right: var(--s4);
  position: relative;
  }
  .toggle-btn-sp::
  before {
    content: "";
  width: 1.7rem;
  height: 0.3rem;
  background: #0b1f43;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  }
  .toggle-btn-sp::
  after {
    content: "";
  width: 0.3rem;
  height: 1.7rem;
  background: #0b1f43;
  position: absolute;
  top: 50%;
  right: 0.7rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
  }
  .toggle-btn-sp.is-open::
  after {
    transform: translate(0, -50%) rotate(270deg);
  }

  .btn-more-sp {
  margin-top: var(--s2);
  text-align: right;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  }

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

       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: #0b1f43;
  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: #0b1f43;
  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

  */
  .card-voice {
  padding: var(--s2);
  }
  .card-voice-wrap {
  margin: var(--s3) 0;
  flex-direction: column-reverse;
  gap: 0;
  }
  .card-voice__pic {
  width: 8rem;
  margin: 0 0 -7rem auto;
  }
  .card-voice__pic img{
  /* border-radius: var(--s1); */
  }
  .card-voice__pic:
  before {
    content: none;
  }
  .card-voice__title {
  padding: var(--s1) var(--s9) var(--s1) var(--s2);
  font-size: 1.7rem;
  }
  .card-voice .tag-name {
  width: 100%;
  padding-right: var(--s5);
  }

  .icon-title {
  padding-left: var(--s8);
  font-size: 1.8rem;
  }
  .icon-title span {
  padding: var(--s-2) var(--s1);
  font-size: 1.2rem;
  }

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

      SP titles

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

  h1:not([class]) {
  min-height: 7rem;
  margin: var(--s2) 0 0;
  padding-left: var(--s2);
  font-size: 2.4rem;
  }
  h1:not([class]):
  before {
    width: 5rem;
  left: -4.2rem;
  }

  .main-area--low h2:not([class]),
.main-area--low h3:not([class]),
.main-area--low h4:not([class]),
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
  margin: var(--s4) auto var(--s2);
  }
  .main-area--low h2:not([class]) {
  font-size: 2rem;
  padding: 1.2rem var(--s2);
  }
  .main-area--low h2:not([class]) a {
  background-size: 2rem auto;
  background-position: right center;
  }
  .main-area--low h3:not([class]) {
  padding-left: 1.2rem;
  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]) {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  font-size: 1.6rem;
  padding: var(--s-2) 0 var(--s-2) 2rem;
  }
  .main-area--low h4:not([class]):
  before {
    width: 0.3rem;
  }
  .main-area--low h4:not([class]) a {
  background-size: 2rem auto;
  background-position: right center;
  }
  .main-area--low h5:not([class]) {
  padding-left: 2rem;
  font-size: 1.5rem;
  }
  .main-area--low h5:not([class])::
  before {
    width: 1.5rem;
  }
  .main-area--low h5:not([class]) a {
  background-size: 2rem auto;
  background-position: right center;
  }
  .main-area--low h6:not([class]) {
  font-size: 1.5rem;
  }

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

      SP end

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

      TOP section

  */
  .common-title {
    width: 100%;
  font-size: 2.4rem;
  }
  .common-title a {
  padding-right: 4rem;
  background-size: 2.4rem auto;
  }
  .common-title span.sm {
  font-size: 1.7rem;
  }
  .common-title span.sm2 {
  font-size: 1.9rem;
  }

  .common-lead {
  margin-bottom: var(--s4);
  }
  .common-lead--ct {
  text-align: left;
  }

  .page-link {
  padding-bottom: var(--s2);
  }
  .page-link:
  before {
    transform: none;
  left: 0;
  top: 0.8rem;
  }
  .page-link__title {
  padding-left: 0;
  font-size: 1.7rem;
  }
  .page-link__item {
  width: 100%;
  }
  .page-link__item a {
  display: block;
  background-size: 1.8rem auto;
  font-size: 1.4rem;
  }
  .page-link__item a:
  before {
    top: 0;
  }

  .bg-arrow {
  background-size: 90% auto;
  }

  .sec01-main {
  padding-top: 11rem;
  background: url(img/sec01-pic-1-sp.png) no-repeat right top / auto 19%;
  }
  .sec01-main__en {
  width: 20rem;
  margin-bottom: var(--s4);
  }
  .sec01-main__text p {
  font-size: 1.6rem;
  }

  .box-sponsored__en {
  width: 26rem;
  }
  .box-sponsored .title-tag {
  margin-bottom: var(--s1);
  padding-left: var(--s4);
  font-size: 1.4rem;
  }
  .box-sponsored .title-tag:
  before {
    width: var(--s3);
  }
  .box-sponsored__title {
  margin-bottom: var(--s3);
  width: 95%;
  }
  .box-sponsored__title:
  after {
    left: 100%;
  width: 2rem;
  }
  .box-sponsored__name {
  font-size: 1.9rem;
  }
  .box-sponsored__body {
  min-height: initial;
  padding: 0;
  background-size: 6rem auto;
  }
  .box-sponsored__subtitle {
  padding-left: 8rem;
  font-size: 1.8rem;
  }

  .sec-fact {
  padding-bottom: var(--s8);
  }
  .sec-fact:
  before {
    height: calc(100% - var(--s6));
  }
  .sec-fact__pic {
  width: 60%;
  margin-bottom: var(--s4);
  }
  .sec-fact-en {
  width: 20rem;
  height: 3.4rem;
  top: var(--s10);
  left: var(--s2);
  }
  .sec-fact__inner {
  padding: var(--s2);
  }
  .sec-fact__tag {
  margin-bottom: var(--s2);
  font-size: 2rem;
  }
  .sec-fact__subtitle {
  font-size: 1.8rem;
  }
  .sec-fact__catch {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  }

  .fact2-graphic .label {
  right: auto;
  left: var(--s2);
  }
  .fact2-graphic .cell {
  padding-left: 7.5rem;
  }

  .loop-animation {
  width: 250%;
  height: 6rem;
  background-size: auto 100%;
  }

  .sec-sponsored {
  padding: 10rem 0;
  }
  .sec-sponsored:
  before {
    background-repeat: repeat-y;
  background-size: 150% auto;
  background-position: center bottom;
  }
  .sec-sponsored .l-center:
  before {
    width: 100%;
  height: 12rem;
  left: 0;
  top: -6rem;
  }
  .sec-sponsored .l-center:
  after {
    width: 3.8rem;
  height: 6.6rem;
  left: 50%;
  bottom: -12.2rem;
  transform: translateX(-50%);
  }
  .sec-sponsored__ttlblock {
  padding: var(--s3) 0 var(--s2);
  }
  .sec-sponsored__ttlblock:
  before {
    height: 18rem;
  }
  .sec-sponsored__ttlblock:
  after {
    border-width: 9rem 0 9rem 3rem;
  }
  .sec-sponsored__title {
  font-size: 2rem;
  }
  .sec-sponsored__inner {
  padding: var(--s2);
  padding-bottom: 0;
  }
  .sec-sponsored__inner .inner-title {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  }
  .sec-sponsored__inner .l-column {
  flex-direction: column-reverse;
  }
  .sec-sponsored__subtitle {
  margin-bottom: var(--s3);
  padding-top: var(--s3);
  font-size: 2rem;
  }
  .sec-sponsored__subtitle span.sm {
  font-size: 1.7rem;
  }
  .sec-sponsored__subtitle:
  before {
    border-width: 1.5rem 1.8rem 0 1.8rem;
  }

  .card-reason {
  width: 100%;
  padding: var(--s2);
  }
  .card-reason:nth-of-type(1), .card-reason:nth-of-type(2) {
  width: 100%;
  }
  .card-reason__tag {
  margin-bottom: var(--s1);
  font-size: 2rem;
  }
  .card-reason__title {
  min-height: initial;
  font-size: 1.8rem;
  }
  .card-reason .toggle-sp-content {
  padding-top: var(--s2);
  }

  .real-voice {
  margin: var(--s2) 0;
  }
  .real-voice:
  before {
    width: calc(100% + var(--s2) * 2);
  }
  .real-voice__tag {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  }
  .real-voice__pic {
  position: static;
  text-align: center;
  }
  .real-voice__pic img {
  width: 80%;
  }
  .real-voice__title {
  padding: var(--s2);
  font-size: 1.8rem;
  }
  .real-voice__text {
  margin-top: var(--s2);
  }
  .real-voice .btn-internal,
.real-voice .btn-web {
  width: 30rem;
  }

  .sec-summary {
  padding-top: 11rem;
  }
  .sec-summary .l-center:
  after {
    width: 4rem;
  height: 26rem;
  top: 0;
  }
  .sec-summary__body {
  padding-left: var(--s1);
  }
  .sec-summary__catch {
  margin-bottom: var(--s2);
  font-size: 2rem;
  }
  .sec-summary__catch span.sm {
  margin-bottom: var(--s2);
  font-size: 1.7rem;
  }

  .loop-photo3 {
  width: 200%;
  height: 8rem;
  background: url(img/loop-pic-sp.png) repeat-x left top/auto 100%;
  animation: loops 50s linear infinite;
  position: absolute;
  right: 0;
  top: var(--s2);
  z-index: -1;
  }

  .sec-work {
  padding: 10rem 0 6rem;
  }
  .sec-work-en {
  width: 14rem;
  height: 4rem;
  top: -5rem;
  left: var(--s1);
  }
  .sec-work__subtitle {
  margin-bottom: var(--s1);
  font-size: 1.8rem;
  }

  .flow-slider,
.buy-slider {
  width: calc(100% + var(--s2));
  padding-left: var(--s1);
  }

  .splide__arrow {
  width: 4rem;
  height: 4rem;
  }

  .card-flip__content,
.card-flip__content02 {
  flex-basis: 260px;
  flex-grow: 0;
    /* 伸びない */
  flex-shrink: 1;
  padding-top: var(--s2);
  }

  .card-flip__content02 {
  margin-left: -260px;
  }

  .card-flip__num {
  line-height: 1;
  }

  .point-title {
  margin-bottom: -6rem;
  }
  .point-title:
  after {
    width: 15rem;
  height: 4rem;
  top: auto;
  bottom: -3rem;
  }
  .point-title span.sm {
  font-size: 1.5rem;
  }
  .point-title span.main {
  font-size: 2.2rem;
  }

  .real-voice--point {
  padding: var(--s8) var(--s2) var(--s3);
  }
  .real-voice--point:
  before {
    width: 100%;
  }

  .sec-interview {
  padding-top: var(--s9);
  padding-bottom: var(--s9);
  }
  .sec-interview .l-center:
  before {
    width: 25rem;
  height: 4rem;
  right: auto;
  left: 50%;
  top: -6rem;
  transform: translateX(-50%);
  }
  .sec-interview__inner {
  margin-top: var(--s3);
  padding: 22rem var(--s2) var(--s3);
  }
  .sec-interview__inner .l-cluster {
  justify-content: center;
  }
  .sec-interview__inner .btn-internal {
  width: 30rem;
  }
  .sec-interview__pic {
  width: 20rem;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  }
  .sec-interview__title {
  margin-bottom: var(--s2);
  font-size: 2rem;
  }
  .sec-interview__feature {
  margin: var(--s3) auto;
  border-radius: var(--s1);
  overflow: hidden;
  }
  .sec-interview__feature:
  before {
    width: 100%;
  background-position: right var(--s2) top 24rem;
  background-size: 7rem auto;
  }

  .tag-name {
  font-size: 1.8rem;
  }

  .feature-body {
  padding: var(--s2);
  }

  .feature-title {
  font-size: 1.8rem;
  }

  .sec-benefits {
  padding-top: var(--s6);
  }
  .sec-benefits .l-center:
  before {
    width: 19rem;
  height: 4rem;
  top: var(--s10);
  left: var(--s2);
  }

  .common-ttlblock {
  margin-bottom: 0;
  }

  .card-benefit {
  padding-left: var(--s2);
  }
  .card-benefit__title {
  min-height: 5rem;
  background-size: 5rem auto;
  padding-left: 6rem;
  font-size: 1.7rem;
  }

  .box-summary {
  margin: var(--s6) auto;
  padding: var(--s7) 0 var(--s4) var(--s2);
  }
  .box-summary:
  after {
    width: 20rem;
  height: 2.8rem;
  left: var(--s2);
  top: var(--s2);
  }
  .box-summary__inner {
  padding: var(--s3) var(--s2) var(--s4);
  }
  .box-summary__title {
  font-size: 1.8rem;
  }
  .box-summary .btn-internal,
.box-summary .btn-web {
  width: 30rem;
  }

  .sec-qa {
  padding-bottom: var(--s8);
  }
  .sec-qa:
  before {
    height: calc(100% - var(--s6));
  }
  .sec-qa-en {
  width: 9rem;
  height: 3.4rem;
  top: var(--s10);
  left: var(--s2);
  }

  .card-qa {
  padding: var(--s1) var(--s3) var(--s4);
  }
  .card-qa__title {
  padding-left: 3.4rem;
  font-size: 1.6rem;
  }
  .card-qa__title:
  before {
    font-size: 2rem;
  }
  .card-qa__answer {
  padding-left: 3.4rem;
  font-size: 1.5rem;
  line-height: 1.5;
  }
  .card-qa__answer:
  before {
    font-size: 2rem;
  }
  .card-qa__btn {
  font-size: 1.4rem;
  }
  .card-qa--low {
  padding-right: 0;
  padding-left: 0;
  }

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

      SP end

  */
};
}

.btn-internal span.tag {
  display: block;
  width: fit-content;
  background: rgba(255,105,0,1);
  padding: var(--s-2) var(--s1) var(--s-2);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  margin: 0 0 1rem;
  border-radius: var(--s1) var(--s1);
}
.sidebar-area__btn span.tag:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: rgba(255,105,0,1);
  position: absolute;
  right: 99%;
  top: 0;
}
.sidebar-area__list {
  padding-right: var(--s2);
}
.sidebar-area__list__item a {
  display: block;
  padding: var(--s2) var(--s3) var(--s2) 0;
  background: url(img/arrow-01-orange-right.svg) no-repeat center right/2.4rem auto;
  border-bottom: solid 1px #d9d9d9;
  text-decoration: none;
  font-weight: 700;
}
.sidebar-area__list__item:last-child a {
  border-bottom: none;
}

@media (hover: hover) {
  .sidebar-area__btn:hover {
    opacity: 0.7;
    color: #fff;
  }

  .sidebar-area__list__item a:hover,
.sidebar-area__logo a:hover {
    opacity: 0.7;
  }
}
/*
---------------------------------------------

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  line-height: 1.5;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: 2.7rem;
  height: 0.3rem;
  background: #0b1f43;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.3rem;
  height: 2.7rem;
  background: #0b1f43;
  position: absolute;
  top: 50%;
  right: 3.6rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.toggle-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.toggle-content {
  display: none;
}

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

    more

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

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

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

    グラデーション  more-content

*/
.more__content {
  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 -8rem;
  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: 1.6rem;
  height: 0.2rem;
  background: #0b1f43;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
}
.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.6rem;
  background: #0b1f43;
  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: fit-content;
  padding: 0.4rem var(--s1);
  background: #fff;
  border: solid 1px #e0e0e0;
  border-radius: var(--s-2);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ea6109;
}

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

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

    lower-parts

*/
.icon-title {
  margin: var(--s5) 0 var(--s5) var(--s2);
  padding: var(--s2) var(--s3) var(--s2) var(--s12);
  background: #fef8eb;
  border-radius: var(--s1);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.icon-title span {
  width: fit-content;
  display: block;
  padding: var(--s-2) var(--s2);
  background: #ea6109;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: calc(var(--s2) * -1);
  top: 50%;
  transform: translateY(-50%);
}

.card-voice {
  padding: var(--s4) var(--s6);
  background: #f4f4f4;
  border-radius: var(--s1);
}
.card-voice-wrap {
  margin: var(--s4) 0 var(--s8);
}
.card-voice-wrap.l-column--row-reverse .card-voice__pic:before {
  right: auto;
  left: 100%;
}
.card-voice__title {
  margin: 0 0 var(--s2) 0;
  padding: var(--s2) var(--s3);
  border-radius: var(--s1);
  background: #ea6109;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.card-voice__pic {
  position: relative;
}
.card-voice__pic img{
          border-radius: 50%;
        border: solid 1px #ea6109;;
}
.card-voice__pic:before {
  content: "";
  width: 6.4rem;
  height: 1px;
  background: #ea6109;
  position: absolute;
  right: 100%;
  top: 6rem;
}

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

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

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

    titles

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

.main-area h1,
.main-area h2,
.main-area h3,
.main-area h4,
.main-area h5,
.main-area h6 {
  word-wrap: break-word;
}
.main-area--low h1,
.main-area--low h2,
.main-area--low h3,
.main-area--low h4,
.main-area--low h5,
.main-area--low h6 {
  font-weight: 700;
}
.main-area--low h1 a,
.main-area--low h2 a,
.main-area--low h3 a,
.main-area--low h4 a,
.main-area--low h5 a,
.main-area--low h6 a {
  display: block;
  padding-right: var(--s4);
  text-decoration: none;
}

@media (hover: hover) {
  .main-area h2:not([class]) a:hover,
.main-area h3:not([class]) a:hover,
.main-area h4:not([class]) a:hover,
.main-area h5:not([class]) a:hover,
.main-area h6:not([class]) a:hover {
    opacity: 0.6;
  }
}
h1:not([class]) {
  margin: 0;
  max-width: 95rem;
  min-height: 14.4rem;
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 0;
}
h1:not([class]):before {
  content: "";
  width: 6.4rem;
  height: 1px;
  background: #fff;
  position: absolute;
  left: -8.2rem;
  top: 0.7em;
}

.main-area--low h2:not([class]) {
  margin: var(--s7) auto var(--s3);
  padding: var(--s2) var(--s4) var(--s2);
  border-radius: var(--s1) var(--s1) 0 0;
  border-bottom: solid 0.6rem #f7ba39;
  background: linear-gradient(to right, #005ad8 70%, #0b1f43 100%);
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 2.4rem auto;
  color: #fff;
}
.main-area--low h3:not([class]) {
  margin: var(--s6) auto var(--s3);
  padding: 1rem 0 2.2rem 2.2rem;
  border-bottom: solid 1px #b4b5b6;
  border-left: solid 0.3rem #0b1f43;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.4rem auto;
  color: linear-gradient(to right, #ea6109 0%, #f7ba39 100%);
}
.main-area--low h4:not([class]) {
  margin: var(--s5) auto var(--s2);
  padding: var(--s-2) 0 var(--s-2) 3rem;
  font-size: 2rem;
  font-weight: 700;
  color: #005ad8;
  position: relative;
}
.main-area--low h4:not([class]):before {
  content: "";
  width: 0.3rem;
  height: 100%;
  border-radius: 0.2rem;
  background: #005ad8;
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h4:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.4rem auto;
  color: #005ad8;
}
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding-left: var(--s4);
  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: 2rem;
  height: 1px;
  background: #0b1f43;
  position: absolute;
  left: 0;
  top: 0.7em;
}
.main-area--low h5:not([class]) a,
.main-area--low h6:not([class]) a {
  background: url(img/arrow-01-black-right.svg) no-repeat right center;
  background-size: 2rem auto;
}

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

    TOP common

*/
.common-title {
  width: fit-content;
  font-size: 4rem;
  font-weight: 700;
  position: relative;
}
.common-title--white {
  color: #fff;
}
.common-title--ct {
  margin: 0 auto var(--s3);
  text-align: center;
}
.common-title span.sm {
  display: inline-block;
  font-size: 2.4rem;
}
.common-title span.cl {
  color: #f7ba39;
}
.common-title span.st {
  background: linear-gradient(to bottom, transparent 65%, rgba(0, 90, 216, 0.5) 65%);
}
.common-title a {
  padding-right: var(--s6);
  text-decoration: none;
  background: url("img/arrow-01-white-right.svg") no-repeat bottom right/var(--s5) var(--s6);
}

@media (hover: hover) {
  .common-title a:hover {
    opacity: 0.6;
  }
}
.common-lead {
  max-width: 67rem;
}
.common-lead--ct {
  margin: 0 auto;
  text-align: center;
}
.common-lead--right {
  margin-right: 0;
  margin-left: auto;
}
.common-lead--white {
  color: #fff;
}

.common-ttlblock {
  margin-bottom: var(--s6);
  align-items: flex-end;
}
.common-ttlblock--align-start {
  align-items: flex-start;
}

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

    TOP section

*/
.page-link {
  margin-bottom: var(--s6);
  padding: var(--s4) 0;
  border-top: solid 1px #a9a9a9;
  border-bottom: solid 1px #a9a9a9;
  gap: var(--s3);
  position: relative;
}
.page-link:before {
  content: "INDEX";
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #ea6109;
  position: absolute;
  left: var(--s2);
  top: var(--s4);
  transform: rotate(90deg);
  transform-origin: left top;
}
.page-link__title {
  padding-left: 3rem;
  font-size: 2rem;
  font-weight: 700;
}
.page-link__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem var(--s1);
  counter-reset: number;
}
.page-link__item {
  width: calc((100% - var(--s1)) / 2);
  counter-increment: number;
  position: relative;
}
.page-link__item a {
  padding: 0 2.8rem;
  background: url(img/arrow-01-blue-down.svg) no-repeat center right/auto 2rem;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 700;
}
.page-link__item a:before {
  content: counter(number, decimal-leading-zero) ". ";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #005ad8;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0.1em;
  left: 0;
}

.sec01-main {
  padding-top: 10rem;
  background: url(img/sec01-pic-1.png) no-repeat right top/37.7rem auto;
}
.sec01-main__en {
  margin-bottom: var(--s6);
  width: 41rem;
}
.sec01-main__text p {
  font-size: 2rem;
  font-weight: 700;
}
.sec01-main__text p + p {
  margin-top: var(--s4);
}

.bg-arrow {
  background: url(img/sec01-bg.png) no-repeat center/93rem auto;
  background-position: calc(50% + 15rem) center;
  background-attachment: fixed;
}

@media screen and (max-width: 1365px) {
  .bg-arrow {
    background-position: center;
  }
}
.box-sponsored {
  margin: var(--s10) 0;
}
.box-sponsored__title {
  margin-bottom: var(--s6);
  padding: var(--s2) 0;
  position: relative;
  z-index: 0;
}
.box-sponsored__title:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #ea6109;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.box-sponsored__title:after {
  content: "";
  width: 3.2rem;
  height: 100%;
  background: url(img/title-arrow-orange.png) no-repeat left center/100% 100%;
  position: absolute;
  left: 99.98%;
  top: 0;
}
.box-sponsored__en {
  margin-bottom: var(--s1);
  width: 59.6rem;
}
.box-sponsored__name {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
}
.box-sponsored .title-tag {
  margin: var(--s1) 0;
  padding-left: 4.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.box-sponsored .title-tag:before {
  content: "";
  width: 3.2rem;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.box-sponsored__body {
  min-height: 22rem;
  padding-left: 23rem;
  background: url(img/icon-deco.png) no-repeat left top/18.8rem auto;
}
.box-sponsored__subtitle {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  font-weight: 700;
}

@media screen and (max-width: 1365px) {
  .box-sponsored__title:after {
    width: 3rem;
  }
}
.sec-fact {
  padding: 0 0 14rem;
  position: relative;
  z-index: 0;
}
.sec-fact .l-center {
  position: relative;
}
.sec-fact-en {
  width: 52.8rem;
  height: 9.2rem;
  position: absolute;
  left: var(--s3);
  top: 21rem;
}
.sec-fact:before {
  content: "";
  width: 100vw;
  height: calc(100% - 10rem);
  background: #0b1f43 url(img/bg-circle-navy.png) repeat-y center top -20rem/100% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sec-fact__tag {
  margin-bottom: var(--s4);
  font-family: "Outfit", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #005ad8;
}
.sec-fact__subtitle {
  font-size: 2rem;
  font-weight: 700;
}
.sec-fact__catch {
  margin-bottom: var(--s3);
  font-size: 2.6rem;
  font-weight: 700;
}
.sec-fact__pic {
  max-width: 58rem;
  margin: 0 0 var(--s8) auto;
}
.sec-fact__pic img {
  border-radius: var(--s1);
}
.sec-fact__pic--02 {
  margin-bottom: var(--s6);
}
.sec-fact__inner {
  padding: var(--s5);
  background: #fff;
  border-radius: var(--s1);
}
.sec-fact__inner + .sec-fact__inner {
  margin-top: var(--s5);
}
.sec-fact__inner ul:not([class]) {
  margin: var(--s2) 0;
}
.sec-fact__inner .l-grid-three {
  margin: var(--s3) 0;
}

.card-fact1 {
  padding-top: var(--s2);
  border-top: solid 1px #ea6109;
}
.card-fact1__tag {
  margin-bottom: var(--s2);
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #ea6109;
}
.card-fact1__title {
  margin-bottom: var(--s2);
  font-size: 1.6rem;
  font-weight: 700;
}

.fact2-graphic__item {
  border: solid 1px #c7c7c7;
}
.fact2-graphic .fact-table-pic {
  padding: 0.6rem;
  padding-bottom: var(--s6);
  background: #0b1f43 url(img/table-pic-1.png) no-repeat center bottom 1.8rem/16.8rem auto;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.fact2-graphic .fact-table-pic span.sm {
  font-size: 1.7rem;
}
.fact2-graphic .fact-table-pic--02 {
  background-image: url(img/table-pic-2.png);
  background-color: #005ad8;
}
.fact2-graphic .fact-table-pic .cell {
  padding: var(--s2);
}
.fact2-graphic .cell {
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fact2-graphic .cell:after {
  content: "";
  width: calc(100% - 2rem * 2);
  height: 1px;
  background: #d9d9d9;
  position: absolute;
  left: 2rem;
  bottom: 0;
}
.fact2-graphic .cell:last-child:after {
  content: none;
}
.fact2-graphic .label {
  width: 4.4rem;
  padding: 0.4rem;
  background: #ea6109;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  right: -3.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.fact2-graphic .txt-ct {
  text-align: center;
}

.sec-sponsored {
  padding: 15rem 0 10rem;
  position: relative;
  z-index: 0;
}
.sec-sponsored:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: url(img/bg-sec04.jpg) no-repeat center/cover;
  background-attachment: fixed;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec-sponsored .l-center {
  position: relative;
}
.sec-sponsored .l-center:before {
  content: "";
  width: 93.6rem;
  height: 27.7rem;
  background: url(img/arrows-deco.png) no-repeat center/contain;
  position: absolute;
  left: -24rem;
  top: -17rem;
}
.sec-sponsored .l-center:after {
  content: "";
  width: 4.5rem;
  height: 7.6rem;
  background: url(img/arrows-section.png) no-repeat center/contain;
  position: absolute;
  left: var(--s8);
  bottom: -14rem;
  z-index: 1;
}
.sec-sponsored__ttlblock {
  padding: var(--s6) 0 var(--s4);
  position: relative;
}
.sec-sponsored__ttlblock:before {
  content: "";
  width: 100vw;
  height: 25rem;
  background: #ea6109;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec-sponsored__ttlblock:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.5rem 0 12.5rem 3.2rem;
  border-color: transparent transparent transparent #ea6109;
  position: absolute;
  left: 100%;
  top: 0;
}
.sec-sponsored__tag {
  width: fit-content;
  padding-left: var(--s5);
  margin: 0 auto var(--s1);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.sec-sponsored__tag:before {
  content: "";
  width: 3.2rem;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec-sponsored__title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
}
.sec-sponsored__inner {
  padding: var(--s5);
  padding-bottom: 0;
  border-radius: var(--s1);
  background: #fff;
}
.sec-sponsored__inner .inner-title {
  margin-bottom: var(--s3);
  font-size: 2rem;
  font-weight: 700;
}
.sec-sponsored .box-sponsored__body {
  max-width: 86rem;
  margin: 2rem auto;
}
.sec-sponsored__subtitle {
  margin: var(--s6) 0 var(--s4);
  padding: var(--s4) 0 0;
  border-top: solid 1px rgba(11, 31, 67, 0.5);
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}
.sec-sponsored__subtitle:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 22.5px 0 22.5px;
  border-color: #f29600 transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.sec-sponsored__subtitle span.sm {
  font-size: 2rem;
}
.sec-sponsored__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}

@media screen and (max-width: 1365px) {
  .sec-sponsored__ttlblock:after {
    border-width: 12.5rem 0 12.5rem 3rem;
  }
}
.loop-animation {
  width: 100vw;
  height: 12rem;
  margin-bottom: var(--s2);
  background: url(img/loop-text.png) repeat-x left top/auto 10rem;
  animation: loopsReverse 50s linear infinite;
  position: absolute;
  right: 0;
  top: var(--s2);
}

.card-reason {
  width: calc((100% - (var(--s3)) * 2) / 3);
  padding: var(--s2) var(--s4) var(--s4);
  background: rgba(247, 186, 57, 0.1);
  border-radius: var(--s1);
}
.card-reason:nth-of-type(1){
  width: 100%;
}

.card-reason__tag {
  margin-bottom: var(--s2);
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #f29600;
}
.card-reason__title {
  margin-bottom: var(--s2);
  min-height: 6rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.card-reason__pic {
  margin-bottom: var(--s2);
}
.card-reason__pic img {
  border-radius: var(--s1);
}

.real-voice {
  margin: var(--s8) 0;
  padding: var(--s7) 0 var(--s4);
  position: relative;
  z-index: 0;
}
.real-voice:last-child {
  margin-bottom: 0;
}
.real-voice:before {
  content: "";
  width: calc(100% + var(--s5) * 2);
  height: calc(100% - var(--s4));
  background: #f4f4f4;
  border-radius: var(--s1);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.real-voice--point {
  padding: var(--s7) var(--s5) var(--s4);
}
.real-voice--point:before {
  width: 100%;
}
.real-voice--point .real-voice__pic {
  right: var(--s5);
}
.real-voice__tag {
  margin-bottom: var(--s3);
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ea6109;
  line-height: 1;
}
.real-voice__title {
  margin-bottom: var(--s3);
  padding: var(--s2) 36rem var(--s2) var(--s3);
  border-radius: var(--s1);
  background: #ea6109;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.real-voice__pic {
  max-width: 34rem;
  position: absolute;
  right: 0;
  top: 0;
}
.real-voice__pic img {
  border-radius: var(--s1);
  border: solid 1px #ea6109;
}
.real-voice__pic .l-cluster {
  margin-top: var(--s2);
  justify-content: center;
}
.real-voice__text {
  min-height: 10rem;
  max-width: 54rem;
}
.real-voice .btn-internal,
.real-voice .btn-web {
  margin-top: var(--s3);
  margin-bottom: var(--s2);
}

.sec-summary {
  padding: var(--s8) 0;
  position: relative;
  color: #fff;
}
.sec-summary:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #0b1f43 url(img/bg-circle-navy.png) repeat-y center top -20rem/100% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sec-summary .l-center {
  position: relative;
}
.sec-summary .l-center:after {
  content: "";
  width: 6.5rem;
  height: 43.8rem;
  background: url(img/txt-summary-vt.png) no-repeat center/contain;
  position: absolute;
  left: -1rem;
  top: 0;
}
.sec-summary__body {
  max-width: 52rem;
  padding: 0 0 0 var(--s5);
}
.sec-summary__catch {
  margin-bottom: var(--s5);
  font-size: 3rem;
  font-weight: 700;
}
.sec-summary__catch span.sm {
  display: block;
  margin-bottom: var(--s4);
  font-size: 2.2rem;
}
.sec-summary__catch span.cl {
  color: #f7ba39;
}
.sec-summary .btn-internal,
.sec-summary .btn-web {
  margin-bottom: 0;
}
.sec-summary .loop-wrap {
  width: 44rem;
  height: calc(100% + var(--s8) * 2);
  position: absolute;
  right: var(--s3);
  top: calc(var(--s8) * -1);
  overflow: hidden;
}
.sec-summary .loop-photo1 {
  width: 21.3rem;
  height: 153.6rem;
  background: url(img/loop-right.png) repeat-y left top/100% auto;
  animation: loopsVertical 25s linear infinite;
  position: absolute;
  right: 0;
  top: 0;
}
.sec-summary .loop-photo2 {
  width: 21.3rem;
  height: 153.6rem;
  background: url(img/loop-left.png) repeat-y left top/100% auto;
  animation: loopsVerticalReverse 25s linear infinite;
  position: absolute;
  right: 22.8rem;
  top: 0;
}

.sec-work {
  padding: 20rem 0 10rem;
}
.sec-work .l-center {
  position: relative;
}
.sec-work-en {
  width: 27.4rem;
  height: 9.2rem;
  position: absolute;
  left: var(--s3);
  top: -10rem;
}
.sec-work__subtitle {
  margin-bottom: var(--s3);
  padding-left: 4.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.sec-work__subtitle:before {
  content: "";
  width: var(--s4);
  height: 1px;
  background: #ea6109;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slide-area__inner {
  margin-bottom: var(--s8);
  position: relative;
}
.slide-area__inner:before {
  content: "";
  width: calc(100% + (100vw - 100% - 30rem) / 2 + var(--s2));
  height: 12.4rem;
  background: linear-gradient(to right, #f7ba39 0%, #ea6109 100%);
  border-radius: var(--s1) 0 0 var(--s1);
  position: absolute;
  left: calc(var(--s2) * -1);
  bottom: 2.5rem;
  z-index: -1;
}
.slide-area__inner--buy:before {
  background: linear-gradient(to right, #005ad8 0%, #0b1f43 100%);
}

@media screen and (max-width: 1365px) {
  .slide-area__inner:before {
    width: calc(100% + (100vw - 100%) / 2 + var(--s2));
  }
}
.flow-slider,
.buy-slider {
  padding: var(--s2) 0 0 var(--s2);
  width: calc(100% + (100vw - 100% - 30rem) / 2);
  overflow: hidden;
}
.flow-slider__arrows,
.buy-slider__arrows {
  margin-top: 2rem;
  margin-left: 0;
}
.flow-slider .splide__track,
.buy-slider .splide__track {
  overflow: visible;
}

@media screen and (max-width: 1365px) {
  .flow-slider,
.buy-slider {
    width: calc(100% + (100vw - 100%) / 2);
  }

  .slide-area__inner:before {
    width: calc(100% + (100vw - 100%) / 2 + var(--s2));
  }
}
.splide__arrows {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--s2);
}

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

@media (hover: hover) {
  .splide__arrow:hover {
    opacity: 0.6;
  }
}
.card-flip {
  display: flex;
  position: relative;
  border-radius: var(--s1);
  transform: translate(0, 0);
  transition: transform 0.4s;
}
.card-flip:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 0 17px 12px;
  border-color: transparent transparent transparent #f29600;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.card-flip.last-card::before {
  content: none;
}
.card-flip__btn {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.card-flip__num {
  margin-bottom: var(--s1);
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ea6109;
  text-align: center;
}
.card-flip__num--blue {
  color: #005ad8;
}
.card-flip__title {
  margin-bottom: var(--s1);
  min-height: 6rem;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-flip__pic {
  width: 11.6rem;
  margin: 0 auto;
}
.card-flip__more {
  padding-right: var(--s3);
  text-align: right;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.card-flip__more:before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url(img/icon-plus.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-flip__back {
  padding-right: var(--s3);
  text-align: right;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.card-flip__back:before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url(img/arrow-01-black-left.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-flip__content {
  width: 24rem;
  padding: var(--s3);
  padding-bottom: var(--s2);
  border-radius: var(--s1);
  background: #fff;
  box-shadow: 0 0.4rem 1.6rem rgba(11, 31, 67, 0.1);
  position: relative;
  opacity: 1;
  transform: scale(1, 1);
  transition: opacity 0.4s, box-shadow 0.4s, transform 0.4s;
  flex-basis: 24rem;
}
.card-flip.is-invert .card-flip__content {
  opacity: 0;
  transform: scale(-1, 1);
}
.card-flip__content02 {
  width: 24rem;
  padding: var(--s3);
  padding-bottom: var(--s2);
  border-radius: var(--s1);
  background: #fff9ed;
  box-shadow: 0 0.4rem 1.6rem rgba(11, 31, 67, 0.1);
  margin-left: -24rem;
  opacity: 0;
  transform: scale(-1, 1);
  transition: opacity 0.4s, box-shadow 0.4s, transform 0.4s;
  flex-basis: 24rem;
}
.card-flip.is-invert .card-flip__content02 {
  opacity: 1;
  transform: scale(1, 1);
}

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

.buy-slider .card-flip:before {
  border-color: transparent transparent transparent #005ad8;
}

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

@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: 0 0 0.6rem rgba(11, 31, 67, 0.1);
  }
}
.point-title {
  margin: var(--s10) 0 -4rem;
  font-size: 2.6rem;
  font-weight: 700;
  position: relative;
}
.point-title:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ea6109;
  position: absolute;
  left: 0;
  top: 1.2rem;
  z-index: -1;
}
.point-title:after {
  content: "";
  width: 28.8rem;
  height: 9rem;
  background: url(img/txt-point.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: var(--s3);
  z-index: 1;
}
.point-title span.sm {
  width: fit-content;
  display: block;
  padding-right: var(--s2);
  font-size: 2rem;
  background: #fff;
}
.point-title span.main {
  display: inline-block;
  max-width: 63rem;
}

.sec-interview {
  padding: var(--s12) 0;
  position: relative;
  z-index: 0;
}
.sec-interview:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #ea6109 url(img/bg-circle-orange.png) repeat-y center top -20rem/100% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sec-interview .l-center {
  position: relative;
}
.sec-interview .l-center:before {
  content: "";
  width: 68.6rem;
  height: 12rem;
  background: url(img/txt-interview.png) no-repeat center/contain;
  position: absolute;
  right: -1rem;
  top: -8rem;
}
.sec-interview__inner {
  padding: 11rem var(--s6) var(--s3);
  position: relative;
  z-index: 0;
}
.sec-interview__inner:before {
  content: "";
  width: 100%;
  height: calc(100% - 6.2rem);
  background: #fff;
  border-radius: var(--s1);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sec-interview__pic {
  width: 29.5rem;
  position: absolute;
  right: var(--s6);
  top: 10rem;
}
.sec-interview__pic img {
  border-radius: var(--s1);
  border: solid 1px #ea6109;
}
.sec-interview__title {
  max-width: 59rem;
  margin: var(--s3) 0;
  font-size: 2.6rem;
  font-weight: 700;
}
.sec-interview__text {
  max-width: 59rem;
}
.sec-interview__feature {
  margin: var(--s7) 0;
  position: relative;
  z-index: 0;
}
.sec-interview__feature:before {
  content: "";
  width: calc(100% + var(--s6));
  height: 100%;
  background: rgba(247, 186, 57, 0.2) url(img/bg-comma.png) no-repeat right 5rem top 2.5rem/12.3rem auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec-interview .common-title a{
color: #fff;
}

.feature-body {
  padding: var(--s4);
}

.feature-pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.feature-lead {
  margin-bottom: var(--s2);
  padding-left: 4.2rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ea6109;
}

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

.sec-benefits {
  padding: 9.6rem 0 2rem;
  position: relative;
  z-index: 0;
}
.sec-benefits .l-center {
  position: relative;
}
.sec-benefits .l-center:before {
  content: "";
  width: 40rem;
  height: 9.2rem;
  background: url(img/txt-benefits.png) no-repeat center/contain;
  position: absolute;
  left: var(--s3);
  top: 21rem;
}

.card-benefit {
  padding-left: var(--s4);
  border-left: solid 1px #f7ba39;
}
.card-benefit__title {
  margin-bottom: var(--s2);
  padding-left: 10rem;
  min-height: 7rem;
  background: url(img/icon-benefit-1.png) no-repeat left center/auto 7rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.card-benefit__title--02 {
  background-image: url(img/icon-benefit-2.png);
}
.card-benefit__title--03 {
  background-image: url(img/icon-benefit-3.png);
}
.card-benefit__title--04 {
  background-image: url(img/icon-benefit-4.png);
}
.card-benefit__title--05 {
  background-image: url(img/icon-benefit-5.png);
}

.box-summary {
  margin: 10rem 0;
  padding: 9.2rem var(--s5) var(--s5) var(--s5);
  position: relative;
}
.box-summary:before {
  content: "";
  width: calc(100% + (100vw - 100% - 30rem) / 2);
  height: 100%;
  background: linear-gradient(to right, #0b1f43 0%, #1c4ea9);
  border-radius: var(--s1) 0 0 var(--s1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-summary:after {
  content: "";
  width: 30rem;
  height: 6rem;
  background: url(img/txt-summary.png) no-repeat center/contain;
  position: absolute;
  left: var(--s5);
  top: 3rem;
}
.box-summary__inner {
  padding: var(--s5) var(--s5) var(--s6);
  position: relative;
  z-index: 0;
}
.box-summary__inner:before {
  content: "";
  width: calc(100% + (100vw - 100% - 30rem) / 2);
  height: 100%;
  background: #fff;
  border-radius: var(--s1) 0 0 var(--s1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-summary__title {
  margin-bottom: var(--s3);
  font-size: 3rem;
  font-weight: 700;
  position: relative;
}
.box-summary__title:before {
  content: "";
  width: 6.2rem;
  height: 0.6rem;
  background: #ea6109;
  position: absolute;
  left: 0;
  top: -2.5rem;
}
.box-summary__title span.cl {
  color: #ea6109;
}
.box-summary .btn-column {
  margin-bottom: 0;
}

@media screen and (max-width: 1365px) {
  .box-summary:before {
    width: calc(100% + (100vw - 100%) / 2);
  }

  .box-summary__inner:before {
    width: calc(100% + (100vw - 100%) / 2);
  }
}
.sec-qa {
  padding: 0 0 14rem;
  position: relative;
  z-index: 0;
}
.sec-qa .l-center {
  position: relative;
}
.sec-qa:before {
  content: "";
  width: 100vw;
  height: calc(100% - 10rem);
  background: #f4f4f4;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sec-qa-en {
  width: 23.7rem;
  height: 9.2rem;
  position: absolute;
  left: var(--s3);
  top: 21rem;
}
.sec-qa .l-grid {
  margin-top: var(--s3);
}
.sec-qa .l-grid .card-qa + .card-qa {
  margin-top: 0;
}

.card-qa {
  display: block;
  padding: var(--s1) var(--s4) var(--s3);
  border-radius: var(--s1);
  background: #fff;
  box-shadow: 0 0.4rem 2rem rgba(11, 31, 67, 0.1);
  text-decoration: none;
  transform: translate(0, 0);
  transition: transform 0.4s, box-shadow 0.4s;
}
.card-qa__title {
  margin-bottom: var(--s3);
  padding: var(--s3) 0 var(--s3) 5rem;
  border-bottom: solid 1px #f4f4f4;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.card-qa__title:before {
  content: "Q.";
  color: #d9d9d9;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-qa__answer {
  margin-bottom: var(--s3);
  padding-left: 5rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.8;
  position: relative;
}
.card-qa__answer:before {
  content: "A.";
  color: #ea6109;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-qa__btn {
  width: 100%;
  margin: var(--s2) 0 0 auto;
  padding: 0.2rem var(--s4) 0.2rem 0;
  background: url("img/arrow-01-blue-right.svg") no-repeat center right/2.4rem auto;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: right;
}
.card-qa + .card-qa {
  margin-top: var(--s3);
}
.card-qa--low {
  padding-top: var(--s3);
  box-shadow: none;
  border-radius: 0;
}
.card-qa--low + .card-qa--low {
  border-top: solid 1px rgba(11, 31, 67, 0.5);
}

@media (hover: hover) {
  a.card-qa:hover {
    transform: translate(0.6rem, 0.6rem);
    box-shadow: none;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

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

  body {
    font-size: 1.4rem;
  }

  .sp_br {
    display: inline;
  }

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

      sp layout center

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

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

      sp layout stack

  */
  .l-stack {
    gap: var(--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(--s3);
    grid-template-columns: 100%;
  }

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

  .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__main {
    width: 100%;
    overflow-x: hidden;
  }

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

      sp layout column

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

  .l-column-02 {
    gap: 0;
    position: relative;
  }
  .l-column-02__side {
    width: 100%;
    height: 22rem;
    margin: 0;
  }
  .l-column-02__main {
    width: 100%;
    flex: none;
  }

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

      sp layout grid areas

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

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

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

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    margin: var(--s2) 0 var(--s4);
    padding-bottom: 0.6rem;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
  }
  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
  }
  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
  }
  .l-scroll-x-sp table,
.l-scroll-x-sp img {
    max-width: initial;
  }
  .l-scroll-x-sp table {
    margin: 0;
    max-width: initial;
    width: 70rem;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      header area

  */
  .header-area {
    padding: 0.6rem;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: var(--s1);
  }
  .header-area__inner {
    width: 100%;
    justify-content: flex-start;
  }
  .header-area__title {
    flex-direction: column;
    justify-content: flex-start;
  }
  .header-area__logo {
    width: 20rem;
    margin: var(--s1) auto;
  }
  .header-area__name {
    display: block;
    line-height: 1.2;
    text-align: left;
  }
  .header-area .sponsored-text {
    margin: 0;
    line-height: 1.2;
    display: block;
    text-align: left;
  }
  .header-area--low {
    flex-direction: column-reverse;
  }

  .mv-lower {
    margin-bottom: var(--s5);
    padding-bottom: 5rem;
  }
  .mv-lower:after {
    width: 30rem;
    height: 5rem;
    bottom: -2.5rem;
    right: var(--s2);
  }

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

      main visual

  */
  .mainvisual {
    padding: var(--s12) var(--s2) 0;
  }
  .mainvisual-title {
    font-size: 2.8rem;
  }
  .mainvisual-title:before {
    height: 4rem;
    bottom: -2rem;
    right: auto;
    left: calc(var(--s2) * -1);
  }
  .mainvisual-title span.bg {
    font-size: 2rem;
  }
  .mainvisual-title span.bg:first-child {
    margin-left: 0;
  }
  .mainvisual-title span.sm {
    font-size: 2rem;
  }
  .mainvisual-title span.sm2 {
    font-size: 2rem;
  }
  .mainvisual-title span.rt {
    text-align: left;
  }
  .mainvisual-bg {
    left: 0;
    width: 160%;
    height: 20rem;
    left: -8rem;
  }
  .mainvisual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
  }
  .mainvisual-inner {
    margin-bottom: var(--s2);
    padding-bottom: 6rem;
  }
  .mainvisual-inner:before {
    width: 23.2rem;
    height: 26.3rem;
    right: -5rem;
    left: auto;
    bottom: 0;
  }
  .mainvisual-arrow {
    left: 0;
    width: 90vw;
    bottom: 0;
  }

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

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

      toc lower

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

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

      list

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

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

      sp btn

  */
  .btn-internal,
.btn-web {
    width: 32rem;
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    min-height: 6rem;
    padding-right: 5rem;
    padding-left: 4rem;
    background-size: 2.4rem auto, auto;
    font-size: 1.4rem;
  }
  .btn-internal:after,
.btn-web:after {
    transform: translate(0.4rem, 0.4rem);
  }

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

  .btn-tel {
    width: 32rem;
    margin: var(--s3) auto;
    display: block;
    position: relative;
    position: relative;
    z-index: 0;
  }
  .btn-tel:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border: solid 1px #0b1f43;
    border-radius: 10rem;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transform: translate(0.4rem, 0.4rem);
  }
  .btn-tel a {
    width: 100%;
    min-height: 6rem;
    margin: 0 auto;
    padding: var(--s2) 5rem;
    background: #0b1f43 url("img/icon-tel.png") no-repeat center left var(--s3)/2.2rem auto;
    border-radius: 10rem;
    box-shadow: 0 0 1.6rem rgba(11, 31, 67, 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) auto;
    flex-direction: column;
    gap: var(--s3);
  }
  .btn-column .btn-web,
.btn-column .btn-internal,
.btn-column .btn-tel {
    margin: 0 auto;
  }

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

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

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

      sp caption

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

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

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

  	sp catch

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

  .catch-02 {
    font-size: 1.5rem;
  }

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

  	subgrid card

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

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

      sp float wrap

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

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

  	sp pankuzu

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

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

      sp footer

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

  .footer-about {
    max-width: 86%;
    margin: 0 auto var(--s3);
    padding: var(--s3);
    position: relative;
  }
  .footer-about .l-column__side02 {
    display: none;
  }
  .footer-about__title {
    padding-bottom: var(--s9);
    margin-bottom: var(--s2);
    font-size: 1.5rem;
    text-align: center;
    background: url(img/logo-square.png) no-repeat center bottom/7.5rem auto;
  }
  .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 9rem;
  }

  .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-white-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-white-right.svg") no-repeat center/auto 1.4rem;
  }

  .footer-menu {
    padding: var(--s1) 0;
    background: rgba(255, 255, 255, 0.1);
    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: 6.6rem;
    height: 4rem;
  }
  .gnavi-btn span {
    width: 2.8rem;
    left: 1.9rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.3rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 2.7rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.7rem) rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.7rem) rotate(45deg);
  }

  .gnavi-area {
    width: 100%;
    padding: 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;
  }

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

      footer-banner

  */
  .fixed-banner .sidebar-area__btn {
    width: 28rem;
    margin: 0;
    padding: 0 var(--s4) 0.6rem var(--s2);
    border-radius: 0 var(--s5) var(--s5) 0;
    font-size: 1.3rem;
    position: fixed;
    left: 0;
    bottom: 0.6rem;
  }
  .fixed-banner .sidebar-area__btn span.tag {
    border-bottom-right-radius: var(--s1);
  }

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

       sp toggle sp

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

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

  .toggle-btn-sp {
    display: block;
    width: 100%;
    padding-right: var(--s4);
    position: relative;
  }
  .toggle-btn-sp::before {
    content: "";
    width: 1.7rem;
    height: 0.3rem;
    background: #0b1f43;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
  .toggle-btn-sp::after {
    content: "";
    width: 0.3rem;
    height: 1.7rem;
    background: #0b1f43;
    position: absolute;
    top: 50%;
    right: 0.7rem;
    transform: translate(0, -50%);
    transition: transform 0.3s;
  }
  .toggle-btn-sp.is-open::after {
    transform: translate(0, -50%) rotate(270deg);
  }

  .btn-more-sp {
    margin-top: var(--s2);
    text-align: right;
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
  }

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

       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: #0b1f43;
    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: #0b1f43;
    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

  */
  .card-voice {
    padding: var(--s2);
  }
  .card-voice-wrap {
    margin: var(--s3) 0;
    flex-direction: column-reverse;
    gap: 0;
  }
  .card-voice__pic {
    width: 8rem;
    margin: 0 0 -7rem auto;
  }
  .card-voice__pic img{
    /* border-radius: var(--s1); */
  }
  .card-voice__pic:before {
    content: none;
  }
  .card-voice__title {
    padding: var(--s1) var(--s9) var(--s1) var(--s2);
    font-size: 1.7rem;
  }
  .card-voice .tag-name {
    width: 100%;
    padding-right: var(--s5);
  }

  .icon-title {
    padding-left: var(--s6);
    font-size: 1.7rem;
  }
  .icon-title span {
    padding: var(--s-2) var(--s1);
    font-size: 1.2rem;
  }

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

      SP titles

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

  h1:not([class]) {
    min-height: 7rem;
    margin: var(--s2) 0 0;
    padding-left: var(--s2);
    font-size: 2.4rem;
  }
  h1:not([class]):before {
    width: 5rem;
    left: -4.2rem;
  }

  .main-area--low h2:not([class]),
.main-area--low h3:not([class]),
.main-area--low h4:not([class]),
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low h2:not([class]) {
    font-size: 2rem;
    padding: 1.2rem var(--s2);
  }
  .main-area--low h2:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]) {
    padding-left: 1.2rem;
    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]) {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    font-size: 1.6rem;
    padding: var(--s-2) 0 var(--s-2) 2rem;
  }
  .main-area--low h4:not([class]):before {
    width: 0.3rem;
  }
  .main-area--low h4:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h5:not([class]) {
    padding-left: 2rem;
    font-size: 1.5rem;
  }
  .main-area--low h5:not([class])::before {
    width: 1.5rem;
  }
  .main-area--low h5:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h6:not([class]) {
    font-size: 1.5rem;
  }

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

      SP end

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

      TOP section

  */
  .common-title {
    width: 100%;
    font-size: 2.4rem;
  }
  .common-title a {
    padding-right: 4rem;
    background-size: 2.4rem auto;
  }
  .common-title span.sm {
    font-size: 1.7rem;
  }
  .common-title span.sm2 {
    font-size: 1.9rem;
  }

  .common-lead {
    margin-bottom: var(--s4);
  }
  .common-lead--ct {
    text-align: left;
  }

  .page-link {
    padding-bottom: var(--s2);
  }
  .page-link:before {
    transform: none;
    left: 0;
    top: 0.8rem;
  }
  .page-link__title {
    padding-left: 0;
    font-size: 1.7rem;
  }
  .page-link__item {
    width: 100%;
  }
  .page-link__item a {
    display: block;
    background-size: 1.8rem auto;
    font-size: 1.4rem;
  }
  .page-link__item a:before {
    top: 0;
  }

  .bg-arrow {
    background-size: 90% auto;
  }

  .sec01-main {
    padding-top: 11rem;
    background: url(img/sec01-pic-1-sp.png) no-repeat right top / auto 19%;
  }
  .sec01-main__en {
    width: 20rem;
    margin-bottom: var(--s4);
  }
  .sec01-main__text p {
    font-size: 1.6rem;
  }

  .box-sponsored__en {
    width: 26rem;
  }
  .box-sponsored .title-tag {
    margin-bottom: var(--s1);
    padding-left: var(--s4);
    font-size: 1.4rem;
  }
  .box-sponsored .title-tag:before {
    width: var(--s3);
  }
  .box-sponsored__title {
    margin-bottom: var(--s3);
    width: 95%;
  }
  .box-sponsored__title:after {
    left: 100%;
    width: 2rem;
  }
  .box-sponsored__name {
    font-size: 1.9rem;
  }
  .box-sponsored__body {
    min-height: initial;
    padding: 0;
    background-size: 6rem auto;
  }
  .box-sponsored__subtitle {
    padding-left: 8rem;
    font-size: 1.8rem;
  }

  .sec-fact {
    padding-bottom: var(--s8);
  }
  .sec-fact:before {
    height: calc(100% - var(--s6));
  }
  .sec-fact__pic {
    width: 60%;
    margin-bottom: var(--s4);
  }
  .sec-fact-en {
    width: 20rem;
    height: 3.4rem;
    top: var(--s10);
    left: var(--s2);
  }
  .sec-fact__inner {
    padding: var(--s2);
  }
  .sec-fact__tag {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .sec-fact__subtitle {
    font-size: 1.8rem;
  }
  .sec-fact__catch {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }

  .fact2-graphic .label {
    right: auto;
    left: var(--s2);
  }
  .fact2-graphic .cell {
    padding-left: 7.5rem;
  }

  .loop-animation {
    width: 250%;
    height: 6rem;
    background-size: auto 100%;
  }

  .sec-sponsored {
    padding: 10rem 0;
  }
  .sec-sponsored:before {
    background-repeat: repeat-y;
    background-size: 150% auto;
    background-position: center bottom;
  }
  .sec-sponsored .l-center:before {
    width: 100%;
    height: 12rem;
    left: 0;
    top: -6rem;
  }
  .sec-sponsored .l-center:after {
    width: 3.8rem;
    height: 6.6rem;
    left: 50%;
    bottom: -12.2rem;
    transform: translateX(-50%);
  }
  .sec-sponsored__ttlblock {
    padding: var(--s3) 0 var(--s2);
  }
  .sec-sponsored__ttlblock:before {
    height: 18rem;
  }
  .sec-sponsored__ttlblock:after {
    border-width: 9rem 0 9rem 3rem;
  }
  .sec-sponsored__title {
    font-size: 2rem;
  }
  .sec-sponsored__inner {
    padding: var(--s2);
    padding-bottom: 0;
  }
  .sec-sponsored__inner .inner-title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .sec-sponsored__inner .l-column {
    flex-direction: column-reverse;
  }
  .sec-sponsored__subtitle {
    margin-bottom: var(--s3);
    padding-top: var(--s3);
    font-size: 2rem;
  }
  .sec-sponsored__subtitle span.sm {
    font-size: 1.7rem;
  }
  .sec-sponsored__subtitle:before {
    border-width: 1.5rem 1.8rem 0 1.8rem;
  }

  .card-reason {
    width: 100%;
    padding: var(--s2);
  }
  .card-reason:nth-of-type(1), .card-reason:nth-of-type(2) {
    width: 100%;
  }
  .card-reason__tag {
    margin-bottom: var(--s1);
    font-size: 2rem;
  }
  .card-reason__title {
    min-height: initial;
    font-size: 1.8rem;
  }
  .card-reason .toggle-sp-content {
    padding-top: var(--s2);
  }

  .real-voice {
    margin: var(--s8) 0;
  }
  .real-voice:before {
    width: calc(100% + var(--s2) * 2);
  }
  .real-voice__tag {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .real-voice__pic {
    position: static;
    text-align: center;
  }
  .real-voice__pic img {
    width: 80%;
  }
  .real-voice__title {
    padding: var(--s2);
    font-size: 1.8rem;
  }
  .real-voice__text {
    margin-top: var(--s2);
  }
  .real-voice .btn-internal,
.real-voice .btn-web {
    width: 30rem;
  }

  .sec-summary {
    padding-top: 11rem;
  }
  .sec-summary .l-center:after {
    width: 4rem;
    height: 26rem;
    top: 0;
  }
  .sec-summary__body {
    padding-left: var(--s1);
  }
  .sec-summary__catch {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .sec-summary__catch span.sm {
    margin-bottom: var(--s2);
    font-size: 1.7rem;
  }

  .loop-photo3 {
    width: 200%;
    height: 8rem;
    background: url(img/loop-pic-sp.png) repeat-x left top/auto 100%;
    animation: loops 50s linear infinite;
    position: absolute;
    right: 0;
    top: var(--s2);
    z-index: -1;
  }

  .sec-work {
    padding: 10rem 0 6rem;
  }
  .sec-work-en {
    width: 14rem;
    height: 4rem;
    top: -5rem;
    left: var(--s1);
  }
  .sec-work__subtitle {
    margin-bottom: var(--s1);
    font-size: 1.8rem;
    margin-top: var(--s5);
  }

  .flow-slider,
.buy-slider {
    width: calc(100% + var(--s2));
    padding-left: var(--s1);
  }

  .splide__arrow {
    width: 4rem;
    height: 4rem;
  }

  .card-flip__content,
.card-flip__content02 {
    flex-basis: 260px;
    flex-grow: 0;
    /* 伸びない */
    flex-shrink: 1;
    padding-top: var(--s2);
  }

  .card-flip__content02 {
    margin-left: -260px;
  }

  .card-flip__num {
    line-height: 1;
  }

  .point-title {
    margin-bottom: -6rem;
  }
  .point-title:after {
    width: 15rem;
    height: 4rem;
    top: auto;
    bottom: -3rem;
  }
  .point-title span.sm {
    font-size: 1.5rem;
  }
  .point-title span.main {
    font-size: 2.2rem;
  }

  .real-voice--point {
    padding: var(--s8) var(--s2) var(--s3);
  }
  .real-voice--point:before {
    width: 100%;
  }

  .sec-interview {
    padding-top: var(--s9);
    padding-bottom: var(--s9);
  }
  .sec-interview .l-center:before {
    width: 25rem;
    height: 4rem;
    right: auto;
    left: 50%;
    top: -6rem;
    transform: translateX(-50%);
  }
  .sec-interview__inner {
    margin-top: var(--s3);
    padding: 22rem var(--s2) var(--s3);
  }
  .sec-interview__inner .l-cluster {
    justify-content: center;
  }
  .sec-interview__inner .btn-internal {
    width: 30rem;
  }
  .sec-interview__pic {
    width: 20rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 00rem;
  }
  .sec-interview__title {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .sec-interview__feature {
    margin: var(--s3) auto;
    border-radius: var(--s1);
    overflow: hidden;
  }
  .sec-interview__feature:before {
    width: 100%;
    background-position: right var(--s2) top 24rem;
    background-size: 7rem auto;
  }

  .tag-name {
    font-size: 1.8rem;
  }

  .feature-body {
    padding: var(--s2);
  }

  .feature-title {
    font-size: 1.8rem;
  }

  .sec-benefits {
    padding-top: var(--s6);
  }
  .sec-benefits .l-center:before {
    width: 19rem;
    height: 4rem;
    top: var(--s10);
    left: var(--s2);
  }

  .common-ttlblock {
    margin-bottom: 0;
  }

  .card-benefit {
    padding-left: var(--s2);
  }
  .card-benefit__title {
    min-height: 5rem;
    background-size: 5rem auto;
    padding-left: 6rem;
    font-size: 1.7rem;
  }

  .box-summary {
    margin: var(--s6) auto;
    padding: var(--s7) 0 var(--s4) var(--s2);
  }
  .box-summary:after {
    width: 20rem;
    height: 2.8rem;
    left: var(--s2);
    top: var(--s2);
  }
  .box-summary__inner {
    padding: var(--s3) var(--s2) var(--s4);
  }
  .box-summary__title {
    font-size: 1.8rem;
  }
  .box-summary .btn-internal,
.box-summary .btn-web {
    width: 30rem;
  }

  .sec-qa {
    padding-bottom: var(--s8);
  }
  .sec-qa:before {
    height: calc(100% - var(--s6));
  }
  .sec-qa-en {
    width: 9rem;
    height: 3.4rem;
    top: var(--s10);
    left: var(--s2);
  }

  .card-qa {
    padding: var(--s1) var(--s3) var(--s4);
  }
  .card-qa__title {
    padding-left: 3.4rem;
    font-size: 1.6rem;
  }
  .card-qa__title:before {
    font-size: 2rem;
  }
  .card-qa__answer {
    padding-left: 3.4rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .card-qa__answer:before {
    font-size: 2rem;
  }
  .card-qa__btn {
    font-size: 1.4rem;
  }
  .card-qa--low {
    padding-right: 0;
    padding-left: 0;
  }

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

      SP end

  */
}
