@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: 800;
  src: url("fonts/NS-800.woff2") format("woff2"), url("fonts/NS-800.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: 1200px) {
  :root {
    font-size: 0.8333333333vw;
  }
}
body {
  margin: 0;
  padding: 0;
  color: #141414;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  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.6rem;
  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: #141414;
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

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

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

strong {
  font-weight: 700;
}

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

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

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

    animation

*/
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loop01 {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/*
---------------------------------------------

    inview

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

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

.fadeInDeg {
  opacity: 0;
  transform: translate(-1.5rem, 2rem);
  transition: transform 1.2s ease, opacity 1.2s ease;
}

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

.fadeInScaleUp {
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

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

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

    layout center

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

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

    layout stack

*/
.l-stack-01 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16rem;
}
.l-stack-01 > * {
  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;
}

.l-stack-03 {
  margin-top: var(--s8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12rem;
}
/*
---------------------------------------------

    layout cluster

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

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

    layout grid

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

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

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

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

    layout sidebar

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

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

    layout column

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

.l-column-01 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s10);
  align-items: center;
}
.l-column-01__side {
  width: 52rem;
}
.l-column-01__main {
  flex: 1;
}
.l-column-01--row-reverse {
  flex-direction: row-reverse;
}

.l-column-02 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  align-items: center;
}
.l-column-02__side {
  width: 22rem;
}
.l-column-02__side img {
  border-radius: 14rem;
}
.l-column-02__main {
  flex: 1;
}

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

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 24rem 1fr;
  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-02 .caption {
  margin-top: 2.8em;
}
.l-grid-areas__cell-03 {
  grid-area: text;
}
.l-grid-areas--row-reverse {
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 24rem;
}
.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.sec01-column {
  grid-template-columns: 52rem 1fr;
  grid-gap: var(--s3) var(--s10);
}
.l-grid-areas.sec01-column.l-grid-areas--row-reverse {
  grid-template-columns: 1fr 52rem;
}

.l-grid-areas02 {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 55rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s3) var(--s6);
}
.l-grid-areas02__cell-01 {
  grid-area: catch;
}
.l-grid-areas02__cell-02 {
  grid-area: img;
}
.l-grid-areas02__cell-03 {
  grid-area: text;
}
.l-grid-areas02--row-reverse {
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 55rem;
}

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

    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__name {
  margin: var(--s1) 0;
  font-size: 1.1rem;
  position: absolute;
  left: var(--s2);
  top: 0;
  z-index: 1;
}
.header-area__name a {
  text-decoration: none;
}
.header-area__logo {
  height: 6.2rem;
}
.header-area__inner {
  width: 100%;
  height: 7.2rem;
  padding: 0 9rem 0 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 var(--s-2) var(--s1) rgba(0, 0, 0, 0.1);
  display: flex;
  gap: var(--s2);
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  transition: all 0.3s;
}
.header-area__navi {
  display: flex;
  gap: var(--s9);
}
.header-area__navi__item {
  font-weight: 800;
  text-align: center;
}
.header-area__navi__item a {
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
}

@media (hover: hover) {
  .header-area__logo a:hover,
  .header-area__navi__item a:hover,
  .header-area__name a:hover,
  .mainvisual-low__logo a:hover {
    opacity: 0.6;
  }
}
.js-header-appear,
.js-header-appear02 {
  opacity: 0;
  visibility: hidden;
}
.js-header-appear.is-fixed,
.js-header-appear02.is-fixed {
  opacity: 1;
  visibility: visible;
}

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

    main-area

*/
.main-area {
  margin-top: 100vh;
  overflow: clip;
  position: relative;
}
.main-area--low {
  overflow: initial;
  margin-top: 0;
}

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

    main visual

*/
.mainvisual {
  width: 100%;
  height: 100svh;
  padding: var(--s5) 0 0;
  background: url(img/mv-bg.jpg) no-repeat center top/100% auto;
  position: fixed;
  top: 0;
  left: 0;
}
.mainvisual-logo {
  width: 8.8rem;
  margin-bottom: var(--s3);
}
.mainvisual-inner {
  height: 100%;
  padding-bottom: var(--s5);
  display: flex;
  align-items: center;
  background: url(img/scroll-mv.svg) no-repeat center bottom 60px / 50px auto;
}
.mainvisual-pic {
  width: 35%;
  position: absolute;
  left: 10%;
  top: 18%;
}
.mainvisual-body {
  width: 100%;
  padding-left: 46%;
  padding-bottom: 4%;
}
.mainvisual-title {
  margin-bottom: var(--s4);
  font-size: 5.5vw;
  font-weight: 800;
  line-height: 1.2;
}
.mainvisual-title span.sm {
  display: block;
  width: fit-content;
  font-size: 3.15vw;
  transition-delay: 0.3s;
}
.mainvisual-title span.st {
  display: inline-block;
  margin-left: var(--s1);
  font-size: 6.5vw;
  color: #ff6f00;
  transform: translateY(0.5rem);
}
.mainvisual-title span.ttl {
  display: block;
  transition-delay: 0.5s;
}
.mainvisual-lead {
  margin-bottom: 10rem;
  transition-delay: 0.9s;
}
.mainvisual .pr-text {
  margin-bottom: 0;
  transition-delay: 0.9s;
  text-align: left;
}

.mainvisual-low {
  padding-top: var(--s6);
  height: 22rem;
  background: #fff url(/wp/wp-content/uploads/mv-bg-low-scaled.jpg) no-repeat center top/auto 100%;
}
.mainvisual-low__logo {
  width: 17.6rem;
  margin: 0 auto;
}

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

    TOC lower

*/
.toc-lower-wrap {
  max-width: 90rem;
  margin: var(--s8) auto;
  padding: var(--s4) var(--s6);
  border: solid 1px #b5b5b5;
  background: #fff url(img/txt-index.png) no-repeat right var(--s4) top var(--s3) / 8.5rem auto;
  border-radius: var(--s3);
  position: relative;
}
.toc-lower-wrap--relation {
  padding-bottom: var(--s2);
  background-image: url(img/txt-related.png);
  background-size: 20rem auto;
}
.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;
  color: #23285d;
  position: absolute;
  top: 0.25em;
  left: 0.4rem;
}
.toc-lower-wrap ul li.chapter-h-two a,
.toc-lower-wrap ul:not([class]) li.chapter-h-two a {
  background: none;
}
.toc-lower-wrap ul li.chapter-h-three,
.toc-lower-wrap ul:not([class]) li.chapter-h-three {
  margin: var(--s2) 0 var(--s1) var(--s4);
  padding: 0 0 0 1.5em;
  font-size: 1.6rem;
  font-weight: 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;
}
.toc-lower-wrap ul li.relation-links,
.toc-lower-wrap ul:not([class]) li.relation-links {
  padding: 0 0 0 1.8em;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
.toc-lower-wrap ul li.relation-links:before,
.toc-lower-wrap ul:not([class]) li.relation-links:before {
  width: 1.8rem;
  height: 1.8rem;
  background: url(img/arrow-01-navy-right.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.3em;
}
.toc-lower-wrap a {
  display: block;
  text-decoration: none;
}

.toc-lower__title {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.toc-lower__title span.en {
  margin-left: var(--s3);
}
.toc-lower__title span.en img {
  height: 3.3rem;
  width: auto;
}

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

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

    list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: var(--s2) 0;
}
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 2;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #23285d;
  border-radius: 10rem;
  position: absolute;
  top: 0.75em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 1em;
}
.main-area ol:not([class]) {
  margin: var(--s4) 0;
  counter-reset: number;
}
.main-area ol:not([class]) li {
  padding: 0 0 0 2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.main-area ol:not([class]) li::before {
  content: counter(number);
  width: 1.6em;
  height: 1.6em;
  background: #23285d;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  position: absolute;
  top: 0.1em;
  left: 0;
}
.main-area ol:not([class]) li a {
  text-decoration: none;
}
.main-area ol:not([class]) li + li {
  margin-top: 1em;
}

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

    btn

*/
.btn-internal {
  margin: var(--s5) auto;
  position: relative;
}
.btn-internal a {
  width: 37.5rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 1.4rem var(--s8);
  background: #195ed6 url("img/arrow-01-white-right.svg") no-repeat center right var(--s3) / 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;
  transition: background-position 0.4s, opacity 0.4s;
}

@media (hover: hover) {
  .btn-internal a:hover {
    opacity: 0.7;
  }
}
.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 37.5rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 1.4rem var(--s8);
  background: #ff6f00 url("img/icon-window.svg") no-repeat center right var(--s3) / 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;
  transition: background-position 0.4s, opacity 0.4s;
}

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

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

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

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

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

    table

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

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

th {
  background: #f7f7f5;
}

td {
  background: #fff;
}

tbody th {
  background: #f7f7f5;
}

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

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

    caption

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

.caption-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: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: #141414;
}

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

	text

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

.txt_bold {
  font-weight: 800;
  color: #ff6f00;
}

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

	subgrid card

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

.subgrid-card img {
  border-radius: var(--s1);
}

.subgrid-card-02 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-gap: var(--s2);
}

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

    float wrap

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

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

	pankuzu

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

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

    footer

