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

    base settings

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

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

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

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

li {
  list-style: none;
}

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

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

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

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

@media (hover: hover) {
  a:hover {
    color: #424242;
    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 cloudMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-2rem);
  }
  100% {
    transform: translateX(0);
  }
}
/*
---------------------------------------------

    inview

*/
.fadeInBubble:before {
  opacity: 0;
  transform: translate(0, 20rem);
  transition: transform 1.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.4s;
}
.fadeInBubble:after {
  opacity: 0;
  transform: translate(0, 20rem);
  transition: transform 1.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s, opacity 1.4s 0.2s;
}

.fadeInBubble.animated:before {
  opacity: 1;
  transform: translate(0, 0);
}
.fadeInBubble.animated:after {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInUp {
  opacity: 0;
  transform: translate(0, 1rem);
  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);
  transform-origin: center bottom;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

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

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

    layout center

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

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

    layout stack

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

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

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

    layout cluster

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

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

    layout grid

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

.l-grid02 {
  --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-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: 48rem;
}
.l-column__side02 {
  width: 56.5rem;
}
.l-column__side03 {
  width: 52rem;
}
.l-column__side04 {
  width: 48rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

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

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 30rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s3) var(--s9);
}
.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;
}
.l-grid-areas.box-study {
  grid-template-columns: 52rem 1fr;
  grid-gap: var(--s3) 5rem;
  grid-template-rows: auto auto;
}
.l-grid-areas.box-study .l-grid-areas__cell-01 {
  place-self: end start;
}
.l-grid-areas.box-study .l-grid-areas__cell-02 {
  place-self: center;
}
.l-grid-areas.box-study .l-grid-areas__cell-03 {
  place-self: start;
}
.l-grid-areas.box-study.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: 19.5rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: var(--s3) 3.8rem;
}
.l-grid-areas02__cell-01 {
  grid-area: catch;
}
.l-grid-areas02__cell-02 {
  grid-area: img;
}
.l-grid-areas02__cell-03 {
  grid-area: text;
}

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

    layout scroll x

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

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

    header 

*/
.header-area {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
}
.header-area:before {
  content: "";
  width: 67.4rem;
  height: 27.2rem;
  background: url(img/mv-left-top.svg) no-repeat left top/contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.header-area__name {
  display: inline;
  font-size: 1.1rem;
}
.header-area__name a {
  text-decoration: none;
}
.header-area .sponsored-text {
  font-size: 1.1rem;
}
.header-area__logo {
  width: 20.5rem;
  padding: var(--s1) var(--s2);
  border-radius: 0 0 var(--s2) 0;
  background: #fff;
}
.header-area__inner {
  flex: 1;
}
.header-area .pr-text {
  font-size: 1.1rem;
}
.header-area--low {
  background: #e0f4fb;
}
.header-area--low:before {
  content: none;
}
.header-area--low .sponsored-text {
  display: inline;
  margin-left: var(--s2);
}

@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;
  }
}
.title-block {
  margin-bottom: 14rem;
  padding: var(--s7) 0 0;
  background: #e0f4fb;
  position: relative;
}
.title-block:before {
  content: "";
  width: 100%;
  height: 12rem;
  background: url(img/wave2-blue-bottom.svg) no-repeat center/100% 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: -1;
}

.banner {
  display: block;
  width: 24rem;
  height: 8.2rem;
  position: fixed;
  right: 0;
  bottom: 23.8rem;
  z-index: 10;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.banner--02 {
  bottom: 11rem;
}
.banner.is-fixed {
  transform: translateX(0);
  transition: all 0.3s ease;
}

/*追加*/
.banner .bn_text01{
  position: absolute;
  top: 1.9rem;
  left: 4.5rem;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  display: block;
  text-align: center;
  color: #7e9e00;
}
.banner .bn_text01 span{
  font-size: 1.4rem;
}
.banner .bn_text02{
  position: absolute;
  top: 2.3rem;
  left: 4.5rem;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
  display: block;
  text-align: left;
  color: #ffffff;
}
/*///////////*/


.js-appear {
  opacity: 0;
  visibility: hidden;
}
.js-appear.is-fixed {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .banner:hover {
    opacity: 0.6;
    color: #a0c800;
  }
}
/*
---------------------------------------------

    main-area

*/
.main-area {
  overflow: clip;
  padding-top: var(--s5);
}
.main-area--low {
  padding-top: 0;
}

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

    main visual

*/
.mainvisual {
  width: 100%;
  position: relative;
  overflow: clip;
}
.mainvisual-inner {
  max-width: 124rem;
  padding: 27.6rem var(--s3) 0;
  margin: 0 auto;
}
.mainvisual-pic {
  width: 87.8rem;
  height: 57rem;
  position: absolute;
  left: 42%;
  top: 1rem;
  z-index: -1;
}
.mainvisual-pic img{
  border-radius: 5rem 0 0 0;
}
.mainvisual-title {
  margin-bottom: var(--s3);
  font-weight: 700;
  line-height: 1.5;
}
.mainvisual-title span.bg {
  width: fit-content;
  display: block;
  margin-bottom: 1.2rem;
  padding: var(--s-2) var(--s2);
  background: #26bce6;
  color: #fff;
  font-size: 2.8rem;
}
.mainvisual-title span.main {
  width: fit-content;
  margin-top: var(--s1);
  padding: var(--s-2) var(--s2) var(--s-2) 0;
  background: rgba(255, 255, 255, 0.85);
  /*border-radius: 0 var(--s1) var(--s1) 0;*/
  display: block;
  font-size: 5.8rem;
  font-weight: 700;
  color: #424242;
}
.mainvisual-body {
  max-width: 64rem;
  margin-bottom: var(--s3);
}
.mainvisual .pr-text {
  font-size: 1.1rem;
  color: #999;
}

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

    list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: var(--s4) 0;
}
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.7;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #a0c800;
  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]) {
  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;
  padding-top: var(--s-2);
  background: #26bce6;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
  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: 40rem;
  min-height: 7.8rem;
  margin: 0 auto;
  padding: 1.8rem var(--s8) 1.8rem var(--s4);
  background-image: linear-gradient(to right, #c0e237 0%, #26bce6 50%, #c0e237 100%);
  border-radius: var(--s10) var(--s10) var(--s10) 0;
  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: all 0.3s ease-out;
  position: relative;
  z-index: 0;
  background-size: 200% auto;
  background-position: left center;
}
.btn-internal a:after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url("img/arrow-01-blue-right.svg") no-repeat center/contain;
  position: absolute;
  right: 2.2rem;
  top: 50%;
  transition: all 0.3s ease-out;
  transform: translateY(-50%);
}

.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 40rem;
  min-height: 7.8rem;
  margin: 0 auto;
  padding: 1.8rem var(--s8) 1.8rem var(--s4);
  background-image: linear-gradient(to right, #fab51f 0%, #f25070 50%, #fab51f 100%);
  border-radius: var(--s10) var(--s10) var(--s10) 0;
  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: all 0.3s ease-out;
  position: relative;
  z-index: 0;
  background-size: 200% auto;
  background-position: left center;
}
.btn-web a:after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url("img/icon-window.svg") no-repeat center/contain;
  position: absolute;
  right: 2.2rem;
  top: 50%;
  transition: all 0.3s ease-out;
  transform: translateY(-50%);
}

.btn-web--top,
.btn-internal--top {
  margin: 0;
}
.btn-web--top a,
.btn-internal--top a {
  width: 29rem;
  min-height: initial;
  height: 6.4rem;
  padding: 0 5rem 0 var(--s3);
  position: fixed;
  right: 11rem;
  top: var(--s-2);
  z-index: 100;
}
.btn-web--top a span.sm,
.btn-internal--top a span.sm {
  font-size: 1.4rem;
}
.btn-web--top a::after,
.btn-internal--top a::after {
  right: var(--s2);
}

.btn-web--top a {
  right: 41.6rem;
}

@media (hover: hover) {
  .btn-internal a:hover{
   background-position: right center;
  }
  .btn-web a:hover{
     background-position: right center;
  }
  .btn-internal a:hover:after,
.btn-web a:hover:after {
    right: var(--s1);
  }
}
.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-02-blue-right.svg") no-repeat center right/2.4rem auto;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
  transition: all 0.3s ease-out;
}
.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;*/
    color: #26bce6;
  }
}
.btn-tel {
  display: none;
}

.btn-column {
  margin: var(--s5) 0;
  display: flex;
  justify-content: center;
  gap: var(--s5);
}
.btn-column .btn-web,
.btn-column .btn-internal {
  margin: 0;
}
.btn-column .btn-web a,
.btn-column .btn-internal a {
  width: 35.7rem;
}

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

    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: #e0f4fb;
}

td {
  background: #fff;
}

tbody th {
  background: #e0f4fb;
}

.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: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #26bce6;
}

.catch-02 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: linear-gradient(to right, #fab51f 0%, #f25070 100%);
}

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

	text

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

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

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

	subgrid card

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

.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: 37rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}
.float-wrap .float-img.fl {
  width: 37rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.float-wrap .float-img.ct {
  width: 42rem;
  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: #7d7d7d;
  font-size: 1.2rem;
  /*white-space: nowrap;*/
  overflow-x: auto;
  overflow-y: hidden;
}
#pankuzu a {
  color: #7d7d7d;
}

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

    footer

*/
.footer-area {
  margin-top: var(--s5);
  padding: 23rem 0 0;
  background: #a9e4f6;
  overflow: clip;
  position: relative;
}
.footer-area:before {
  content: "";
  width: 100%;
  height: 23rem;
  background: #fff url(img/wave-blue-bottom.svg) no-repeat center bottom -2px/100% 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.footer-about {
  max-width: 90rem;
  margin: 0 auto var(--s8);
  padding: var(--s5) var(--s7) var(--s4);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--s2);
  display: flex;
  align-items: center;
  gap: var(--s8);
  position: relative;
}
.footer-about:before {
  content: "";
  width: 15.5rem;
  height: 18.6rem;
  background: url(img/deco-bubble-2-w.png) no-repeat center/contain;
  position: absolute;
  left: calc(100% + 5rem);
  top: -8.5rem;
}
.footer-about:after {
  content: "";
  width: 6.6rem;
  height: 14rem;
  background: url(img/deco-bubble-1-w.png) no-repeat center/contain;
  position: absolute;
  right: calc(100% + 6rem);
  top: 10.7rem;
}
.footer-about__logo {
  width: 20.5rem;
}
.footer-about__main {
  flex: 1;
  border-radius: 1rem;
}
.footer-about__title {
  margin-bottom: var(--s1);
  font-size: 2rem;
  font-weight: 700;
}
.footer-about p {
  font-size: 1.3rem;
}
.footer-about .btn-link {
  margin-bottom: 0;
}

