@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: 900;
  src: url("fonts/NS-900.woff2") format("woff2"), url("fonts/NS-900.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);
}

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

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

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

li {
  list-style: none;
}

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

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

a {
  color: #0d0d0d;
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

a:active,
a:hover {
  color: #0d0d0d;
  text-decoration: none;
}

p {
  line-height: 2;
}
p + p {
  margin-top: 1em;
}

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

    layout center

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

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

    layout stack

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

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

    layout cluster

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

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

    layout grid

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

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

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

    layout sidebar

*/
.l-sidebar {
  display: flex;
  gap: var(--s5);
}
.l-sidebar__side {
  width: 24rem;
}
.l-sidebar__main {
  flex: 1;
}

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

    layout column

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

.l-column__side {
  width: 30rem;
}
.l-column__side02 {
  width: 36rem;
  padding-top:2rem;
}
.l-column__side03 {
  width: 24rem;
}
.l-column__side04 {
  width: 45rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}
.l-column--align-end {
  align-items: flex-end;
}

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

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 30rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s2) var(--s5);
}
.l-grid-areas__cell-01 {
  grid-area: catch;
}
.l-grid-areas__cell-02 {
  grid-area: img;
}
.l-grid-areas__cell-03 {
  grid-area: text;
}
.l-grid-areas--row-reverse {
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 30rem;
}
.l-grid-areas--align-center {
  grid-template-rows: auto auto;
}
.l-grid-areas--align-center .l-grid-areas__cell-01 {
  place-self: end start;
}
.l-grid-areas--align-center .l-grid-areas__cell-02 {
  place-self: center;
}
.l-grid-areas--align-center .l-grid-areas__cell-03 {
  place-self: start;
}

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

    layout float

*/
.l-float {
  display: flow-root;
}
.l-float__left-pc {
  width: 40rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.l-float__right-pc {
  width: 40rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}
.l-float__center {
  width: 64rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}
.l-float__left {
  width: 40rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.l-float__right {
  width: 40rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}

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

    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-area {
  width: 100%;
  padding: var(--s1);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
.header-area__inner {
  display: flex;
  gap: var(--s2);
  justify-content: flex-end;
}
.header-area__name {
  margin: 0 auto 0 0;
  min-height: 5.6rem;
  padding-left: 15rem;
  background: url(img/logo.png) no-repeat left center/15rem auto;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}
.header-area a.header-area__name {
  text-decoration: none;
}
.header-area a.header-area__name:hover {
  opacity: 0.6;
}
.header-area .btn-web {
  margin: 0 auto;
  left: 13rem;
}
.header-area .btn-web a {
  width: 25.5rem;
  padding: 0.6rem var(--s7) 0.6rem var(--s4);
  min-height: initial;
  background-size: 2.9rem auto;
  background-position: right var(--s2) center;
  font-size: 1.3rem;
}
.header-area .btn-web a:hover {
  background-position: right var(--s1) center;
}

.header-navi {
  display: flex;
  align-items: center;
}
.header-navi__item {
  border-right: dotted 0.2rem #5382da;
}
.header-navi__item:last-child {
  border: none;
}
.header-navi__item a {
  display: block;
  padding: var(--s-2) var(--s2);
  text-decoration: none;
  text-align: center;
}
.header-navi__item a:hover {
  opacity: 0.6;
}

.mainvisual {
  padding: 10.5rem 0 var(--s8);
  background: #1f2fc4;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.mainvisual-inner {
  position: relative;
}
.mainvisual-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mainvisual-bg__column {
  width: 345.2rem;
  height: 39.7rem;
  background: url(img/mv-pic.jpg) repeat-x left top/auto 100%;
  animation: loop01 100s linear infinite;
}
.mainvisual-logo {
  width: 10.5rem;
  margin-bottom: var(--s3);
}
.mainvisual-title {
  margin-top: -6rem;
  margin-bottom: var(--s7);
  font-size: 3.3rem;
  font-weight: 900;
  color: #fff;
}
.mainvisual-title .white {
  background: #fff;
  padding: 3rem 2rem 3rem .5rem;
  color: #2234da;
}
.mainvisual-title span.st {
  font-size: 7.2rem;
}
.mainvisual-title span.cl {
  width: 24rem;
  height: 10rem;
  background: url(img/kaitoridaikichi-logo5.png) no-repeat center;
  display: inline-block;
  margin: 2rem 0 -4rem;
  background-size: 24rem;
}
.mainvisual-title span.line {
  margin: 0 var(--s1);
  font-size: 4.5rem;
  border-bottom: solid 0.3rem #f5d659;
}
.mainvisual-lead {
  max-width: 72rem;
  margin-top: auto;
  margin-bottom: var(--s6);
  font-size: 1.8rem;
  color: #fff;
}
.mainvisual-lead p {
  line-height: 1.5;
}
.mainvisual-sponsored {
  font-size: 1.3rem;
  color: #fff;
}
.mainvisual-character {
  width: 20.5rem;
  height: 20.5rem;
  position: absolute;
  right: 0;
  top: 10rem;
  text-align: center;
}
.mainvisual-character span {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 2;
}
.mainvisual-under {
  margin-top: 8rem;
  position: relative;
}
.mainvisual-under:before {
  content: "";
  width: 27.3rem;
  height: 34.4rem;
  background: url(img/deco-mv-left.png) no-repeat center/contain;
  position: absolute;
  left: -29rem;
  top: -2rem;
}
.mainvisual-under:after {
  content: "";
  width: 39.4rem;
  height: 35.1rem;
  background: url(img/deco-mv-right.png) no-repeat center/contain;
  position: absolute;
  right: -40rem;
  top: -30rem;
  z-index: -1;
}
.mainvisual-low {
  padding-top: 7rem;
  position: relative;
}
.mainvisual-low:before {
  content: "";
  width: 37%;
  height: 21rem;
  background: url(img/mv-low.jpg) no-repeat left top/auto 100%;
  position: absolute;
  right: 0;
  top: 7rem;
  z-index: -1;
}

.main-area--low {
  padding-bottom: var(--s7);
}


.top-toc {
  padding: var(--s4);
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
}
.top-toc__title {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
.top-toc ul li {
  padding: 0 0 0 2.4em;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.top-toc ul li::before {
  content: counter(number, decimal-leading-zero) ".";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #7bc5ff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.top-toc ul li + li {
  margin-top: 1em;
}
.top-toc ul li a {
  color: #fff;
  text-decoration: none;
}
.top-toc ul li a:hover {
  opacity: 0.6;
}

.main-area {
  overflow: clip;
}

#toc-area-sp {
  display: none;
}

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

list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: var(--s5) 0;
}
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #2234da;
  border-radius: 10rem;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 1em;
}
.main-area ol:not([class]) {
  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: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.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);
  margin: 0 auto;
  padding: var(--s1) var(--s8);
  background: #5382da url("img/arrow-01-blue-right.svg") no-repeat center right var(--s3)/auto 3.4rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s;
}
.btn-internal a:hover {
  background-position: center right var(--s2);
  opacity: 0.6;
}

.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 37.5rem;
  min-height: var(--s9);
  margin: 0 auto;
  padding: var(--s1) var(--s8);
  background: #f55959 url("img/arrow-01-red-right.svg") no-repeat center right var(--s3)/auto 3.4rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s;
}
.btn-web a:hover {
  background-position: center right var(--s2);
  opacity: 0.6;
}

.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: var(--s1) var(--s4) var(--s1) 0;
  background: url("img/arrow-02-blue-right.svg") no-repeat center right/auto 2.3rem;
  display: inline-block;
  font-weight: 900;
  line-height: 1.5;
  text-decoration: underline;
}
.btn-link a:hover {
  text-decoration: none;
  opacity: 0.6;
}
.btn-link--white a {
  color: #fff;
  background-image: url(img/arrow-02-white-right.svg);
}

.btn-tel {
  display: none;
}

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

table

*/
table {
  width: 100%;
  margin: var(--s6) auto;
  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;
}

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: 1.2rem;
  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,
.catch-01 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.5;
  color: #2234da;
}