*/
.footer-area {
  padding: var(--s9) 0 0;
  background: #ebebeb;
  position: relative;
}

.footer-about {
  margin-bottom: var(--s8);
  padding: var(--s5) var(--s8) var(--s4);
  background: #fff;
  border-radius: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s9);
}
.footer-about__logo {
  width: 15.2rem;
}
.footer-about__main {
  flex: 1;
  border-radius: 1rem;
}
.footer-about__title {
  margin-bottom: var(--s1);
  font-size: 2.6rem;
  font-weight: 800;
}
.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-bottom {
  padding: var(--s1) 0;
  background: #23285d;
}
.footer-bottom__inner {
  max-width: 100rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 23.5rem;
  margin: 0;
  font-size: 2rem;
  text-align: center;
}
.footer-logo__link {
  display: block;
  text-decoration: none;
}

@media (hover: hover) {
  .footer-logo__link:hover {
    opacity: 0.6;
  }
}
.footer-box + .footer-box {
  margin-top: var(--s5);
}

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

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

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

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

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

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

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

@media (hover: hover) {
  .footer-sitemap__link:hover {
    text-decoration: underline;
    color: #fff;
  }
}
.footer-banner {
  display: block;
  width: 24rem;
  background: #fff;
  border-radius: var(--s2) 0 0 var(--s2);
  /* border: solid 1px #b5b5b5; */
  border-right: none;
  position: fixed;
  right: 0;
  bottom: 10rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 2px 2px 10px #cacaca;
}
.footer-banner:before {
  content: "";
  width: 14.5rem;
  height: 7rem;
  background: url(/wp/wp-content/uploads/banner-pic.png) no-repeat center/contain;
  position: absolute;
  right: var(--s1);
  top: -5rem;
}
.footer-banner__up {
  padding: var(--s-2) 2rem;
  border-radius: var(--s2) 0 0 0;
  background-color: #23285d;
  color: #fff;
}
.footer-banner__down {
  padding: var(--s-2) 2rem var(--s1);
  background: url(img/arrow-01-navy-right.svg) no-repeat right var(--s2) top var(--s2) / auto 2.2rem;
  font-size: 1.8rem;
}
.footer-banner span.txt-cl {
  color: #ff6f00;
}
.footer-banner span.st {
  font-size: 2.8rem;
}

@media (hover: hover) {
  .footer-banner:hover {
    opacity: 0.8;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 5rem;
  height: 5rem;
  background: #23285d;
  border-radius: var(--s1);
  display: block;
  position: fixed;
  top: 1.1rem;
  right: 1rem;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: 2.4rem;
  height: 0.2rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1.3rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 1.6rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 2.4rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 3.2rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

.gnavi-area {
  width: 40rem;
  height: 100vh;
  padding: 7rem 0;
  background: #f3f3f3;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.gnavi-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.4);
}
.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: var(--s2);
  left: var(--s2);
}
.gnavi-menu__link,
.gnavi-menu-sub__link {
  padding: 1.2rem var(--s2) 1.2rem var(--s5);
  display: block;
  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: 6.4rem;
  height: 6.4rem;
  position: fixed;
  right: 0;
  bottom: var(--s2);
  z-index: 10;
  transition: opacity 0.3s;
}

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

    toggle sp

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

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

    toggle

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

.more__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  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: #606277;
  cursor: pointer;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.more__btn::before {
  content: "";
  width: 1.6rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translate(0, -50%);
}
.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.6rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 2.9rem;
  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;
}

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

    titles

*/
.pr-text {
  margin-bottom: var(--s5);
  font-size: 1.1rem;
  color: #999;
  text-align: center;
}

.main-area h1,
.main-area h2,
.main-area h3,
.main-area h4,
.main-area h5,
.main-area h6 {
  font-weight: 800;
  word-wrap: break-word;
}
.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 a:hover,
  .main-area h3 a:hover,
  .main-area h4 a:hover,
  .main-area h5 a:hover,
  .main-area h6 a:hover {
    opacity: 0.6;
  }
}
h1:not([class]) {
  margin: var(--s8) auto var(--s3);
  padding-top: 6rem;
  background: url(img/txt-contents.png) no-repeat center top/auto 2.8rem;
  font-size: 5.2rem;
  text-align: center;
  text-wrap: balance;
}

.main-area--low h2:not([class]) {
  margin: var(--s9) auto var(--s3);
  padding: var(--s2) var(--s4) var(--s2) var(--s5);
  background: #23285d;
  border-radius: var(--s-2);
  font-size: 3rem;
  color: #fff;
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
  color: #fff;
}
.main-area--low h3:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding: var(--s2) 0 var(--s2) var(--s5);
  border-bottom: solid 1px #b5b5b5;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.4;
  position: relative;
}
.main-area--low h3:not([class]):before {
  content: "";
  box-sizing: border-box;
  width: 2.2rem;
  height: 2.2rem;
  background: #fff;
  border-radius: 50%;
  border: solid 0.6rem #141414;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-48%);
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-01-navy-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
}
.main-area--low h4:not([class]),
.main-area--low h5:not([class]) {
  margin: var(--s6) auto var(--s2);
  padding-left: var(--s2);
  color: #195ed6;
  font-size: 2rem;
  font-weight: 800;
  position: relative;
}
.main-area--low h4:not([class]):before,
.main-area--low h5:not([class]):before {
  content: "";
  width: 0.6rem;
  height: 100%;
  background: #195ed6;
  border-radius: var(--s1);
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h4:not([class]) a,
.main-area--low h5:not([class]) a {
  background: url(img/arrow-01-navy-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
  color: #195ed6;
}
.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  font-size: 1.7rem;
}
.main-area--low .icon-title {
  margin: var(--s5) 0 var(--s3);
  min-height: 11rem;
  padding: var(--s3) 0 var(--s3) 10.5rem;
  border-bottom: solid 1px #b5b5b5;
  font-size: 2.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  position: relative;
}
.main-area--low .icon-title::before {
  content: "";
  width: 8.8rem;
  height: 9.4rem;
  background: url(img/icon-point.png) no-repeat center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

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

    lower parts

*/
.parts-comment-wrap {
  margin: var(--s8) auto;
  display: flex;
  gap: var(--s5);
}
.parts-comment-wrap--reverse {
  flex-direction: row-reverse;
}
.parts-comment-wrap__side {
  width: 16rem;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}
.parts-comment-wrap__side p {
  margin-top: var(--s1);
  line-height: 1.5;
}
.parts-comment-wrap__side img {
  display: block;
  width: 16rem;
  height: auto;
}
.parts-comment-wrap__side span.st {
  font-size: 1.6rem;
  font-weight: 700;
}
.parts-comment-wrap__main {
  flex: 1;
}

.card-comment {
  padding: var(--s4) var(--s6);
  background: #ebebeb;
  border-radius: var(--s2);
  position: relative;
}
.card-comment:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.1rem 1.6rem 1.1rem 0;
  border-color: transparent #ebebeb transparent transparent;
  position: absolute;
  left: -1.4rem;
  top: var(--s7);
}
.card-comment__catch {
  margin-bottom: var(--s2);
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff6f00;
}
.card-comment--reverse:before {
  left: auto;
  right: -1.4rem;
  transform: rotate(180deg);
}

.box-qa {
  margin: var(--s10) auto;
  padding: 2rem var(--s3);
  background: #e5eefe;
  border-radius: var(--s3);
}
.box-qa__column {
  display: flex;
}
.box-qa__column + .box-qa__column {
  margin-top: var(--s5);
  position: relative;
}
.box-qa__column + .box-qa__column:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: -2rem;
}
.box-qa__tag {
  width: 5rem;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  color: #23285d;
}
.box-qa__tag--02 {
  padding-top: var(--s-2);
  color: #ff6f00;
}
.box-qa__main {
  flex: 1;
  padding: var(--s1) 0 var(--s1) var(--s3);
  border-left: solid 1px #fff;
}
.box-qa__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #23285d;
}