.footer-main {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

.footer-bottom {
  padding: var(--s1) 0;
  background: #26bce6;
}
.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: 700;
  line-height: 1.5;
  border-bottom: 1px solid #424242;
}
.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) / 3);
  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;
    color: #fff;
  }
}
.footer-sitemap {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}
.footer-sitemap__link {
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-sitemap__link:hover {
    text-decoration: underline;
    color: #fff;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 10rem;
  height: 7.2rem;
  background: #26bce6;
  border-radius: 0 0 0 7.2rem;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  cursor: pointer;
}
.gnavi-btn span {
  height: 0.4rem;
  display: inline-block;
  background: #fff;
  border-radius: var(--s1);
  position: absolute;
  right: 2.1rem;
  transition: all 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  width: 4.8rem;
  top: 2.2rem;
}
.gnavi-btn span:nth-of-type(2) {
  width: 3.2rem;
  top: 3.6rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.6rem) rotate(-30deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  width: 4.8rem;
  transform: translateY(-0.8rem) rotate(30deg);
}

@media (hover: hover) {
  .gnavi-btn:hover span:nth-of-type(2) {
    width: 4.8rem;
  }
}
.gnavi-area {
  width: 74rem;
  height: 100vh;
  padding: 8rem var(--s8) 20rem var(--s8);
  border-bottom-left-radius: 20rem;
  background: #e0f4fb;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  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);
  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:first-child {
  border-top: 1px solid #999;
}
.gnavi-box + .gnavi-box {
  margin-top: var(--s3);
}

.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-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: var(--s1);
  bottom: var(--s1);
  z-index: 10;
  transition: opacity 0.3s;
}
.page-top.is-fixed {
  opacity: 1;
  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: #424242;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.3rem;
  height: var(--s4);
  background: #424242;
  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: #ededed;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
}
.more__btn::before {
  content: "";
  width: 1.6rem;
  height: 0.2rem;
  background: #424242;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
}
.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.6rem;
  background: #424242;
  position: absolute;
  top: 50%;
  right: 2.7rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}

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

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

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

    TOC lower

*/
.toc-lower-wrap {
  max-width: 90rem;
  margin: var(--s8) auto;
  padding: var(--s4) var(--s6);
  border: solid 1px #e5e5e5;
  background: #fff;
  border-radius: var(--s4);
  position: relative;
}
.toc-lower-wrap--relation {
  margin-top: 10rem;
  padding-bottom: var(--s2);
}
.toc-lower-wrap ul,
.toc-lower-wrap ul:not([class]) {
  margin-top: 0;
  margin-bottom: 0;
  counter-reset: numb;
}
.toc-lower-wrap ul li,
.toc-lower-wrap ul:not([class]) li {
  font-size: 1.8rem;
  font-weight: 700;
}
.toc-lower-wrap ul li + li,
.toc-lower-wrap ul:not([class]) li + li {
  margin-top: 1.2em;
}
.toc-lower-wrap ul li.chapter-h-two,
.toc-lower-wrap ul:not([class]) li.chapter-h-two {
  padding: 0 0 0 1.8em;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  counter-increment: numb;
}
.toc-lower-wrap ul li.chapter-h-two::before,
.toc-lower-wrap ul:not([class]) li.chapter-h-two::before {
  content: counter(numb, decimal-leading-zero);
  font-size: 1.3rem;
  font-weight: 700;
  color: #a9e4f6;
  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 2.2em;
  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: 3rem;
  height: 3rem;
  background: url(img/arrow-01-blue-right.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -0.2em;
}
.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--relation {
  color: #26bce6;
}

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

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

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

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

    titles

*/
.main-area h1,
.main-area h2,
.main-area h3,
.main-area h4,
.main-area h5,
.main-area h6 {
  font-weight: 700;
  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;
  }
}
.main-area--low h1:not([class]) {
  margin: 0 auto;
  max-width: 101rem;
  border-radius: 0 var(--s4) var(--s4) 0;
  font-size: 3.6rem;
  text-align: center;
  position: relative;
  z-index: 0;
}
.main-area--low h1:not([class]):before {
  content: "";
  width: 31.7rem;
  height: 7.9rem;
  background: url(img/deco-cloud-3.png) no-repeat center/contain;
  position: absolute;
  left: -27rem;
  top: 5rem;
  z-index: -1;
}
.main-area--low h1:not([class]):after {
  content: "";
  width: 41.2rem;
  height: 9rem;
  background: url(img/deco-cloud-1.png) no-repeat center/contain;
  position: absolute;
  right: -27rem;
  top: -4rem;
  z-index: -1;
}
.main-area--low h2:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding: var(--s2) var(--s4) var(--s2) var(--s5);
  background: #26bce6;
  border-radius: var(--s1);
  font-size: 2.8rem;
  color: #fff;
  position: relative;
}
.main-area--low h2:not([class]):before {
  content: "";
  width: 5rem;
  height: 8rem;
  background: url(img/sec1-pic-1.png) no-repeat center/contain;
  position: absolute;
  left: -1.8rem;
  top: 50%;
  transform: translateY(-50%);
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
  color: #fff;
}
.main-area--low h3:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding: var(--s1) 0 var(--s1) var(--s4);
  border-bottom: solid 0.2rem #26bce6;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
.main-area--low h3:not([class]):before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(img/deco-h3.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-02-blue-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(--s5) auto var(--s3);
  padding-left: var(--s2);
  color: #26bce6;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.main-area--low h4:not([class]):before,
.main-area--low h5:not([class]):before {
  content: "";
  width: 0.6rem;
  height: 100%;
  background: #26bce6;
  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-02-blue-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
  color: #26bce6;
}
.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: 1.2rem var(--s2) 1.2rem 7rem;
  background: #e0f4fb;
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
}
.main-area--low .icon-title::before {
  content: "check";
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #26bce6;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 200;
  text-align: center;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

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

    lower parts

*/
.lower-slider {
  margin: var(--s10) auto;
  max-width: 92rem;
}
.lower-slider__catch {
  margin-bottom: var(--s1);
  font-size: 2rem;
  font-weight: 700;
  color: #26bce6;
}
.lower-slider .l-column__main {
  padding-left: var(--s1);
}

.thumbnail-carousel img {
  border-radius: var(--s1);
}

.lower-slider__navi {
  width: fit-content;
  max-width: 24rem;
  margin: var(--s4) auto;
  padding: 0 var(--s4);
  position: relative;
}

.lower-slider__navi .splide__pagination {
  gap: var(--s1) var(--s2);
  font-size: 0;
}
.lower-slider__navi .splide__pagination__page {
  width: 1.1rem;
  height: 1.1rem;
  background: #d9d9d9;
  border-radius: 100%;
  cursor: pointer;
  transition: opacity 0.6s;
}
.lower-slider__navi .splide__pagination__page.is-active {
  background-color: #26bce6;
  cursor: default;
}

.lower-slider__arrows {
  width: calc(100% + var(--s4));
  height: 5rem;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.lower-slider__arrows .splide__arrow {
  width: 3.6rem;
  height: 3.6rem;
  margin: 0;
  background: no-repeat center/contain;
  cursor: pointer;
  position: absolute;
  top: 0;
  transition: opacity 0.6s;
}

.lower-slider__arrows .splide__arrow--prev {
  background-image: url("img/arrow-prev-blue.svg");
  left: 0;
}

.lower-slider__arrows .splide__arrow--next {
  background-image: url("img/arrow-next-blue.svg");
  right: 0;
}

@media (hover: hover) {
  .lower-slider__arrows .splide__arrow:hover {
    opacity: 0.7;
  }
}
.lower-schedule {
  margin: var(--s10) 0;
  padding: var(--s4);
  padding-top: 7.7rem;
  border-radius: var(--s3);
  background: url(img/icon-sun.png) no-repeat var(--s4) 2.2rem/3.8rem auto, url(img/icon-moon.png) no-repeat right var(--s4) top 2.2rem/3rem auto, #e0f4fb;
  display: flex;
  gap: var(--s2);
  position: relative;
}
.lower-schedule:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #26bce6;
  position: absolute;
  left: 0;
  top: 8.6rem;
}

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

.l-scroll-x-sp {
  overflow: initial !important;
}

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

    TOP common

*/
.common-title {
  margin-bottom: var(--s4);
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  color: #333;
  position: relative;
  z-index: 0;
}
.common-title span.sm {
  display: block;
  font-size: 3.2rem;
}
.common-title span.st {
  background: linear-gradient(to bottom, transparent 60%, #fff 60%);
  color: #26bce6;
}
.common-title span.st2 {
  font-size: 6.8rem;
}
.common-title span.cl {
  color: #26bce6;
}
.common-title span.cl2 {
  color: #a0c800;
}
.common-title span.cl-s {
  font-size: 4rem;
  line-height: 1.3;
  color: #26bce6;
}
.common-title--left {
  text-align: left;
}
.common-title a {
  text-decoration: none;
  padding-right: var(--s6);
  background: url(img/arrow-02-green-right.svg) no-repeat 100% 55%/3rem auto;
}
.common-title a.blue {
  background-image: url(img/arrow-02-blue-right.svg);
}
.common-title a.blue span.sm {
  margin-bottom: var(--s1);
}

.common-lead {
  max-width: 83rem;
  margin-bottom: var(--s5);
}
.common-lead--ct {
  margin: 0 auto var(--s5);
}
.common-lead--lt {
  margin-left: 0;
  margin-right: auto;
}

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

    TOP section

*/
.sec-lead {
  padding: 14rem var(--s4) 16.4rem;
  background: #a9e4f6;
  position: relative;
  z-index: 0;
}
.sec-lead:before {
  content: "";
  width: 100%;
  height: 12rem;
  background: #fff url(img/wave3-blue-top.svg) no-repeat center bottom/100% 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sec-lead:after {
  content: "";
  width: 100%;
  height: 12rem;
  background: url(img/wave-white-bottom.svg) no-repeat center bottom/100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec-lead__inner {
  max-width: 128rem;
  margin: 0 auto;
  position: relative;
}
.sec-lead__inner:before {
  content: "";
  width: 15.5rem;
  height: 18.6rem;
  background: url(img/deco-bubble-2-w.png) no-repeat center/contain;
  position: absolute;
  right: var(--s5);
  bottom: 10rem;
  transition-delay: 1s;
}
.sec-lead__inner:after {
  content: "";
  width: 13.4rem;
  height: 16.5rem;
  background: url(img/deco-bubble-3-w.png) no-repeat center/contain;
  position: absolute;
  left: var(--s8);
  bottom: 18rem;
  transition-delay: 1s;
}
.sec-lead__column {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.sec-lead__column:after {
  content: "";
  width: 6.6rem;
  height: 14rem;
  background: url(img/deco-bubble-1-w.png) no-repeat center/contain;
  position: absolute;
  right: 50%;
  top: 6rem;
}
.sec-lead .cloud-anima {
  width: 34.8rem;
  height: 9.8rem;
  position: absolute;
  left: calc(50% + 65rem);
  top: -2rem;
  animation: cloudMove 2s linear infinite;
}
.sec-lead .cloud-anima-2 {
  width: 28.5rem;
  height: 11.1rem;
  position: absolute;
  left: calc(50% - 85rem);
  bottom: 1rem;
  z-index: -1;
  animation: cloudMove 2s linear infinite;
}

.card-lead {
  width: fit-content;
  position: relative;
}
.card-lead__pic {
  width: 35rem;
  margin: 0 auto -1rem;
  position: relative;
}
.card-lead__pic2 {
  width: 9rem;
  margin: 0 auto -1rem;
  position: absolute;
  left: var(--s4);
  top: -2rem;
}
.card-lead__text {
  display: block;
  text-decoration: none;
}
.card-lead__title {
  width: fit-content;
  margin: 0 0 0 auto;
  padding: var(--s4);
  border: solid 2px #26bce6;
  border-radius: 16px 16px 0 16px;
  background: #fff;
  font-size: 1.81vw;
  font-weight: 700;
  color: #26bce6;
  position: relative;
}
.card-lead__body {
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  padding: var(--s2) var(--s4) var(--s6);
  border: solid 2px #26bce6;
  border-radius: 0 0 16px 16px;
  background: #fff url(img/arrow-02-black-down.svg) no-repeat center bottom var(--s2)/2.4rem auto;
  position: relative;
}
.card-lead__body:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-left-top.svg) no-repeat right top/contain;
  position: absolute;
  left: -19px;
  top: -5px;
}
.card-lead__body:after {
  content: "";
  width: 100%;
  height: 6px;
  background: #fff;
  position: absolute;
  left: 0;
  top: -5px;
}
.card-lead--02 {
  margin: 28rem auto 0;
}
.card-lead--02 .card-lead__title {
  margin-right: 3.4rem;
}
.card-lead--02 .card-lead__title:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-right-bottom.svg) no-repeat left bottom/contain;
  position: absolute;
  right: -19px;
  bottom: -5px;
  z-index: 1;
}
.card-lead--02 .card-lead__pic {
  width: 35.3rem;
  margin-bottom: -2rem;
}
.card-lead--02 .card-lead__pic2 {
  width: 11rem;
  top: -8rem;
}
.card-lead--02 .card-lead__body {
  border-top-right-radius: 16px;
}
.card-lead--02 .card-lead__body:after {
  width: calc(100% - 3.4rem);
}
.card-lead--03 {
  margin-top: var(--s5);
}
.card-lead--03 .card-lead__title {
  margin-right: 3.4rem;
}
.card-lead--03 .card-lead__title:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-right-bottom.svg) no-repeat left bottom/contain;
  position: absolute;
  right: -19px;
  bottom: -5px;
  z-index: 1;
}
.card-lead--03 .card-lead__pic {
  width: 37.2rem;
  margin-bottom: -2rem;
}
.card-lead--03 .card-lead__pic2 {
  left: var(--s2);
}
.card-lead--03 .card-lead__body {
  border-top-right-radius: 16px;
}
.card-lead--03 .card-lead__body:after {
  width: calc(100% - 3.4rem);
}