.catch-02 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  color: #2234da;
}

.catch-03 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5;
  color: #2234da;
}

.catch-04 {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.5;
  color: #2234da;
}

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

text

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

.txt_bold {
  font-weight: 900;
  color: #f55959;
}

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

subgrid card

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

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

float wrap

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

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

pankuzu

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

.pankuzu-wrap {
  background: #e9f3fc;
}

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

footer

*/
.footer-area {
  padding: var(--s5) 0 0;
  background: #f6f6f6;
}

.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: #000;
  color: #fff;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 20rem;
  margin: var(--s5) auto;
  text-align: center;
}
.footer-logo__link {
  display: block;
  text-decoration: none;
}
.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.4rem;
  font-weight: 900;
  line-height: 1.5;
  border-bottom: 1px solid #0d0d0d;
}
.footer-menu-title__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}
.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.2rem;
  line-height: 1.5;
}
.footer-menu__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
}
.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;
}
.footer-menu-sub__link:hover {
  opacity: 0.6;
}

.footer-disclaimer {
  width: 75rem;
  margin: var(--s5) auto;
  padding: var(--s2);
  font-size: 1.2rem;
  line-height: 1.5;
  background: #fff;
}
.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;
}
.footer-copyright__link {
  color: #fff;
  text-decoration: none;
}
.footer-copyright__link:hover {
  color: #fff;
  text-decoration: underline;
}

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

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

gnavi

*/
.gnavi-btn {
  display: none;
}

.gnavi-area {
  display: none;
}

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

page

*/
.page-top {
  width: var(--s8);
  height: var(--s8);
  position: fixed;
  right: 0;
  bottom: var(--s2);
  z-index: 10;
  overflow: hidden;
}
.page-top__link {
  width: 100%;
  height: 100%;
}
.page-top__link:hover {
  opacity: 0.6;
}

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

toggle sp

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

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

toggle

*/
.toggle-btn {
  margin: var(--s3) auto;
  padding: var(--s3) var(--s7) var(--s3) var(--s3);
  background: #000;
  color: #fff;
  line-height: 1.5;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: var(--s3);
  height: 0.3rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.3rem;
  height: var(--s3);
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3.5rem;
  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: 2rem var(--s7);
  background: #fff;
  border: 0.3rem solid #5382da;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: #5382da;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.more-btn::before {
  content: "";
  width: 2.2rem;
  height: 0.3rem;
  background: #5382da;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.3rem;
  height: 2.2rem;
  background: #5382da;
  position: absolute;
  top: 50%;
  right: 3.3rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more-btn:hover {
  opacity: 0.6;
}
.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.more-content {
  display: none;
}

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

toc

*/
.toc-wrap {
  margin: var(--s10) auto;
  max-width: 80rem;
  background: #f6f6f6;
  position: relative;
}
.toc-wrap__title {
  display: block;
  padding: var(--s3) var(--s5);
  background: #f6f6f6 url(img/txt-index.png) no-repeat left 12rem center/auto 4.2rem;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0d0d0d;
  line-height: 1;
  position: relative;
}
.toc-wrap__title.toggle-btn {
  margin-bottom: 0;
}
.toc-wrap__title.toggle-btn:before, .toc-wrap__title.toggle-btn:after {
  background-color: #2234da;
}
.toc-wrap--relations .toc-wrap__title {
  background: #f6f6f6 url(img/txt-links.png) no-repeat left 17rem center/auto 4.2rem;
}
.toc-wrap__main {
  padding: var(--s3) var(--s4) var(--s4);
  position: relative;
}
.toc-wrap ul {
  margin: 0;
  padding: 0;
}
.toc-wrap ul li {
  padding-left: 2.6em;
  font-weight: 900;
  position: relative;
}
.toc-wrap ul li:before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url(img/arrow-02-blue-right.svg) no-repeat center/contain;
  position: absolute;
  top: 0.1em;
  left: var(--s1);
}
.toc-wrap ul li + li {
  margin-top: 1.1em;
}
.toc-wrap a {
  display: block;
  text-decoration: none;
}
.toc-wrap a:hover {
  text-decoration: underline;
}

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

lower parts

*/
.parts-comment--lower {
  margin: var(--s10) auto var(--s2);
}
.parts-comment__catch {
  margin-bottom: var(--s5);
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
}
.parts-comment-wrap {
  display: flex;
  gap: var(--s4);
}
.parts-comment-wrap--reverse {
  flex-direction: row-reverse;
}
.parts-comment-wrap__side {
  width: 16rem;
  font-size: 1.2rem;
  line-height: 1.3;
}
.parts-comment-wrap__side p {
  margin-top: var(--s1);
  line-height: 1.5;
}
.parts-comment-wrap__side p.text-right {
  text-align: right;
}
.parts-comment-wrap__side img {
  display: block;
  width: 16rem;
  height: auto;
}
.parts-comment-wrap__side img.monpi {
  margin-left: auto;
  width: 11rem;
}
.parts-comment-wrap__side span.st {
  font-size: 1.6rem;
  font-weight: 700;
}
.parts-comment-wrap__main {
  flex: 1;
}
.parts-comment-wrap + .parts-comment-wrap {
  margin-top: var(--s5);
}

.card-comment {
  padding: var(--s4);
  background: #e9f3fc;
  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 #e9f3fc transparent transparent;
  position: absolute;
  left: -1.4rem;
  top: var(--s5);
}
.card-comment--reverse:before {
  left: auto;
  right: -1.4rem;
  transform: rotate(180deg);
}

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

titles

*/
.mainvisual-low h1 {
  max-width: 68rem;
  min-height: 19rem;
  margin: 2rem auto var(--s4) 0;
  padding: var(--s6) 0 0;
  display: flex;
  align-items: center;
  font-size: 4.8rem;
  font-weight: 900;
  position: relative;
  z-index: 0;
}
.mainvisual-low h1:before {
  content: "";
  width: 30.7rem;
  height: 17.8rem;
  background: url(img/deco-h1.png) no-repeat center/contain;
  position: absolute;
  left: -16rem;
  top: 0;
  z-index: -1;
}

.pr-text {
  font-size: 1.4rem;
  color: #707070;
}