.box-interview {
  margin: var(--s10) auto;
  padding: var(--s6) var(--s7);
  background: #f5f5f5;
  border-radius: var(--s3);
  display: flex;
  gap: var(--s6);
}
.box-interview__column {
  display: flex;
}
.box-interview__pic {
  width: 16.5rem;
}
.box-interview__pic img {
  width: 16.5rem;
  height: 16.5rem;
  border-radius: 50%;
}
.box-interview__tag {
  margin-right: var(--s4);
  padding: var(--s-2) var(--s2);
  background: #23285d;
  border-radius: var(--s1);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.box-interview__name {
  font-size: 1.8rem;
  font-weight: 800;
}
.box-interview__main {
  flex: 1;
}
.box-interview__catch {
  margin: var(--s2) 0 var(--s3);
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff6f00;
}

.box-sponsored {
  padding: var(--s4) var(--s4) var(--s3);
  border-radius: 1rem;
  position: relative;
}
.box-sponsored:before {
  content: "";
  width: 100%;
  height: calc(100% - var(--s8));
  border-radius: 1rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: var(--s8);
  z-index: -1;
}
.box-sponsored__column {
  margin-bottom: var(--s3);
  grid-template-columns: 1fr 30rem;
  grid-gap: var(--s4) var(--s5);
}
.box-sponsored__title {
  width: 34.2rem;
  margin: 0 0 var(--s3) -2rem;
}
.box-sponsored__name {
  font-size: 2.3rem;
  font-weight: 800;
}
.box-sponsored__catch {
  margin-left: calc(var(--s4) * -1);
  padding: 2rem var(--s4);
  border-radius: 0 var(--s8) var(--s8) 0;
  background: #23285d;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}
.box-sponsored .btn-web {
  margin-bottom: var(--s2);
}

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

    TOP common

*/
section {
  background: #fff;
}

.common-title {
  margin-bottom: var(--s6);
  padding-top: 4rem;
  font-size: 7.2rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}
.common-title span.sm {
  font-size: 5.2rem;
}
.common-title--01 {
  background: url(img/txt-preparation-problem.png) no-repeat center top/auto 2.8rem;
}
.common-title--02 {
  padding-top: 6rem;
  background: url(img/txt-howto.png) no-repeat center top/auto 2.8rem;
  color: #fff;
}
.common-title--03 {
  padding-top: 6rem;
  background: url(img/txt-basic.png) no-repeat center top/auto 2.8rem;
}
.common-title--04 {
  padding-top: 6rem;
  background: url(img/txt-market-trends.png) no-repeat left top/auto 2.8rem;
  text-align: left;
}
.common-title a {
  text-decoration: none;
  padding-right: var(--s8);
  background: url(img/arrow-01-navy-right.svg) no-repeat right center/3.8rem auto;
}

.common-lead {
  max-width: 75rem;
  margin: 0 auto;
}
.common-lead--ct {
  text-align: center;
}

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

    TOP section

*/
.sec-entry {
  padding: var(--s10) 0 11rem;
  background: linear-gradient(transparent 0%, #fff 100%);
}

.box-why {
  padding: var(--s11) 10rem;
  background: url(img/bg-summary-01.jpg) no-repeat center/cover;
  border-radius: 2rem;
  color: #fff;
  text-align: center;
  position: relative;
}
.box-why:before {
  content: "";
  width: 12rem;
  height: 4.8rem;
  background: url(img/arrow-down-l-navy.svg) no-repeat center top/contain;
  position: absolute;
  left: 50%;
  top: calc(100% - 1rem);
  transform: translateX(-50%);
}
.box-why__title {
  margin-bottom: var(--s2);
  padding-top: var(--s6);
  background: url(img/txt-why.png) no-repeat center top/auto 2.8rem;
  font-size: 7.6rem;
  font-weight: 800;
}
.box-why__catch {
  margin-bottom: var(--s6);
  font-size: 4.2rem;
  font-weight: 800;
}

.sec-graph__title {
  margin-bottom: var(--s2);
  padding-left: 9.5rem;
  font-size: 3.2rem;
  font-weight: 800;
  position: relative;
}
.sec-graph__title span.st {
  font-size: 4.2rem;
  color: #ff6f00;
}
.sec-graph__title:before {
  content: "";
  width: 7.5rem;
  height: 7.5rem;
  background: url(img/icon-reason-01.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec-graph__title--02:before {
  background-image: url(img/icon-reason-02.png);
}
.sec-graph__title--03:before {
  background-image: url(img/icon-reason-03.png);
}
.sec-graph__title--04:before {
  background-image: url(img/icon-reason-04.png);
}
.sec-graph__catch {
  font-size: 1.8rem;
  font-weight: 800;
}
.sec-graph .sec01-column + .sec01-column {
  position: relative;
}
.sec-graph .sec01-column + .sec01-column:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #b5b5b5;
  position: absolute;
  left: 0;
  top: -6rem;
}

.sec-graph {
  padding: 0 0 14rem;
}

.summary-arrow {
  margin: var(--s9) auto 6rem;
  width: 12rem;
}

.box-summary {
  margin: 6rem auto 0;
  padding: var(--s8) 10rem;
  background: url(img/bg-summary-02.jpg) no-repeat center/cover;
  border-radius: 2rem;
  color: #fff;
  text-align: center;
}
.box-summary--low {
  margin: var(--s10) auto;
  padding: var(--s6) var(--s8);
  text-align: left;
}
.box-summary__tag {
  width: fit-content;
  margin: 0 auto var(--s2);
  padding: var(--s-2) var(--s4);
  border-radius: var(--s1);
  background: #ff6f00;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.box-summary__point {
  width: fit-content;
  margin: 0 auto var(--s4);
  padding: var(--s-2) var(--s4);
  border-radius: var(--s1);
  background: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #141414;
}
.box-summary__title {
  margin-bottom: var(--s4);
  font-size: 4.2rem;
  font-weight: 800;
  color: #fff;
}
.box-summary p {
  color: #fff;
  text-align: center;
}
.box-summary--02 {
  background-image: url(img/bg-summary-03.jpg);
}
.box-summary--02 .box-summary__title,
.box-summary--02 p {
  color: #141414;
}
.box-summary__column {
  display: flex;
  gap: var(--s7);
  align-items: center;
  margin-bottom: var(--s4);
}
.box-summary__logo {
  width: 14rem;
}
.box-summary__catch {
  flex: 1;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
}
.box-summary__catch span.st {
  font-size: 3.6rem;
  color: #ff6f00;
}
.box-summary p.box-summary__text {
  text-align: left;
}
.box-summary .btn-internal {
  margin: var(--s4) auto 0;
}

.sec-prepare {
  padding: 12rem 0;
  border-radius: var(--s6);
  background: #f3f3f3;
}

.area-prepare {
  margin: 7rem auto 0;
  padding: 18rem 10rem 9rem;
  border-radius: var(--s6) var(--s6) 0 0;
  background: #fff;
  position: relative;
}
.area-prepare:before {
  content: "";
  width: 46rem;
  height: 8rem;
  background: url(img/txt-preparation.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 7rem;
  transform: translateX(-50%);
}
.area-prepare--2nd {
  margin: 0.5rem auto 0;
  padding: 18rem 10rem 11rem;
  position: relative;
  border-radius: 0 0 var(--s6) var(--s6);
}
.area-prepare--2nd:before {
  background-image: url(img/txt-problem.png);
}
.area-prepare__title {
  margin-bottom: var(--s5);
  border-radius: var(--s1);
  padding: 1rem;
  background: #23285d;
  color: #fff;
  font-size: 4.2rem;
  font-weight: 800;
  text-align: center;
}
.area-prepare__item:nth-of-type(even) .area-prepare__pic {
  transition-delay: 0.2s;
}
.area-prepare__item__title {
  padding-left: 6rem;
  font-size: 2.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  position: relative;
}
.area-prepare__item__title:before {
  content: "";
  width: 3.4rem;
  height: 4.4rem;
  background: url(img/txt-1.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.area-prepare__item__title--02:before {
  background-image: url(img/txt-2.png);
}
.area-prepare__item__title--03:before {
  background-image: url(img/txt-3.png);
}
.area-prepare__item__title--04:before {
  background-image: url(img/txt-4.png);
}
.area-prepare__item__text {
  font-size: 1.6rem;
  line-height: 2;
  color: #141414;
}

.card-problem {
  position: relative;
}
.card-problem__title {
  margin-bottom: var(--s3);
  font-size: 3.6rem;
  font-weight: 800;
  color: #ff6f00;
}
.card-problem__title a {
  padding-right: var(--s6);
  background: url(img/arrow-01-navy-right.svg) no-repeat right center/2.6rem auto;
  color: #ff6f00;
  text-decoration: none;
}
.card-problem__catch {
  font-size: 2rem;
  font-weight: 800;
  color: #23285d;
}
.card-problem__pic img {
  border-radius: var(--s1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-problem .btn-link {
  margin-bottom: 0;
}
.card-problem + .card-problem:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #b5b5b5;
  position: absolute;
  left: 0;
  top: -5.5rem;
}

@media (hover: hover) {
  .card-problem__title a:hover {
    opacity: 0.6;
  }
}
.sec-howto {
  padding: 12.7rem 0;
  border-radius: var(--s6);
  background: #090e3e url(img/bg-sec03.jpg) no-repeat center top/100% auto;
}

.howto-list {
  margin-bottom: var(--s10);
  display: flex;
  justify-content: center;
  gap: var(--s4);
}
.howto-list a {
  width: 31.2rem;
  margin-top: var(--s4);
  padding: var(--s2) var(--s7) var(--s2) var(--s3);
  border-radius: 1rem;
  background: #fff url(img/arrow-01-navy-down.svg) no-repeat right var(--s3) center/2.6rem auto;
  box-shadow: 0 0.4rem 0.8rem #000;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.4;
  position: relative;
}
.howto-list a:before {
  content: "";
  width: 4.1rem;
  height: 2.5rem;
  background: url(img/txt-01.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: calc(100% + var(--s1));
  transform: translateX(-50%);
}
.howto-list a:nth-of-type(2):before {
  background-image: url(img/txt-02.svg);
}
.howto-list a:nth-of-type(3):before {
  background-image: url(img/txt-03.svg);
}

@media (hover: hover) {
  .howto-list a:hover {
    opacity: 0.8;
  }
}
.area-howto {
  padding: var(--s8) 0 var(--s5) 10rem;
  position: relative;
  z-index: 0;
}
.area-howto:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  border-radius: var(--s4) 0 0 var(--s4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.area-howto--reverse {
  padding-right: 10rem;
  padding-left: 0;
}
.area-howto--reverse:before {
  border-radius: 0 var(--s4) var(--s4) 0;
  left: auto;
  right: 0;
}
.area-howto__title {
  padding: var(--s7) 0 1rem;
  border-bottom: solid 0.7rem #ff9649;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.3;
  position: relative;
}
.area-howto__title:before {
  content: "";
  width: 16.9rem;
  height: 10.2rem;
  background: url(img/txt-01.svg) no-repeat center/contain;
  position: absolute;
  left: -4rem;
  top: 0;
  z-index: -1;
  opacity: 0.3;
}
.area-howto__title a {
  display: block;
  padding-right: var(--s5);
  background: url(img/arrow-01-navy-right.svg) no-repeat right center/2.6rem auto;
  text-decoration: none;
}
.area-howto__title--02:before {
  background-image: url(img/txt-02.svg);
  left: auto;
  right: -4rem;
}
.area-howto__title--03:before {
  background-image: url(img/txt-03.svg);
}
.area-howto__subtitle {
  margin-bottom: var(--s3);
  padding-left: var(--s4);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
}
.area-howto__subtitle:before {
  content: "";
  box-sizing: border-box;
  width: 2.2rem;
  height: 2.2rem;
  background: #fff;
  border-radius: 50%;
  border: solid 0.6rem #141414;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-48%);
}
.area-howto__column {
  margin-bottom: var(--s5);
}
.area-howto + .area-howto {
  margin-top: 10rem;
}
.area-howto__inner {
  margin-bottom: var(--s2);
  padding: var(--s3) var(--s5);
  border-radius: var(--s1);
  background: #f3f3f3;
}
.area-howto__inner + .area-howto__inner {
  margin-bottom: var(--s5);
}
.area-howto__subtitle02 {
  margin-bottom: var(--s1);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ff6f00;
}
.area-howto__note {
  margin: var(--s4) 0 var(--s2);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  line-height: 1.2;
}
.area-howto .note-title {
  width: 15rem;
  padding-left: var(--s2);
  color: #195ed6;
  font-weight: 800;
  position: relative;
}
.area-howto .note-title:before {
  content: "";
  width: 0.4rem;
  height: 100%;
  background: #195ed6;
  border-radius: var(--s1);
  position: absolute;
  left: 0;
  top: 0;
}
.area-howto .note-text {
  width: calc(100% - var(--s3) - 15rem);
}

#howto3:after {
  content: "";
  width: 12rem;
  height: 4.8rem;
  background: url(img/arrow-down-l-white.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: calc(100% - 1rem);
  transform: translateX(-50%);
}

.box-merit {
  padding: 2rem var(--s3);
  border-radius: var(--s1);
  background: #ffecde;
}
.box-merit__title {
  width: fit-content;
  margin-bottom: var(--s1);
  padding: 0.2rem var(--s2);
  border-radius: var(--s5);
  background: #ff6f00;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}

.box-demerit {
  padding: 2rem var(--s3);
  border-radius: var(--s1);
  background: #f3f3f3;
}
.box-demerit__title {
  width: fit-content;
  margin-bottom: var(--s1);
  padding: 0.2rem var(--s2);
  border-radius: var(--s5);
  background: #d1d1d1;
  color: #606277;
  font-size: 1.8rem;
  font-weight: 800;
}

.area-compare {
  margin-top: 13rem;
  padding: var(--s8) 10rem;
  border-radius: var(--s3);
  background: #fff;
}
.area-compare__title {
  margin-bottom: var(--s6);
  padding-top: 11.2rem;
  background: url(img/txt-comparison.png) no-repeat center top/auto 8rem;
  font-size: 4.8rem;
  font-weight: 800;
  text-align: center;
}
.area-compare__title--low {
  color: #141414;
}
.area-compare--low {
  margin-top: 0;
  padding: 0 10rem 8rem;
}

.table-compare {
  border: none;
  margin-top: 10rem;
}
.table-compare__th {
  background: #23285d;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  position: relative;
}
.table-compare__th span {
  display: block;
  width: fit-content;
  margin: var(--s-2) auto 0;
  padding: 0 var(--s2);
  background: #fff;
  border-radius: var(--s4);
  color: #23285d;
}
.table-compare__th.num01 {
  border-radius: var(--s2) 0 0 0;
}
.table-compare__th.num01:before {
  content: "";
  width: 4rem;
  height: 3rem;
  background: url(img/txt-01.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.table-compare__th.num02:before {
  content: "";
  width: 4rem;
  height: 3rem;
  background: url(img/txt-02.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.table-compare__th.num03a:before {
  content: "";
  width: 6.0rem;
  height: 3rem;
  background: url(/wp/wp-content/uploads/03A.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.table-compare__th.num03b:before {
  content: "";
  width: 6.0rem;
  height: 3rem;
  background: url(/wp/wp-content/uploads/03B.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.table-compare__th:last-child {
  border-radius: 0 var(--s2) 0 0;
}
.table-compare th {
  border: none;
}
.table-compare td {
  border: solid 0.2rem #ebebeb;
  border-top: none;
  border-bottom: none;
  font-weight: 800;
}
.table-compare tr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
.table-compare tbody tr:nth-of-type(even) td {
  background: #ebebeb;
}
.table-compare tbody tr:nth-of-type(odd) th {
  background: #dfe6f4;
}
.table-compare tbody tr:first-of-type th {
  border-radius: var(--s2) 0 0 0;
}
.table-compare tbody tr:last-of-type th {
  border-radius: 0 0 0 var(--s2);
}
.table-compare tbody th {
  background: #c1c9da;
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.table-compare th.null {
  background: none;
  border: none;
}
.table-compare__thead--bottom tr {
  margin-top: 1.2rem;
}
.table-compare__thead--bottom th,
.table-compare__thead--bottom th:nth-of-type(2),
.table-compare__thead--bottom th:last-of-type {
  border-radius: 0 0 var(--s2) var(--s2);
  line-height: 1.3;
}
.table-compare__thead--bottom th {
  font-size: 1.6rem;
  position: relative;
}
.table-compare__thead--bottom th:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 2.3rem 2rem 2.3rem;
  border-color: transparent transparent #23285d transparent;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.table-compare__thead--bottom th:first-child:before {
  content: none;
}
.table-compare .btn-internal {
  margin: var(--s1) auto 0;
}
.table-compare .btn-internal a {
  padding: 1.2rem var(--s3);
  width: 100%;
  background-size: 2.2rem auto;
  background-position: right 1rem center;
}

.area-basic {
  padding: 12rem 0;
}
.area-basic__pic {
  margin-bottom: var(--s2);
}
.area-basic__pic img {
  border-radius: var(--s1);
}
.area-basic__list {
  padding: 0 10rem;
  grid-gap: var(--s2) var(--s6);
}
.area-basic__item__title {
  min-height: 8.4rem;
  padding-right: var(--s4);
  background: url(img/arrow-01-navy-right.svg) no-repeat right center/2.6rem auto;
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 800;
}
.area-basic__item a {
  display: block;
  text-decoration: none;
}
.area-basic .btn-link {
  margin: 0;
}

@media (hover: hover) {
  .area-basic a:hover {
    opacity: 0.6;
  }
}
.area-market {
  padding: 12rem 0;
}
.area-market__inner {
  padding: var(--s8) 10rem var(--s7);
  border-radius: var(--s3);
  background: #f3f3f3;
  position: relative;
}
.area-market__inner:before {
  content: "";
  width: 33.4rem;
  height: 31.9rem;
  background: url(img/illust-sec05-01.png) no-repeat center/contain;
  position: absolute;
  right: 7rem;
  top: -6rem;
}
.area-market__catch {
  margin-bottom: var(--s4);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ff6f00;
}

.sec-sponsored {
  padding: 12rem 0;
  background: url(img/bg-sec05.jpg) no-repeat center top/cover;
}
.sec-sponsored__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: var(--s7) var(--s8) var(--s5);
  border-radius: var(--s3);
  background: #fff;
}
.sec-sponsored__column {
  margin-bottom: var(--s3);
}
.sec-sponsored__logo {
  margin-left: var(--s5);
}
.sec-sponsored__title {
  margin-bottom: var(--s3);
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 2rem;
  font-weight: 800;
}
.sec-sponsored__title span.tag {
  padding: var(--s-2) var(--s2);
  background: #23285d;
  color: #fff;
  border-radius: var(--s1);
}
.sec-sponsored__title span.sm {
  font-size: 1.2rem;
  font-weight: 400;
}
.sec-sponsored__catch01 {
  margin-bottom: var(--s3);
  font-size: 2rem;
  font-weight: 800;
  color: #ff6f00;
}
.sec-sponsored__catch02 {
  font-size: 3rem;
  font-weight: 800;
}

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

      sp base settings

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

  body {
    font-size: 1.5rem;
  }

  .sp_br {
    display: inline;
  }

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

      sp layout center

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

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

      sp layout stack

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

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

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

      sp layout cluster

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

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

      sp layout grid

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

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

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

      sp layout sidebar

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

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

      sp layout column

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

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

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

      sp layout grid areas

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

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

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

      sp layout scroll

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

      header area

  */
  .header-area__name {
    padding: 0;
    position: static;
    text-align: left;
  }
  .header-area__inner {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header-area__logo,
  .header-area__navi {
    display: none;
  }

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

      main visual

  */
  .mainvisual {
    padding: 0 var(--s1);
    background: none;
  }
  .mainvisual-inner {
    padding: 0 1.2rem;
    align-items: flex-start;
    background: none;
  }
  .mainvisual-logo {
    width: 6rem;
    margin: 0 auto var(--s1);
  }
  .mainvisual-pic {
    position: relative;
    width: 61%;
    margin: var(--s2) auto var(--s2);
    left: 0;
    top: 0;
  }
  .mainvisual-pic:before {
    content: "";
    width: 100vw;
    height: 19rem;
    background: url(img/mv-bg.jpg) no-repeat center top/contain;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
    transform: translateX(-50%);
  }
  .mainvisual-body {
    width: 100%;
    padding: 0;
  }
  .mainvisual-title {
    margin-bottom: var(--s1);
    font-size: 3.2rem;
    text-align: center;
  }
  .mainvisual-title span.sm {
    margin: 0 auto var(--s-2) auto;
    font-size: 2rem;
  }
  .mainvisual-title span.st {
    font-size: 3.6rem;
    transform: translateY(0.1rem);
  }
  .mainvisual-lead {
    margin-bottom: 0;
  }
  .mainvisual-low {
    height: auto;
    padding: 1rem 0;
  }
  .mainvisual-low__logo {
    width: 7rem;
  }

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

      TOC Top page

  */
  .toc_parts {
    position: fixed;
    top: 7rem;
    right: 0;
    width: 26rem;
    transition: all 0.5s ease;
    transform: translateX(100%);
    z-index: 8;
  }
  .toc_parts .toc_ttl {
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    background: #cccddb;
    width: 5.2rem;
    height: 5.3rem;
    box-sizing: border-box;
    padding: var(--s1) 0 var(--s1) 2.2rem;
    border-radius: var(--s1) 0 0 var(--s1);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 9;
  }
  .toc_parts .toc_ttl::before {
    content: "";
    width: 1.1rem;
    height: 0.15rem;
    background: #141414;
    position: absolute;
    top: 2.5rem;
    left: 1rem;
  }
  .toc_parts .toc_ttl::after {
    content: "";
    width: 0.15rem;
    height: 1.1rem;
    background: #141414;
    position: absolute;
    top: 2rem;
    left: 1.5rem;
  }
  .toc_parts .toc_block {
    position: fixed;
    top: 0;
    right: 0;
    background: #cccddb;
    width: 100%;
    height: auto;
    min-height: 20rem;
    padding: var(--s3) var(--s2);
    border-radius: 0 0 0 var(--s2);
    box-sizing: border-box;
  }
  .toc_parts .toc-scroll {
    height: fit-content;
    max-height: 42rem;
    padding-right: var(--s1);
    overflow-x: hidden;
    overflow-y: auto;
    /* chrome safari */
  }
  .toc_parts .toc-scroll::-webkit-scrollbar {
    width: 0.4rem;
  }
  .toc_parts .toc-scroll::-webkit-scrollbar-track {
    border-radius: 0.2rem;
    background: #ccc;
  }
  .toc_parts .toc-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.2rem;
    background: #999;
  }
  .toc_parts.is-open {
    transform: translateX(0);
    transform: translateZ(0);
  }
  .toc_parts.is-open .toc_ttl::after {
    transform: rotate(270deg);
  }

  .main-area .toc_parts ol {
    margin: 0;
  }

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

      toc

  */
  .toc-lower-wrap {
    margin: var(--s3) auto var(--s6);
    padding: var(--s2) var(--s3) var(--s5);
    background-size: auto 2rem;
  }
  .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:not([class]) li {
    font-size: 1.5rem;
  }
.toc-lower-wrap ul li.relation-links:before,
.toc-lower-wrap ul:not([class]) li.relation-links:before {
  top: 0.1em;
}
  .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,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.4;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  top: 0.3em;
}

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

      sp btn

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

  .btn-internal--pic1:before,
  .btn-internal--pic2:before {
    width: 9.6rem;
    height: 8rem;
  }

  .btn-web--header a {
    min-height: 5rem;
    height: auto;
    width: calc(100% - var(--s9));
    padding: var(--s1) var(--s5) var(--s1) var(--s10);
    border-radius: 0 var(--s2) 0 0;
    background-size: 2.4rem auto;
    background-position: right var(--s2) center;
    font-size: 1.3rem;
    position: fixed;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
  }
  .btn-web--header a:before {
    width: 6.2rem;
    height: 5.3rem;
    left: var(--s1);
    top: -0.5rem;
    transform: none;
  }

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

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

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

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

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

      sp table

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

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

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

  	subgrid card

  */
  .subgrid-card {
    grid-gap: var(--s2);
  }

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

      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(--s4);
  }

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

      sp footer

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

  .footer-about {
    width: calc(100% - var(--s4));
    margin: 0 auto var(--s4);
    padding: var(--s2) var(--s3) var(--s2);
    flex-wrap: wrap;
    gap: var(--s2);
  }
  .footer-about__main {
    flex: auto;
  }
  .footer-about__logo {
    width: 7rem;
    margin-left: auto;
    margin-bottom: -3rem;
  }
  .footer-about__title {
    margin-bottom: var(--s1);
    font-size: 1.6rem;
  }
  .footer-about-p {
    font-size: 1.3rem;
  }

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

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

  .footer-logo {
    margin: var(--s1) auto;
    width: 16rem;
  }

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

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

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

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

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

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

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

  .footer-sitemap {
    display: none;
  }

  .footer-banner {
    width: calc(100% - 6rem);
    right: auto;
    left: 0;
    bottom: 0;
    border-radius: 0 var(--s2) 0 0;
    /* border-right: solid 1px #b5b5b5; */
    border-left: none;
    box-shadow: 2px 2px 10px #00000033;
  }
  .footer-banner:before {
    width: 8rem;
    height: 4rem;
    top: -1rem;
    right: -1.2rem;
  }
  .footer-banner__up {
    padding-left: var(--s1);
    border-radius: 0 var(--s2) 0 0;
    font-size: 1.3rem;
  }
  .footer-banner__down {
    padding-left: var(--s1);
    font-size: 1.4rem;
    background-position: right var(--s1) center;
    background-size: 1.6rem auto;
  }
  .footer-banner span.st {
    font-size: 1.6rem;
  }

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

  	sp gnavi

  */
  .gnavi-btn {
    right: 0.6rem;
    top: 0.6rem;
    width: 4.6rem;
    height: 4.6rem;
  }
  .gnavi-btn span {
    left: 1.1rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.5rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.3rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 3.1rem;
  }
  .gnavi-area {
    width: 100%;
    padding: var(--s4) 0;
  }
  .gnavi-area__logo {
    display: block;
    width: 15rem;
    margin: 0 auto var(--s2);
  }

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

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

      sp page

  */
  .page-top {
    width: var(--s6);
    height: var(--s6);
    bottom: 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);
  }

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

      SP titles

  */
  .pr-text {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: var(--s2);
  }

  .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(--s6) auto var(--s2);
  }
  .main-area--low h1:not([class]) {
    margin: 0 auto var(--s2);
    padding-top: var(--s4);
    background-size: auto 2.2rem;
    font-size: 2.5rem;
  }
  .main-area--low h2:not([class]) {
    font-size: 2.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: var(--s1) 0 var(--s1) var(--s3);
    font-size: 1.9rem;
  }
  .main-area--low h3:not([class]):before {
    width: 1.6rem;
    height: 1.6rem;
    border-width: 0.5rem;
  }
  .main-area--low h3:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h4:not([class]) {
    font-size: 1.7rem;
  }
  .main-area--low h4:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h5:not([class]) {
    font-size: 1.5rem;
  }
  .main-area--low h5:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h6:not([class]) {
    font-size: 1.5rem;
  }
  .main-area--low .icon-title {
    padding-left: var(--s8);
    font-size: 1.9rem;
  }
  .main-area--low .icon-title:before {
    width: 5.6rem;
    height: 6rem;
  }

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

      lower Parts

  */
  .card-comment:before {
    border-width: 0.8rem 1.2rem 0.8rem 0;
    left: -1rem;
    top: var(--s5);
  }
  .card-comment__catch {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .card-comment p.card-comment__catch {
    line-height: 1.5;
  }

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

  .card-comment {
    padding: var(--s3);
  }

  .box-qa {
    padding: var(--s2);
  }
  .box-qa__tag {
    width: 3rem;
    font-size: 2.2rem;
    text-align: left;
  }
  .box-qa__main {
    padding-left: var(--s2);
  }

  .box-interview {
    padding: 0 var(--s3) var(--s3);
    flex-wrap: wrap;
    gap: var(--s2);
  }
  .box-interview__pic {
    width: 100%;
    margin-top: -3rem;
    text-align: center;
  }
  .box-interview__pic img {
    width: 10rem;
    height: 10rem;
  }
  .box-interview__main {
    width: 100%;
    flex: auto;
  }
  .box-interview__tag {
    margin-right: var(--s2);
    font-size: 1.4rem;
  }
  .box-interview__name {
    font-size: 1.6rem;
  }
  .box-interview__catch {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }

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

      SP end

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

      TOP section

  */
  .common-title {
    padding-top: var(--s4);
    font-size: 3.2rem;
    margin-bottom: var(--s3);
  }
  .common-title span.sm {
    font-size: 2.2rem;
  }
  .common-title--01 {
    background-size: auto 2rem;
  }
  .common-title--02 {
    background-size: auto 2rem;
  }
  .common-title--03 {
    margin-bottom: var(--s3);
    background-size: auto 2.3rem;
  }
  .common-title--04 {
    margin-bottom: var(--s3);
    background-size: auto 2.3rem;
    font-size: 3rem;
  }
  .common-title a {
    padding-right: var(--s4);
    background-size: 2.2rem auto;
  }

  .common-lead--ct {
    text-align: left;
  }

  .box-why {
    padding: var(--s4) var(--s2);
  }
  .box-why:before {
    width: 8rem;
    height: 3.5rem;
  }
  .box-why__title {
    padding-top: var(--s4);
    background-size: auto 2rem;
    font-size: 2.8rem;
  }
  .box-why__catch {
    margin-bottom: var(--s3);
    font-size: 2.2rem;
  }
  .box-why p {
    text-align: left;
  }

  .sec-entry {
    padding-bottom: 8rem;
  }

  .sec-graph {
    padding-bottom: 4rem;
  }
  .sec-graph__title {
    padding-left: var(--s7);
    font-size: 2rem;
    margin-bottom: 0;
  }
  .sec-graph__title:before {
    width: 4.5rem;
    height: 4.5rem;
  }
  .sec-graph__title span.st {
    font-size: 2.4rem;
  }
  .sec-graph__catch {
    font-size: 1.6rem;
  }
  .sec-graph .sec01-column + .sec01-column:before {
    top: calc(var(--s6) * -1);
  }
  .sec-graph .sec01-column img {
    display: block;
    max-width: 85%;
    margin: 0 auto;
  }

  .box-summary {
    margin: var(--s4) auto;
    padding: var(--s3);
  }
  .box-summary__column {
    margin-bottom: var(--s2);
    gap: var(--s2);
  }
  .box-summary__logo {
    width: 6.5rem;
  }
  .box-summary__catch {
    font-size: 1.6rem;
  }
  .box-summary__catch span.st {
    font-size: 1.8rem;
  }
  .box-summary__title {
    margin: 0 auto var(--s2);
    font-size: 2.2rem;
  }
  .box-summary__tag {
    font-size: 1.6rem;
  }
  .box-summary__point {
    margin-bottom: var(--s3);
    font-size: 1.6rem;
  }
  .box-summary p {
    text-align: left;
  }

  .summary-arrow {
    width: 8rem;
    margin: var(--s4) auto;
  }

  .sec-prepare {
    padding: var(--s8) 0;
    border-radius: var(--s4);
  }

  .area-prepare {
    margin-top: var(--s4);
    padding: var(--s8) var(--s2) var(--s5);
    border-radius: var(--s3) var(--s3) 0 0;
  }
  .area-prepare--2nd {
    margin-top: 0.5rem;
    padding: var(--s8) var(--s2) var(--s5);
    border-radius: 0 0 var(--s3) var(--s3);
  }
  .area-prepare:before {
    width: 100%;
    height: 3.6rem;
    top: 2rem;
  }
  .area-prepare__list {
    gap: var(--s6);
  }
  .area-prepare__title {
    margin-bottom: var(--s3);
    padding: 1rem var(--s2);
    font-size: 2.2rem;
    text-align: center;
  }
  .area-prepare__item__title {
    padding-left: var(--s5);
    font-size: 2rem;
  }
  .area-prepare__item__title:before {
    width: 3rem;
    height: 3rem;
  }
  .area-prepare__pic {
    width: 80%;
    margin: 0 auto;
  }

  .card-problem__title {
    margin-bottom: var(--s1);
    font-size: 2.2rem;
    text-align: center;
  }
  .card-problem__title a {
    padding-right: var(--s4);
    background-size: 2rem auto;
  }
  .card-problem__catch {
    font-size: 1.7rem;
    text-align: center;
  }
  .card-problem__pic {
    width: 60%;
    height: 18rem;
    margin: 0 auto;
  }
  .card-problem + .card-problem:before {
    top: -3rem;
  }

  .sec-howto {
    padding: var(--s8) 0 var(--s5);
    border-radius: var(--s4);
  }

  .howto-list {
    margin: var(--s5) 0 var(--s3);
    flex-direction: column;
    gap: var(--s3);
  }
  .howto-list a {
    width: 90%;
    margin: 0 auto;
    font-size: 1.8rem;
    background-size: 2.2rem auto;
  }
  .howto-list a:before {
    width: 2.4rem;
    left: var(--s2);
    transform: none;
    bottom: auto;
    top: -2.3rem;
  }

  .area-howto {
    padding: var(--s2) 0 var(--s3) var(--s2);
  }
  .area-howto__title {
    padding-top: var(--s4);
    font-size: 2.4rem;
  }
  .area-howto__title:before {
    width: 8rem;
    height: 5rem;
    left: 0;
  }
  .area-howto__subtitle {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .area-howto--reverse {
    padding-left: 0;
    padding-right: var(--s2);
  }
  .area-howto__inner {
    margin-top: var(--s4);
    padding: var(--s2);
  }
  .area-howto__subtitle02 {
    font-size: 1.8rem;
    position: absolute;
    top: 0;
    left: 15.5rem;
    height: 14rem;
    display: flex;
    align-items: center;
  }
  .area-howto__note {
    margin-top: var(--s2);
    margin-bottom: 0;
    flex-direction: column;
    gap: var(--s1);
  }
  .area-howto__note .note-title,
  .area-howto__note .note-text {
    width: 100%;
  }
  .area-howto__note .note-text {
    margin-bottom: var(--s2);
  }
  .area-howto + .area-howto {
    margin-top: var(--s7);
  }

  .box-merit__title,
  .box-demerit__title {
    font-size: 1.5rem;
  }

  #howto3:after {
    width: 8rem;
    height: 3rem;
  }

  .area-compare {
    padding: var(--s4) var(--s2);
  }
  .area-compare__title {
    margin-bottom: var(--s4);
    padding-top: var(--s5);
    background-size: auto 3rem;
    font-size: 2.4rem;
  }
  .area-compare--low {
    padding: 0 0 var(--s5);
  }

  .table-compare {
    margin-top: var(--s4);
  }
  .table-compare th,
  .table-compare td {
    padding: 1.2rem 0.6rem;
  }
  .table-compare td {
    font-size: 1.2rem;
  }

  .table-compare__thead--bottom th {
    font-size: 1.5rem;
  }

  .table-compare__th {
    font-size: 1.4rem;
  }
  .table-compare__th span {
    padding: 0 var(--s1);
    font-size: 1.3rem;
  }

  .table-compare tbody th {
    font-size: 1.2rem;
  }

  .table-compare .btn-internal a {
    min-height: initial;
    padding: var(--s1) var(--s3) var(--s1) 1rem;
    background-size: 1.3rem auto;
    background-position: right var(--s1) center;
    font-size: 1.3rem;
  }

  .area-basic {
    padding: var(--s9) 0 0;
  }
  .area-basic__list {
    padding: 0;
  }
  .area-basic__item + .area-basic__item {
    margin-top: var(--s4);
  }
  .area-basic__item__title {
    font-size: 2rem;
    min-height: 4.4rem;
  }
  .area-basic__item__title a {
    background-size: 2.2rem auto;
  }

  .area-market {
    padding: var(--s8) 0;
  }
  .area-market__inner {
    padding: var(--s4) 2rem;
  }
  .area-market__inner:before {
    width: 10rem;
    height: 10rem;
    top: -4rem;
    right: -1rem;
  }
  .area-market__catch {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }

  .sec-sponsored {
    padding: var(--s8) 0;
  }
  .sec-sponsored__inner {
    padding: 2rem;
  }
  .sec-sponsored__title {
    gap: 1rem;
    font-size: 1.5rem;
  }
  .sec-sponsored__column {
    flex-direction: column-reverse;
  }
  .sec-sponsored__logo {
    width: 80%;
    margin: 0 auto;
  }
  .sec-sponsored__catch01 {
    font-size: 1.6rem;
  }
  .sec-sponsored__catch02 {
    font-size: 1.8rem;
  }

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

      SP end

  */
}

/*--------------------------------------------------------------------------
   TOP　作図用CSS
---------------------------------------------------------------------------*/
.clip-animation.animate .clip-anim-box {
  transform: translateX(0);
}

.clip-animation .clip-anim-box {
  transform: translateX(-101%);
  transition: transform 0.4s ease-in;
}

.pop {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pop.is-visible {
  opacity: 1;
  transform: scale(1);
}

#graph01 p,
#graph02 p,
#graph03 p,
#graph04 p {
  margin: 0;
  line-height: 1.15;
}

.noise {
  position: relative;
}

.noise::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url(img/noise.png);
  background-repeat: repeat;
  background-size: 210px;
  filter: invert(100%);
  mix-blend-mode: overlay;
  opacity: 0.4;
}

.noise.ratio::before,
.noise.circle::before {
  border-radius: 50%;
}

.graph01__wrap {
  max-width: 54rem;
}

.graph01__wrap .graph01-text {
  width: 70%;
  margin-left: auto;
  position: relative;
  top: 3rem;
}

@media screen and (max-width: 767px) {
  .graph01__wrap .graph01-text {
    top: 2rem;
  }
}

.graph01__wrap .svg-wrap {
  position: absolute;
  width: 100%;
  max-width: 480px;
  top: 80px;
  right: 0;
  left: 0;
  z-index: 1;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .graph01__wrap .svg-wrap {
    max-width: 90%;
    top: 70px;
  }
}

.graph01__wrap .bar-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 253px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.graph01__wrap .bar-container::before {
  content: "";
  background: url(img/graph03_border.png) no-repeat center/cover;
  width: 5px;
  height: 90%;
  position: absolute;
  right: 0;
  left: 0;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .graph01__wrap .bar-container::before {
    width: 3px;
  }
}

@media screen and (max-width: 767px) {
  .graph01__wrap .bar-container {
    height: 178px;
    margin-bottom: 1rem;
  }
}

.graph01__wrap .bar-container .graph01-bar {
  text-align: center;
  font-weight: 700;
  position: relative;
  width: 13%;
}

@media screen and (max-width: 767px) {
  .graph01__wrap .bar-container .graph01-bar {
    width: 5rem;
  }
}

.graph01__wrap .bar-container .graph01-bar.yellow {
  background-color: #fdce47;
}

.graph01__wrap .bar-container .graph01-bar.orange {
  background-color: #ff7b16;
}

.graph01__wrap .bar-container .graph01-bar.red {
  background-color: #ed483c;
}

.graph01__wrap .bar-container .graph01-bar .bar-label {
  color: #fff;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  width: 90%;
  margin-inline: auto;
  opacity: 0;
}

.graph01__wrap .bar-container .graph01-bar .bar-label .count {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .graph01__wrap .bar-container .graph01-bar .bar-label .count {
    font-size: 1.3rem;
  }
}

.graph01__wrap .bar-container .graph01-bar .bar-label .text {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .graph01__wrap .bar-container .graph01-bar .bar-label .text {
    font-size: 1.2rem;
  }
}

.graph01__wrap .bar-container .graph01-bar .arrow {
  opacity: 0;
  position: absolute;
  right: -60px;
  bottom: 120px;
}

@media screen and (max-width: 767px) {
  .graph01__wrap .bar-container .graph01-bar .arrow {
    right: -34px;
    bottom: 91px;
    max-width: 36px;
  }
}

.graph01__wrap .age-container {
  display: flex;
  justify-content: space-between;
  max-width: 97%;
  margin: 0 auto;
  margin-top: 5px;
  color: #192166;
  line-height: 1.15;
}

@media screen and (max-width: 767px) {
  .graph01__wrap .age-container {
    max-width: 100%;
  }
}

.graph01__wrap .age-container .age-range {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  width: 5.5rem;
}

@media screen and (max-width: 767px) {
  .graph01__wrap .age-container .age-range {
    width: 4.5rem;
  }
}

.graph02__wrap {
  max-width: 49rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .graph02__wrap {
    max-width: 100%;
  }
}

.graph02__wrap .svg-wrap .svg-arrow {
  max-width: 14rem;
  top: 0;
  left: 7rem;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .graph02__wrap .svg-wrap .svg-arrow {
    max-width: 9rem;
  }
}

.graph02__wrap .svg-wrap .svg-dashed01 {
  max-width: 9rem;
  bottom: 110px;
  left: 100px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .graph02__wrap .svg-wrap .svg-dashed01 {
    max-width: 55px;
    bottom: 94px;
    left: 87px;
  }
}

.graph02__wrap .svg-wrap .svg-dashed02 {
  max-width: 15rem;
  bottom: 35px;
  left: 115px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .graph02__wrap .svg-wrap .svg-dashed02 {
    max-width: 90px;
    left: 99px;
  }
}

.graph02__wrap .circle-wrap {
  display: flex;
  height: 32rem;
  align-items: flex-end;
  position: relative;
  padding-left: 4rem;
}

@media screen and (max-width: 767px) {
  .graph02__wrap .circle-wrap {
    height: 21rem;
    padding-left: 3rem;
  }
}

.graph02__wrap .circle-wrap .circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transform-origin: bottom;
  background-color: #dddde8;
}

.graph02__wrap .circle-wrap .circle.circle-left {
  width: 70px;
  height: 70px;
}

@media screen and (max-width: 767px) {
  .graph02__wrap .circle-wrap .circle {
    width: 65px;
    height: 65px;
  }
}

.graph02__wrap .circle-wrap .circle.scale-anime {
  background-color: #192166;
  animation: grow-and-move-pc 0.5s ease-in-out forwards;
}

@media screen and (max-width: 767px) {
  .graph02__wrap .circle-wrap .circle.scale-anime {
    animation: grow-and-move-sp 0.5s ease-in-out forwards;
  }
}

.graph02__wrap .circle-wrap .circle.circle-left .price {
  position: absolute;
  bottom: 7rem;
  left: -4rem;
  width: 7.4rem;
}

@media screen and (max-width: 767px) {
  .graph02__wrap .circle-wrap .circle.circle-left .price {
    bottom: 6.5rem;
    width: 7rem;
    left: -3rem;
  }
  .graph02__wrap .circle-wrap .circle.circle-right .price {
    width: 80%;
  }
}

.graph02__wrap .circle-wrap .circle.circle-right {
  opacity: 0;
}

.graph02__wrap .circle-wrap .circle.circle-right::before {
  background-size: 100px;
}

.graph02__wrap .circle-wrap .circle.circle-right .price {
  opacity: 0;
  text-align: center;
  top: 54%;
  width: 70%;
  left: 50%;
  position: relative;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .graph02__wrap .circle-wrap .circle.circle-right .price {
    width: 82%;
  }
}

.graph02__wrap .age-container {
  display: flex;
  align-items: flex-end;
  max-width: 78%;
  gap: 20rem;
  margin: 0 auto;
  margin-top: 10px;
  color: #192166;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .graph02__wrap .age-container {
    max-width: 73%;
    gap: 125px;
    margin-block: 10px;
  }
}

.graph02__wrap .age-container .age-range {
  width: 4.5rem;
}



@media screen and (max-width: 767px) {
  .graph02__wrap .age-container .age-range {
    width: 4rem;
  }
}

.graph02__wrap .age-container .age-range.large {
  width: 7rem;
}

@media screen and (max-width: 767px) {
  .graph02__wrap .age-container .age-range.large {
    width: 5rem;
  }
}

@keyframes grow-and-move-pc {
  from {
    transform: translateX(0) scale(1);
    opacity: 0;
  }

  to {
    transform: translateX(190px) scale(4);
    opacity: 1;
  }
}

@keyframes grow-and-move-sp {
  from {
    transform: translateX(0) scale(1);
    opacity: 0;
  }

  to {
    transform: translateX(116px) scale(3.1);
    opacity: 1;
  }
}

.graph03__wrap {
  max-width: 51rem;
  position: relative;
}

.graph03__wrap::before {
  content: "";
  background: url(img/graph03_border.png) no-repeat center/contain;
  width: 10px;
  height: 100%;
  position: absolute;
  right: 0;
  left: 0;
  margin-inline: auto;
}

.graph03__wrap .magnification-area {
  display: flex;
  gap: 140px;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 767px) {
  .graph03__wrap .magnification-area {
    gap: 94px;
  }
}

.graph03__wrap .magnification-area .magnification-wrap {
  color: #192166;
}

.graph03__wrap .magnification-area .magnification-wrap .label {
  opacity: 0;
  font-weight: 700;
  border: 1px solid #192166;
  border-radius: 10px;
  padding: 0.5rem 1.3rem;
  font-size: 1.6rem;
  display: inline-block;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .graph03__wrap .magnification-area .magnification-wrap .label {
    font-size: 1.4rem;
  }
}

.graph03__wrap .magnification-area .magnification-wrap .text {
  margin-top: 10px;
  font-size: 3rem;
  display: flex;
  align-items: end;
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .graph03__wrap .magnification-area .magnification-wrap .text {
    font-size: 2.2rem;
    gap: 2px;
  }
}

.graph03__wrap .magnification-area .magnification-wrap .text .img-wrap {
  width: 13rem;
}

@media screen and (max-width: 767px) {
  .graph03__wrap .magnification-area .magnification-wrap .text .img-wrap {
    width: 8.5rem;
  }
}

.graph03__wrap .bar-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 348px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .graph03__wrap .bar-container {
    height: 238px;
    max-width: 92%;
    margin-bottom: 1rem;
  }
}

.graph03__wrap .bar-container .graph03-bar {
  text-align: center;
  font-weight: 700;
  position: relative;
  width: 7.4rem;
}

@media screen and (max-width: 767px) {
  .graph03__wrap .bar-container .graph03-bar {
    width: 5rem;
  }
}

.graph03__wrap .bar-container .graph03-bar.yellow {
  background-color: #fdce47;
}

.graph03__wrap .bar-container .graph03-bar.red {
  background-color: #ed483c;
}

.graph03__wrap .bar-container .graph03-bar .bar-label {
  position: absolute;
  top: 13px;
  z-index: 1;
  line-height: 1;
  opacity: 0;
  right: 0;
  left: 0;
  margin-inline: auto;
  width: 4.5rem;
}

.graph03__wrap .bar-container .graph03-bar .bar-label img.right {
	max-width: 70%;
}


@media screen and (max-width: 767px) {
  .graph03__wrap .bar-container .graph03-bar .bar-label {
    width: 3.5rem;
  }
}

.graph03__wrap .bar-container .graph03-bar .arrow {
  opacity: 0;
  position: absolute;
  right: -60px;
  bottom: 150px;
}

.graph03__wrap .bar-container .graph03-bar .arrow.right {
  bottom: 165px;
}

@media screen and (max-width: 767px) {
　.graph03__wrap .bar-container .graph03-bar .arrow.right {
    bottom: 120px;
  }
}

@media screen and (max-width: 767px) {
  .graph03__wrap .bar-container .graph03-bar .arrow {
    right: -34px;
    max-width: 36px;
  }
}

@media screen and (max-width: 767px) {
  .graph03__wrap .bar-container .graph03-bar .arrow.right {
    bottom: 120px;
  }
}

@media screen and (max-width: 767px) {
  .graph03__wrap .bar-container .graph03-bar .arrow.left {
    bottom: 105px;
  }
}

.graph03__wrap .age-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 94%;
  margin: 0 auto;
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .graph03__wrap .age-container {
    max-width: 89%;
    margin-top: 0;
  }
}

.graph03__wrap .age-container .age-range {
  width: 4rem;
}

@media screen and (max-width: 767px) {
  .graph03__wrap .age-container .age-range {
    width: 3.5rem;
  }
}

.graph04__wrap {
  max-width: 50rem;
}

.graph04__wrap .graph04-title {
  color: #192166;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  opacity: 0;
  padding-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .graph04__wrap .graph04-title {
    font-size: 1.5rem;
    padding-bottom: 2rem;
  }
}

.graph04__wrap .item_box {
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 0 3rem;
  max-width: 38rem;
  display: grid;
  grid-template-columns: repeat(2, max-content);
}

@media screen and (max-width: 767px) {
  .graph04__wrap .item_box {
    gap: 0 2rem;
  }
}

.graph04__wrap .item_box .r_box {
  position: relative;
  left: 10rem;
}

@media screen and (max-width: 767px) {
  .graph04__wrap .item_box .r_box {
    left: 7rem;
  }
}

.graph04__wrap .item_box .item {
  width: 17rem;
  height: 17rem;
}

@media screen and (max-width: 767px) {
  .graph04__wrap .item_box .item {
    width: 12rem;
    height: 12rem;
  }
}

.graph04__wrap .item_box .item .ratio-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.graph04__wrap .item_box .item .ratio-wrapper .ratio {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 17rem;
  height: 17rem;
}

@media screen and (max-width: 767px) {
  .graph04__wrap .item_box .item .ratio-wrapper .ratio {
    width: 12rem;
    height: 12rem;
  }
}

.graph04__wrap .item_box .item .ratio-wrapper .ratio .white_circle {
  background-color: #fff;
  border-radius: 50%;
  width: 102%;
  height: 102%;
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  -webkit-mask-image: conic-gradient(from 0deg, transparent var(--progress, 0%), #fff var(--progress, 0%));
  mask-image: conic-gradient(from 0deg, transparent var(--progress, 0%), #fff var(--progress, 0%));
}

.graph04__wrap .item_box .item .ratio-wrapper .ratio .center {
  background: #fff;
  color: #192166;
  text-align: center;
  border-radius: 50%;
  width: 80%;
  height: 80%;
  position: relative;
  display: grid;
  place-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.graph04__wrap .item_box .item .ratio-wrapper .ratio .center .pop {
  width: 80%;
}

.graph04__wrap .item_box .item .ratio-wrapper .ratio .center .text {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .graph04__wrap .item_box .item .ratio-wrapper .ratio .center .text {
    font-size: 1.8rem;
  }
}

.graph04__wrap .item_box .item .ratio-wrapper .ratio .center .number {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .graph04__wrap .item_box .item .ratio-wrapper .ratio .center .number {
    font-size: 1.3rem;
  }
}

.graph04__wrap .item_box .item .ratio-wrapper .ratio .center .number .int {
  font-size: 4.2rem;
}

@media screen and (max-width: 767px) {
  .graph04__wrap .item_box .item .ratio-wrapper .ratio .center .number .int {
    font-size: 2.4rem;
  }
}

.graph04__wrap .item_box .item .ratio-wrapper .ratio .center .number .decimal {
  font-size: 2.3rem;
}

@media screen and (max-width: 767px) {
  .graph04__wrap .item_box .item .ratio-wrapper .ratio .center .number .decimal {
    font-size: 2rem;
  }
}

.decor-video {
  width: 550px;
  max-width: 100%;
  display: block;
}
video {
  background: transparent;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
.decor-video {
  width: 250px;
  margin: 0 auto;
}
}

@media screen and (max-width: 767px) {
  .table-shopify {
    min-width: 90rem;
    width: auto;
  }
  .l-scroll-x-sp {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}