@media screen and (min-width: 1280px) {
  .card-lead__title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 767px) and (max-width: 1280px) {
/*///追加///*/
.mainvisual-inner{
  padding: 17.6rem var(--s3) 0;
}
.gnavi-area{
      border-bottom-left-radius: 12rem;
}
/*/////*/

    /*追加*/
  .js-appear.is-fixed{
    width: 150px;
  }
.banner .bn_text01 {
    top: 1.3rem;
    left: 3rem;
    font-size: 1.1rem;
}
.banner .bn_text01 span {
    font-size: 0.9rem;
}
.banner .bn_text02 {
    top: 1.3rem;
    left: 2.7rem;
    font-size: 1.2rem;
}
/*////////////*/
}


@media (hover: hover) {
  .card-lead__text:hover {
    opacity: 0.7;
  }
}
.sec-02 {
  padding-bottom: var(--s8);
}
.sec-02__column {
  margin-top: var(--s7);
  gap: 0;
  align-items: flex-end;
  position: relative;
}
.sec-02__column:after {
  content: "";
  width: 6.6rem;
  height: 14rem;
  background: url(img/deco-bubble-1.png) no-repeat center/contain;
  position: absolute;
  left: -6rem;
  top: -5rem;
  z-index: -1;
}
.sec-02__pic {
  margin-right: -5rem;
  position: relative;
}
.sec-02__pic:before {
  content: "";
  width: 21.5rem;
  height: 12.1rem;
  background: url(img/sec2-pic-1.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  bottom: -6rem;
}

.card-sec02__title {
  max-width: 47rem;
  width: fit-content;
  margin: 0 0 0 auto;
  padding: var(--s2) var(--s4);
  border: solid 2px #26bce6;
  border-radius: 16px 16px 16px 0;
  background: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  color: #26bce6;
  position: relative;
}
.card-sec02__title:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-left-bottom.svg) no-repeat right bottom/contain;
  position: absolute;
  left: -19px;
  bottom: -5px;
  z-index: 1;
}
.card-sec02__title:after {
  content: "";
  width: calc(100% - 5.5rem);
  height: 6px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -5px;
  z-index: 1;
}
.card-sec02__body {
  width: 48rem;
  padding: var(--s4) var(--s5);
  border: solid 2px #26bce6;
  border-radius: 16px 0 16px 16px;
  background: #fff;
  position: relative;
}
.card-sec02__body:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-right-top.svg) no-repeat right top/contain;
  position: absolute;
  right: -19px;
  top: -5px;
  z-index: 1;
}

@media screen and (max-width: 1140px) {
  .card-sec02__body {
    max-width: 43rem;
  }
}
.title-tag {
  width: fit-content;
  margin-bottom: var(--s2);
  padding: var(--s2) var(--s3);
  border-radius: var(--s6);
  background: #26bce6;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.title-tag:before {
  content: "";
  width: 9rem;
  height: 12rem;
  background: url(img/sec1-pic-1.png) no-repeat center/contain;
  position: absolute;
  left: -4rem;
  top: -6rem;
}
.title-tag--02 {
  margin: 0 auto var(--s2);
}
.title-tag--02:before {
  content: "";
  width: 10rem;
  height: 13rem;
  background: url(img/sec1-pic-2.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -12rem;
  transform: translateX(-50%);
}
.title-tag--03 {
  margin: 0 auto var(--s2);
}
.title-tag--03:before {
  content: "";
  width: 9rem;
  height: 12rem;
  background: url(img/sec1-pic-3.png) no-repeat center/contain;
  position: absolute;
  left: 53%;
  top: -10rem;
  transform: translateX(-50%);
}

.sec-03 {
  padding: 19rem 0 14rem;
  background: url(img/wave-white-top.svg) no-repeat center top/100% 12rem, url(img/wave3-white-bottom.svg) no-repeat center bottom/100% 12rem, #e0f4fb;
}
.sec-03__inner {
  position: relative;
}
.sec-03__inner:before {
  content: "";
  width: 38rem;
  height: 25rem;
  background: url(img/sec3-pic-1.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: -15rem;
}
.sec-03__subtitle {
  margin-bottom: var(--s3);
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
.sec-03__subtitle span.cl {
  color: #26bce6;
}
.sec-03__body {
  width: fit-content;
  margin: 0 0 var(--s5) auto;
  padding: var(--s6);
  border: solid 2px #26bce6;
  border-radius: var(--s2);
  border-top-left-radius: 0;
  background: #fff;
  position: relative;
  z-index: 0;
}
.sec-03__body:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-left-top.svg) no-repeat right top/contain;
  position: absolute;
  left: -19px;
  top: -5px;
}

@media screen and (min-width: 767px) and (max-width: 1140px) {
  .sec-03__body {
    max-width: calc(100% - 4rem);
  }
  .sec-03__body .l-scroll-x-sp {
    overflow: auto !important;
    padding: var(--s3) 0;
  }
}
.subtitle-block {
  max-width: 88rem;
  padding: var(--s5) var(--s6);
  border: solid 2px #26bce6;
  border-radius: var(--s2);
  border-bottom-right-radius: 0;
  background: #fff;
  position: relative;
}
.subtitle-block:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-right-bottom.svg) no-repeat left bottom/contain;
  position: absolute;
  right: -19px;
  bottom: -5px;
  z-index: 1;
}
.subtitle-block:after {
  content: "";
  width: calc(100% - 3.6rem);
  height: 6px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: -5px;
  z-index: 1;
}

.deco-area {
  position: relative;
  z-index: 0;
}
.deco-area:before {
  content: "";
  width: 15.5rem;
  height: 18.7rem;
  background: url(img/deco-bubble-2-w.png) no-repeat center/contain;
  position: absolute;
  right: -2rem;
  top: -9rem;
  z-index: -1;
}
.deco-area:after {
  content: "";
  width: 13.4rem;
  height: 16.2rem;
  background: url(img/deco-bubble-3-w.png) no-repeat center/contain;
  position: absolute;
  right: calc(100% + 5rem);
  bottom: 10rem;
  z-index: -1;
}

.table-container {
  display: grid;
  grid-template-columns: 10rem repeat(3, 28rem);
  gap: 0 var(--s1);
  font-family: "Noto Sans JP", sans-serif;
  width: fit-content;
}

.cell-corner {
  grid-column: 1;
  grid-row: 1;
}