.main-area--low h1,
.main-area--low h2,
.main-area--low h3,
.main-area--low h4,
.main-area--low h5,
.main-area--low h6 {
  margin: var(--s5) auto var(--s3);
  font-weight: 900;
}
.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;
}
.main-area--low h1 a:hover,
.main-area--low h2 a:hover,
.main-area--low h3 a:hover,
.main-area--low h4 a:hover,
.main-area--low h5 a:hover,
.main-area--low h6 a:hover {
  opacity: 0.6;
}
.main-area--low h2 {
  padding: 1.7rem var(--s5);
  font-size: 3.2rem;
  color: #fff;
  background: #2234da;
  position: relative;
}
.main-area--low h2:before {
  content: "";
  width: 9rem;
  height: 6rem;
  background: url(img/deco-h2.png) no-repeat center/contain;
  position: absolute;
  left: -2rem;
  top: -3rem;
  z-index: -1;
}
.main-area--low h2 a {
  color: #fff;
  position: relative;
}
.main-area--low h2 a:before {
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  background: url(img/arrow-01-black-right.svg) no-repeat right center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.main-area--low h3 {
  padding: 0 var(--s2) 0.4rem var(--s2);
  border-bottom: solid 1px #2234da;
  font-size: 2.4rem;
  position: relative;
}
.main-area--low h3 a {
  background: url(img/arrow-02-black-right.svg) no-repeat right center;
  background-size: 1.8rem auto;
}
.main-area--low h4,
.main-area--low h5 {
  padding: 0.2rem var(--s2) 0.2rem var(--s2);
  font-size: 2rem;
  position: relative;
}
.main-area--low h4:before,
.main-area--low h5:before {
  content: "";
  width: 0.3rem;
  height: 100%;
  background: #2234da;
  border-radius: var(--s1);
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h4 a,
.main-area--low h5 a {
  background: url(img/arrow-02-black-right.svg) no-repeat right center;
  background-size: 1.8rem auto;
}

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

    TOP common

*/
section {
  padding: 10rem 0;
}

.box-sponsored {
  padding: var(--s3) 0 var(--s3) var(--s3);
  position: relative;
  z-index: 0;
}
.box-sponsored:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-sponsored__cap {
  margin-top: -5rem;
}
.box-sponsored__title {
  width: fit-content;
  padding: var(--s1) var(--s2);
  background: #2234da;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
}
.box-sponsored__name {
  padding-bottom: var(--s3);
  font-size: 3rem;
  font-weight: 900;
}
.box-sponsored__name span.sm {
  display: block;
  font-size: 1.8rem;
  color: #5382da;
}
.box-sponsored__name span.logo {
  width: 20.4rem;
  height: 4.4rem;
  background: url(img/kaitoridaikichi-logo.svg) no-repeat center;
  display: block;
  position: inherit;
  margin: 1rem 0 -2rem;
}
.box-sponsored .l-grid-areas {
  margin-bottom: var(--s3);
}
.box-sponsored .btn-web {
  margin: var(--s3) auto 0;
}

.common-title {
  margin-bottom: var(--s8);
  font-size: 6.8rem;
  font-weight: 900;
  line-height: 1.3;
}
.common-title span.sm {
  width: fit-content;
  display: block;
  font-size: 3.6rem;
}
.common-title span.sm--white {
  padding: var(--s1) var(--s4);
  background: #fff;
}
.common-title span.cl {
  font-size: 8.2rem;
  color: #f55959;
}
.common-title a {
  padding-right: var(--s5);
  background: url(img/arrow-02-black-right.svg) no-repeat right center/3rem auto;
  text-decoration: none;
}
.common-title a:hover {
  opacity: 0.7;
}
.common-title-deco {
  margin-bottom: var(--s4);
  height: 3.3rem;
}
.common-title-deco img {
  width: auto;
  height: 100%;
}
.common-title-deco--blue {
  box-sizing: content-box;
  padding: var(--s1) var(--s4);
  width: fit-content;
  background-color: #2234da;
}
.common-title span.bg-white {
  padding: var(--s-2) var(--s1);
  position: relative;
}
.common-title span.bg-white:before {
  content: "";
  width: calc(100% + var(--s8));
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.common-title--05 {
  margin-bottom: var(--s2);
}

.loops {
  margin-top: var(--s5);
}
.loops-item {
  width: 461rem;
  height: 20rem;
  animation: loop01 100s linear infinite;
}
.loops-item--01 {
  background: url(img/txt-deco-reasons.png) repeat-x left top/auto 100%;
}
.loops-item--02 {
  background: url(img/txt-deco-examples.png) repeat-x left top/auto 100%;
}
.loops-item--03 {
  background: url(img/txt-deco-principales.png) repeat-x left top/auto 100%;
}
.loops-item--04 {
  background: url(img/txt-deco-points.png) repeat-x left top/auto 100%;
}
.loops-item--05 {
  background: url(img/txt-deco-flow.png) repeat-x left top/auto 100%;
}

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

    TOP section

*/
.bg-blue {
  padding-bottom: 0;
  background: #e9f3fc;
}
.bg-blue--photo {
  position: relative;
}
.bg-blue--photo:before {
  content: "";
  width: 55.2rem;
  height: 34rem;
  background: url(img/pic-sec05-01.png) no-repeat center top/contain;
  position: absolute;
  left: 65%;
  top: 0;
}

.title-pic {
  position: relative;
  z-index: 1;
}
.title-pic:before {
  content: "";
  width: 36.2rem;
  height: 20.9rem;
  background: url(img/deco-pic-left.png) no-repeat center/contain;
  position: absolute;
  left: -18rem;
  bottom: -10rem;
  z-index: -1;
}
.title-pic__text {
  width: 100%;
  display: block;
  position: absolute;
  left: 50%;
  bottom: var(--s6);
  text-align: center;
  transform: translateX(-50%);
}
.title-pic__text img {
  height: 5.5rem;
  width: auto;
}
.title-pic__text.line2 img {
  height: 8.5rem;
  width: auto;
}
.box-case + .box-case {
  margin-top: var(--s9);
}

.card-case {
  margin-top: var(--s7);
  padding: var(--s7) var(--s5);
  position: relative;
  z-index: 0;
}
.card-case:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  border-left: solid var(--s9) #5382da;
  position: absolute;
  left: -8rem;
  top: 0;
  z-index: -1;
}
.card-case__title {
  display: flex;
  gap: var(--s2);
  align-items: center;
}
.card-case__title__num {
  width: 8.4rem;
}
.card-case__title__text {
  padding-left: var(--s3);
  border-left: solid 1px #2234da;
  flex: 1;
}
.card-case ul:not([class]) {
  margin-bottom: var(--s3);
}
.card-case .btn-link {
  margin-bottom: 0;
}

.case-title {
  font-size: 3.1rem;
  font-weight: 900;
}

.case-name {
  font-size: 2rem;
  font-weight: 900;
  color: #4d4d4d;
}

.sec-inner01 {
  padding: var(--s6) var(--s6) var(--s8);
  position: relative;
}
.sec-inner01:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: rgba(83, 130, 218, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec-inner01__title {
  margin-bottom: var(--s5);
  padding-bottom: var(--s1);
  border-bottom: solid 0.2rem #0d0d0d;
  font-size: 3.2rem;
  font-weight: 900;
}
.graph {
  width: 95%;
  margin: 0 auto;
}
.card-score {
  padding: var(--s4);
  background: #fff;
}
.card-score__title {
  margin-bottom: var(--s2);
  font-size: 2rem;
  font-weight: 900;
  color: #2234da;
}

.box-reason {
  margin: 10rem auto 0;
  padding: 0 var(--s5) var(--s5);
  background: linear-gradient(to bottom, transparent 2.4rem, #fff 2.4rem);
}
.box-reason__title {
  margin: 0 auto var(--s4);
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
}
.box-reason__catch {
  margin-bottom: var(--s2);
  font-size: 2rem;
  font-weight: 900;
  color: #2234da;
}
.box-reason__subtitle {
  margin: 0 0 var(--s4);
  padding: 14rem 0 0;
  font-size: 3.5rem;
  font-weight: 900;
  position: relative;
  z-index: 0;
}
.box-reason__subtitle:before {
  content: "";
  width: 27.3rem;
  height: 13.3rem;
  background: url(img/deco-subtitle.png) no-repeat center/contain;
  position: absolute;
  left: -5rem;
  top: 10rem;
  z-index: -1;
}
.box-reason__subtitle:after {
  content: "";
  width: 100%;
  height: 2.5rem;
  background: url(img/txt-reason-red.png) no-repeat left top/contain;
  position: absolute;
  left: 0;
  top: 10rem;
}
.box-reason__subtitle--02 {
  text-align: right;
}
.box-reason__subtitle--02:before {
  right: -3.3rem;
  left: auto;
  top: 10rem;
}
.box-reason__subtitle--02:after {
  right: 0;
  left: auto;
  background-position: right center;
}

.card-point {
  border: solid 0.3rem #5382da;
}
.card-point__title {
  width: 8.7rem;
}

.last-column {
  margin-top: var(--s7);
}

.icon-check01 {
  margin: var(--s2) 0 var(--s4) var(--s3);
}
.icon-check01__item {
  padding-left: var(--s5);
  font-size: 1.8rem;
  font-weight: 900;
  position: relative;
}
.icon-check01__item:before {
  content: "";
  width: 2.0rem;
  height: 2.0rem;
  background: url(img/icon-check1.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.15em;
}
.icon-check01__item + .icon-check01__item {
  margin-top: 1.2rem;
}

.box-summary {
  margin: var(--s9) auto;
}
.box-summary__left {
  padding: var(--s4) 0;
  border-top: solid 0.2rem #0d0d0d;
  border-left: solid 0.2rem #0d0d0d;
}
.box-summary__right {
  padding: var(--s4) 0;
}
.box-summary__chara {
  margin: 0 auto var(--s2);
  width: 19rem;
}
.box-summary__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.3;
}
.box-summary__title span.mas {
  display: inline-block;
  margin: var(--s1) 0.2rem;
  padding: 0 var(--s1);
  background: #2234da;
  font-size: 4.5rem;
  color: #fff;
}
.box-summary__catch {
  margin-bottom: var(--s4);
  font-size: 3rem;
  font-weight: 900;
  color: #2234da;
}
.box-summary__body {
  padding: var(--s4) var(--s5);
  position: relative;
  z-index: 0;
}
.box-summary__body:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.box-summary02 {
  margin: 14rem auto 12rem;
  padding: var(--s5) 0;
  position: relative;
  z-index: 0;
}
.box-summary02:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #2234da;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.box-summary02:after {
  content: "";
  width: 49.5rem;
  height: 36rem;
  background: url(img/deco-sponsored-right.png) no-repeat center/contain;
  position: absolute;
  right: -18rem;
  bottom: var(--s5);
  z-index: -1;
}
.box-summary02__cap {
  margin: 7rem -2rem var(--s2) 2rem;
  position: relative;
  z-index: 0;
}
.box-summary02__cap:before {
  content: "";
  width: 34.6rem;
  height: 14.5rem;
  background: url(img/deco-sponsored-top.png) no-repeat center/contain;
  position: absolute;
  left: -10rem;
  top: -7rem;
  z-index: -1;
}
.box-summary02__titlebox {
  margin-bottom: var(--s2);
  padding: var(--s3) 0 var(--s3) var(--s3);
  position: relative;
}
.box-summary02__titlebox:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: linear-gradient(180deg, #1d2bb0 0%, #1d2bb0 66%, #fff 50%, #fff 100%);
  position: absolute;
  right: -7rem;
  top: 0;
  z-index: -1;
}
.box-summary02__titlebox:after {
  content: "";
  width: var(--s1);
  height: calc(100% - var(--s5));
  background: linear-gradient(180deg, #fff 0%, #fff 67%, #1d2bb0 63%, #1d2bb0 100%);
  position: absolute;
  left: 0;
  top: var(--s3);
}
.box-summary02__title {
  padding-bottom: var(--s3);
  margin-bottom: var(--s2);
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}
.box-summary02__name {
  font-size: 2.4rem;
  font-weight: 900;
  color: #000;
}
.box-summary02__name span.sm {
  margin-right: var(--s2);
  font-size: 1.8rem;
}
.box-summary02__name .logo {
  width: 18.4rem;
  height: 7.4rem;
  background: url(img/kaitoridaikichi-logo4.svg) no-repeat center;
  display: inline-block;
  position: absolute;
  top: 15.5rem;
  background-size: 18.4rem;
}
.box-summary02 p {
  color: #fff;
}
.box-summary02__body {
  position: relative;
}
.box-summary02__body .btn-link {
  margin-top: 0;
}
.box-summary02__body .btn-web {
  margin-bottom: var(--s2);
}
.box-summary02__body:before {
  content: "";
  width: 49.4rem;
  height: 36rem;
  background: url(img/deco-sponsored-left.png) no-repeat center/contain;
  position: absolute;
  left: -49rem;
  bottom: 0;
}

.bg-photo {
  padding-top: 29rem;
  padding-bottom: 0;
  position: relative;
}
.bg-photo:before {
  content: "";
  width: 100%;
  height: 51rem;
  background: url(img/bg-title-sec.jpg) no-repeat center/cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.bg-bottom-color {
  background: linear-gradient(transparent 10rem, #e9f3fc 10rem);
}

.upper-link {
  margin-top: 12rem;
  display: flex;
  gap: var(--s2);
}

.btn-pagelink {
  padding-bottom: var(--s4);
  background: url(img/btn-bg-01.jpg) no-repeat center/cover;
  text-decoration: none;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}
.btn-pagelink--02 {
  background: url(img/btn-bg-02.jpg) no-repeat center/cover;
}
.btn-pagelink--03 {
  background: url(img/btn-bg-03.jpg) no-repeat center/cover;
}
.btn-pagelink--04 {
  background: url(img/btn-bg-04.jpg) no-repeat center/cover;
}
.btn-pagelink--05 {
  background: url(img/btn-bg-05.jpg) no-repeat center/cover;
}
.btn-pagelink:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, #fff);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.btn-pagelink:after {
  content: "";
  width: 4.8rem;
  height: 4.8rem;
  background: url(img/arrow-01-black-down.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: -2rem;
  transform: translateX(-50%);
}
.btn-pagelink:hover {
  opacity: 0.7;
}
.btn-pagelink span.sm {
  display: block;
  font-size: 1.0rem;
}
.btn-pagelink__num {
  margin: -2rem auto var(--s2) 0;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
}
.btn-pagelink__num span.bl {
  width: fit-content;
  margin-bottom: var(--s1);
  padding: var(--s-2) var(--s2);
  display: block;
  background: #2234da;
}
.btn-pagelink__num span.bl img {
  width: auto;
  height: 2.6rem;
}
.btn-pagelink__title {
  margin-top: var(--s8);
  font-size: 2.2rem;
}

.card-success {
  margin-top: 14rem;
  padding: var(--s8) 0;
  position: relative;
  z-index: 0;
}
.card-success:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  right: -5.6rem;
  top: 0;
  z-index: -1;
}
.card-success__pic {
  width: 45rem;
  position: absolute;
  right: -20rem;
  top: -6rem;
  z-index: -1;
}
.card-success__title {
  margin-bottom: var(--s10);
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.card-success__title__num {
  width: fit-content;
  padding-right: var(--s3);
  border-right: solid 1px #2234da;
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
  color: #2234da;
}
.card-success__title__num .txt-num {
  display: block;
  height: 7.2rem;
}
.card-success__title__num .txt-num img {
  width: auto;
  height: 100%;
}
.card-success__title__text {
  padding-top: var(--s1);
}
.card-success__subtitle {
  font-size: 4.2rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}
.card-success__subtitle span {
  font-size: 3.2rem;
}
.card-success--reverse:before {
  right: auto;
  left: -5.6rem;
  top: 0;
}
.card-success--reverse .card-success__pic {
  right: auto;
  left: -20rem;
}
.card-success--reverse .card-success__title {
  margin-left: 28rem;
}

.success-title {
  font-size: 4.9rem;
  font-weight: 900;
}
.success-title span.sm {
  font-size: 3.2rem;
}
.success-title span.bg-red {
  width: fit-content;
  padding: 0 var(--s3);
  display: block;
  background: #f55959;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
}

.success1-illust {
  margin-top: 0;
}

.box-blueline {
  margin-top: var(--s9);
  margin-left: -1.6rem;
  padding: var(--s5);
  background: #e9f3fc;
  position: relative;
}
.box-blueline:before {
  content: "";
  width: 7.2rem;
  height: 100%;
  background: #5382da;
  position: absolute;
  left: -7.2rem;
  top: 0;
  z-index: -1;
}
.box-blueline .catch-02 {
  margin-bottom: var(--s1);
}

.bg-text {
  width: fit-content;
  margin-bottom: var(--s1);
  padding: 0.2rem var(--s2);
  background: #0d0d0d;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.inner-box + .inner-box {
  margin-top: var(--s8);
  position: relative;
}
.inner-box + .inner-box:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #0d0d0d;
  position: absolute;
  left: 0;
  top: -3.2rem;
}

.box-inner + .box-inner {
  margin-top: 8rem;
}

.modal-sec {
  margin: 0 auto;
}

.modal-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  position: relative;
}
.modal-column:before {
  content: "";
  width: 41rem;
  height: 41rem;
  background: url(img/line-blue.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.card-business {
  width: 35.4rem;
  height: 35.4rem;
  padding-bottom: var(--s5);
  background: url(img/pic-model-01.png) no-repeat center/contain;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-business:nth-child(2)  {
  background: url(img/pic-model-02.png) no-repeat center/contain;
}
.card-business:nth-child(3)  {
  background: url(img/pic-model-03.png) no-repeat center/contain;
}
.card-business:hover:before {
  filter: brightness(120%);
}
.card-business:before {
  content: "";
  width: 7.4rem;
  height: 7.4rem;
  background: url(img/btn-modal.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: var(--s5);
  transform: translateX(-50%);
  transition: filter 0.3s;
}
.card-business__title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
}
.card-business:first-of-type {
  margin-top: 10rem;
}
.card-business:nth-of-type(3) {
  margin-left: 10rem;
}

.success3-wrap {
  padding: 0 var(--s9) var(--s8);
  background: linear-gradient(transparent 25rem, #f6f6f6 25rem);
}

.success3-pic {
  max-width: 66rem;
  margin: 0 auto var(--s4);
}

.success3-inner {
  padding: var(--s4) var(--s5);
  background: #fff;
}
.card-success3 {
  padding-right: 2rem;
}
.card-success3:nth-of-type(2) {
  padding-right: 0;
  padding-left: 2rem;
  position: relative;
}
.card-success3:nth-of-type(2):before {
  content: "";
  width: 0.3rem;
  height: 100%;
  background: #2234da;
  position: absolute;
  left: -2rem;
  top: 0;
}

.card-gray {
  margin: 14rem auto var(--s5);
  padding: var(--s6);
  background: #f6f6f6;
}
.card-gray--grid {
  grid-template-columns: 1fr 45rem;
}
.card-gray__capture {
  margin-top: -14rem;
}
.card-gray__capture iframe {
  max-width: 100%;
}
.card-gray + .card-gray {
  margin-top: var(--s4);
}

.success5-inner {
  margin-top: 15rem;
  padding: 0 var(--s4) var(--s4);
  background: linear-gradient(transparent 3rem, #f6f6f6 3rem);
}

.card-success5 {
  padding-right: var(--s2);
}
.card-success5__title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
}
.card-success5:first-child {
  position: relative;
}
.card-success5:first-child:before {
  content: "";
  width: 4.4rem;
  height: 5rem;
  background: url(img/arrow-flow.png) no-repeat center/contain;
  position: absolute;
  right: -4.5rem;
  top: 18rem;
}
.card-success5:nth-of-type(2) {
  padding-right: 0;
  padding-left: var(--s2);
}

.box-white {
  padding: var(--s3);
  background-color: #fff;
}

.bg-gray {
  padding-bottom: 0;
  background-color: #f6f6f6;
}
.bg-gray .l-center {
  position: relative;
}
.bg-gray .l-center .img-character {
  width: 34rem;
  position: absolute;
  right: 0;
  top: 0;
}

.title-wrap {
  padding: var(--s4) 0 10rem;
  position: relative;
  z-index: 0;
}
.title-wrap:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #e9f3fc;
  position: absolute;
  left: 18rem;
  top: 0;
  z-index: -1;
}

.title-question {
  margin-top: var(--s7);
  margin-bottom: 0;
  padding-left: 7rem;
  background: #5382da;
  font-size: 3.2rem;
  font-weight: 900;
}
.title-question-wrap {
  position: relative;
  z-index: 0;
}
.title-question-wrap:before {
  content: "Q";
  width: 10rem;
  height: 10rem;
  box-sizing: border-box;
  padding-top: var(--s1);
  border-radius: 50%;
  background: #f5d659;
  position: absolute;
  left: -5rem;
  top: -2.5rem;
  font-size: 4.5rem;
  font-weight: 900;
  color: #0d0d0d;
  text-align: center;
  z-index: 1;
}

.answer-box {
  padding: var(--s4) var(--s9) var(--s4) 14rem;
  background: #fff;
  position: relative;
}
.answer-box:before {
  content: "";
  width: 4.1rem;
  height: 4.7rem;
  border-left: solid 0.2rem #5382da;
  border-bottom: solid 0.2rem #5382da;
  position: absolute;
  left: var(--s9);
  top: 0;
}

.answer-catch {
  margin-bottom: var(--s3);
  font-size: 2.4rem;
  font-weight: 900;
  color: #2234da;
}

.box-cost {
  max-width: 40.5rem;
  margin: 0 auto 0 0;
  padding: var(--s2) var(--s3);
  border: solid 0.4rem #a0c1ea;
  background: #fff;
  position: relative;
  z-index: 1;
}
.box-cost__title {
  margin-bottom: var(--s4);
  padding-bottom: var(--s2);
  font-size: 2.6rem;
  font-weight: 900;
  color: #2234da;
  text-align: center;
  position: relative;
}
.box-cost__title:before {
  content: "";
  width: 6.7rem;
  height: 0.2rem;
  background: #5382da;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.box-cost__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.7rem;
  font-weight: 900;
  align-items: center;
}
.box-cost__info dt {
  width: 50%;
}
.box-cost__info dd {
  width: 50%;
  text-align: right;
}
.box-cost__info dd span.st {
  font-size: 2.7rem;
}
.box-cost__info--sum {
  margin-top: var(--s2);
  padding-top: var(--s1);
  border-top: solid 1px #0d0d0d;
}
.box-cost-wrap {
  align-items: flex-end;
}

.slider-title {
  margin-left: var(--s7);
  margin-bottom: var(--s4);
  font-size: 5.6rem;
  font-weight: 900;
  color: #2234da;
  position: relative;
  z-index: 1;
  transform: rotate(-10deg);
}

.swiper-container {
  margin: var(--s6) auto;
  padding-bottom: var(--s7);
  position: relative;
  z-index: 0;
}
.swiper-container:before {
  content: "";
  width: 100vw;
  height: calc(100% + 16rem);
  background: linear-gradient(to top, #5382da 25rem, #fff 25rem);
  position: absolute;
  left: -3rem;
  bottom: 0;
  z-index: -1;
}

.swiper {
  width: calc(100% + (100vw - 100rem) / 2);
  overflow: hidden;
  z-index: 2;
}
.swiper-slide {
  width: 26rem;
  height: auto;
}
.swiper-pagination {
  bottom: var(--s2) !important;
}

.swiper-container .swiper-pagination-bullet {
  width: 12rem;
  height: 0.4rem;
  border-radius: 0;
  background-color: #fff;
  /*ドットの間隔を変更*/
  margin: 0 !important;
}
.swiper-container .swiper-pagination-bullet-active {
  background-color: #2234da !important;
}

.card-slider {
  height: 100%;
  position: relative;
}
.card-slider__title {
  display: block;
  padding: var(--s2) 0;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}
.card-slider__time {
  width: fit-content;
  padding: 0.2rem 1.2rem;
  background: #1d2bb0;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}
.card-slider__body {
  color: #fff;
}

.box-schedule {
  margin: var(--s9) auto 0;
  padding: var(--s5) 0;
  background: #fff;
  position: relative;
  z-index: 0;
}
.box-schedule:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  position: absolute;
  right: -5rem;
  top: 0;
  z-index: -1;
}
.box-schedule--low:before {
  background: #f6f6f6;
}
.box-schedule__title {
  margin-bottom: var(--s3);
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
}
.box-schedule__time {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2234da;
  display: flex;
  align-items: center;
}
.box-schedule__time span {
  margin-left: var(--s2);
  font-size: 2rem;
}
.box-schedule__body {
  margin-left: 3.8rem;
  padding: var(--s3) 0 var(--s3) var(--s3);
}
.box-schedule__column {
  display: flex;
  border: solid 0.5rem #e9f3fc;
}
.box-schedule__column__right {
  width: 40.5rem;
  padding: var(--s3) var(--s4);
  background: #e9f3fc;
  position: relative;
}
.box-schedule__column__right:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.5rem 2.6rem 2.5rem 0;
  border-color: transparent #e9f3fc transparent transparent;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.box-schedule__column__left {
  padding: var(--s3) var(--s7) var(--s3) var(--s4);
  flex: 1;
  background: #fff;
}

.schedule-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.7rem;
  font-weight: 900;
  align-items: center;
}
.schedule-list__title {
  width: 58%;
  font-size: 1.8rem;
  font-weight: 900;
}
.schedule-list__title span {
  margin-right: var(--s2);
  padding: 0 var(--s2);
  background-color: #f5d659;
  font-size: 1.5rem;
}
.schedule-list__data {
  width: 42%;
  text-align: right;
  font-size: 2.4rem;
  font-weight: 900;
}
.schedule-list--sum {
  margin-top: var(--s2);
  padding-top: var(--s1);
  border-top: solid 1px #0d0d0d;
}

.todo-title {
  margin-bottom: var(--s2);
  padding-bottom: var(--s2);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  position: relative;
}
.todo-title:before {
  content: "";
  width: 5.6rem;
  height: 1px;
  background: #0d0d0d;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.todo-list__item {
  padding-left: var(--s4);
  font-size: 1.8rem;
  font-weight: 900;
  position: relative;
}
.todo-list__item:before {
  content: "";
  width: 2.1rem;
  height: 1.9rem;
  background: url(img/icon-check2.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.25em;
}
.todo-list__item + .todo-list__item {
  margin-top: var(--s1);
}

.box-about {
  max-width: 90rem;
  margin: var(--s4) auto;
  padding: 0 var(--s6) var(--s5) var(--s6);
  background: linear-gradient(transparent 2.4rem, #f6f6f6 2.4rem);
}
.box-about__title {
  margin-bottom: var(--s4);
  font-size: 2.5rem;
  font-weight: 900;
  color: #2234da;
  display: flex;
  align-items: center;
}
.box-about__title img {
  margin-right: var(--s2);
  width: 15rem;
}
.box-about__body {
  display: flex;
  align-items: center;
}
.box-about__logo {
  width: 16rem;
}
.box-about__logo img {
  width: 10rem;
}
.box-about__catch {
  flex: 1;
}

.modal-title {
  padding-left: var(--s5);
  font-size: 3rem;
  font-weight: 900;
  position: relative;
}
.modal-title:before {
  content: "";
  width: 3rem;
  height: 2.2rem;
  background: url(img/icon-title-deco.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.5em;
}

.modal-pic {
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  overflow: hidden;
}

.box-qa {
  margin: 10rem 0;
}
.box-qa .l-column {
  align-items: flex-end;
}
.box-qa__title {
  margin-bottom: var(--s2);
  padding-top: 11.5rem;
  background: url(img/txt-q.png) no-repeat left top/7rem auto;
  font-size: 2.8rem;
  font-weight: 900;
}
.box-qa__chara {
  width: 20rem;
  margin: 0 0 0 auto;
}
.box-qa__name {
  text-align: right;
  font-size: 2rem;
  font-weight: 900;
}
.box-qa__answer {
  padding: var(--s4) var(--s5) var(--s5) 15rem;
  background: url(img/txt-a.png) no-repeat var(--s5) var(--s3)/7.2rem auto;
  position: relative;
}
.box-qa__answer:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #e9f3fc;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.box-qa__answer__catch {
  margin-bottom: var(--s2);
  font-size: 2.4rem;
  font-weight: 900;
}

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

      sp base settings

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

  body {
    font-size: 1.4rem;
  }

  .sp_br {
    display: inline;
  }

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

      sp layout center

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

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

      sp layout stack

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

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

      sp layout cluster

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

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

      sp layout grid

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

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

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

      sp layout sidebar

  */
  .l-sidebar__side {
    display: none;
  }
  .l-sidebar__main {
    width: 100%;
  }

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

      sp layout column

  */
  .l-column {
    gap: var(--s2);
  }
  .l-column__side, .l-column__side02,  .l-column__side03, .l-column__side04 {
    width: 100%;
  }
  .l-column__main {
    width: 100%;
  }
  .l-column__side02-2 {
    display: block;
    width: 36rem;
  }
  /*
  ---------------------------------------------

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

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

      sp layout float

  */
  .l-float__left-pc {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .l-float__right-pc {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .l-float__center {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .l-float__left {
    width: 45%;
    margin-right: var(--s2);
    margin-bottom: var(--s1);
  }
  .l-float__right {
    width: 45%;
    margin-left: var(--s2);
    margin-bottom: var(--s1);
  }

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

      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;
  }
}
@media screen and (max-width: 767px) {
  .header-area {
    padding-right: 8rem;
  }
  .header-area__name {
    /* padding-left: 16rem;
    background-size: 15rem auto;
    font-size: 1.2rem; */

    margin: 0 auto 0 0;
    min-height: 5.6rem;
    padding-left: 0;
    font-size: 0.8rem;
    /* display: flex; */
    /* align-items: center; */
    background: url(img/logo.png) no-repeat top left / 13rem auto;
    /* position: relative; */
    padding-top: 6rem;
    /* padding-bottom: 0; */
  }

  .header-area .header-navi {
    display: none;
  }
  .header-area .btn-web {
    width: calc(100% - 5.1rem);
    position: fixed;
    right: 0;
    bottom: 0;
  }
  .header-area .btn-web a {
    width: 100%;
    border-radius: 0;
    background-size: 2.2rem auto;
  }

  .pr-text {
    font-size: 1.2rem;
  }

  .mainvisual {
    padding-top: 7.2rem;
    z-index: 2;
  }
  .mainvisual-bg__column {
    height: 13rem;
    animation: loop01 200s linear infinite;
    margin-top: 2rem;
  }
  .mainvisual-title {
    margin-top: -1.8rem;
    margin-bottom: var(--s2);
    font-size: 2rem;
    line-height: 2.2;
  }
  .mainvisual-title .white {
  padding: 0 .5rem;
  display: block;
}
  .mainvisual-title span.st {
    font-size: 2.8rem;
	line-height: 0;
  }
  .mainvisual-title span.cl,
.mainvisual-title span.line {
    font-size: 2.4rem;
	margin: .5rem 0 -2rem -.5rem;
    width: 14.4rem;
    height: 5.4rem;
	background-size: 100%;
  }
  .mainvisual-title span.line {
    margin: 0.5rem 0 -2rem 0rem
  }
  .mainvisual-character {
    width: 10rem;
    right: var(--s1);
    top: 11rem;
  }
  .mainvisual-character span {
    font-size: 1.2rem;
  }
  .mainvisual-lead {
    padding-right: 11rem;
    font-size: 1.4rem;
  }
  .mainvisual-lead p {
   line-height: 2;
  }
  .mainvisual-low:before {
    width: 67%;
    height: 9rem;
    top: 8.2rem;
  }
  .mainvisual-under {
    margin-top: var(--s1);
  }

  .mainvisual-under:after {
    /* content: "";
    width: 39.4rem;
    height: 35.1rem;
    background: url(img/deco-mv-right.png) no-repeat center/contain;
    position: absolute;
    right: -40rem;
    top: -30rem;
    z-index: -1; */
    display: none;
  }


    .top-toc {
      padding: var(--s4);
      background: rgba(0, 0, 0, 0.3);
      position: static;
      width: 96%;
      max-width: none;
      margin: 0 auto;
  }

  .top-toc ul li a:hover {
    opacity: initial;
  }

  
  .top-toc.is-open {
    display: block !important;
  }
  

  .l-column__side02-2 .top-toc{
    display: none;
    max-height: 76%;
    padding: var(--s2);
    position: fixed; 
    bottom: 5rem; 
    left: 0; 
    max-width: 400px;
    padding: 20px;
    background: #000;
    z-index: 9999; 
  }


  .top-toc__title {
    font-size: 1.8rem;
  }
  .top-toc ul li {
    font-size: 1.6rem;
  }

  .btn-toc {
    width: 5.1rem;
    height: 5.1rem;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #0d0d0d;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 100;
  }
  .btn-toc:hover {
    color: #fff;
  }

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

      sp btn

  */
  .btn-internal,
.btn-web {
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    width: 96%;
    min-height: var(--s7);
    background-size: 2.2rem auto;
    background-position: right var(--s2) center;
  }
  .btn-internal a:hover,
.btn-web a:hover {
    background-position: center right var(--s3);
  }

  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    background-size: 1.8rem auto;
  }
  .btn-link a:hover {
    text-decoration: underline;
    opacity: 1;
  }

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

  .more-btn {
    padding: 1.2rem var(--s6);
    border-width: 0.2rem;
  }
  .more-btn:hover {
    opacity: 1;
  }

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

      sp table

  */
  thead,
tbody,
tr {
    display: block;
  }

  th,
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);
  }

  .l-scroll-x table thead,
.l-scroll-x-sp table thead {
    display: table-header-group;
  }
  .l-scroll-x table tbody,
.l-scroll-x-sp table tbody {
    display: table-row-group;
  }
  .l-scroll-x table tr,
.l-scroll-x-sp table tr {
    display: table-row;
  }
  .l-scroll-x table th,
.l-scroll-x table td,
.l-scroll-x-sp table th,
.l-scroll-x-sp table td {
    width: inherit;
    min-width: 15rem;
    display: table-cell;
  }

  .l-scroll-x-sp table {
    width: inherit;
  }

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

      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,
.catch-02,
.catch-03,
.catch-04 {
    font-size: 1.8rem;
  }

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

      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-top: var(--s2);
    margin-bottom: var(--s3);
  }

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

      sp footer

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

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

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

  .footer-logo {
    margin: var(--s3) auto;
    width: 12rem;
  }
  .footer-logo__link:hover {
    opacity: 1;
  }

  .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: var(--s2);
    height: var(--s2);
    background: url("img/arrow-01-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:hover {
    opacity: 1;
  }
  .footer-menu-title__link.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .footer-menu-title__link--not-toggle::after {
    background: url("img/arrow-01-black-right.svg") no-repeat center/auto 1em;
  }

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

  .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-menu-sub__link:hover {
    opacity: 1;
  }

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

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

  	sp gnavi

  */
  .gnavi-btn {
    width: var(--s6);
    height: var(--s6);
    background: #333;
    display: block;
    position: fixed;
    top: var(--s1);
    right: var(--s1);
    z-index: 200;
    cursor: pointer;
  }
  .gnavi-btn span {
    width: var(--s3);
    height: 0.2rem;
    display: inline-block;
    background: #fff;
    position: absolute;
    left: 1.2rem;
    transform: translate(0, -50%);
    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: 100%;
    height: 100vh;
    padding: 3rem 0;
    background: #e9f3fc;
    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: 12rem;
    margin: 0 auto var(--s2);
  }

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

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

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

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

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

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

      sp page

  */
  .page-top {
    width: var(--s6);
    height: var(--s6);
    right: 0;
    bottom: var(--s8);
  }
  .page-top__link:hover {
    opacity: 1;
  }

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

  sp toggle sp

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

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

  TOC

  */
  .toc-wrap {
    margin: var(--s5) auto;
  }

  .toc-wrap__title {
    padding: 2rem var(--s3);
    background-size: auto 3rem;
    background-position: left 9rem center;
    font-size: 1.8rem;
  }

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

  .toc-wrap ul li:before {
    width: 1.5rem;
    height: 1.6rem;
    top: 0.15em;
  }

  .toc-wrap--relations .toc-wrap__title {
    background-size: auto 3rem;
    background-position: 14rem center;
  }

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

  subgrid card

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

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

  lower parts

  */
  .parts-comment__catch {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }

  .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;
  }
  .parts-comment--lower {
    margin: var(--s2) auto;
  }
  .card-comment {
    padding: var(--s3);
  }

  .box-qa__title {
    margin-bottom: 0;
    padding-top: 6rem;
    font-size: 2rem;
    background-size: 4rem auto;
  }
  .box-qa__chara {
    width: 10rem;
  }
  .box-qa__name {
    font-size: 1.4rem;
  }
  .box-qa__answer {
    padding: var(--s2);
    background-size: 4.2rem auto;
    background-position: left var(--s2) top var(--s1);
  }
  .box-qa__answer__catch {
    padding-left: 7rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }

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

  titles

  */
  .mainvisual-low h1 {
    min-height: initial;
    margin-bottom: var(--s2);
    padding-top: 10rem;
    font-size: 2.4rem;
  }
  .mainvisual-low h1:before {
    top: 2rem;
  }

  .main-area--low h2 {
    padding: var(--s1) var(--s2);
    font-size: 2rem;
  }
  .main-area--low h2::before {
    width: 6rem;
    height: 6rem;
    left: -1rem;
    top: -3rem;
  }
  .main-area--low h2 a:before {
    width: 2.2rem;
    height: 2.2rem;
  }
  .main-area--low h3 {
    padding-left: var(--s1);
    padding-right: var(--s1);
    font-size: 1.8rem;
  }
  .main-area--low h4 {
    padding-left: var(--s1);
    padding-right: var(--s1);
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      TOP common

  */
  section {
    padding: var(--s8) 0;
  }

  .box-sponsored {
    width: 96%;
    margin: 0 auto;
    padding: var(--s2);
  }
  .box-sponsored::before {
    width: 100%;
  }
  .box-sponsored__cap {
    margin-top: 0;
  }
  .box-sponsored__title {
    font-size: 1.8rem;
  }
  .box-sponsored__name {
    padding-bottom: var(--s2);
    font-size: 2rem;
  }
  .box-sponsored__name span.sm {
    display: inline-block;
    margin-right: var(--s2);
    font-size: 1.4rem;
  }

  .common-title {
    margin-bottom: var(--s3);
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .common-title span.sm {
    font-size: 1.7rem;
  }
  .common-title span.cl {
    font-size: 2.9rem;
  }
  .common-title a {
    background-size: 1.6rem auto;
  }
  .common-title-deco {
    margin-bottom: var(--s2);
    height: 1.9rem;
  }

  .loops {
    margin-top: var(--s3);
  }
  .loops-item {
    width: 230rem;
    height: 9rem;
  }

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

      TOP section

  */
  .title-pic {
    width: 60%;
    margin: 0 auto;
  }
  .title-pic:before {
    height: 16rem;
    bottom: var(--s4);
  }

  .card-case {
    margin-top: -5rem;
    /* padding-right: var(--s1);
    padding-left: var(--s2); */
    padding: var(--s7) var(--s1) var(--s2) var(--s2);
  }

  .card-case:before {
    width: 100%;
    left: 0;
    border-width: var(--s1);
    box-sizing: border-box;
  }
  .card-case__title__num {
    padding-top: var(--s1);
    width: 6rem;
  }

  .case-title {
    font-size: 2rem;
  }

  .case-name {
    font-size: 1.6rem;
  }

  .sec-inner01 {
    padding: var(--s2);
  }
  .sec-inner01__title {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .graph {
    max-width: 100%;
    margin: 0 auto;
  }
  .card-score {
    padding: var(--s2);
  }

  .icon-check01 {
    margin: var(--s1) 0;
  }
  .icon-check01__item {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .box-reason {
    margin-top: var(--s6);
    padding: 0 var(--s2) var(--s2);
  }
  .box-reason__title {
    font-size: 2.3rem;
  }
  .box-reason__catch {
    font-size: 1.8rem;
  }
  .box-reason__subtitle {
    margin-top: var(--s7);
    padding-top: var(--s4);
    font-size: 2rem;
  }
  .box-reason__subtitle:after {
    height: 1.8rem;
  }
  .box-reason__subtitle:before {
    width: 14rem;
    top: -2rem;
    left: 0;
  }

  .card-point__title {
    width: 7rem;
  }
  .card-point .icon-check01 {
    margin: var(--s1) 0;
    padding: 0 var(--s2) var(--s1);
  }

  .box-summary__left {
    padding: var(--s2) var(--s2) 0;
    display: flex;
  }
  .box-summary__right {
    padding: 0 var(--s2);
  }
  .box-summary__chara {
    width: 8rem;
  }
  .box-summary__title {
    flex: 1;
    text-align: left;
    padding-left: var(--s2);
  }
  .box-summary__title span.mas {
    font-size: 3rem;
  }
  .box-summary__catch {
    margin-bottom: var(--s2);
    font-size: 1.9rem;
  }
  .box-summary__body {
    padding: var(--s2);
  }

  .box-summary02 {
    margin-top: 12rem;
    margin-bottom: 6rem;
    padding-top: 0;
  }
  .box-summary02:after {
    width: 40rem;
    height: 28rem;
    right: auto;
    left: -9rem;
    bottom: -3rem;
  }
  .box-summary02__cap {
    width: 70%;
    margin: -4rem auto 0;
  }
  .box-summary02__cap:before {
    width: 20rem;
    top: -5rem;
  }
  .box-summary02__titlebox {
    padding-right: var(--s2);
  }
  .box-summary02__titlebox:before {
    right: 0;
  }
  .box-summary02__title {
    font-size: 2rem;
  }
  .box-summary02__body {
    padding: var(--s1);
  }
  .box-summary02__name {
    font-size: 1.5rem;
  }
  .box-summary02__name span.sm {
    font-size: 1.3rem;
  }
  .box-summary02__name .logo {
    width: 13.4rem;
    height: 3.4rem;
	top: 12rem;
	background-size: 100%;
  }
  .bg-photo {
    padding: 8rem 0 0;
  }
  .bg-photo:before {
    height: 16rem;
  }

  .upper-link {
    margin-top: var(--s10);
    flex-wrap: wrap;
    gap: var(--s6) var(--s2);
    justify-content: center;
  }

  .btn-pagelink {
    width: calc((100% - var(--s2)) / 2);
    flex: initial;
    font-size: 2rem;
  }
  .btn-pagelink:after {
    width: 3rem;
    height: 3rem;
    bottom: -1.5rem;
  }
  .btn-pagelink__num {
    font-size: 1.7rem;
  }
  .btn-pagelink__num span.bl {
    margin-bottom: var(--s-2);
  }
  .btn-pagelink__title {
    margin-top: 0;
	font-size: 1.8rem;
  }

  .card-success {
    padding: var(--s2);
    padding-left: var(--s1);
  }
  .card-success:before {
    right: 0;
  }
  .card-success__pic {
    width: 50%;
    right: 0;
  }
  .card-success__title {
    display: block;
    margin-bottom: var(--s4);
  }
  .card-success__title__num {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .card-success__title__num .txt-num {
    height: 4rem;
  }
  .card-success__subtitle {
    font-size: 2.6rem;
    text-align: center;
    color: #2234da;
    top: -3rem;
  }
	.card-success__subtitle span {
    font-size: 3.2rem;
    top: -3rem;
}
  .card-success--reverse {
    padding-left: var(--s2);
  }
  .card-success--reverse:before {
    right: auto;
    left: 0;
  }
  .card-success--reverse .card-success__pic {
    left: 0;
  }
  .card-success--reverse .card-success__title {
    margin-left: 0;
  }
  .card-success--reverse .card-success__title__num {
    margin-left: auto;
    margin-right: 0;
  }

  .success-title {
    font-size: 2.6rem;
  }
  .success-title span.sm {
    font-size: 2rem;
  }
  .success-title span.bg-red {
    padding: 0 var(--s2);
    font-size: 1.8rem;
  }

  .success1-illust {
    margin: -5rem auto 0;
    width: 80%;
  }

  .box-blueline {
    margin-top: var(--s1);
    margin-left: 0;
    padding: var(--s2);
  }

  .card-business {
    width: 50%;
    height: 18rem;
  }
  .card-business:nth-of-type(3) {
    margin-top: -2rem;
  }
  .card-business:before {
    width: 4.6rem;
    height: 4.6rem;
    bottom: var(--s3);
  }
  .card-business__title {
    font-size: 1.7rem;
  }

  .modal-column:before {
    width: 28rem;
  }

  .modal-title {
    font-size: 1.8rem;
  }
  .modal-title:before {
    width: 2.4rem;
    top: 0.2em;
  }

  .modal-pic {
    width: 18rem;
    height: 18rem;
    margin: 0 auto;
  }

  .vbox-container {
    padding: var(--s2) var(--s3);
    width: 90vw;
    height: 82vh;
  }

  .vbox-content {
    overflow: auto;
  }

  .vbox-close {
    right: var(--s1);
    top: var(--s1);
  }

  .vbox-prev {
    width: 3rem;
    height: 3rem;
    left: var(--s1);
  }

  .vbox-next {
    width: 3rem;
    height: 3rem;
    right: var(--s1);
  }

  .success3-wrap {
    padding: 0 var(--s2) var(--s2);
  }

  .success3-inner {
    padding: var(--s2);
  }

  .card-success3 {
    padding: 0;
  }
  .card-success3:nth-of-type(2) {
    padding: 0;
    padding-top: var(--s5);
  }
  .card-success3:nth-of-type(2):before {
    width: 100%;
    height: 0.2rem;
    top: var(--s1);
    left: 0;
  }

  .card-gray {
    margin-top: var(--s4);
    padding: var(--s2);
  }
  .card-gray__capture {
    margin-top: 0;
  }
  .card-gray__capture video {
    max-width: 100%;
  }
  .success5-inner {
    margin-top: var(--s6);
    padding: 0 var(--s2) var(--s2);
    background: linear-gradient(transparent 2rem, #f6f6f6 2rem);
  }

  .card-success5 {
    padding-right: 0;
  }
  .card-success5:first-child:before {
    right: 50%;
    top: auto;
    bottom: -6rem;
    transform: rotate(90deg) translateY(-50%);
  }
  .card-success5:nth-of-type(2) {
    padding-left: 0;
    padding-top: var(--s6);
  }
  .card-success5__title {
    font-size: 2rem;
  }

  .bg-gray .l-center .img-character {
    width: 10rem;
    right: var(--s1);
    top: -2rem;
  }

  .title-wrap {
    padding-top: var(--s2);
    padding-bottom: var(--s5);
  }
  .title-wrap::before {
    left: 10rem;
  }

  .title-question {
    margin-top: var(--s4);
    padding: var(--s2) var(--s8) var(--s2) var(--s5);
    font-size: 2rem;
  }
  .title-question-wrap::before {
    width: 5rem;
    height: 5rem;
    left: -0.4rem;
    font-size: 2.2rem;
  }

  .answer-box {
    padding: var(--s2) var(--s2) var(--s3) var(--s7);
  }
  .answer-box:before {
    width: 2rem;
    height: 3rem;
    left: var(--s3);
  }

  .answer-catch {
    font-size: 1.8rem;
  }

  .bg-blue--photo:before {
    width: 40%;
    left: auto;
    right: 0;
  }

  .box-cost__title {
    font-size: 2rem;
  }

  .slider-title {
    width: fit-content;
    margin: var(--s2) auto 0;
    font-size: 2.8rem;
  }

  .swiper-container::before {
    height: calc(100% + var(--s10));
    left: -0.8rem;
  }

  .swiper {
    width: 103%;
  }

  .swiper-container .swiper-pagination-bullet {
    width: 4rem;
  }

  .card-slider__title {
    font-size: 2rem;
  }

  .box-schedule::before {
    right: 0;
  }
  .box-schedule__title {
    font-size: 2rem;
  }
  .box-schedule__time {
    font-size: 2rem;
  }
  .box-schedule__body {
    margin-left: var(--s2);
    padding: var(--s2);
  }
  .box-schedule__column {
    flex-wrap: wrap;
  }
  .box-schedule__column__left {
    width: 100%;
    padding: var(--s2) var(--s2) var(--s4);
  }
  .box-schedule__column__right {
    padding: var(--s2);
  }
  .box-schedule__column__right:before {
    top: -3rem;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .schedule-list__title {
    font-size: 1.4rem;
  }
  .schedule-list__title span {
    margin-right: var(--s-2);
    padding: 0 var(--s-2);
  }
  .schedule-list__data {
    font-size: 1.4rem;
  }

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

  .todo-list__item {
    font-size: 1.5rem;
  }
  .todo-list__item:before {
    top: 0.18em;
  }

  .box-about {
    margin: 0 auto;
    padding: var(--s2);
    position: relative;
  }
  .box-about__title {
    flex-wrap: wrap;
    font-size: 2.2rem;
  }
  .box-about__body {
    padding: var(--s2);
    display: block;
  }
  .box-about__logo {
    width: 7rem;
    position: absolute;
    right: var(--s3);
    top: var(--s5);
  }

  .inner-box + .inner-box {
    margin: var(--s8) 0 var(--s2);
  }
}