.cell-th-top {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0f4fb;
  border-radius: var(--s2) var(--s2) 0 0;
  padding: var(--s1) var(--s2) 0;
  height: 8rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.cell-th-top.highlight {
  background-color: #c0e237;
  position: relative;
}
.cell-th-top.highlight:before {
  content: "";
  width: 100%;
  height: calc(100% + var(--s1));
  background: #c0e237;
  border-radius: var(--s2) var(--s2) 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.cell-th-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #26bce6;
  text-align: center;
}

.cell-td {
  background-color: #e0f4fb;
  padding: var(--s1);
  padding-bottom: 0;
}
.cell-td.last {
  padding-bottom: var(--s1);
  border-radius: 0 0 var(--s2) var(--s2);
}
.cell-td:last-child {
  padding-bottom: var(--s1);
  border-radius: 0 0 var(--s2) var(--s2);
}

.cell-td.highlight {
  background-color: #c0e237;
}

.cell-td:last-child.highlight {
  position: relative;
  position: relative;
}
.cell-td:last-child.highlight:before {
  content: "";
  width: 100%;
  height: calc(100% + var(--s1));
  background: #c0e237;
  border-radius: 0 0 var(--s2) var(--s2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.cell-content {
  height: 100%;
  background-color: #fff;
  border-radius: var(--s1);
  padding: var(--s2) var(--s3);
  font-size: 1.4rem;
  /*ont-weight: bold;*/
}

.box-check {
  max-width: 94rem;
  margin: 15rem auto var(--s7);
  padding: var(--s5) 20rem var(--s5) var(--s5);
  border-radius: var(--s2);
  border: solid 2px #26bce6;
  box-shadow: 1.2rem 1.2rem 0 #26bce6;
  background: #fff;
  position: relative;
}
.box-check:before {
  content: "";
  width: 3.4rem;
  height: 7.5rem;
  background: url(img/drop-water.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -9rem;
  transform: translateX(-50%);
}
.box-check:after {
  content: "";
  width: 13rem;
  height: 21rem;
  background: url(img/check-illust.png) no-repeat center/contain;
  position: absolute;
  right: var(--s3);
  bottom: var(--s2);
}
.box-check__title {
  margin: -8rem 0 var(--s3) 0;
  font-family: "Montserrat", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #f4ffc6;
  -webkit-text-stroke: 0.4rem #26bce6;
  text-stroke: 0.4rem #26bce6;
  paint-order: stroke;
  text-shadow: 0.2rem 0.3rem 0 #26bce6;
}
.box-check__catch {
  font-size: 2.4rem;
  font-weight: 700;
  color: #26bce6;
  margin-bottom: var(--s2);
}
.box-check-bubble {
  position: relative;
  z-index: 0;
}
.box-check-bubble:before {
  content: "";
  width: 15.5rem;
  height: 18.6rem;
  background: url(img/deco-bubble-2-w-r.png) no-repeat center/contain;
  position: absolute;
  left: -6rem;
  top: var(--s3);
  transition-delay: 0.5s;
}
.box-check-bubble:after {
  content: "";
  width: 15.5rem;
  height: 18.6rem;
  background: url(img/deco-bubble-2-w-t.png) no-repeat center/contain;
  position: absolute;
  right: -2rem;
  bottom: -1rem;
  transition-delay: 0.5s;
  z-index: -1;
}
.box-check-bubble--lower::after {
  background-image: url(img/deco-bubble-2-t.png);
  bottom: var(--s12);
}

/*////////追加////////*/
.check-inner {
    max-width: 94rem;
    margin: 15rem auto var(--s7);
    border-radius: var(--s2);
    border: solid 2px #26bce6;
    box-shadow: 1.2rem 1.2rem 0 #26bce6;
    background: #fff;
    position: relative;
}
.box-check--lower{
  padding: var(--s5) 20rem var(--s3) var(--s5);
  margin: 0;
  border: 0;
  box-shadow: none;
}
.box-check--lower.box-check:after{
  top: var(--s2);
}
.check-inner .btn-column{
  margin: var(--s2) var(--s2) var(--s5);
}
/*///////////////////*/

.box-check--green {
  border-color: #c0e237;
  box-shadow: 1.2rem 1.2rem 0 #c0e237;
}
.box-check--green .box-check__title {
  -webkit-text-stroke: 0.4rem #c0e237;
  text-stroke: 0.4rem #c0e237;
  text-shadow: 0.2rem 0.3rem 0 #c0e237;
}
.box-check--green .box-check__catch {
  color: #94b900;
}
.box-check--mt0 {
  margin-top: 0;
}

.sec-sponsored {
  padding: var(--s9) 0;
  position: relative;
}
.sec-sponsored__tag {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: #c0e237;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: -9rem;
  top: -9rem;
  z-index: 0;
}
@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.sec-sponsored__tag:before {
  content: "";
  width: 90%;
  height: 90%;
  background: url(img/deco-sponsored-en.png) no-repeat center/contain;
  position: absolute;
  left: 5%;
  top: 5%;
  /*transform: translate(-50%, -50%);*/
  z-index: -1;
  animation: circle-rotate 8s linear reverse infinite;
}
.sec-sponsored__name {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.3;
  color: #a0c800;
  text-align: center;
}
.sec-sponsored__title {
  margin-bottom: var(--s5);
  font-size: 3.8rem;
  font-weight: 700;
  text-align: center;
}
.sec-sponsored__catch {
  margin-bottom: 1.2rem;
  padding: var(--s-2) var(--s1);
  border-radius: var(--s1);
  background: #a0c800;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.sec-sponsored__body {
  padding: var(--s5);
  border: solid var(--s1) #c0e237;
  border-radius: var(--s3);
  background: #fff;
  position: relative;
}
.sec-sponsored__body:before {
  content: "";
  width: 15.5rem;
  height: 18.6rem;
  background: url(img/deco-bubble-2-t.png) no-repeat center/contain;
  position: absolute;
  right: -12.5rem;
  top: 27.6rem;
  z-index: -1;
}
.sec-sponsored__body:after {
  content: "";
  width: 13.4rem;
  height: 16.5rem;
  background: url(img/deco-bubble-3.png) no-repeat center/contain;
  position: absolute;
  left: -17rem;
  bottom: 17rem;
}
.sec-sponsored__body .btn-column {
  margin-bottom: 0;
}
.sec-sponsored__area {
  margin-top: var(--s4);
  padding: var(--s3);
  border-radius: var(--s2);
  background: rgba(192, 226, 55, 0.2);
}
.sec-sponsored .cloud-anima {
  width: 34.8rem;
  height: 9.8rem;
  position: absolute;
  left: calc(50% + 55rem);
  top: 0;
  animation: cloudMove 2s linear infinite;
}
.sec-sponsored .cloud-anima-2 {
  width: 28.5rem;
  height: 11.1rem;
  position: absolute;
  left: calc(50% - 85rem);
  top: 42rem;
  z-index: -1;
  animation: cloudMove 2s linear infinite;
}

.title-area {
  margin-bottom: var(--s2);
  padding-left: var(--s5);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.title-area:before {
  content: "";
  width: 2.4rem;
  height: 3.2rem;
  background: url(img/icon-pin.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.card-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.card-area__title {
  width: 10rem;
  padding: var(--s-2) 0;
  border-radius: var(--s-2);
  background: #a0c800;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
.card-area__body {
  flex: 1;
  font-size: 1.3rem;
}
.card-area + .card-area {
  margin-top: 1rem;
}

.feature {
  padding: 7rem 0 0;
  background: #e0f4fb url(img/wave2-white-top.svg) no-repeat center top/100% 6rem;
  position: relative;
}
.feature .common-lead {
  margin-bottom: 0;
}
.feature .l-center {
  position: relative;
  z-index: 0;
}
.feature .l-center:after {
  content: "";
  width: 13.4rem;
  height: 16.5rem;
  background: url(img/deco-bubble-3-w-r.png) no-repeat center/contain;
  position: absolute;
  right: -1rem;
  top: -2rem;
  z-index: -1;
}

.feature-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  width: 100%;
  padding: 8rem var(--s5) var(--s9);
  display: flex;
  gap: var(--s5);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
}

.feature-spacer {
  height: 250svh;
  /* パネル切り替え(200svh) + パネル3固定時間(50svh) */
}

.feature-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24rem 18rem 12.5rem 14rem;
  background: #fff;
}

.feature-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-panel.active,
.feature-panel:first-child {
  opacity: 1;
  /* 最初のパネルまたはactiveクラスのパネルは表示 */
}

.feature-inner {
  max-width: 110rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  gap: var(--s5);
  align-items: center;
}

.feature-title {
  width: 23rem;
  padding-top: var(--s9);
  font-size: 2.6rem;
  font-weight: 700;
  position: relative;
}
.feature-title span.cl {
  color: #26bce6;
}
.feature-title--01:before {
  content: "01";
  color: #26bce6;
  font-size: 4rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
.feature-title--02:before {
  content: "02";
  color: #26bce6;
  font-size: 4rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}
.feature-title--03:before {
  content: "03";
  color: #26bce6;
  font-size: 4rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.feature-img {
  width: 29rem;
  height: 30rem;
  text-align: center;
}
.feature-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.feature-text {
  flex: 1;
  padding-right: var(--s7);
  border-right: solid 1px #666;
  position: relative;
}
.feature-text p{
  font-size: 1.5rem;
  line-height: 1.7;
}
.feature-text--01:before {
  content: "01";
  font-size: 1.3rem;
  font-weight: 700;
  color: #26bce6;
  position: absolute;
  right: -0.8rem;
  top: -3rem;
}
.feature-text--01:after {
  content: "03";
  font-size: 1.3rem;
  font-weight: 700;
  position: absolute;
  right: -0.8rem;
  bottom: -3rem;
}
.feature-text--02:before {
  content: "02";
  font-size: 1.4rem;
  font-weight: 700;
  color: #26bce6;
  position: absolute;
  right: -0.8rem;
  top: -3rem;
}
.feature-text--02:after {
  content: "03";
  font-size: 1.4rem;
  font-weight: 700;
  position: absolute;
  right: -0.8rem;
  bottom: -3rem;
}
.feature-text--03:before {
  content: "03";
  font-size: 1.4rem;
  font-weight: 700;
  color: #26bce6;
  position: absolute;
  right: -0.8rem;
  top: -3rem;
}
.feature-text--03:after {
  content: "03";
  font-size: 1.4rem;
  font-weight: 700;
  position: absolute;
  right: -0.8rem;
  bottom: -3rem;
}

.feature-02 {
  padding: var(--s1) 0;
  background: #e0f4fb;
}
.feature-02 .box-check {
  margin-top: var(--s10);
  margin-bottom: 10rem;
}

.box-qa {
  margin: 0;
}
.box-qa:nth-of-type(even) {
  margin-right: 0;
  margin-left: auto;
}
.box-qa-wrap {
  position: relative;
  z-index: 0;
}
.box-qa-wrap:before {
  content: "";
  width: 6.6rem;
  height: 14rem;
  background: url(img/deco-bubble-1-w.png) no-repeat center/contain;
  position: absolute;
  right: -1rem;
  top: 0;
  z-index: -1;
}
.box-qa-wrap:after {
  content: "";
  width: 13.4rem;
  height: 16.5rem;
  background: url(img/deco-bubble-3-w.png) no-repeat center/contain;
  position: absolute;
  left: -10rem;
  top: 40rem;
  z-index: -1;
}
.box-qa__title {
  width: 83rem;
  margin-top: var(--s5);
  padding: var(--s4);
  padding-bottom: var(--s3);
  border: solid 2px #26bce6;
  border-radius: var(--s2);
  border-bottom-right-radius: 0;
  background: #fff;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}
.box-qa__title span.en {
  font-family: "Montserrat", sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  color: #26bce6;
  position: absolute;
  left: 2.8rem;
  top: -5.8rem;
}
.box-qa__title:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-right-bottom.svg) no-repeat left bottom/contain;
  position: absolute;
  right: -19px;
  bottom: -5px;
  z-index: 1;
}
.box-qa__body {
  width: 86rem;
  margin-left: var(--s7);
  padding: var(--s2) var(--s4) var(--s4);
  border: solid 2px #26bce6;
  border-radius: var(--s2);
  border-top-left-radius: 0;
  background: #fff;
  position: relative;
  z-index: 0;
}
.box-qa__body:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-left-top.svg) no-repeat right top/contain;
  position: absolute;
  left: -19px;
  top: -5px;
}
.box-qa__body:after {
  content: "";
  width: calc(100% - 8.6rem);
  height: 6px;
  background: #fff;
  position: absolute;
  left: 0;
  top: -5px;
}
.box-qa__catch {
  margin-bottom: var(--s1);
  padding-left: 3.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #26bce6;
  position: relative;
}
.box-qa__catch span.en {
  font-family: "Montserrat", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #26bce6;
  position: absolute;
  left: 0;
  top: -0.3em;
}

.sec-reason {
  padding: 18rem 0 var(--s5);
  background: url(img/wave2-blue-bottom.svg) no-repeat center top/100% 12rem;
}
.sec-reason__inner {
  position: relative;
  z-index: 0;
}
.sec-reason__inner:before {
  content: "";
  width: 6.6rem;
  height: 14rem;
  background: url(img/deco-bubble-1.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}
.sec-reason__inner:after {
  content: "";
  width: 15.5rem;
  height: 18.6rem;
  background: url(img/deco-bubble-2-t.png) no-repeat center/contain;
  position: absolute;
  right: -4rem;
  top: 16rem;
  z-index: -1;
}
.sec-reason__btn .btn-internal {
  margin-top: -4rem;
}

.card-reason {
  padding: var(--s3);
  border-radius: var(--s2);
  background: #e0f4fb;
  position: relative;
}
.card-reason:nth-of-type(2) {
  margin-top: var(--s8);
  transition-delay: 0.2s;
}
.card-reason:nth-of-type(3) {
  margin-top: 12.8rem;
  transition-delay: 0.4s;
}
.card-reason-wrap {
  margin-top: var(--s9);
  align-items: flex-start;
}
.card-reason__tag {
  width: 7.3rem;
  position: absolute;
  left: var(--s3);
  top: var(--s3);
}
.card-reason__title {
  margin-bottom: var(--s2);
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP vertical";
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #26bce6;
  position: absolute;
  right: var(--s1);
  top: -2rem;
}
.card-reason__title span {
  width: fit-content;
  height: fit-content;
  display: block;
  margin-left: 0.6rem;
  padding: var(--s1) 0.6rem;
  border: solid 1px #26bce6;
  border-radius: var(--s-2);
  background: #fff;
}
.card-reason__pic {
  margin-bottom: var(--s3);
}
.card-reason__pic img {
  border-radius: 20rem 16.3rem 14.7rem 12.8rem;
}
.card-reason__catch {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
}
.card-reason--lower {
  max-width: 94rem;
  margin: var(--s10) auto;
  padding: var(--s5);
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.card-reason--lower .card-reason__low-column {
  flex: 1;
}
.card-reason--lower .card-reason__pic {
  width: 26.8rem;
}
.card-reason--lower .card-reason__title {
  writing-mode: horizontal-tb;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  right: auto;
  top: auto;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.card-reason--lower .card-reason__title span {
  margin-left: 0;
  margin-bottom: var(--s1);
  margin-right: 1rem;
  padding: 0.5rem 1.5rem;
}
.card-reason--lower .card-reason__catch{
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.card-reason--lower.card-btn{
        margin: var(--s10) auto var(--s5);
  }
.card_btn.btn-column{
    margin: 0 auto var(--s10) ;
  }
.splide__track {
  padding-bottom: var(--s3);
}

.voice-block {
  margin: var(--s9) 0 0;
  padding: var(--s7) 0 var(--s10);
  display: flex;
  gap: var(--s4);
  position: relative;
}
.voice-block:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: rgba(192, 226, 55, 0.2);
  border-radius: var(--s3) 0 0 var(--s3);
  position: absolute;
  left: calc(var(--s6) * -1);
  top: 0;
  z-index: -1;
}

/*///////追加///////*/

.voice_btn{
	margin-top:3rem;
}
.voice_btn a{
	position: relative;
    background: #fff;
    padding: 2.3rem 5rem 2rem 12rem;
    border-radius: 10rem;
    text-decoration: none;
}
.voice_btn a:hover{
	opacity:0.6;
}
.voice_btn a:before{
	content:'';
	background:url(img/voice_logo.png) no-repeat center left;
	background-size: 100% auto;
	width: 90px;
    height: 34px;
    position: absolute;
    top: 1.2rem;
    left: 2.5rem;
}
.voice_btn a:after{
	content:'';
	background:url(img/voice_arrow_icon.png) no-repeat center right;
	background-size: 100% auto;
	position:absolute;
	top:2.2rem;
	right:2rem;
	width:20px;
	height:20px;
}
.voice_btn span{
	color:#3673d0;
	font-weight:700;
	
}

/*/////////////////*/


.voice-block__side {
  flex: 1;
  position: relative;
}
.voice-block__side:after {
  content: "";
  width: 13.4rem;
  height: 16.5rem;
  background: url(img/deco-bubble-3.png) no-repeat center/contain;
  position: absolute;
  left: -11rem;
  top: -23rem;
  transition-delay: 0.5s;
  z-index: -1;
}
.voice-block__title {
  margin-bottom: var(--s3);
  font-size: 3rem;
  font-weight: 700;
}
.voice-block__title span.sm {
  font-size: 2rem;
}
.voice-block__title span.bg {
  margin-right: var(--s-2);
  padding: 0.2rem var(--s1);
  background: #a0c800;
  border-radius: var(--s-2);
  color: #fff;
}

.voice-slider {
  width: calc(100% + (100vw - 100%) / 2);
  overflow: hidden;
}
.voice-slider__wrap {
  width: 65rem;
}
.voice-slider__slide {
  padding: var(--s3) var(--s7) var(--s4) var(--s3);
  border-radius: var(--s4);
  background: #fff;
  position: relative;
}
.voice-slider__slide:before {
  content: "";
  width: 7.5rem;
  height: 12rem;
  background: url(img/slide-illust-1.png) no-repeat center/contain;
  position: absolute;
  right: -1rem;
  bottom: -1rem;
}
.voice-slider__slide:nth-of-type(2):before {
  background-image: url(img/slide-illust-2.png);
}
.voice-slider__slide:nth-of-type(3):before {
  background-image: url(img/slide-illust-3.png);
}
.voice-slider__slide:nth-of-type(4):before {
  background-image: url(img/slide-illust-4.png);
}
.voice-slider__slide:nth-of-type(5):before {
  background-image: url(img/slide-illust-5.png);
}
.voice-slider__slide:nth-of-type(6):before {
  background-image: url(img/slide-illust-6.png);
}
.voice-slider__slide:nth-of-type(7):before {
  background-image: url(img/slide-illust-7.png);
}
.voice-slider__slide:nth-of-type(8):before {
  background-image: url(img/slide-illust-8.png);
}
.voice-slider__catch {
  margin-bottom: var(--s2);
  font-size: 1.7rem;
  font-weight: 700;
}

.splide__arrow {
  width: 3.6rem;
  height: 3.6rem;
  margin-right: var(--s1);
  background: no-repeat center/contain;
  cursor: pointer;
  transition: opacity 0.6s;
}
.splide__arrow--prev {
  background-image: url("img/arrow-prev.svg");
}
.splide__arrow--next {
  background-image: url("img/arrow-next.svg");
}

.sec-about {
  padding: 18rem 0 4.4rem;
  background: #e0f4fb url(img/wave-white-top.svg) no-repeat center top/100% 12rem;
}
.sec-about .l-center {
  position: relative;
  z-index: 0;
}
.sec-about .l-center.js-inview:before {
  content: "";
  width: 13.4rem;
  height: 16.5rem;
  background: url(img/deco-bubble-3-w.png) no-repeat center/contain;
  position: absolute;
  right: -1rem;
  top: 0;
  z-index: -1;
}
.sec-about .l-center.js-inview:after {
  content: "";
  width: 6.6rem;
  height: 14rem;
  background: url(img/deco-bubble-1-w.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 10rem;
  z-index: -1;
}
.sec-about__blue-1 {
  margin: var(--s8) 0 0;
  padding-bottom: 4rem;
  background: #c3f0ff;
  position: relative;
  z-index: 0;
}
.sec-about__blue-1:before {
  content: "";
  width: 100%;
  height: 12rem;
  background: #e0f4fb url(img/wave3-blue2-top.svg) no-repeat center bottom/100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec-about__blue-2 {
  padding-top: var(--s7);
  background: url(img/wave2-blue2-bottom.svg) no-repeat center top/100% 12rem;
}
.sec-about__blue-2 .sec-about__subtitle {
  margin-bottom: 0;
}
.sec-about__subtitle {
  margin-bottom: var(--s8);
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 0;
}
.sec-about__subtitle:before {
  content: "";
  width: 29.2rem;
  height: 7.7rem;
  background: url(img/deco-cloud-1.png) no-repeat center/100% 100%;
  position: absolute;
  left: 50%;
  top: -1rem;
  transform: translateX(-50%);
  z-index: -1;
}

.box-about {
  position: relative;
  z-index: 0;
}
.box-about:after {
  content: "";
  width: 17.6rem;
  height: 22.9rem;
  background: url(img/illust-up-water.png) no-repeat center/contain;
  position: absolute;
  left: -16rem;
  bottom: 0;
  z-index: 1;
}
.box-about__ttlblock {
  width: 27rem;
  margin: 0 auto 0 var(--s4);
  padding: var(--s2) var(--s4);
  border: solid 2px #26bce6;
  border-radius: var(--s2) var(--s2) 0 0;
  background: #fff;
  position: relative;
}
.box-about__ttlblock:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-left-bottom.svg) no-repeat right top/contain;
  position: absolute;
  left: -19px;
  bottom: -5px;
  z-index: 1;
}
.box-about__ttlblock:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-right-bottom.svg) no-repeat right top/contain;
  position: absolute;
  right: -19px;
  bottom: -5px;
  z-index: 1;
}
.box-about__body {
  width: 48rem;
  margin: 0 0 var(--s5) 0;
  padding: var(--s4) var(--s5);
  border: solid 2px #26bce6;
  border-radius: var(--s2);
  background: #fff;
  position: relative;
}
.box-about__body:after {
  content: "";
  width: 27rem;
  height: 6px;
  background: #fff;
  position: absolute;
  left: var(--s4);
  top: -5px;
}
.box-about__title {
  margin-bottom: var(--s1);
  padding-top: 2.8rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #26bce6;
  position: relative;
}
.box-about__title:before {
  content: "01";
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #26bce6;
  position: absolute;
  left: 0;
  top: 0;
}
.box-about__title--02:before {
  content: "02";
}
.box-about__catch {
  font-size: 1.6rem;
  font-weight: 700;
}
.box-about-wrap {
  padding: 0 14rem 0 15rem;
}

.box-about-02 {
  margin-top: -15rem;
  position: relative;
}
.box-about-02:after {
  content: "";
  width: 28rem;
  height: 28rem;
  background: url(img/illust-under-water.png) no-repeat center/contain;
  position: absolute;
  right: -10rem;
  top: -17rem;
  z-index: 1;
}
.box-about-02__ttlblock {
  width: 27rem;
  margin: 0 var(--s4) 0 auto;
  padding: var(--s2) var(--s4);
  border: solid 2px #26bce6;
  border-radius: var(--s2) var(--s2) 0 0;
  background: #fff;
  position: relative;
}
.box-about-02__ttlblock:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-left-bottom.svg) no-repeat right top/contain;
  position: absolute;
  left: -19px;
  bottom: -5px;
  z-index: 1;
}
.box-about-02__ttlblock:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-right-bottom.svg) no-repeat right top/contain;
  position: absolute;
  right: -19px;
  bottom: -5px;
  z-index: 1;
}
.box-about-02__body {
  width: 52rem;
  margin: 0 0 var(--s5) auto;
  padding: var(--s4) var(--s5);
  border: solid 2px #26bce6;
  border-radius: var(--s2);
  background: #fff;
  position: relative;
}
.box-about-02__body:after {
  content: "";
  width: 27rem;
  height: 6px;
  background: #fff;
  position: absolute;
  right: var(--s4);
  top: -5px;
}
.sec-about__blue-2 .l-center {
    position: relative;
    z-index: 0;
    max-width: 120rem;
}
.sticky-wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: var(--s9);
  justify-content: space-between;
  position: relative;
}

.container {
  flex: 1;
}

.container .right-area {
  padding: 35vh 0 0;
}
.container .right-area:last-child {
  padding-bottom: 30vh;
}

/*イメージ*/
.images-container {
  width: 60rem;
  height: 90vh;
  display: flex;
  align-items: center;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

.images-container img {
  border-radius: 28rem 20rem 28rem 14.4rem;
}

.images-container div {
  height: 40rem;
  margin: auto;
  display: block;
  visibility: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  transition: 0.8s !important;
  opacity: 0;
}

.scroll-area1:before {
  content: "";
  width: 13.4rem;
  height: 16.5rem;
  background: url(img/deco-bubble-3-w.png) no-repeat center/contain;
  position: absolute;
  left: -11rem;
  top: 0;
  transition-delay: 0.5s;
  z-index: -1;
}

.images-container div:first-child,
.images-container div.active {
  visibility: visible;
  opacity: 1;
}

.card-employ__upper {
  position: relative;
}
.card-employ__upper:before {
  content: "";
  width: 9rem;
  height: 12rem;
  background: url(img/title-icon-building.png) no-repeat center/contain;
  position: absolute;
  right: var(--s1);
  top: -3rem;
  z-index: 2;
}
.card-employ__title {
  width: fit-content;
  min-width: 18rem;
  max-width: 41rem;
  padding: var(--s2) var(--s4) var(--s1);
  border: solid 2px #26bce6;
  border-radius: var(--s2) var(--s2) 0 0;
  background: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #26bce6;
  position: relative;
}
.card-employ__title:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/corner-right-bottom.svg) no-repeat right top/contain;
  position: absolute;
  right: -19px;
  bottom: -5px;
  z-index: 1;
}
.card-employ__title:after {
  content: "";
  width: 100%;
  height: 6px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -5px;
}
.card-employ__body {
  padding: var(--s3) var(--s4) var(--s4);
  border: solid 2px #26bce6;
  border-radius: 0 var(--s2) var(--s2) var(--s2);
  background: #fff;
}

.sec-jobs {
  padding: 16rem 0;
  position: relative;
  z-index: 0;
}
.sec-jobs:before {
  content: "";
  width: 100%;
  height: 12rem;
  background: #e0f4fb url(img/wave-white-bottom.svg) no-repeat center top/100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec-jobs__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.sec-jobs__title:before {
  content: "";
  width: 15.5rem;
  height: 18.6rem;
  background: url(img/deco-bubble-2-t.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.sec-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-jobs {
  padding: var(--s4) var(--s5);
  border: solid 2px #26bce6;
  border-radius: var(--s2);
}
.card-jobs__title {
  margin-bottom: var(--s2);
  padding-left: var(--s7);
  font-size: 2.0rem;
  font-weight: 700;
  position: relative;
}
.card-jobs__title:before {
  content: "";
  width: 3.8rem;
  height: 4rem;
  background: url(img/icon-drop.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sec-detail {
  padding: 19rem 0 20rem;
  background: url(img/wave2-white-top.svg) no-repeat left top/100% 6.3rem, url(img/wave2-white-bottom.svg) no-repeat left bottom/100% 12rem, #f6fbe1;
}

.sec-detail__container {
  display: grid;
  grid-template-columns: repeat(4, 25.1rem);
  grid-template-rows: repeat(2, auto);
  gap: 32px;
  margin: 0 auto;
  position: relative;
}

.card-detail {
  background: #fff;
  border-radius: var(--s2);
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  width: 27rem;
  text-decoration: none;
}
.card-detail__link {
  padding: var(--s-2) var(--s4) var(--s-2) 0;
  background: url("img/arrow-01-blue-right.svg") no-repeat center right/2.4rem auto;
  display: inline-block;
  text-decoration: none;
  line-height: 1.5;
  text-align: right;
}

.card-detail__title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #94b900;
  min-height: 5.4rem;
  display: flex;
  align-items: center;
}

.card-detail__text {
  font-size: 1.4rem;
  line-height: 2;
  margin: 0;
}

.illustration--left {
  grid-column: 1/3;
  grid-row: 1;
  width: 100%;
  height: 24.1rem;
  position: relative;
  text-align: center;
}

.illustration--right {
  grid-column: 4;
  grid-row: 2;
  width: 100%;
  height: 23.2rem;
  position: relative;
  top: 4rem;
  left: 1rem;
  text-align: center;
}

@media (hover: hover) {
  .card-detail:hover {
    opacity: 0.6;
  }
}
.sec-links {
  padding: var(--s6) 0 0;
}
.sec-links__inner {
  padding-bottom: 12rem;
  background: url(img/sec10-illust.png) no-repeat left bottom/50rem auto;
}
.sec-links__column {
  gap: var(--s1);
}

.card-link {
  display: block;
  padding: 2.8rem 4.2rem 2.8rem 9.5rem;
  border-radius: var(--s2);
  border: solid 2px #26bce6;
  background: #fff url("img/arrow-02-blue-right.svg") no-repeat center right var(--s2)/3rem auto;
  font-size: 2.0rem;
  font-weight: 700;
  text-decoration: none;
  counter-increment: number;
  transition: all 0.3s;
  position: relative;
}
.card-link::before {
  content: counter(number, decimal-leading-zero);
  width: 6.5rem;
  height: 4.5rem;
  padding-top: var(--s-2);
  background: url(img/deco-grop.png) no-repeat left top/2.2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 0.2rem #26bce6;
  text-stroke: 0.2rem #26bce6;
  paint-order: stroke;
  text-align: center;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: var(--s2);
  transform: translateY(-50%);
}
.card-link-wrap {
  counter-reset: number;
}
.card-link + .card-link {
  margin-top: var(--s3);
}

@media (hover: hover) {
  .card-link:hover {
    background-color: #e0f4fb;
    background-position: right var(--s1) center;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

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

  body {
    font-size: 1.4rem;
  }

  img.img-height {
    max-width: 100%;
  }

  .sp_br {
    display: inline;
  }

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

      sp layout center

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

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

      sp layout stack

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

  .l-grid-three {
    grid-gap: var(--s3) 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 {
    gap: var(--s2);
  }
  .l-column__side, .l-column__side02, .l-column__side03, .l-column__side04 {
    width: 100%;
  }
  .l-column__main {
    width: 100%;
  }
  .l-column--row-reverse {
    flex-direction: column-reverse;
  }

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

      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.box-study {
    grid-template-columns: 100%;
  }
  .l-grid-areas.box-study.l-grid-areas--row-reverse {
    grid-template-columns: 100%;
  }

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

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

      sp layout scroll

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

      header area

  */
  .header-area {
    padding: var(--s1);
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .header-area:before {
    width: 50%;
  }
  .header-area__name {
    display: block;
    line-height: 1.0rem;
  }
  .header-area__name a{
     color: #76b9cb;
  }
  .header-area__logo {
    width: 19rem;
    margin: 0 auto;
    padding: 0;
    border-radius: 0 var(--s1) var(--s1) 0;
  }
  .header-area .sponsored-text {
    margin-left: 0;
  }
  .header-area--low .sponsored-text{
    color: #76b9cb;
    display: block;
  }
  .header-area .pr-text {
    margin-top: 0.3rem;
    color: #76b9cb;
    line-height: 1.4rem;
  }
  .header-area--low {
    gap: var(--s2);
  }
  .header-area--low .header-area__logo {
    width: 24rem;
    padding: 0 var(--s2);
    border-radius: var(--s1);
  }

  .banner {
    width: 49.5%;
    height: auto;
    left: 0;
    right: auto;
    bottom: 0;
  }
  .banner--02 {
    right: 0;
    left: auto;
    bottom: 0;
  }
	  /*追加*/
  .banner .bn_text01{
    top: 1.8rem;
    left: 3.3rem;
    font-size: 1.4rem;
    line-height: 1.2;
}
.banner .bn_text01 span{
  font-size: 1.1rem;
}
.banner .bn_text02{
  top: 2rem;
  left: 3.5rem;
  font-size: 1.4rem;
}
/*///////////*/

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

      main visual

  */
  .mainvisual {
    padding-top: 0;
    background: none;
  }
  .mainvisual-inner {
    margin-bottom: var(--s4);
    padding: var(--s6) var(--s2) 0;
    align-items: flex-start;
    flex-direction: column;
    gap: var(--s4);
  }
  .mainvisual-title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .mainvisual-title span.main {
    font-size: 2.6rem;
  }
  .mainvisual-title span.bg {
    margin-bottom: 0.6rem;
    font-size: 1.8rem;
  }
  .mainvisual-title-area {
    padding-top: 21rem;
  }
  .mainvisual-body {
    width: 100%;
    padding: 0;
  }
  .mainvisual-pic {
    width: 100%;
    height: auto;
    left: 0;
  }
  .mainvisual-pic img{
    border-radius: 0;
  }
  .mainvisual-pic-wrap:before {
    width: 11.5rem;
    height: 5.7rem;
    right: 0;
    top: -5rem;
  }

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

      main-area

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

      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: #424242;
    position: absolute;
    top: 2.5rem;
    left: 1rem;
  }
  .toc_parts .toc_ttl::after {
    content: "";
    width: 0.15rem;
    height: 1.1rem;
    background: #424242;
    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(--s5) auto var(--s8);
    padding: var(--s2) var(--s3) var(--s4);
    border-radius: var(--s3);
  }
  .toc-lower-wrap--relation {
    padding-bottom: 0;
  }
  .toc-lower-wrap:before {
    height: 3.5rem;
    top: -1.5rem;
  }
  .toc-lower-wrap ul li + li {
    margin-top: var(--s2);
  }
  .toc-lower-wrap ul li.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 .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,
.main-area ul:not([class]) {
    margin: var(--s3) 0;
  }
  .main-area ol:not([class]) {
    margin: var(--s3) 0;
  }
  .main-area ol:not([class]) li:before {
    top: 0;
  }

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

      sp btn

  */
  .btn-internal,
.btn-web {
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    width: 88%;
    min-height: 6.8rem;
    padding: 1.2rem 5rem 1.2rem 3rem;
    font-size: 1.5rem;
  }
  .btn-internal a::after,
.btn-web a::after {
    width: 2.8rem;
    height: 2.8rem;
    right: 1rem;
  }
  .btn-internal--top,
.btn-web--top {
    margin: 0;
  }
  .btn-internal--top a,
.btn-web--top a {
    width: 50%;
    height: auto;
    min-height: initial;
    padding: var(--s1) var(--s3) var(--s1) var(--s1);
    border-radius: var(--s2) var(--s2) 0 0;
    top: auto;
    bottom: 0;
    font-size: 1.3rem;
  }
  .btn-internal--top a span.sm,
.btn-web--top a span.sm {
    font-size: 1.1rem;
  }
  .btn-internal--top a:after,
.btn-web--top a:after {
    width: 2rem;
    height: 2rem;
    right: var(--s1);
  }

  .btn-internal--top a {
    right: 0;
  }

  .btn-web--top a {
    right: auto;
    left: 0;
  }

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

  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 88%;
    min-height: 6.8rem;
    margin: 0 auto;
    padding: var(--s1) var(--s6);
    background: url("img/icon-tel.png") no-repeat center left var(--s3)/2.2rem auto, linear-gradient(to right, #26bce6 0%, #8ae4ff 100%);
    border-radius: var(--s10) var(--s10) var(--s10) 0;
    border: solid 0.2rem #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }

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

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

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

  	subgrid card

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

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

      sp float wrap

  */
  .float-wrap .float-img.fr {
    width: 100%;
    margin: 0 auto 1rem;
    float: none;
    text-align: center;
  }
  .float-wrap .float-img.fl {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .float-wrap .float-img.ct {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

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

  	sp pankuzu

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

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

      sp footer

  */
  .footer-area {
    padding: var(--s8) 0 0;
  }
  .footer-area:before {
    height: 4rem;
  }

  .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: 14rem;
    margin: 0 auto;
  }
  .footer-about__title {
    margin-bottom: var(--s1);
    font-size: 1.6rem;
    text-align: center;
  }
  .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 10rem;
  }

  .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;
  }
  .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 {
    width: 7rem;
    height: 5.2rem;
  }
  .gnavi-btn span {
    right: 1.2rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    width: 4rem;
    top: 1.4rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    width: 3rem;
    top: 2.6rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.6rem) rotate(-30deg);
  }
  .gnavi-btn.is-active span:nth-of-type(2) {
    width: 4rem;
    transform: translateY(-0.6rem) rotate(30deg);
  }

  .gnavi-area {
    width: 100%;
    padding: 0 0 var(--s9) 0;
    border-radius: 0;
  }
  .gnavi-area__logo {
    display: block;
    width: 20rem;
    padding: var(--s1) var(--s2);
    margin: 0 auto var(--s2);
    border-radius: 0 0 var(--s2) var(--s2);
    background: #fff;
  }

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

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

  .gnavi-box__title {
   /*border-bottom: 1px solid #999;*/
  }
  .gnavi-box__content {
    background: rgba(255, 255, 255, 0.4);
  }
  .gnavi-box:first-child {
    border-top: 1px solid #999;
  }
  .gnavi-box + .gnavi-box {
    margin-top: 0;
  }

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

      sp page

  */
  .page-top {
    width: var(--s6);
    height: var(--s6);
    bottom: 5.5rem;
  }
  .page-top--low {
    bottom: 9rem;
  }

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

       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

  */
  .title-block {
    margin-bottom: var(--s4);
    padding: var(--s1) 0 0;
  }
  .title-block:before {
    height: 3rem;
  }

  .main-area--low h2:not([class]),
.main-area--low h3:not([class]),
.main-area--low h4:not([class]),
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low h1:not([class]) {
    min-height: 4.2rem;
    font-size: 2.1rem;
  }
  .main-area--low h1:not([class]):after {
    width: 18rem;
    height: 5rem;
    right: -8rem;
    top: -2rem;
  }
  .main-area--low h1:not([class]):before {
    width: 14rem;
    height: 5rem;
    left: -8rem;
    top: var(--s3);
  }
  .main-area--low h2:not([class]) {
    padding: 1.2rem 1rem 1.2rem var(--s4);
    font-size: 2.0rem;
  }
  .main-area--low h2:not([class]):before {
    width: 3.2rem;
    left: -1rem;
  }
  .main-area--low h2:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]) {
    padding-left: var(--s3);
    font-size: 1.8rem;
  }
  .main-area--low h3:not([class]):before {
    width: 1.7rem;
    height: 1.7rem;
  }
  .main-area--low h3:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h4:not([class]) {
    font-size: 1.6rem;
  }
  .main-area--low h4:not([class]) 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

  */
  .splide__track {
    padding-bottom: var(--s2);
  }

  .lower-slider__catch {
    font-size: 1.8rem;
  }

  .lower-schedule {
    padding: var(--s6) var(--s2) var(--s6) var(--s4);
    background-size: 2.8rem auto, 2rem auto;
    background-position: var(--s4) var(--s2), left var(--s4) bottom var(--s2);
    flex-direction: column;
  }
  .lower-schedule:before {
    width: 1px;
    height: 100%;
    left: var(--s2);
    top: 0;
  }

  .schedule-dl__time {
    padding: 0 0 0 0.5rem;
    text-align: left;
  }
  .schedule-dl__time:before {
    width: 1.4rem;
    height: 1.4rem;
    left: -2.2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .schedule-dl__desc span {
    font-size: 1.6rem;
    text-align: left;
  }

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

      SP end

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

      TOP section

  */
  .common-title {
    margin-bottom: var(--s3);
    font-size: 2.4rem;
  }
  .common-title span.sm {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .common-title span.st {
    font-size: 2.8rem;
  }
  .common-title span.st2 {
    font-size: 2.8rem;
  }
  .common-title span.cl-s {
    font-size: 2.4rem;
  }
  .common-title a {
    padding-right: var(--s4);
    background-size: 2.2rem auto;
  }

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

  .sec-lead {
    padding: var(--s9) var(--s2);
  }
  .sec-lead::before {
    height: 3rem;
  }
  .sec-lead:after {
    height: 3rem;
    bottom: -0.05rem;
  }
  .sec-lead__column {
    flex-direction: column;
    gap: var(--s5);
  }
  .sec-lead__column:after {
    right: auto;
    left: 0;
    top: 18rem;
    z-index: -1;
  }
  .sec-lead__inner {
    z-index: 0;
  }
  .sec-lead__inner:before {
    width: 7rem;
    right: 0;
    bottom: 30rem;
  }
  .sec-lead__inner:after {
    width: 9rem;
    bottom: auto;
    top: -6rem;
    left: auto;
    right: 0;
    z-index: -1;
  }

  .card-lead__pic {
    width: 80%;
  }
  .card-lead .card-lead__pic2 {
    width: 7rem;
  }
  .card-lead--02 {
    margin-top: 0;
  }
  .card-lead--02 .card-lead__pic {
    width: 80%;
  }
  .card-lead--02 .card-lead__pic2 {
    width: 8rem;
    top: 0;
    left: 0;
  }
  .card-lead--03 .card-lead__pic {
    width: 80%;
  }
  .card-lead__title {
    margin: 0 0 0 auto;
    padding: var(--s2) 2rem;
    font-size: 2rem;
  }
  .card-lead__body {
    padding-top: 0;
    padding-bottom: var(--s5);
    background-position: center bottom var(--s1);
  }

  .sec-02 {
    padding-top: var(--s3);
  }

  .sec-02__column {
    margin-top: var(--s4);
    gap: 0;
  }
  .sec-02__column:after {
    width: 4rem;
    left: -3rem;
    top: -6rem;
  }

  .sec-02__pic {
    margin-right: auto;
  }
  .sec-02__pic:before {
    width: 12rem;
    height: 9rem;
    bottom: auto;
    top: -1rem;
  }

  .card-sec02 {
    margin-top: -3rem;
  }
  .card-sec02__title {
    width: calc(100% - 4rem);
    padding: var(--s2);
    font-size: 1.9rem;
    text-align: center;
  }
  .card-sec02__title:after {
    width: calc(100% - 3rem);
  }
  .card-sec02__body {
    width: calc(100% - 3rem);
    padding: var(--s3);
  }

  .deco-area:before {
    width: 6.5rem;
    height: 7.7rem;
    top: -3rem;
  }

  .sec-03 {
    padding: 12rem 0 4rem;
    background-size: auto 3rem;
  }
  .sec-03__inner:before {
    width: 17rem;
    height: 12rem;
  }

  .sec-03__body {
    width: 100%;
    padding: var(--s2);
  }
  .sec-03__body:before {
    content: none;
  }
  .sec-03__body:after {
    width: calc(100% - var(--s4));
  }
	.cell-content{
		padding: var(--s2) var(--s2);
	}
  .title-tag {
    margin-left: var(--s2);
    font-size: 1.8rem;
    padding: var(--s1) var(--s2);
  }
  .title-tag:before {
    width: 5rem;
    height: 7rem;
    top: -3rem;
    left: -2.4rem;
  }
  .title-tag--02, .title-tag--03 {
    margin: 0 auto var(--s2);
  }
  .title-tag--02:before, .title-tag--03:before {
    left: 50%;
    transform: translateX(-50%);
    top: -6rem;
  }

  .sec-03__subtitle {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .sec-03__subtitle span.cl {
    /*display: block;*/
  }

  .subtitle-block {
    width: calc(100% - var(--s4));
    border-bottom-left-radius: 0;
    padding: var(--s2) var(--s3);
  }
  .subtitle-block:after {
    width: 100%;
  }

  .box-check {
    margin-top: 11rem;
    padding: var(--s3);
    box-shadow: 0.6rem 0.6rem 0 #26bce6;
  }
  .box-check--green {
    box-shadow: 0.6rem 0.6rem 0 #c0e237;
  }
  .box-check:before {
    width: 2.2rem;
  }
  .box-check:after {
    width: 7rem;
    height: 11rem;
    bottom: auto;
    top: -3rem;
    right: var(--s1);
  }
  .box-check--lower.box-check:after{
    top: -3rem;
  }
  .box-check__title {
    margin-top: -4.5rem;
    margin-bottom: var(--s2);
    font-size: 3rem;
  }
  .box-check__catch {
    max-width: calc(100% - var(--s5));
    font-size: 1.8rem;
  }
  .box-check-bubble:before {
    width: 7rem;
    height: 8rem;
    top: -7rem;
    left: -1rem;
  }
  .box-check-bubble:after {
    width: 7rem;
    height: 8rem;
    bottom: -5rem;
  }
  .check-inner {
    margin: 11rem auto var(--s7);
  }
  .box-check--lower {
    margin-bottom: var(--s2);
    box-shadow: none;
    margin-top: 0;
	}
  .box-check-bubble--lower {
    margin-bottom: var(--s7);
  }

  .sec-sponsored {
    padding: var(--s6) 0 var(--s7);
  }
  .sec-sponsored__name {
    padding-left: var(--s10);
    font-size: 1.9rem;
    text-align: left;
  }
  .sec-sponsored__tag {
    width: 8rem;
    height: 8rem;
    font-size: 1.8rem;
    left: -1.6rem;
    top: -7rem;
  }
  .sec-sponsored__title {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .sec-sponsored__body {
    border-width: 0.5rem;
    padding: var(--s3) var(--s2);
  }
  .sec-sponsored__body:before {
    width: 7rem;
    height: 8rem;
    top: -4rem;
    right: -2rem;
  }
  .sec-sponsored__body .btn-column {
    margin-top: var(--s3);
  }
  .sec-sponsored__area {
    padding: var(--s2);
  }
  .sec-sponsored .cloud-anima {
    width: 16rem;
    height: 4.8rem;
    left: auto;
    right: -7rem;
  }
  .sec-sponsored .cloud-anima-2 {
    width: 12rem;
    height: 4rem;
    left: -2rem;
    top: auto;
    bottom: var(--s1);
  }

  .title-area {
    font-size: 1.6rem;
  }

  .card-area {
    align-items: flex-start;
  }
  .card-area__title {
    width: 9rem;
    font-size: 1.3rem;
  }

  .feature-inner {
    height: 100%;
    padding: 0 var(--s2) var(--s2);
    flex-wrap: wrap;
    gap: var(--s1) var(--s2);
    align-items: flex-start;
  }

  .feature {
    padding: var(--s9) 0 0;
    background-size: 100% 2rem;
  }
  .feature .l-center:after {
    width: 10rem;
    height: 11.5rem;
    top: -5rem;
  }
  .feature .common-title {
    margin-bottom: var(--s2);
  }

  .feature-title {
    width: calc(100% - 9rem);
    margin-bottom: 0;
    padding-top: 7.2rem;
    font-size: 1.8rem;
  }
  .feature-title:before {
    font-size: 2.2rem;
    top: 2.2rem;
  }

  .feature-container {
    border-radius: 5rem 9rem 4rem 4rem;
    height: 65%;
  }

  .feature-sticky {
    padding: var(--s1) var(--s2) var(--s9);
    gap: var(--s3);
  }

  .feature-img {
    width: 7rem;
    height: 8rem;
  }
  .feature-img img {
    max-height: 8rem;
    object-fit: contain;
  }

  .feature-text {
    width: 100%;
    flex: initial;
    padding-right: 2rem;
  }
  .feature-text--01:after, .feature-text--02:after, .feature-text--03:after {
    padding-bottom: 0.5rem;
    bottom: 0;
    background: #fff;
    border-radius: var(--s1);
  }

  .feature-02 {
    padding-bottom: var(--s3);
  }
  .feature-02 .box-check {
    margin-top: var(--s3);
    margin-bottom: var(--s5);
  }

  .box-qa__title {
    width: calc(100% - var(--s4));
    padding: 2rem var(--s2) var(--s2);
    font-size: 1.6rem;
  }
  .box-qa__title span.en {
    font-size: 3.8rem;
    top: -4rem;
    left: var(--s2);
  }
  .box-qa__catch {
    font-size: 1.6rem;
  }
  .box-qa__body {
    width: calc(100% - var(--s4));
    margin-left: auto;
    margin-right: 0;
    padding: var(--s3);
  }
  .box-qa__body:after {
    width: calc(100% - var(--s4));
  }

  .box-qa-wrap:after {
    width: 11rem;
  }

  .box-qa-wrap:before {
    top: auto;
    bottom: 38rem;
  }

  .sec-reason {
    padding: var(--s10) 0 var(--s6);
    background-size: 100% 3rem;
  }
  .sec-reason__inner:before {
    width: 4rem;
    height: 8rem;
    top: -3rem;
    left: var(--s-2);
  }
  .sec-reason__inner:after {
    width: 8.5rem;
    height: 8.5rem;
    right: 0;
    top: 26rem;
  }

  .card-reason:nth-of-type(2), .card-reason:nth-of-type(3) {
    margin-top: var(--s3);
  }
  .card-reason--lower {
    flex-direction: column;
    padding: var(--s3);
  }
  .card-reason--lower .card-reason__pic {
    width: 80%;
    margin-bottom: 0;
  }
  .card-reason--lower .card-reason__title {
    font-size: 1.4rem;
  }
  .card-reason--lower .card-reason__title span{
    margin-right: 0.5rem;
    padding: 0.5rem 1.0rem;
  }
  .card-reason--lower .card-reason__catch{
    font-size: 1.8rem;
  }
  .card-reason__catch {
    font-size: 1.4rem;
  }
  .card-reason--lower .card-reason__body{
    margin-bottom: 1rem;
  }

  .voice-block {
    flex-direction: column;
    padding: var(--s4) 0;
    z-index: 0;
  }
  .voice-block:before {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .voice-block__title {
    margin-bottom: var(--s2);
    font-size: 2.4rem;
  }
  .voice-block__title span.sm {
    display: block;
    margin-bottom: var(--s1);
    font-size: 1.6rem;
  }
  /*////////追加////////*/
  .voice_btn {
    margin-top: 2rem;
}
	.voice_btn a{
		width: 90%;
        display: block;
        margin: 0 auto;
        padding: 2rem 1.5rem 1.7rem 9.2rem;
	}
.voice_btn a:before{
	width: 7rem;
    height: 2rem;
    position: absolute;
    top: 2.2rem;
	left:1.8rem;
	}
.voice_btn a:after{
	top: 2.5rem;
    right: 1rem;
	}
  /*///////////////////*/



  .voice-block__side {
    position: relative;
    z-index: 0;
  }
  .voice-block__side:after {
    width: 5.5rem;
    height: 5.5rem;
    top: -9.2rem;
    left: -2rem;
    z-index: -1;
  }

  .voice-slider {
    overflow: initial;
    width: 100%;
  }

  .voice-slider__wrap {
    margin-bottom: var(--s4);
    padding: 0 var(--s1);
    position: relative;
    width: 100%;
  }

  .voice-slider__navi {
    width: calc(100% + var(--s4));
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
  }

  .voice-slider__slide {
    padding-left: var(--s5);
    padding-right: var(--s5);
  }

  .voice-slider__slide:before {
    height: 10rem;
  }

  .splide__arrows--ltr {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .splide__arrow {
    margin: 0;
  }

  .sec-about {
    padding: var(--s10) 0 var(--s5);
    background-size: 100% 3rem;
  }
  .sec-about__inner:before {
    width: 4rem;
    height: 8rem;
    top: -3rem;
    left: var(--s-2);
  }
  .sec-about__inner:after {
    width: 8.5rem;
    height: 8.5rem;
    right: 0;
    top: 26rem;
  }
  .sec-about__subtitle {
    font-size: 1.8rem;
  }
  .sec-about__subtitle:before {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .sec-about .l-center.js-inview:before {
    width: 8rem;
    right: -4rem;
    top: -5rem;
  }

  .sec-about .l-center.js-inview:after {
    top: -3rem;
    width: 4rem;
  }

  .sec-about__blue-1:before {
    height: 3rem;
  }

  .box-about:after {
    width: 9rem;
    height: 11rem;
    right: var(--s6);
    left: auto;
    bottom: auto;
    top: -3rem;
  }

  .box-about-02:after {
    width: 12rem;
    height: 12rem;
    right: 1rem;
    left: auto;
    bottom: auto;
    top: -3rem;
  }

  .box-about-wrap {
    padding: 0;
  }

  .box-about__ttlblock,
.box-about-02__ttlblock {
    width: 25rem;
    padding: var(--s1) var(--s3) var(--s1);
  }

  .box-about__body,
.box-about-02__body {
    width: 100%;
    padding: var(--s2) var(--s3);
  }

  .box-about__body:after,
.box-about-02__body:after {
    width: 25rem;
  }

  .box-about-02 {
    margin-top: 0;
  }

  .box-about__title {
    font-size: 2.2rem;
  }
  .box-about__title:before {
    font-size: 1.8rem;
  }

  .sec-about__blue-2 {
    padding-top: 0;
    background-size: 100% 3rem;
  }
  .sec-about__blue-2 .sec-about__subtitle {
    margin-bottom: var(--s2);
  }

  .images-container {
    display: none;
  }

  .container .right-area {
    padding-top: var(--s6);
  }
  .container .right-area:last-child {
    padding-bottom: 0;
  }
  .container .right-area img {
    border-radius: 28rem 20rem 28rem 14.4rem;
  }

  .card-employ {
    margin-top: -3rem;
  }

  .card-employ__upper:before {
    width: 5rem;
    height: 7rem;
    right: var(--s1);
    top: 0;
  }

  .card-employ__title {
    padding: var(--s2) var(--s3);
    font-size: 2rem;
  }

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

  .sec-jobs {
    padding: var(--s8) 0;
  }
  .sec-jobs:before {
    height: 3rem;
  }

  .sec-jobs__title {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .sec-jobs__title:before {
    width: 9rem;
    height: 9rem;
  }

  .card-jobs {
    padding: var(--s2) var(--s3);
  }
  .card-jobs__title {
    padding-left: var(--s4);
    font-size: 1.8rem;
  }
  .card-jobs__title:before {
    width: 2.6rem;
  }

  .sec-detail {
    padding: var(--s8) 0;
    background-size: 100% 1.8rem, 100% 3rem;
  }
  .sec-detail__container {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
  }

  .illustration--left {
    height: auto;
  }

  .card-detail {
    width: 100%;
    padding: var(--s2) var(--s3);
    gap: var(--s1);
  }
  .card-detail__title {
    min-height: initial;
    font-size: 1.8rem;
  }

  .illustration--right {
    height: auto;
    text-align: center;
    top: 0;
    left: 0;
  }
  .illustration--right img {
    width: 70%;
  }

  .sec-links__inner {
    padding-bottom: 22rem;
    background-size: auto 20rem;
    background-position: left var(--s5) bottom;
  }

  .card-link {
    padding: var(--s2) var(--s6) var(--s2) var(--s9);
    background-size: 2.4rem auto;
    font-size: 1.4rem;
  }
  .card-link:before {
    width: 4.4rem;
    font-size: 3rem;
  }

  .table-container > div:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .table-container > div:nth-of-type(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .table-container > div:nth-of-type(3) {
    grid-column: 4;
    grid-row: 1;
  }

  .table-container > div:nth-of-type(4) {
    grid-column: 2;
    grid-row: 1;
  }

  .table-container > div:nth-of-type(5) {
    grid-column: 1;
    grid-row: 2;
  }

  .table-container > div:nth-of-type(6) {
    grid-column: 3;
    grid-row: 2;
  }

  .table-container > div:nth-of-type(7) {
    grid-column: 4;
    grid-row: 2;
  }

  .table-container > div:nth-of-type(8) {
    grid-column: 2;
    grid-row: 2;
  }

  .table-container > div:nth-of-type(9) {
    grid-column: 1;
    grid-row: 3;
  }

  .table-container > div:nth-of-type(10) {
    grid-column: 3;
    grid-row: 3;
  }

  .table-container > div:nth-of-type(11) {
    grid-column: 4;
    grid-row: 3;
  }

  .table-container > div:nth-of-type(12) {
    grid-column: 2;
    grid-row: 3;
  }

  .table-container > div:nth-of-type(13) {
    grid-column: 1;
    grid-row: 4;
  }

  .table-container > div:nth-of-type(14) {
    grid-column: 3;
    grid-row: 4;
  }

  .table-container > div:nth-of-type(15) {
    grid-column: 4;
    grid-row: 4;
  }

  .table-container > div:nth-of-type(16) {
    grid-column: 2;
    grid-row: 4;
  }

  .table-container > div:nth-of-type(17) {
    grid-column: 1;
    grid-row: 5;
  }

  .table-container > div:nth-of-type(18) {
    grid-column: 3;
    grid-row: 5;
  }

  .table-container > div:nth-of-type(19) {
    grid-column: 4;
    grid-row: 5;
  }

  .table-container > div:nth-of-type(20) {
    grid-column: 2;
    grid-row: 5;
  }

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

      SP end

  */
}










.header-area__inner {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0;
  padding-top: 0;
}
.sitename {
  display: contents;
  font-size: inherit;
  font-weight: inherit;
}
.sitename .header-area__logo {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}
.sitename .header-area__name {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.1rem;
  align-self: end;
}
.header-area__inner .sponsored-text {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}
@media screen and (max-width: 767px) {
  .header-area__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
  }
  .sitename {
    display: contents;
  }
  .header-area__name {
    order: 1;
    display: block;
    line-height: 1.4;
  }
  .header-area__inner .sponsored-text {
    order: 2;
    padding-left: 0;
    margin-left: 0;
  }
  .header-area__logo {
    order: 3;
    width: 19rem;
    margin: var(--s1) 0 0 30%;
    padding: 0;
    border-radius: 0 var(--s1) var(--s1) 0;
  }
}

