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

    base settings

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

@media screen and (max-width: 1140px) {
  :root {
    font-size: 0.8771929825vw;
  }
}
body {
  margin: 0;
  padding: 0;
  color: #4b3e3b;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  background-image: radial-gradient(circle at 100% 0, #d0eee5, transparent 50rem);
}
body.lower {
  background-image: linear-gradient(to bottom, #d0eee5, #fff 68rem);
}

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

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

li {
  list-style: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", 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:#4b3e3b;
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

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

@media (hover: hover) {
  a:hover {
    color: #4b3e3b;
    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 loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
/*
---------------------------------------------

    inview

*/
.movie1 {
  opacity: 0;
  transition: transform 2s ease 0.6s, opacity 0.6s ease;
}

.movie1.animated {
  opacity: 1;
  transform: translate(calc(-50% + 400px), -50%);
}

@media screen and (max-width: 767px) {
  .movie1.animated {
    transform: translate(calc(-50% + 200px), -50%);
  }
}
.movie2:before {
  transition: transform 2s ease 0.6s;
  transform: scaleX(1);
  transform-origin: right center;
}

.movie2.animated:before {
  transform: scaleX(0);
}

.fadeOut {
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 1s ease 2.6s, transform 2s ease 5s;
}

.fadeOut.first-load-animated {
  opacity: 0;
  transform: scaleX(0);
}

.fadeOut.end-animated {
  display: none;
}

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

.fadeInUp.first-load-animated {
  opacity: 1;
  transform: translate(0, 0);
  transition: transform 0.8s ease 2.6s, opacity 0.8s ease 2.6s;
}

.fadeInUp.end-animated {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

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

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

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

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

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

    layout center

*/
.l-center {
  max-width: 116rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s1);
  padding-left: var(--s1);
  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(--s5)) / 2);
  display: grid;
  grid-gap: var(--s5);
}

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

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

@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(--s8);
}
.l-column.pickup{
  gap:var(--s3) var(--s8);
}
.l-column__side {
  width: 48rem;
}
.l-column__side02 {
  width: 43rem;
}
.l-column__side03 {
  width:60.5rem;
}
.l-column__side04 {
  width: 40rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

.l-column-02 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s8);
  align-items:flex-start;
}
.l-column-02__side {
  width: 28rem;
}
.l-column-02__main {
  flex: 1;
}

.l-column-03 {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  align-items: flex-end;
}
.l-column-03__side {
  width: 52rem;
}
.l-column-03__main {
  flex: 1;
}
.l-column-03--reverse {
  flex-direction: row-reverse;
}

.l-column-04 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s9);
}
.l-column-04__side {
  width: 54rem;
}
.l-column-04__main {
  flex: 1;
}

.l-column-05 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s7);
}
.l-column-05__side {
  width: 30rem;
}
.l-column-05__main {
  flex: 1;
}

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

    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: 51rem 1fr;
  grid-gap: var(--s4) 5rem;
  grid-template-rows: auto auto;
}
.l-grid-areas.box-study .l-grid-areas__cell-01 {
  place-self: auto;
}
.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 50rem;
}

.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__left {
  margin: 0;
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 1.1rem;
}
.header-area__left a {
  text-decoration: none;
}
.header-area__name {
  display: inline;
  font-size: 1.1rem;
}
.header-area__logo {
  height: 4.3rem;
}
.header-area__tag {
  width: fit-content;
  padding: var(--s-2) var(--s2);
  border-radius: var(--s5);
  background: #6ab348;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.header-area__inner {
  width: 100%;
  height: 7.2rem;
  padding: 0 9rem 0 1rem;
  display: flex;
  gap: var(--s2);
  justify-content: space-between;
  align-items: center;
}
.header-area__inner .pr-text {
  margin: 0;
  display: inline-block;
  font-size: 1.1rem;
}

@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;
  }
}
.page-area {
  transition-delay: 3s;
  overflow: clip;
}
/* 共通の箱（トリガー要素） */
.js-banner-appear {
  position: fixed !important;
  right: 7rem;
  top: 0;
  z-index: 100; /* 重なり順を十分に高く */
  
  /* 表示前の状態 */
  opacity: 0;
  visibility: hidden;
  
  /* アニメーション設定：opacityだけに絞る */
  transition: opacity 0.5s ease-out; 
}

/* クラスがついた時の状態 */
.js-banner-appear.is-fixed {
  opacity: 1;
  visibility: visible;
}

.banner-btn {
  width: fit-content;
  height: 6.4rem;
  padding: 0.4rem var(--s2) 0;
  border-radius: 0 0 0 var(--s2);
  border: solid 0.2rem #b5e0ff;
	border-top: none;
  background: #188de1;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: border-color 0.3s ease-out, color 0.3s ease-out;
  position: fixed;
  right: 7rem;
  top: 0;
  z-index: 10;
  overflow: clip;
}
.banner-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 110%;
  height: 37.5rem;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-out;
  z-index: -1;
}
.banner-btn:after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(img/icon-window_mn.svg) no-repeat center / contain;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.banner-btn span.st {
  font-size: 1.7rem;
}
.banner-btn span.deco {
    padding: 0 var(--s5) 0 5.5rem;
    background: url(img/arrow-01-blue-right.svg) no-repeat center right / 2.4rem auto;
    display: block;
    position: relative;
}
.banner-btn span.deco:before {
  content: "check";
  font-family: "Poppins", sans-serif;
  color: #ffec6b;
  font-size: 1.4rem;
  font-weight: 200;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}


.fixed_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
.fixed_nav {
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
    background: #fffffff2;
    height: 64px;
    width: fit-content;
    position: fixed;
    right: 41rem;
    top: 0;
    z-index: 10;
    border-radius: 0 0 var(--s2) var(--s2);
}
.fixed_nav li {
    width: 200px;
}
.fixed_nav li:nth-child(4) {
    width: 240px;
}

.fixed_nav li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height:64px;
    padding: 0 3rem 0 1rem;
    color: #4b3e3b;
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    border-top: none;
    border-right: none;
    position: relative;
}

.fixed_nav li a::after {
    content: "";
    position: absolute;
    top: 52%;
    right: 26px;
    transform: translate(0, -50%) rotate(90deg);
    background: url(img/arrow-01-green-right.svg) left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
}

@media (hover: hover) {
  .banner-btn:hover {
    color: #188de1;
    border-color: #188de1;
  }
  .banner-btn:hover:before {
    transform: translate(-50%, -50%) scale(1);
  }
	.banner-btn span.deco:hover:before {
  color: #f58c4b;
}


}
@media screen and (max-width: 767px) {
	.fixed_nav {
        right: 0;
        top: 0;
        left: 0;
        height: 51px;
        width: 80%;
		height: 50px;	
}
	.fixed_nav li {
    width: 50%;
}
	.fixed_nav li a {
font-size: 1.3rem;
        height: 50px;
        padding: 0 3rem 0 1rem;
}
	.fixed_nav li a::after {
    right: 12px;
		width: 18px;
    height: 18px;
}
	
	}
/*
---------------------------------------------

    main-area

*/
.main-area {
  overflow: clip;
}
.main-area--low {
  padding-top: 8rem;
}
.main-area--low .l-center--narrow:last-child {
  margin-bottom: 10rem;
}

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

    main visual

*/
.mv-movie {
  height: 100vh;
  width: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 201;
}
.mv-movie__pic {
  width: 28.5rem;
  height: 13.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% - 350px), -50%);
  z-index: 2;
}
.mv-movie__title {
  width: fit-content;
  font-size: 8rem;
  font-weight: 800;
  color: #9c5e4c;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.mv-movie__title:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.mainvisual {
  width: 100%;
  padding: var(--s11) 0 0;
  transition-delay: 2.5s;
}
.mainvisual-logo {
  width: 8.8rem;
  margin-bottom: var(--s3);
}
.mainvisual-inner {
  max-width: 124rem;
  margin: 0 auto 13rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.mainvisual-pic {
  display: flex;
  width: 100vw;
  height: 40.6rem;
  overflow: clip;
	 overflow: hidden; /* ← はみ出しを隠す */
  position: relative; /* 子要素が absolute の場合は必要 */
}
.mainvisual-pic img {
  animation: loop 120s -60s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}
.mainvisual-pic img + img {
  animation: loop2 120s linear infinite;
}
.mainvisual-pic-wrap {
  position: relative;
}

.mainvisual-title-area {
  width: 65%;
}
.mainvisual-body {
  width: 37%;
  padding-right: 0;
}
.mainvisual-title {
  font-size: 11rem;
  font-weight: 700;
  line-height: 1.2;
  color: #9c5e4c;
}
.mainvisual-text {
  margin-top: var(--s4);
  display: block;
  font-size: 4.6rem;
  font-weight: 700;
  color:#4b3e3b;
}

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

    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: 7rem;
  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.5rem;
  font-weight: 700;
  color: #203772;
  position: absolute;
  top: 0.15em;
  left: 0.4rem;
}
.toc-lower-wrap ul li.chapter-h-two a,
.toc-lower-wrap ul:not([class]) li.chapter-h-two a {
  background: none;
}
.toc-lower-wrap ul li.chapter-h-three,
.toc-lower-wrap ul:not([class]) li.chapter-h-three {
  margin: var(--s2) 0 var(--s1) var(--s4);
  padding: 0 0 0 1.5em;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
.toc-lower-wrap ul li.chapter-h-three:before,
.toc-lower-wrap ul:not([class]) li.chapter-h-three:before {
  content: "└";
  position: absolute;
  left: 0;
  top: 0.1em;
}
.toc-lower-wrap ul li.chapter-h-three a,
.toc-lower-wrap ul:not([class]) li.chapter-h-three a {
  background: none;
}
.toc-lower-wrap ul li.relation-links,
.toc-lower-wrap ul:not([class]) li.relation-links {
  padding: 0 0 0 1.8em;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
.toc-lower-wrap ul li.relation-links:before,
.toc-lower-wrap ul:not([class]) li.relation-links:before {
  width: 1.8rem;
  height: 1.8rem;
  background: url(img/arrow-01-green-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 span.en {
  margin-left: var(--s3);
}
.toc-lower__title span.en img {
  height: 3.3rem;
  width: auto;
}

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

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

    list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: var(--s4) 0;
}
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #9c5e4c;
  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: #167b5d;
  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: 37.5rem;
  min-height: var(--s10);
  height: 100%;
  margin: 0 auto;
  padding: 1.8rem var(--s8);
  background: #fff;
  border-radius: 10rem;
  border: solid 0.3rem #167b5d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #167b5d;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  overflow: clip;
  position: relative;
  z-index: 0;
}
.btn-internal a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 37.5rem;
  border-radius: 50%;
  background-color: #167b5d;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-out;
  z-index: -1;
}
.btn-internal a:after {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url("img/arrow-01-lightgreen-right.svg") no-repeat center/contain;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 37.5rem;
  min-height: var(--s10);
  height: 100%;
  margin: 0 auto;
  padding: 1.8rem var(--s8);
  background: #193f9f;
  border-radius: 10rem;
  border: solid 0.3rem #a8bef5;
  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;
  overflow: clip;
  transition: border-color 0.3s ease-out, color 0.3s ease-out;
  position: relative;
  z-index: 0;
}

.btn-web.mn a {
    background: #188de1;
    border: solid 0.3rem #b5e0ff;
}

.btn-web a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 37.5rem;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-out;
  z-index: -1;
}
.btn-web a:after {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url("img/icon-window.svg") no-repeat center/contain;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn-web.mn a:after {
    background: url(img/icon-window_mn.svg) no-repeat center / contain;
}

@media (hover: hover) {
  .btn-internal a:hover {
    color: #fff;
  }
  .btn-internal a:hover:before {
    transform: translate(-50%, -50%) scale(1);
  }

  .btn-web a:hover {
    color: #193f9f;
    border-color: #193f9f;
  }
	 .btn-web.mn a:hover {
    color: #188de1;
    border-color: #188de1;
  }
  .btn-web a:hover:before {
    transform: translate(-50%, -50%) scale(1);
  }
}
.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: var(--s-2) var(--s4) var(--s-2) 0;
  background: url("img/arrow-01-green-right.svg") no-repeat center right/2.4rem auto;
  display: inline-block;
  font-weight: 700;
  line-height: 1.5;
	font-size: 1.4rem;
}
.btn-link--white a {
  color: #fff;
  background-image: url(img/arrow-01-blue-right.svg);
}

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

.btn-column {
  margin: var(--s5) 0;
  display: flex;
  justify-content: center;
  gap: 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(--s5) 0;
  border-collapse: collapse;
  border-top: 1px solid #c7c7c7;
  border-left: 1px solid #c7c7c7;
}

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

th {
  background: #f7f7f5;
}

td {
  background: #fff;
}

tbody th {
  background: #f7f7f5;
}

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

.main-area table .subList, .main-area table ul:not([class]){
  margin: 1.5rem 0;
}

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

    caption

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

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

	catch

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

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

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

	text

*/
.marker {
  border-bottom: solid 0.3rem #ffccad;
  font-weight: 700;
}
.sec-sponsored .marker {
  border-bottom: solid 0.3rem #f58c4ba1;
}
.box-try .marker {
  border-bottom: solid 0.3rem #f58c4b7a;
}
.card-hr .marker{
	border-bottom: solid 0.3rem #70c14a73;
}

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

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

	subgrid card

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

.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(--s5) 0  var(--s4) ;
}
.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.sz{
  width:100%;
}
    .float-wrap .float-img.ct.sz .flame {
        margin-bottom: 3rem;
    }
.float-wrap .float-img.ct {
  width: 62rem;
	    text-align-last: center;
  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 {
  padding: var(--s9) 0 0;
  background: #ebebeb;
  position: relative;
}

.footer-about {
  margin-bottom: var(--s8);
  padding: var(--s5) var(--s7) var(--s4);
  background: #fff;
  border-radius: var(--s3);
  display: flex;
  gap: var(--s6);
}
.footer-about__logo {
  width: 16.8rem;
  margin-top: 2rem;
}
.footer-about__main {
  flex: 1;
  border-radius: 1rem;
}
.footer-about__title {
  margin-bottom: var(--s1);
  font-size: 2.6rem;
  font-weight: 700;
  color: #203772;
}
.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: #167b5d;
}
.footer-bottom__inner {
  max-width: 100rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

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

    gnavi

*/
.gnavi-btn {
  width: 6.4rem;
  height: 6.4rem;
  background: #167b5d;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  cursor: pointer;
}
.gnavi-btn:before {
  content: "Menu";
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 1rem;
}
.gnavi-btn span {
  width: 3.1rem;
  height: 0.2rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1.6rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 1.5rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 2.4rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 3.3rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(1rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

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

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

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

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

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

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

    page

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

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

    toggle sp

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

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

    toggle

*/
.toggle-btn {
  line-height: 1.5;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: var(--s4);
  height: 0.3rem;
  background: #252525;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.3rem;
  height: var(--s4);
  background: #252525;
  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: 2.8rem;
  height: 2.8rem;
  background: url(img/btn-more.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translate(0, -50%);
}
.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.6rem;
  background: #252525;
  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;
  }
}
/*
---------------------------------------------

    help

*/
.help-btn01 {
  padding-bottom: var(--s5);
  text-align: center;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.help-btn01--a {
  background: url(img/btn-help-blue.png) no-repeat center bottom/3.2rem auto;
}
.help-btn01--b {
  padding-top: 2rem;
  padding-bottom: 5.5rem;
  background: url(img/btn-help-yg.png) no-repeat center bottom/3.2rem auto;
}
.help-btn01--c {
  background: url(img/btn-help-green.png) no-repeat center bottom/3.2rem auto;
}

.help-content01 {
width: 50rem;
    padding: var(--s2);
    background: #fff;
    border: solid 0.2rem #193f9f;
    border-radius: var(--s1);
    position: absolute;
    top: 54%;
    left: 0;
    z-index: 5;
    transition: opacity 0.6s;
    visibility: hidden;
    opacity: 0;
    font-size: 1.6rem;
    font-weight: 500;
    color: #4b3e3b;
}
.help-content01--b {
  border-color: #6ab348;
  left: 50%;
  transform: translateX(-50%);
}
.help-content01--b .future-subtitle {
  color: #6ab348;
}
.help-content01--c {
  border-color: #167b5d;
  left: auto;
  right: 0;
}
.help-content01--c .future-subtitle {
  color: #167b5d;
}
.help-content01.is-show {
  visibility: visible;
  opacity: 1;
}

.help-content02 {
  width: 36rem;
  padding: var(--s3) var(--s2) var(--s2);
  background:#554c49;
  border-radius: var(--s2);
  position: absolute;
  top: 100%;
  left: 57%;
  transform: translateX(-50%);
  z-index: 5;
  transition: opacity 0.6s;
  visibility: hidden;
  opacity: 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: left;
}
.help-content02:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 12px 7.5px;
  border-color: transparent transparent #554c49 transparent;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.help-content02.is-show {
  visibility: visible;
  opacity: 1;
}

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

    tab

*/
.tab-btn {
  padding: var(--s2);
  background: #354e8e url(img/icon-tab-a.png) no-repeat left 36.2rem bottom/7rem auto;
  border-radius: 2rem 2rem 0 0;
  flex: 1;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color ease 0.6s;
  position: relative;
  z-index: 1;
}
.tab-btn.is-active {
  margin-bottom: calc(0.2rem * -1);
  padding: var(--s3) var(--s2);
  background-color: #203772;
  background-size: 8rem auto;
}
.tab-btn.is-active:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.7rem 1.5rem 0 1.5rem;
  border-color: #203772 transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.tab-btn--02 {
  background: #81bb67 url(img/icon-tab-b.png) no-repeat left 36.2rem bottom/7rem auto;
}
.tab-btn--02.is-active {
  background-color:#6bad4d;
}
.tab-btn--02.is-active:after {
  border-color: #6bad4d transparent transparent transparent;
}

.tab-btn-wrapper {
  max-width: 100rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3.4rem;
}
.tab-btn-wrapper--bottom {
  align-items: flex-start;
}
.tab-btn-wrapper--bottom .tab-btn {
  border-radius: 0 0 2rem 2rem;
}
.tab-btn-wrapper--bottom .tab-btn.is-active:after {
  border-width: 0 1.5rem 1.7rem 1.5rem;
  border-color: transparent transparent #203772 transparent;
  top: auto;
  bottom: 100%;
}
.tab-btn-wrapper--bottom .tab-btn--02.is-active:after {
  border-color: transparent transparent #6bad4d transparent;
}

.tab-content {
  padding: var(--s9) 7rem var(--s12);
  border-radius: var(--s3);
  background: #354e8e;
  display: none;
  opacity: 0;
  position: relative;
  z-index: 0;
}
.tab-content:before {
  content: "";
  width: 52.5rem;
  height: calc(100% - var(--s12));
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0 var(--s5) var(--s5) 0;
  position: absolute;
  left: 0;
  top: var(--s6);
  z-index: -1;
}
.tab-content.is-active {
  display: block;
  animation: tabAnimation ease 0.6s forwards;
}
.tab-content--02 {
  background:#89bc72;
}
/*
---------------------------------------------

    titles

*/
.pr-text {
  margin-bottom: var(--s3);
  font-size: 1.1rem;
	color: #a1a1a1;
}

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

@media (hover: hover) {
  .main-area h2 a:hover,
.main-area h3 a:hover,
.main-area h4 a:hover,
.main-area h5 a:hover,
.main-area h6 a:hover {
    opacity: 0.6;
  }
}
.block-h1 {
  position: relative;
}
.block-h1:after {
  content: "";
    width: 31rem;
    height: 16rem;
  background: url(img/deco-h1.png) no-repeat center/contain;
  position: absolute;
  right: -6.8rem;
    bottom: -4px;
}

.main-area--low h1:not([class]) {
  margin: 0 auto 2rem;
  padding: var(--s3) 26rem var(--s3) 0;
  border-radius: 0 var(--s4) var(--s4) 0;
  background: #fff;
  font-size: 4.8rem;
  position: relative;
  z-index: 0;
}
.main-area--low h1:not([class]):before {
  content: "";
  width: 50vw;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 99%;
  top: 0;
  z-index: -1;
}

.main-area--low h2:not([class]) {
margin: var(--s8) auto var(--s3);
    padding: var(--s2) var(--s3);
    border-left: solid 1.2rem #17956f;
    background: #167b5d url(img/bg-h2.png) no-repeat right var(--s1) bottom / 10rem auto;
    border-radius: 0 var(--s2) var(--s2) 0;
    font-size: 3.2rem;
    color: #fff;
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
  color: #fff;
}
.main-area--low h3:not([class]) {
  margin: var(--s8) auto var(--s3);
  padding: var(--s2) 0 0 0;
  border-top: solid 2px #203772;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
}
.main-area--low h3:not([class]):before {
  content: "";
  width: 4rem;
  height: 2px;
  background: #f58c4b;
  position: absolute;
  left: 0;
  top: -2px;
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-01-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(--s7) auto var(--s3);
  padding-left: var(--s2);
  color: #203772;
  font-size: 2.2rem;
  font-weight: 800;
  position: relative;
}
.main-area--low h4:not([class]):before,
.main-area--low h5:not([class]):before {
  content: "";
  width: 0.6rem;
  height: 100%;
  background: #203772;
  border-radius: var(--s1);
  position: absolute;
  left: 0;
  top: 0;
}
.main-area--low h4:not([class]) a,
.main-area--low h5:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
  color: #203772;
}
.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  font-size: 1.7rem;
}
.main-area--low .icon-title {
margin: var(--s7) 0 var(--s3);
    padding: 1.5rem var(--s2) 1.5rem 7rem;
    background: #f4f4f4;
    font-size: 2.2rem;
    font-weight: 800;
    color: #203772;
    border-radius:var(--s2);
    display: flex;
    align-items: center;
    position: relative;
}
.main-area--low .icon-title::before {
  content: "Check";
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background:#f58c4b;
  font-family: "Poppins", 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;
}
.main-area--low .v_box {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.v_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*---------------------------------------------

    lower parts

*/
.lower-summary {
  margin: 12rem 0 10rem;
  padding: var(--s6) var(--s9);
  position: relative;
  z-index: 0;
}
.lower-summary:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: rgba(33, 174, 132, 0.1) url(img/bg-tree.png) no-repeat left 80rem bottom/auto 21.1rem;
  border-radius: var(--s4) 0 0 var(--s4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.lower-summary:after {
  content: "Summary";
  font-family: "Poppins", sans-serif;
  font-size: 6.9rem;
  font-weight: 200;
  color: #e8f5f1;
  position: absolute;
    left: 70px;
    top: -7.5rem;
    z-index: -2;
}
.lower-summary__title {
  margin-bottom: var(--s4);
  font-size: 2.4rem;
  font-weight: 700;
  color: #167b5d;
}
.lower-summary .btn-web {
  margin: var(--s4) auto 0;
}

.lower-schedule {
  margin: 10rem auto 6rem;
  padding: var(--s3) var(--s8) var(--s7);
  border-top: solid 1px #79acd9;
  border-bottom: solid 1px #79acd9;
  position: relative;
}
.lower-schedule:before {
  content: "Schedule";
  padding: 0 var(--s2);
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 200;
  color: #79acd9;
  background: #fff;
  position: absolute;
  left: var(--s6);
  top: -3rem;
}
.lower-schedule:after {
  content: "";
  width: 8.4rem;
  height: 10rem;
  background: #fff url(img/icon-schedule.png) no-repeat center/contain;
  position: absolute;
  left: -3rem;
  top: -5.5rem;
}
.lower-schedule__title {
     margin: var(--s3) 0 var(--s4);
  font-size: 3.4rem;
  font-weight: 700;
}

.box-qa {
  margin-top: var(--s5);
  margin-bottom: var(--s8);
}
.box-qa__title {
  margin-top: var(--s6);
  margin-bottom: var(--s3);
  padding-left: var(--s9);
  font-size: 2.4rem;
  font-weight: 900;
  position: relative;
}
.box-qa__title:before {
  content: "";
  width: 6.2rem;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  top: 0.7em;
}
.box-qa__body {
  padding-left: var(--s9);
}
.box-qa__body .l-column--row-reverse {
  gap: var(--s8);
}
.box-qa__answer {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
  font-weight: 900;
  color: #f58c4b;
  position: relative;
}
.box-qa__answer:before {
  content: "A.";
  font-family: "Poppins", sans-serif;
  font-size: 4.2rem;
  font-weight: 200;
  line-height: 1;
  color: #f58c4b;
  position: absolute;
  left: -4.2rem;
  top: -1rem;
}
.float-wrap .box-qa__title{
margin-top: 2rem;
    margin-bottom: var(--s6);
}
.float-wrap .box-qa{
   margin-top: 0;
    margin-bottom: 2rem;
}

.float-wrap .box-qa__answer:before{
left: 0;
}

.float-wrap .box-qa__body {
    padding-left: 41rem;
}

.float-wrap .box-qa__answer {
    padding-left: 4.5rem;
}
.float-wrap.cf.rimg .box-qa__body{
      padding-left: 0;
}
.lower-job {
  margin: 7rem 0;
}
.lower-job__title {
  padding: var(--s3) var(--s7);
  border-radius: var(--s4) var(--s4) 0 0;
  background: #354e8e;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  gap: var(--s3);
  align-items: center;
}
.lower-job__title h2{
  font-size: 3.2rem;
}
.lower-job__title--02 {
  background:#6bad4d;
}
.lower-job__tag {
  width: 9.2rem;
  height: 9.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  color: #203772;
}
.lower-job__tag--02 {
  color: #167b5d;
}
.lower-job__title-main {
  flex: 1;
}
.lower-job__body {
  padding: var(--s4) var(--s7);
  border-radius: 0 0 var(--s4) var(--s4);
  background: #495f99;
}
.lower-job__body--02 {
  background: #89bc72;
}
.lower-job .box-prof {
  margin: 0;
}

.splide {
  margin: 10rem auto;
}

.splide__slide {
  opacity: 0.7;
}
.splide__slide.is-active {
  opacity: 1;
}
.splide__slide p {
  width: 90%;
  margin: var(--s1) auto 0;
  text-align: center;
}

.lower-slider .splide__track {
  overflow: visible;
}

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

.lower-slider__navi--mv {
  margin: var(--s4) auto;
}

.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: #167b5d;
  cursor: default;
}

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

.lower-slider__arrows .splide__arrow {
  width: 5rem;
  height: 5rem;
  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.svg");
  left: 0;
}

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

@media (hover: hover) {
  .lower-slider__arrows .splide__arrow:hover {
    opacity: 0.7;
  }
}
.box-comment {
  margin: var(--s7) auto;
  padding: var(--s5) var(--s7);
  border-radius: var(--s5);
  background: #f0f8ff;
  display: flex;
  gap: var(--s2) var(--s5);
}
.box-comment .txt_bold {
    font-size: 1.8rem;
}
.box-comment--reverse {
  flex-direction: row-reverse;
}
.box-comment__pic {
 width: 11rem;
    text-align: center;
}
.box-comment__pic img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
}
.box-comment__main {
  flex: 1;
}
.box-comment__name {
  font-size: 1.4rem;
  text-align: center;
	margin-top: 1rem;
}

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

    TOP common

*/
.common-title {
  margin-bottom: var(--s6);
  padding-top: 6rem;
  font-size: 4.8rem;
  font-weight: 700;
  color:#4b3e3b;
  position: relative;
  z-index: 0;
}
.common-title span.sm {
  font-size: 3.2rem;
}
.common-title span.st {
  padding: 0 var(--s1);
  background: #fff;
  border-radius: var(--s-2);
  color: #9c5e4c;
}
.common-title span.st2 {
  font-size: 6.8rem;
}
.common-title span.cl {
  color: #9c5e4c;
}
.common-title--01:before {
  content: "Future";
  font-family: "Poppins", sans-serif;
  font-size: 16.2rem;
  font-weight: 200;
  line-height: 1;
  color: #fff;
  position: absolute;
  left: -5rem;
  top: 0;
  z-index: -1;
}
.common-title--02 {
  padding-top: 0;
  text-align: center;
}
.common-title--03 {
  padding-top: 9.2rem;
}
.common-title--03:before {
  content: "Work";
  font-family: "Poppins", sans-serif;
  font-size: 16.2rem;
  font-weight: 200;
  line-height: 1;
  color: #e8f5f1;
  position: absolute;
  left: -5rem;
  top: 0;
  z-index: -1;
}
.common-title--04 {
  padding-top: 9.2rem;
  margin-bottom: 8rem;
}
.common-title--04:before {
  content: "Voice";
  font-family: "Poppins", sans-serif;
  font-size: 16.2rem;
  font-weight: 200;
  line-height: 1;
  color: #e8f5f1;
  position: absolute;
  left: -5rem;
  top: 0;
  z-index: -1;
}
.common-title--05 {
  padding-top: 9.2rem;
}
.common-title--05:before {
  content: "Maker";
  font-family: "Poppins", sans-serif;
  font-size: 16.2rem;
  font-weight: 200;
  line-height: 1;
  color: #fff;
  position: absolute;
  left: -5rem;
  top: 0;
  z-index: -1;
}
.common-title--06 {
  padding-top: 11rem;
}
.common-title--06:before {
  content: "About Industry";
  font-family: "Poppins", sans-serif;
  font-size: 16.2rem;
  font-weight: 200;
  line-height: 1;
  background: linear-gradient(to right, #e2f6f0 0%, #e3f2ff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  position: absolute;
  left: -1rem;
  top: 0;
  z-index: -1;
}
.common-title--07 {
  margin: 18rem auto var(--s4);
  padding-top: 0;
  text-align: center;
}
.common-title a {
 text-decoration: none;
    padding-right: var(--s7);
    background: url(img/arrow-01-line-right.svg) no-repeat 100% 70% / 5rem auto;
}

.common-lead {
  max-width: 92rem;
  margin: 0 auto;
}
.common-lead--ct {
  text-align: center;
}
.common-lead--lt {
  margin-left: 0;
  margin-right: auto;
}

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

    TOP section

*/
.sec-future {
  padding-top: 10rem;
  background: linear-gradient(#d0eee5 0%, #fff 68rem);
}

.sec-future .common-title{
 padding-top: 9rem;
}

.future-area {
  margin-top: 20.5rem;
  height: 36.5rem;
  position: relative;
  z-index: 0;
}
.future-area__btn {
  padding-left: 5rem;
  border-radius: 50%;
  border: solid 2px #ffffff8c;
  display: flex;
  align-items: center;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  color: #fff;
  position: relative;
  cursor: pointer;
}
.future-area__btn--01 {
  width: 100%;
  height: 100%;
  background: #193f9f;
}
.future-area__btn--01:before {
    content: "";
    width: 15rem;
    height: 14rem;
    background: url(img/illust-sec1-1.png) no-repeat center / contain;
    position: absolute;
    left: 88px;
    top: -4rem;
}
.future-area__btn--02 {
   width: 45.3rem;
  height: 26.5rem;
  background: #6ab348;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.future-area__btn--02:before {
    content: "";
    width: 14.5rem;
    height: 14.9rem;
    background: url(img/illust-sec1-2.png) no-repeat center / contain;
    position: absolute;
    left: 5rem;
    top: -10rem;
}
.future-area__btn--03 {
  width: 26.7rem;
  height: 18.8rem;
  padding-left: 0;
  background: #167b5d;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.future-area__btn--03:before {
    content: "";
    width: 27.4rem;
    height: 13.8rem;
    background: url(img/illust-sec1-3.png) no-repeat center / contain;
    position: absolute;
    left: -4.1rem;
    top: -11rem;
}
.future-area__btn--03 .help-btn01 {
  margin: 0 auto;
}

.future-subtitle {
  margin-bottom: var(--s2);
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: #193f9f;
}

.sec01-under {
  margin: var(--s7) 0 10rem;
  align-items: center;
  gap: var(--s9);
}

.sec01-subtitle {
  border-right: solid 1px #949494;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.sec01-subtitle span.sm {
  font-size: 3rem;
}
.sec01-subtitle span.st {
  color: #9c5e4c;
}

.sec01-arrow {
  width: 7.4rem;
  margin: var(--s10) auto 0;
}

.box-summary {
  max-width: 90rem;
  margin: 10rem auto;
  padding: var(--s6) var(--s9) var(--s8);
  border-radius: var(--s6);
  background: url(img/bg-grade.jpg) no-repeat center/cover;
}
.box-summary__title {
  margin-bottom: var(--s3);
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 200;
  text-align: center;
  color: #f58c4b;
}
.box-summary__catch {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.box-summary__catch span.st {
  margin: 0 var(--s1);
  padding: 0 var(--s1);
  color: #9c5e4c;
  background: #fff;
  border-radius: var(--s1);
}
.box-summary__catch2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}
.box-summary .btn-column {
  margin-bottom: 0;
}

.sec-sponsored {
  width: calc(100% - var(--s8));
  margin: 14rem auto var(--s4);
  padding-bottom: 7rem;
  border-radius: var(--s6);
  background: url(img/bg-sponsored.jpg) no-repeat center/cover;
}
.sec-sponsored__tag {
  padding-top: var(--s4);
  width: 14.5rem;
  height: 10.3rem;
  background: url(img/bg-icon-sv.png) no-repeat center/contain;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  transform: translateY(-4.7rem);
}
.sec-sponsored__title {
  margin-bottom: var(--s4);
  padding-top: 4.4rem;
	color: #ffedc3;
  font-size: 3.6rem;
  font-weight: 700;
  position: relative;
}
.sec-sponsored__title .txt_bold {
    color: #ffedc3;
}
.sec-sponsored__title span.st {
  font-size: 4.4rem;
	color: #ffffff;
}
.sec-sponsored__title:before {
  content: "Sponsored By";
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 200;
  color: #bf7547;
  position: absolute;
  left: 0;
  top: 0;
}
.sec-sponsored__body {
  max-width: 68rem;
  color: #fff;
}
.sec-sponsored .btn-web {
  margin: var(--s4) auto 0 0;
}
.sec-sponsored .btn-web a {
  margin-left: 0;
}

.sec-sponsored .btn-column {
     margin: var(--s6) 0 0;
	    width: 65%;
}
.sec-sponsored .btn-column .btn-web{
     margin: 0 auto 0 0;
}

.sec-story {
  margin-top: 13rem;
  background: url(img/bg-green-story.png) no-repeat center top/auto 50.1rem;
}
.sec-story .common-lead{
	text-align: center;
}
.sec-story .common-lead .marker{
	border-bottom: solid 0.3rem #70c14a73;
}

.card-comment .marker{
	border-bottom: solid 0.3rem #70c14a73;
}

.box-story {
 max-width: 100%;
    margin: 8rem auto var(--s8);
    display: flex;
    gap: 4.2rem;
    position: relative;
    align-items: end;
}
.box-story:before {
  content: "Story01";
  font-family: "Poppins", sans-serif;
  font-size: 12rem;
  font-weight: 200;
  line-height: 1;
  color: #fff;
  position: absolute;
  left:-5.5rem;
  top: -7.3rem;
}
.box-story--02 {
  margin-top: 16.8rem;
}
.box-story--02:before {
  content: "Story02";
  color: #e8f5f1;
}
.box-story__content {
  margin-top: var(--s6);
  flex: 1;
}
.box-story__pic {
  width: 57.6rem;
  position: relative;
}
.box-story__pic img {
  border-radius: var(--s3);
}
.box-story__pic .inner-text-1 {
  width: 50%;
  padding: 0.6rem;
  border-radius: var(--s3) 0 0 0;
  background: #f58c4b;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}
.box-story__pic .inner-text-2 {
  width: 14rem;
  height: 7.5rem;
  padding: 24px 0 0;
  border-radius: var(--s9) var(--s9) 0 0;
  background: #f58c4b;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 20%;
  bottom: 0;
}
.box-story__pic .inner-text-3 {
  width: 50%;
  padding: 0.6rem;
  border-radius: 0 var(--s3) 0 0;
  background: #193f9f;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
}
.box-story__pic .inner-text-4 {
  width: 14rem;
  height: 7.5rem;
  padding: 24px 0 0;
  border-radius: var(--s9) var(--s9) 0 0;
  background: #193f9f;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  position: absolute;
  right: 20%;
  bottom: 0;
}
.box-story__pic .inner-text-1.bl {
    background: #193f9f;
}	
.box-story__pic .inner-text-2.bl {
    background: #193f9f;
}	

.box-story__pic .inner-text-3.og{
    background: #f58c4b;
}	

.box-story__pic .inner-text-4.og{
    background: #f58c4b;
}	
.box-story__title {
  margin-bottom: var(--s3);
  padding-top: 2.2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #e57a38;
  position: relative;
  z-index: 0;
}


.box-story__title--blue.rt:before {
    content: "";
    width: 7.2rem;
    height: 7.2rem;
    background: url(img/icon-quate-blue_2.png) no-repeat center / contain;
    position: absolute;
    left: -5rem;
    top: -2rem;
    z-index: -1;
}
.box-story__title:before {
  content: "";
  width: 7.2rem;
  height: 7.2rem;
  background: url(img/icon-quate-orange.png) no-repeat center/contain;
  position: absolute;
  left: -5rem;
  top: -2rem;
  z-index: -1;
}
.box-story__title.lt:before {
    content: "";
    width: 7.2rem;
    height: 7.2rem;
   background: url(img/icon-quate-orange_2.png) no-repeat center / contain;
    position: absolute;
     left: auto;
    right: -3rem;
    top: -2rem;
    z-index: -1;
}

.box-story__title--blue {
  color: #193f9f;
}
.box-story__title--blue:before {
  background: url(img/icon-quate-blue.png) no-repeat center/contain;
  left: auto;
  right: -3rem;
}

.card-comment {
 max-width: 100rem;
    margin: var(--s7) auto;
    min-height: 17.4rem;
    padding: var(--s4) var(--s5) var(--s6) 20rem;
    border-radius: var(--s4);
    background: #edf7f1;
    position: relative;
}
.card-comment__pic {
width: 12rem;
    position: absolute;
    left: var(--s5);
    bottom: 55px;
}

.sec-work {
  padding: var(--s2) 0 12rem;
  background: linear-gradient(#fff 0%, #d4eeee 31%, #e1eefa 100%);
}
.sec-work__inner {
  margin: var(--s5) auto 0;
  padding: var(--s6) 0;
  position: relative;
  z-index: 0;
}
.sec-work__inner:before {
  content: "";
  width: calc(100% + 10rem);
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--s6);
  position: absolute;
  left: -5rem;
  top: 0;
  z-index: -1;
}
.sec-work__innertitle {
  margin-bottom: var(--s4);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.box-prof {
  width: fit-content;
  margin-left: 13rem;
  margin-bottom: var(--s5);
}
.box-prof__catch {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.box-prof__position {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
}
.box-prof__pic img {
  border-radius: var(--s5);
}
.box-prof__catch2 {
  margin-bottom: var(--s3);
  font-size: 2rem;
  color: #fff;
}
.box-prof__text {
  padding: var(--s3);
  border-radius: var(--s2);
  background: #fff;
}

.inner-detail {
  padding: var(--s6) 5rem var(--s5);
  border-radius: var(--s3);
  background: #fff;
}

.detail-title {
  margin: 1.2rem 0 var(--s4);
  font-size: 2.4rem;
  font-weight: 700;
}

.detail-ttl-deco {
  padding-left: var(--s2);
  font-size: 1.8rem;
  font-weight: 700;
  color: #193f9f;
  line-height: 1;
  position: relative;
}
.detail-ttl-deco:before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: #193f9f;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 40%;
}
.detail-ttl-deco:after {
  content: "";
  width: 75rem;
  height: 1px;
  background: #193f9f;
  position: absolute;
  right: 0;
  top: 50%;
}
.detail-ttl-deco--green {
  color: #167b5d;
}
.detail-ttl-deco--green:before {
  background: #167b5d;
}
.detail-ttl-deco--green:after {
  background: #167b5d;
}

.detail-pic-full {
  max-width: 80rem;
  margin: var(--s4) auto var(--s7);
}
.detail-pic-full img {
  border-radius: var(--s5);
}

.title-flow {
  color: #79acd9;
  font-weight: 700;
}

.box-flow {
  margin: var(--s1) 0 var(--s10);
  border: solid 1px #f1f1f1;
  display: flex;
}
.box-flow__item {
  width: 20.666667%;
  padding: var(--s3) 0 var(--s7) var(--s3);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(img/icon-help.svg) no-repeat left 59% bottom var(--s2)/2.8rem auto;
}
.box-flow.green .box-flow__item{
  width: 25.666667%;
}
.box-flow__item:nth-child(odd) {
  background-color: #f1f1f1;
}
.box-flow__item:nth-child(odd):before {
  content: "";
  width: 2rem;
  height: 100%;
  background: url(img/arrow-flow-gray.png) no-repeat left center/auto 100%;
  position: absolute;
  left: 100%;
  top: 0;
}
.box-flow__item:nth-child(even):before {
  content: "";
  width: 2rem;
  height: 100%;
  background: url(img/arrow-flow-white.png) no-repeat left center/auto 100%;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 1;
}
.box-flow__item:last-child {
  padding-left: var(--s2);
}
.box-flow__item:last-child:before {
  content: none;
}

.flow-subtitle {
  margin-bottom: var(--s1);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.detail-title02 {
  width: fit-content;
  margin: 6rem 0 var(--s4);
  padding: var(--s1) var(--s3);
  border-radius: var(--s1);
  background: #203772;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.detail-title02:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 7.5px 0 7.5px;
  border-color: #203772 transparent transparent transparent;
  position: absolute;
  left: 5.2rem;
  top: 100%;
}
.detail-title02--green {
  background: #167b5d;
}
.detail-title02--green:before {
  border-color: #167b5d transparent transparent transparent;
}

.detail-pic img {
  border-radius: var(--s3);
}

.detail-catch {
  margin: var(--s1) 0;
  padding: var(--s2) var(--s5);
  background: url(img/icon-quate-sky-left.png) no-repeat left top/6.5rem auto, url(img/icon-quate-sky-right.png) no-repeat right top/6.5rem auto;
  font-size: 2.4rem;
  font-weight: 700;
  color: #193f9f;
}

.title-qa {
  margin: 11rem 0 var(--s6);
  padding-top: var(--s6);
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.title-qa:before {
  content: "Q&A";
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 3.4rem;
  font-weight: 200;
  color: #f58c4b;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}
.title-qa span.sm {
  font-size: 4rem;
}

.card-qa {
  padding-top: var(--s2);
  border-radius: var(--s4);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 2rem rgb(0 0 0 / 11%);
}
.card-qa-wrapper {
  max-width: 116rem;
  margin: var(--s5) auto;
}
.card-qa__tag {
  padding-left: var(--s4);
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  color: #f58c4b;
}
.card-qa__question {
  padding: 0 var(--s4);
  font-size: 2.4rem;
  color: #203772;
}
.card-qa__answer {
  padding: var(--s4);
  background: #f0fbeb;
}
.card-qa__person {
  width: fit-content;
  margin: 0 0 -4rem auto;
  display: flex;
  gap: var(--s2);
  align-items: center;
  z-index: 1;
}
.card-qa__pic {
  width: 9rem;
}
.card-qa__pic img {
  border-radius: var(--s2) 0 0 var(--s2);
}

.sec-voice {
  padding: 10rem 0 6rem;
}
.sec-voice .l-center {
  position: relative;
}
.sec-voice .l-center:before {
  content: "";
  width: 21.1rem;
  height: 23.5rem;
  background: url(img/pic-voice-1.png) no-repeat center/contain;
  position: absolute;
  right: -1rem;
  top: 6rem;
}
.sec-voice__subtitle {
  width: fit-content;
  margin: var(--s6) 0 var(--s4);
  padding: var(--s-2) var(--s2);
  border-radius: var(--s5);
  background: #79acd9;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.sec-voice__subtitle2 {
  margin: var(--s4) 0 var(--s1);
  font-family: "Poppins", sans-serif;
  font-size: 3.6rem;
  font-weight: 200;
  color: #f58c4b;
}

.card-ranking {
  margin-bottom: var(--s4);
  padding: var(--s4) 0 1.8rem;
  max-width: 62.4rem;
  border-bottom: solid 1px #203772;
  display: flex;
  gap: 2rem;
}
.card-ranking__rank {
  width: 14rem;
}
.card-ranking__rank .icon-rank {
  width: 14rem;
  height: 14rem;
  margin: 0 auto;
  display: block;
  background: #203772;
  border-radius: 50%;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.card-ranking__rank .icon-rank:before {
  content: "";
  width: 8rem;
  height: 5.4rem;
  background: url(img/illust-crown.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -2.5rem;
  transform: translateX(-50%);
}
.card-ranking__rank .icon-rank span.st {
  font-size: 6.6rem;
}
.card-ranking__rank--01 .icon-rank {
  padding-top: var(--s2);
}
.card-ranking__rank--02 .icon-rank {
  width: 12rem;
  height: 12rem;
  padding-top: 0.5rem;
  background: #21ae84;
}
.card-ranking__rank--02 .icon-rank:before {
  top: -3rem;
}
.card-ranking__rank--03 .icon-rank {
  width: 11rem;
  height: 11rem;
  background: #6ab348;
}
.card-ranking__rank--03 .icon-rank:before {
  top: -3rem;
}
.card-ranking__content {
  flex: 1;
}
.card-ranking__text {
  margin-bottom: 2.4rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #203772;
}
.card-ranking__per {
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-size: 4.6rem;
  font-weight: 200;
  color: #f58c4b;
  line-height: 1;
}
.card-ranking__per span.sm {
  font-size: 2.4rem;
}

.voice-list__item {
  font-size: 2rem;
  font-weight: 700;
  color: #203772;
}

.card-voice {
  padding: var(--s3) var(--s4);
  padding-right: 13.5rem;
  border-radius: var(--s3);
  background: #f4f4f4;
  position: relative;
}
.card-voice__pic {
  width: 8.6rem;
  height: 8.6rem;
  position: absolute;
  right: var(--s4);
  bottom: var(--s3);
}
.card-voice__pic img {
  border-radius: 50%;
}
.card-voice__name {
  margin-top: var(--s2);
  font-size: 1.4rem;
  font-weight: 700;
}
.card-voice + .card-voice {
  margin-top: var(--s3);
}

.sec-pickup {
  padding: 34rem 0 9rem;
  position: relative;
}
.sec-pickup:before {
  content: "";
  width: 100%;
  height: 200rem;
  background: linear-gradient(to bottom, #c7eee2 0%, #e1eefa 53%, #ffffff 100%);
  position: absolute;
  left: 0;
  top: 48rem;
}
.sec-pickup .l-center {
  position: relative;
	
}
.sec-pickup__subtitle {
  width: fit-content;
  margin: 11rem 0 var(--s8);
  padding: 1.2rem var(--s4) 1.2rem 0;
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  position: relative;
  z-index: 0;
}
.sec-pickup__subtitle:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  border-radius: 0 10rem 10rem 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec-pickup__under .com_img {
    display: flex;
    width: calc(100% + 8rem);
    height: auto;
    overflow: hidden;
    border-radius: var(--s5);
    position: absolute;
    left: 50%;
    top: 12rem;
    transform: translateX(-50%);
    padding: 9rem 4rem 10rem;
    background: #ffffffad;
}
.sec-pickup__subtitle--01:after {
  content: "Pick Up";
  font-family: "Poppins", sans-serif;
  position: absolute;
  left: 0;
  top: -3rem;
  font-size: 3.6rem;
  font-weight: 200;
  line-height: 1;
  color: #f58c4b;
}
.sec-pickup__under {
  margin-top: 14rem;
  position: relative;
    background: linear-gradient(#fff 0%, #dff3f3 10%, #ffffff 29%);
}
.sec-pickup__under .loop-animation {
  top: 8rem;
}
.sec-pickup__subtitle02 {
  width: fit-content;
  margin-bottom: 52rem;
  padding: var(--s4);
  border-radius: var(--s5);
  background: #203772;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.sec-pickup__subtitle02:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.4rem 1.7rem 0 1.7rem;
  border-color: #203772 transparent transparent transparent;
  position: absolute;
  left: 11.5rem;
  top: 100%;
}
.sec-pickup__bg-grade {
  padding-top: 9rem;
  background: linear-gradient(to bottom, #fff 0%, #c7eee2 15%, #e1eefa 62%, #fff 92%, #fff 100%);
}

.loop-animation {
  display: flex;
  width: 100vw;
  height: 48rem;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.loop-animation .img-height {
  animation: loop 120s -60s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}
.loop-animation .img-height + .img-height {
  animation: loop2 120s linear infinite;
}
.loop-animation__overlay {
  width: 17.2rem;
  height: 26.5rem;
  position: absolute;
  left: calc(50% - 43rem);
  top: 13rem;
}
.loop-animation__overlay2 {
      width: 17.2rem;
    height: 26.5rem;
    position: absolute;
    left: calc(50% - 55rem);
    top: 13rem;
}

.box-sponsored-2 {
  position: relative;
  padding: 7rem 0 var(--s4);
  z-index: 0;
}
.box-sponsored-2:before {
  content: "";
  width: calc(100% + 20rem);
  height: 100%;
  background: #fff;
  border-radius: var(--s6);
  position: absolute;
  left: -10rem;
  top: 0;
  z-index: -1;
}
.box-sponsored-2__tag {
  padding-top: var(--s4);
  width: 14.5rem;
  height: 10.3rem;
  background: url(img/bg-icon-sv2.png) no-repeat center/contain;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  position: absolute;
  left: 0;
  top: -5.1rem;
}
.box-sponsored-2__title {
  margin-bottom: var(--s4);
  padding-top: 4.4rem;
  font-size: 3.6rem;
  font-weight: 700;
  position: relative;
}
.box-sponsored-2__title span.sm {
  font-size: 3.2rem;
}
.box-sponsored-2__title:before {
  content: "Sponsored By";
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 200;
  color: #f58c4b;
  position: absolute;
  left: 0;
  top: 0;
}

.card-hr {
  margin: var(--s7) auto;
  padding: var(--s7) var(--s9);
  border-radius: var(--s5);
  background: #e9f4e4 url(img/bg-tree.png) no-repeat right bottom/auto 21.1rem;
  position: relative;
  z-index: 0;
}
.card-hr .btn-column{
      margin: var(--s5) 0 0;
}
.card-hr .btn-column .btn-web {
    margin: 0;
}
.card-hr__pic img {
  border-radius: var(--s4);
}
.card-hr__title {
  width: fit-content;
  padding: 0.6rem var(--s4) 0.6rem 0;
  position: relative;
  font-size: 2.6rem;
  font-weight: 700;
}
.card-hr__title span.st {
  margin-right: var(--s2);
  padding-right: var(--s2);
  color: #167b5d;
  position: relative;
}
.card-hr__title span.st:before {
  content: "";
  width: 1px;
  height: calc(100% - 0.8rem);
  border-right: dashed 1px #252525;
  position: absolute;
  right: 0;
  top: 0.5rem;
}
.card-hr__title:before {
  content: "";
  width: calc(100% + var(--s8));
  height: 100%;
  background: #fff;
  border-radius: 0 var(--s5) var(--s5) 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.card-hr__name {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #167b5d;
}

.box-study__title {
  padding: 2rem 0 0 13.5rem;
  border-top: solid 1px #193f9f;
  font-size: 2.4rem;
  font-weight: 700;
  color: #193f9f;
  position: relative;
}
.box-study__title:before {
  content: "";
  width: 4rem;
  height: 1px;
  background: #d3631e;
  position: absolute;
  left: 0;
  top: -1px;
}
.box-study__title:after {
  content: "01";
  font-family: "Poppins", sans-serif;
  font-size: 9.6rem;
  font-weight: 200;
  line-height: 1;
  color: #193f9f47;
  position: absolute;
  left: 0;
  top: 1rem;
}
.box-study__title--02:after {
  content: "02";
}
.box-study__title--03:after {
  content: "03";
}
.box-study__pic {
  border-radius: var(--s4);
}
.box-study + .box-study {
  margin-top: var(--s12);
}

.box-job {
  margin-bottom: var(--s5);
  padding: var(--s3) 5rem;
  border-radius: var(--s6);
  background: rgba(255, 255, 255, 0.7);
  position: relative;
}
.box-job:before {
  content: "";
  width: 18rem;
  height: 2.5rem;
  background: url(img/deco-job-top.png) no-repeat center bottom/contain;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.box-job__title {
  margin-bottom: var(--s4);
  padding-top: var(--s8);
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.box-job__title:before {
  content: "Job";
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 200;
  text-align: center;
  line-height: 1;
  color: #f58c4b;
  position: absolute;
  left: 0;
  top: 0;
}
.box-job__title span.sm {
  font-size: 4rem;
}

.card-job {
  padding: 0 var(--s4) var(--s3);
  grid-row: span 4;
  grid-gap: var(--s2);
  position: relative;
  z-index: 0;
}
.card-job:before {
  content: "";
  width: 100%;
  height: calc(100% - var(--s3));
  background: #fff;
  border-radius: var(--s5);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.card-job__title {
  margin-bottom: var(--s1);
  padding: var(--s1) var(--s2);
  border-radius: var(--s5);
  background: #203772;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  position: relative;
}
.card-job__title:before {
  content: "01";
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 200;
  line-height: 1;
  position: absolute;
  left: 2rem;
  top: 46%;
  transform: translateY(-45%);
}
.card-job__title--02 {
  background: #6ab348;
}
.card-job__title--02:before {
  content: "02";
}
.card-job__title--03 {
  background: #21ae84;
}
.card-job__title--03:before {
  content: "03";
}
.card-job__pic {
  width: 18rem;
  margin: 0 auto;
}
.card-job__pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.card-job__catch {
  font-size: 1.8rem;
  font-weight: 700;
  color: #203772;
	text-align: center;
}

.box-try {
  width: 50%;
  margin-bottom: var(--s7);
  position: relative;
}
.box-try__title {
  margin-bottom: var(--s4);
  font-size: 4.8rem;
  font-weight: 700;
  position: relative;
}
.box-try__title span.circle {
display: inline-block;
    width: 11.8rem;
    height: 11.8rem;
    margin-right: var(--s3);
    padding-top: 36px;
    background: #f58c4b;
    border: solid 0.2rem #fff;
    border-radius: 50%;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 2.8rem;
    font-weight: 200;
    color: #fff;
}
.box-try__title span.st {
  font-size: 4.8rem;
}
.box-try__pic {
  width: 46rem;
  position: absolute;
  left: calc(100% + 12rem);
  top: -8px;
}
.box-try__pic img {
  border-radius: var(--s4);
}


.information {
display: flex;
justify-content: center;
 align-items:flex-start;
gap: 5rem;
	margin-top: 10rem;
	margin-bottom: 8rem;
}
.box-schedule .schedule-dl {
    height: 136px;
}

.box-schedule {
padding: var(--s4) var(--s6) var(--s7);
border-radius: var(--s3);
border: solid 0.2rem #79acd9;
background: #fff;
	width:50%;
}

.box-schedule .title{
     font-size: 3rem;
    text-align: center;
    font-weight: 700;
    color: #203772;
    margin-bottom: 3rem;
}
.box-schedule__content {
  max-width: 100%;
}
.box-schedule .schedule-dl__term {
    display: block;
}
.box-schedule .schedule-dl__desc {
    padding-bottom: var(--s6);
}
.box-schedule .schedule-dl + .schedule-dl {
   margin-top: 0;
}
.box-schedule .schedule-dl__term:before {
    top: 0.3em;
}
.box-schedule .schedule-dl:before {
    top: 0.4em;
	height: calc(100% + var(--s1));
}
.box-schedule__pic {
  width: 32rem;
}
.box-schedule__pic img {
  border-radius: var(--s4);
}
.schedule-dl {
  position: relative;
}
.schedule-dl:before {
  content: "";
  width: 1px;
  height: calc(100% + var(--s5));
  border-right: dotted 0.2rem #9c5e4c;
  position: absolute;
  left: 0.8rem;
  top: 0.3em;
}
.schedule-dl:last-child:before {
  content: none;
}
.schedule-dl__term {
  margin-bottom: var(--s1);
  padding-left: 3.8rem;
  font-size: 1.8rem;
  font-weight: 900;
  position: relative;
  display: flex;
  gap: var(--s1) var(--s1);
}
.schedule-dl__term:before {
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  background: #9c5e4c;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.schedule-dl__term span {
  color:#4b3e3b;
}
.schedule-dl__term span:first-child {
  color: #9c5e4c;
}
.schedule-dl__desc {
  padding-left: 3.8rem;
  font-size: 1.4rem;
}
.schedule-dl + .schedule-dl {
  margin-top: var(--s3);
}

.sec-maker {
  padding: 10rem 0;
  background: #f7f7f7;
}

.btn-maker {
  min-height: 10.2rem;
  padding: var(--s2) var(--s10) var(--s2) 11rem;
  border-radius: var(--s9);
  background: #fff;
  border: solid 0.3rem #e5e5e5;
  font-size: 2.2rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  transition: all 0.3s ease;
  overflow: clip;
}
.btn-maker:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 50rem;
  border-radius: 50%;
  background-color: #167b5d;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-out;
  z-index: -1;
}
.btn-maker:after {
  content: "";
  width: 5rem;
  height: 5rem;
  background: url(img/arrow-01-line-right.svg) no-repeat center/contain;
  position: absolute;
  right: var(--s2);
  top: 50%;
  transform: translateY(-50%);
}
.btn-maker img {
  width: 7rem;
  display: block;
  position: absolute;
  left: var(--s2);
  top: 50%;
  transform: translateY(-50%);
}

@media (hover: hover) {
  .btn-maker:hover {
    color: #fff;
  }
  .btn-maker:hover:before {
    transform: translate(-50%, -50%) scale(1);
  }
}
.sec-about {
  padding: 12rem 0;
}

.btn-about {
  min-height: 10.2rem;
  padding: var(--s5) var(--s10) var(--s2) var(--s7);
  border-radius: var(--s9);
  background: #ebebeb;
  border: 0;
  font-size: 2.2rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  transition: background-color 0.3s ease;
  overflow: clip;
  z-index: 0;
}
.btn-about span:before {
  content: "Column";
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  color: #f58c4b;
  position: absolute;
  left: var(--s7);
  top: var(--s2);
}
.btn-about:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 50rem;
  border-radius: 50%;
  background-color: #167b5d;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-out;
  z-index: -1;
}
.btn-about:after {
  content: "";
  width: 5rem;
  height: 5rem;
  background: url(img/arrow-01-line-right.svg) no-repeat center/contain;
  position: absolute;
  right: var(--s2);
  top: 50%;
  transform: translateY(-50%);
}
.btn-about-wrapper {
  margin: var(--s6) auto;
}

@media (hover: hover) {
  .btn-about:hover {
    color: #fff;
  }
  .btn-about:hover:before {
    transform: translate(-50%, -50%) scale(1);
  }
}
.card-recommend {
  min-height: 26.4rem;
  border-radius: var(--s5);
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.card-recommend span {
display: block;
    width: fit-content;
    padding: var(--s3) var(--s10) var(--s3) 1rem;
    border-radius: 0 var(--s5) 0 0;
    background: #FFF url(img/arrow-01-line-right.svg) no-repeat right 2.5rem top 2.3rem / 4rem auto;
    font-size: 2.2rem;
    font-weight: 700;
    color: #167b5d;
  transition: background-color 0.3s ease;
}
.card-recommend--01 {
  background: url(img/bg-job-01.jpg) no-repeat center/cover;
}
.card-recommend--02 {
  background: url(img/bg-job-02.jpg) no-repeat center/cover;
}

.card-recommend--03 {
  background: url(img/bg-job-03.jpg) no-repeat center/cover;
}

.card-recommend--04 {
  background: url(img/bg-job-04.jpg) no-repeat center/cover;
}

.card-recommend-wrapper {
  margin: var(--s9) auto;
}

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

      sp base settings

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

  body {
    font-size: 1.5rem;
  }

  .sp_br {
    display: inline;
  }

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

      sp layout center

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

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

      sp layout stack

  */
  .l-stack-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,
.l-column-01,
.l-column-02,
.l-column-03,
.l-column-04,
.l-column-05 {
    gap: var(--s2);
  }
  .l-column__side,
.l-column-01__side,
.l-column-02__side,
.l-column-03__side,
.l-column-04__side,
.l-column-05__side {
    width: 100%;
  }
  .l-column__main,
.l-column-01__main,
.l-column-02__main,
.l-column-03__main,
.l-column-04__main,
.l-column-05__main {
    width: 100%;
  }

  .sec-maker .l-column-04__side{
  margin-top: 3rem;
  }
  .l-column__side, .l-column__side02, .l-column__side03, .l-column__side04 {
    width: 100%;
  }

  .l-column-02,
.l-column-03 {
    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(--s3);
  }
  .l-grid-areas.box-study {
    grid-template-columns: 100%;
    grid-gap: var(--s1) 5rem;
  }
  .l-grid-areas__cell-02 {margin-bottom: 2rem;}
  .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(--s5);
    padding-bottom: 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
  }
  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
  }
  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
  }
  .l-scroll-x-sp table {
    width: 70rem;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      header area

  */
  .header-area__inner {
    height: auto;
    padding: var(--s1) var(--s1) 0;
	position: relative;
  }
  .header-area__inner .pr-text {
    display: none;
  }
  .header-area__name {
    display: block;
  }
  .header-area__tag {
    position: absolute;
    right: 6rem;
    top: 1.2rem;
    font-size: 1rem;
  }
  .header-area__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .header-area__logo {
    height: 3.6rem;
  }

  .banner-btn {
    height: auto;
        border-radius: var(--s1) var(--s1) 0 0;
        left: 0;
	  border-bottom: none;
	  border-top: solid 0.2rem #b5e0ff;
        right: auto;
        width: 50%;
        padding: 0.8rem var(--s1);
        top: auto;
        bottom: 0;
        font-size: 1.2rem;
  }
	.banner-btn.inter{
               left: auto;
        background: #167b5d;
        border: solid 0.2rem #71b3a0;
        right: 0;
		 border-bottom: none;
    }
  .banner-btn span.st {
    font-size: 1.4rem;
  }
body.lower .header-area__inner:after {
        content: "";
        width: 13rem;
        height: 7rem;
        background: url(img/deco-h1.png) no-repeat center / contain;
        position: absolute;
        right: 11px;
        bottom: -41px;
        z-index: 1;
    }
	.banner-btn:after {
    content: "";
    width: 2rem;
    height: 2rem;
    background: url(img/icon-window_mn.svg) no-repeat center / contain;
    position: absolute;
    right: 7px;
    top: 68%;
    transform: translateY(-50%);
}
		.banner-btn.inter:after {
    content: "";
    width: 2rem;
    height: 2rem;
    background: url("img/arrow-01-lightgreen-right.svg") no-repeat center/contain;
    position: absolute;
    right: 7px;
    top: 68%;
    transform: translateY(-50%);
}
	.banner-btn span.deco:before {
  content: "";
}	
	.banner-btn span.deco {
    padding:0;
		background: none;
}
	

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

      main visual

  */
  .mv-movie__title {
    font-size: 4rem;
  }

  .mv-movie__pic {
    width: 13.5rem;
    height: 7.7rem;
    transform: translate(calc(-50% - 120px), -50%);
  }

  .mainvisual {
    padding-top: 0;
    background: none;
  }
  .mainvisual-inner {
    margin-bottom: var(--s4);
    padding: var(--s5) var(--s2) 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .mainvisual-title-area {
    width: 100%;
  }
  .mainvisual-title {
    margin-bottom: var(--s2);
    font-size: 4.6rem;
  }
  .mainvisual-text {
    margin-top: var(--s1);
    font-size: 2.4rem;
  }
  .mainvisual-body {
    width: 100%;
    padding: 0;
  }
  .mainvisual-pic {
    height: 15rem;
  }
 

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

      main-area

  */
  .main-area--low {
    padding-top: var(--s3);
  }

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

      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: #252525;
    position: absolute;
    top: 2.5rem;
    left: 1rem;
  }
  .toc_parts .toc_ttl::after {
    content: "";
    width: 0.15rem;
    height: 1.1rem;
    background: #252525;
    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;
	  margin: var(--s5) auto var(--s5);
  }
  .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.5rem;
  }
  .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;
  }
.more__btn {
    width: 20rem;
    padding: 1rem 4.5rem 1.2rem;
}
  /*
  ---------------------------------------------

      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: 94%;
    min-height: 6.8rem;
    padding: 1.2rem 5rem;
    font-size: 1.5rem;
  }
  .btn-internal a::after,
.btn-web a::after {
    width: 2.8rem;
    height: 2.8rem;
    right: 1rem;
  }

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

  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 94%;
    min-height: 6.8rem;
    margin: 0 auto;
    padding: var(--s1) var(--s6);
    background: #f58c4b url("img/icon-tel.png") no-repeat center left var(--s3)/2.2rem auto;
    border-radius: 10rem;
    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: 94%;
  }

  .btn-share__link {
    padding-right: var(--s2);
    padding-left: var(--s2);
    font-size: 1.1rem;
  }
  .btn-share__link img {
    width: 3rem;
  }
.sec-sponsored .btn-column {
    margin: var(--s3) auto 0;
    width: 100%;
}
	.sec-sponsored .btn-column .btn-web {
    margin: 0 auto 0;
    width: 100%;
}
  /*
  ---------------------------------------------

      sp table

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

  .table-label thead {
    display: none;
  }
  .table-label tbody th {
    background: #f7f7f5;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #f7f7f5;
    border-right: solid 1px #c7c7c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    text-align: center;
  }
  .table-label__cell {
    padding: var(--s1) var(--s2);
  }

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

      sp caption

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

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

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

  	sp catch

  */
  .catch-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-left: 0;
    float: none;
  }
  .float-wrap .float-img.fl {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .float-wrap .float-img.ct {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
	.float-wrap .float-img.ct.sz .flame{
    margin-bottom:2rem;
}

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

  	sp pankuzu

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

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

      sp footer

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

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

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

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

  .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: 5.2rem;
    height: 5.2rem;
  }
  .gnavi-btn:before {
    font-size: 1rem;
    bottom: 0.6rem;
  }
  .gnavi-btn span {
    left: 1.1rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.3rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.1rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 2.9rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    transform: translateY(0.8rem) rotate(-45deg);
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    transform: translateY(-0.8rem) rotate(45deg);
  }

  .gnavi-area {
    width: 100%;
    padding: var(--s4) 0;
  }
  .gnavi-area__logo {
    display: block;
    width: 16rem;
    margin: 2rem auto var(--s3);
  }

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

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

      sp page

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

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

       sp toggle sp

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

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

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

      help

  */
  .help-content01 {
    width: 100%;
  }
  .help-content01 p {
    font-size: 1.4rem;
  }

  .help-content02 {
    left: 50%;
    top: calc(100% + var(--s2));
  }

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

      tab

  */
  .tab-btn {
    padding: var(--s2) 3rem var(--s2) 1rem;
    font-size: 1.6rem;
    background-size: 3.4rem auto;
    background-position: left 10rem bottom;
  }
  .tab-btn.is-active {
    padding: 2rem 4rem 2rem 1rem;
    background-size: 4.5rem auto;
  }
  .tab-btn.is-active:after {
    border-width: 1.2rem 1.2rem 0 1.2rem;
  }
  .tab-btn-wrapper {
    padding: 0 2rem;
    gap: var(--s1);
  }

  .tab-btn-wrapper--bottom .tab-btn.is-active:after {
    border-width: 0 1.2rem 1.2rem 1.2rem;
  }

  .tab-content {
    padding: var(--s5) var(--s2) var(--s3);
    border-radius: var(--s2);
  }
  .tab-content:before {
    width: 90%;
    border-top-right-radius: var(--s3);
    top: var(--s3);
    content: none;
  }

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

      SP titles

  */
  .pr-text {
    font-size: 1.1rem;
    line-height: 1.3;
	color: #a1a1a1; 
  }

  .block-h1:after {
    width: 9rem;
    height: 4rem;
    right: -2rem;
	  background:none;
  }

  .main-area--low h2:not([class]),
.main-area--low h3:not([class]),
.main-area--low h4:not([class]),
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low h1:not([class]) {
    margin: 0 auto var(--s2);
    padding: var(--s2) var(--s5) var(--s2) 0;
    background-size: auto 2.2rem;
    font-size: 2.5rem;
  }

  .main-area--low h2:not([class]) {
    border-width: 0.8rem;
    font-size: 2.2rem;
    padding: 1.2rem 1rem;
    background-size: 6rem auto;
	  margin: var(--s6) auto var(--s2);
  }
  .main-area--low h2:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]) {
    padding: var(--s1) 0 0;
    font-size: 2.2rem;
	  margin: var(--s5) auto var(--s3);
  }
  .main-area--low h3:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h4:not([class]) {
    font-size: 1.7rem;
  }
  .main-area--low h4:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h5:not([class]) {
    font-size: 1.5rem;
  }
  .main-area--low h5:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h6:not([class]) {
    font-size: 1.5rem;
  }
  .main-area--low .icon-title {
    padding-left: var(--s7);
    font-size: 1.9rem;
  }
  .main-area--low .icon-title:before {
    width: 5.6rem;
    height: 5.6rem;
  }

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

      lower Parts

  */
  .lower-summary {
    margin: var(--s8) 0 var(--s7);
    padding: var(--s3) 0 var(--s3) var(--s3);
  }
  .lower-summary:after {
  font-size: 4rem;
        left: 25px;
        top: -4.4rem;
  }
  .lower-summary__title {
    margin-bottom: var(--s2);
    font-size: 2rem;
  }
  .lower-summary .btn-web {
    margin-top: var(--s2);
  }

  .lower-schedule {
    margin: 7rem auto var(--s7);
    padding: var(--s3) 0;
  }
  .lower-schedule:before {
    padding: 0 var(--s1);
    font-size: 2.6rem;
    left: var(--s3);
    top: -2rem;
  }
  .lower-schedule:after {
    width: 4rem;
    height: 5.6rem;
    left: -1rem;
    top: -3.5rem;
  }
  .lower-schedule__title {
   margin: var(--s2) 0 var(--s2);
    font-size: 2.2rem;
  }
	.schedule-dl__term:before {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    left: 3px;
    top: 0.2em;
}
	.schedule-dl:before {
    content: "";
    width: 1px;
    height: calc(100% + var(--s3));
}
	.schedule-dl + .schedule-dl {
    margin-top: var(--s3);
}

  .box-qa {
    margin: var(--s3) 0 var(--s4) ;
  }
  .box-qa__title {
    padding-left: var(--s5);
    font-size: 1.8rem;
	margin-top: var(--s3);
	  margin-bottom: var(--s2);
  }
  .box-qa__title:before {
    width: var(--s4);
  }
  .box-qa__body {
    padding-left: 0;
  }
  .box-qa__answer {
    padding-left: var(--s5);
    font-size: 1.6rem;
  }
  .box-qa__answer:before {
    left: var(--s1);
    top: -0.4rem;
    font-size: 3rem;
  }
.float-wrap .box-qa__body {
    padding-left: 0;
}
	.float-wrap .box-qa__answer {
    padding-left: 3rem;
		  margin-top: 2rem;
}
	.float-wrap .box-qa__title {
    margin-top: 2rem;
    margin-bottom: var(--s3);
}
	
  .lower-job {
    margin: var(--s6) 0;
  }
  .lower-job__title {
    padding: var(--s2);
    font-size: 1.8rem;
    gap: var(--s2);
  }
	.lower-job__title h2 {
    font-size: 1.8rem;
}
  .lower-job__tag {
    font-size: 1.2rem;
    width: 5.5rem;
    height: 5.5rem;
  }
  .lower-job__body {
    padding: var(--s2) var(--s3) var(--s3);
  }

  .splide {
    margin: var(--s8) 0;
  }

  .lower-slider__arrows {
    width: 84%;
    height: 3.2rem;
    top: 24%;
  }
  .lower-slider__arrows .splide__arrow {
    width: 3.2rem;
    height: 3.2rem;
  }

  .box-comment {
    margin: var(--s7) 0 var(--s4);
    padding: var(--s3);
    border-radius: var(--s4);
    flex-direction: column;
  }
  .box-comment__pic {
    width: 100%;
    margin-top: -6rem;
    display: flex;
    align-items: flex-end;
  }
  .box-comment--reverse .box-comment__pic {
    flex-direction: row-reverse;
  }
	.box-comment__pic img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
}

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

      SP end

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

      TOP section

  */
  .common-title {
    margin-bottom: var(--s3);
    padding-top: var(--s4);
    font-size: 2.6rem;
  }
  .common-title span.sm {
    display: inline-block;
    font-size: 1.9rem;
  }
  .common-title span.st2 {
    font-size: 3rem;
  }
  .common-title--01:before {
    left: -1rem;
    font-size: 6rem;
  }
  .common-title--02 {
    padding-top: 0;
  }
  .common-title--03:before {
    left: -1rem;
    font-size: 6rem;
  }
  .common-title--04:before {
    left: -1rem;
    font-size: 6rem;
  }
  .common-title--05:before {
    left: -1rem;
    top: -0.5rem;
    font-size: 6rem;
  }
  .common-title--06:before {
    left: -1rem;
    font-size: 5rem;
  }
  .common-title--07 {
    margin-top: var(--s10);
    padding-top: 0;
  }
  .common-title a {
    padding-right: var(--s4);
    background-size: 2.2rem auto;
  }

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

  .sec-future {
    padding: var(--s7) 0 0;
  }
.sec-future .common-title {
    padding-top: 3rem;
}
  .sec01-arrow {
    display: none;
  }

  .future-area {
    margin-top: var(--s5);
    margin-bottom: var(--s7);
    height: 25rem;
    position: relative;
  }
  .future-area:before {
    content: "";
    width: 3rem;
    height: 6rem;
    background: url(img/arrow-down-navy.png) no-repeat center/contain;
    position: absolute;
    left: 50%;
    bottom: -6rem;
    transform: translateX(-50%);
  }
  .future-area__btn {
    padding-left: 2rem;
    font-size: 1.8rem;
  }
  .future-area__btn--01::before {
    width: 8rem;
    height: 8rem;
    top: -1rem;
    left: 48px;
  }
  .future-area__btn--02 {
    padding-left: 2rem;
    width: 25rem;
    height: 18rem;
  }
  .future-area__btn--02::before {
    width: 8rem;
    height: 8rem;
    top: -4rem;
    left: 2rem;
  }
  .future-area__btn--03 {
    padding-left: 0;
    width: 14rem;
    height: 15rem;
  }
  .future-area__btn--03::before {
    width: 14rem;
    height: 7.5rem;
    top: -5.5rem;
    left: -3.1rem;
  }

  .sec01-subtitle {
    border: none;
    font-size: 2.6rem;
    text-align: center;
    margin-top: 1rem;
  }
  .sec01-subtitle span.sm {
    font-size: 2.2rem;
  }

  .sec01-under {
    margin: 0;
  }

  .future-subtitle {
    font-size: 1.8rem;
	  margin-bottom: var(--s1);
  }

  .box-summary {
    margin: var(--s3) 0;
    padding: var(--s2) var(--s2) var(--s3);
    border-radius: var(--s3);
  }
 .sec-voice .box-summary {
        margin: var(--s6) 0;
        padding: var(--s3) var(--s2) var(--s4);
    }
  .sec-story .box-summary {
    margin: var(--s6) 0;
    padding: var(--s3) var(--s2) var(--s4);
  }
  .sec-story .box-summary__title{
    margin-bottom: 1rem;
  }
  .box-summary__title {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
  }
  .box-summary__catch {
    font-size: 1.8rem;
  }
  .box-summary__catch2 {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .sec-sponsored {
    margin-top: var(--s12);
    padding-bottom: var(--s5);
    width: calc(100% - var(--s4));
    border-radius: var(--s2);
  }
  .sec-sponsored__tag {
    width: 11rem;
    height: 7.3rem;
    padding-top: 2.2rem;
    font-size: 1.2rem;
    transform: translateY(-3.4rem);
  }
  .sec-sponsored__title {
          margin-bottom: var(--s4);
        padding-top: var(--s5);
    font-size: 2rem;
  }
  .sec-sponsored__title span.st {
    font-size: 2.6rem;
  }
  .sec-sponsored__title::before {
    top:1rem;
    font-size: 1.6rem;
  }
  .sec-sponsored .btn-web {
    margin-top: var(--s2);
  }
  .sec-sponsored .btn-web a {
    margin: 0 auto;
  }

  .sec-story {
    margin-top: var(--s9);
  }

  .box-story {
    max-width: 100%;
    margin-top: var(--s6);
    flex-wrap: wrap;
    gap: var(--s2);
    margin-bottom: 2rem;
  }
  .sec-story .common-lead {
    text-align: left;
}
  .box-story::before {
    font-size: 6rem;
    top: -5.2rem;
    left: 0;
  }
  .box-story__pic {
    width: 100%;
    order: 1;
  }
  .box-story__content {
    width: 100%;
    margin-top: 0;
    order: 2;
    flex: none;
  }
  .box-story__title {
 width: 70%;
        margin: 0 auto var(--s2);
    text-align: center;
  }
	.box-story__pic .inner-text-2 {
    left: 11%;
    bottom: 0;
		    width: 12rem;
	font-size: 1.4rem;
	        padding: 29px 0 0;
}
	.box-story__pic .inner-text-4 {
    right: 11%;
    bottom: 0;
		    width: 12rem;
	font-size: 1.4rem;
padding: 29px 0 0;
}
	.box-story__title--blue.rt:before {
    width: 5rem;
        height: 5rem;
        left: -1rem;
        top: -0.8rem;
}
	.box-story__title.lt:before {
        width: 5rem;
        height: 5rem;
		left: auto;
        right: 0;
        top: -0.8rem;
}
  .box-story__title:before {
    width: 5rem;
    height: 5rem;
    left: -1rem;
    top: -0.8rem;
  }
  .box-story__title--blue:before {
    left: auto;
    right: 0;
  }

  .sec-work {
    padding-bottom: var(--s8);
    background: linear-gradient(#fff 0%, #d4eeee 10%, #e1eefa 100%);
  }
  .sec-work__inner {
    padding: var(--s3) 0 var(--s2);
  }
  .sec-work__inner:before {
    width: 100vw;
    left: calc(var(--s2) * -1);
  }

  .card-comment {
    margin: var(--s4) 0 var(--s10);
    padding: var(--s2) var(--s3) var(--s2);
  }
  .card-comment__pic {
    margin: 0 var(--s2) var(--s1) 0;
    width: 6rem;
    position: static;
    float: left;
  }

  .box-prof {
    margin-left: 0;
    width: 100%;
    margin-bottom: 3rem;
  }
  .box-prof__catch {
    font-size: 2rem;
    text-align: center;
  }
  .box-prof__catch2 {
    font-size: 1.6rem;
  }
  .box-prof__position {
    font-size: 1.6rem;
    text-align: center;
  }
  .box-prof__pic {
    width: 20rem;
    margin: 0 auto;
  }

  .inner-detail {
    padding: var(--s3) var(--s2);
    border-radius: var(--s2);
  }

  .detail-ttl-deco {
    font-size: 1.4rem;
  }
  .detail-ttl-deco:after {
    width: 51%;
  }

  .detail-title {
   margin: 1.2rem 0 var(--s2);
    font-size: 2rem;
  }

  .detail-pic-full {
    margin: var(--s2) 0 var(--s4);
  }
  .detail-pic-full img {
    border-radius: var(--s2);
  }

  .box-flow {
    margin-bottom: var(--s7);
    flex-direction: column;
  }
  .box-flow__item {
    width: 100%;
    padding: var(--s4) var(--s7) var(--s-2);
    background-position: right var(--s2) top 65%;
    background-size: 2.2rem auto;
    text-align: center;
    font-size: 1.7rem;
  }
	.sec-work__innertitle {
    font-size: 1.8rem;
}
	.title-flow {
        text-align: center;
}
	 .box-flow.green .box-flow__item {
    width: 100%;
  }
  .box-flow__item:nth-child(odd):before {
    width: 100%;
    height: 1.8rem;
    background: url(img/arrow-flow-gray-down.png) no-repeat center top/100% 100%;
    left: 0;
    top: 100%;
  }
  .box-flow__item:nth-child(even):before {
    width: 100%;
    height: 1.8rem;
    background: url(img/arrow-flow-white-down.png) no-repeat center top/100% 100%;
    left: 0;
    top: 100%;
  }
  .box-flow__item:first-child {
    padding-top: 2rem;
  }
  .box-flow__item:last-child {
    padding: var(--s4) var(--s7) var(--s2);
  }

  .detail-title02 {
    margin-bottom: var(--s2);
    font-size: 2rem;
    text-align: center;
  }
  .detail-title02:before {
    left: 50%;
    transform: translateX(-50%);
  }

  .detail-catch {
    padding: var(--s1) 2rem;
    background-size: 3.6rem auto;
    font-size: 1.7rem;
  }

  .detail-pic {
    width: 80%;
    margin: var(--s2) auto 0;
  }

  .title-qa {
    margin: var(--s8) 0 var(--s3);
    padding-top: var(--s5);
    font-size: 2.8rem;
  }
  .title-qa:before {
    font-size: 2.6rem;
  }
  .title-qa span.sm {
    font-size: 2rem;
  }

  .card-qa {
    border-radius: var(--s3);
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  }
  .card-qa__question {
    font-size: 1.8rem;
  }
  .card-qa__answer {
    margin-top: var(--s1);
    padding-top: var(--s3);
    padding-bottom: var(--s2);
    font-size: 1.6rem;
  }

  .sec-voice {
    padding: var(--s8) 0 var(--s4);
  }
  .sec-voice .l-center:before {
    width: 9rem;
    height: 10rem;
    right: 17px;
    top: -2rem;
  }
  .sec-voice__subtitle {
    font-size: 1.6rem;
    margin: var(--s3) 0 var(--s2);
  }
  .sec-voice__subtitle2 {
    margin-top: var(--s3);
    font-size: 2.6rem;
  }

  .card-ranking {
    margin-bottom: var(--s2);
    gap: var(--s1);
    padding: var(--s3) 0 0.5rem;
  }
  .card-ranking__rank {
    width: 10rem;
  }
  .card-ranking__rank .icon-rank {
    width: 8rem;
    height: 8rem;
    font-size: 1.6rem;
  }
  .card-ranking__rank .icon-rank span.st {
    font-size: 3rem;
  }
  .card-ranking__rank .icon-rank:before {
    width: 5rem;
    height: 4rem;
  }
  .card-ranking__rank--02 .icon-rank {
    width: 6.5rem;
    height: 6.5rem;
  }
  .card-ranking__rank--03 .icon-rank {
    width: 5.5rem;
    height: 5.5rem;
  }
  .card-ranking__text {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
  }
  .card-ranking__per {
    font-size: 3rem;
  }

  .voice-list__item {
    font-size: 1.6rem;
  }
.card-ranking__per span.sm {
    font-size: 2rem;
}
  .card-voice {
    padding: var(--s3);
  }
  .card-voice__pic {
    width: 7rem;
    height: 7rem;
    right: var(--s2);
    bottom: 1rem;
  }

  .sec-pickup {
    padding-top: 13rem;
    padding-bottom: var(--s2);
  }
  .sec-pickup:before {
    top: 13rem;
    height: 35%;
  }
  .sec-pickup__subtitle {
    margin: var(--s7) 0 var(--s3);
    font-size: 2rem;
  }
  .sec-pickup__subtitle:after {
    font-size: 2.8rem;
    top: -2.5rem;
  }
  .sec-pickup__subtitle02 {
    margin: 0 auto 41.5rem;
    width: 90%;
    padding: var(--s2);
    border-radius: var(--s2);
    font-size: 1.8rem;
    text-align: center;
  }
  .sec-pickup__under .com_img {
    top: 14rem;
	 padding:0;
	  width:100%;
    border-radius:0;
}
  .sec-pickup__subtitle02:before {
    left: 50%;
    border-width: 1.6rem 1rem 0 1rem;
    transform: translateX(-50%);
  }
  .sec-pickup__bg-grade {
    padding-top: var(--s3);
    background: linear-gradient(to bottom, #fff 0%, #c7eee2 5%, #e1eefa 62%, #fff 92%, #fff 100%);
  }
  .sec-pickup__under {
    margin-top: var(--s9);
	    background: none;
  }

  .loop-animation {
    height: 20rem;
  }
  .loop-animation__overlay {
    width: 4rem;
    height: 12rem;
    left: var(--s3);
    top: 9rem;
  }
  .loop-animation__overlay2 {
    width: 4rem;
    height: 12rem;
    left: auto;
    right: var(--s3);
    bottom: 2rem;
  }

  .box-sponsored-2 {
    padding: var(--s5) var(--s2) var(--s3) var(--s2);
  }
  .box-sponsored-2:before {
    width: 100%;
    border-radius: var(--s2);
    left: 0;
  }
  .box-sponsored-2__tag {
    width: 11rem;
    height: 7.3rem;
    padding-top: 2.2rem;
    font-size: 1.2rem;
    top: -3.5rem;
    left: var(--s2);
  }
  .box-sponsored-2__title {
    padding-top: var(--s4);
    font-size: 2.6rem;
	        margin-bottom: var(--s1);
  }
  .box-sponsored-2__title span.sm {
    font-size: 2rem;
    display: inline-block;
  }
  .box-sponsored-2__title:before {
    font-size: 1.6rem;
  }

  .card-hr {
    margin-bottom: var(--s2);
    padding: var(--s3);
    border-radius: var(--s2);
    background-size: 13rem auto;
    margin: var(--s5) auto var(--s7);
  }
	.card-hr .btn-column {
    margin: var(--s4) 0 var(--s2);
}
	
  .card-hr__title {
    width: 100%;
    font-size: 1.9rem;
  }
  .card-hr__title:before {
    width: calc(100% + var(--s3));
  }
  .card-hr__title span.st {
    width: fit-content;
    display: block;
  }
  .card-hr__pic {
    width: 55%;
    margin: 0 auto;
  }

  .box-study__title {
    margin-bottom: var(--s2);
    padding: var(--s2) 0 0 var(--s9);
    font-size: 1.8rem;
  }
  .box-study__title:after {
    font-size: 5rem;
    top: var(--s2);
  }
  .box-study__pic {
    width: 100%;
  }
  .box-study + .box-study {
    margin-top: var(--s5);
  }

  .box-job {
    padding: var(--s3);
  }
  .box-job:before {
    width: 14rem;
  }
  .box-job__title {
    padding-top: var(--s4);
    font-size: 2.6rem;
  }
  .box-job__title span.sm {
    display: inline-block;
    font-size: 2rem;
  }

  .card-job {
    padding: 0 var(--s3) var(--s2);
  }
  .card-job:before {
    border-radius: var(--s2);
  }
  .card-job__title {
    margin-bottom: 0;
    font-size: 1.8rem;
  }
  .card-job__pic {
    width: 10rem;
  }
  .card-job__pic img {
    width: 10rem;
    height: 10rem;
  }

  .box-try {
    width: 100%;
	margin-bottom: 9.5rem;
  }
  .box-try__title {
    margin-bottom: var(--s2);
    font-size: 2.8rem;
  }
  .box-try__title span.circle {
   width: 8rem;
        height: 8rem;
        padding-top: 23px;
        margin-right: var(--s2);
        font-size: 2rem;
  }
  .box-try__title span.circle span.st {
    font-size: 3.2rem;
  }
  .box-try__pic {
        width: 14rem;
        left: auto;
        right: -18px;
        top: auto;
        bottom:-115px;
  }
  .box-try__pic img {
    border-radius: var(--s2) 0 0 var(--s2);
  }
	
	.information {
    display: block;
		margin-bottom:8rem;
	margin-top: 0;
    }

  .box-schedule {
          padding: var(--s4) var(--s2) var(--s4);
    border-radius: var(--s3);
    flex-wrap: wrap;
	  margin-bottom:6rem;
	  width:100%;
  }
	.box-schedule .schedule-dl {
    height: auto;
}
  .box-schedule__pic {
    display: none;
  }
.box-schedule .title {
    font-size: 2.4rem;
	margin-bottom: 2rem;
}
	.box-schedule .schedule-dl__desc {
    padding-bottom: var(--s3);
}
  .schedule-dl__term {
    flex-direction: column;
    font-size: 1.6rem;
  }
.schedule-dl__term span:first-child {
  font-size: 1.4rem;
}
  .sec-maker,
.sec-about {
    padding: var(--s6) 0;
  }
	
	.box-schedule .more__btn {
    margin: var(--s2) auto -5.5rem;
}

  .btn-maker {
    min-height: 7.2rem;
    padding: 1.4rem var(--s6) 1.4rem 6.2rem;
    font-size: 1.6rem;
    background-size: 3rem auto;
    background-position: right 1.2rem center;
  }
  .btn-maker:after {
    width: 3rem;
    height: 3rem;
  }
  .btn-maker img {
    width: 4rem;
    left: 1.2rem;
  }

  .btn-about {
    min-height: 7.2rem;
    padding: 2.6rem var(--s7) 1.2rem var(--s4);
    background-size: 3rem auto;
    background-position: right 1.2rem center;
    font-size: 1.6rem;
  }
  .btn-about:after {
    width: 3rem;
    height: 3rem;
  }
  .btn-about span:before {
    left: var(--s4);
    top: var(--s1);
    font-size: 1.4rem;
  }
  .btn-about-wrapper {
    margin: var(--s3) 0;
  }

  .card-recommend {
    min-height: 20rem;
    border-radius: var(--s3);
  }
  .card-recommend::before {
    font-size: 6rem;
  }
  .card-recommend span {
    padding: 1.2rem var(--s5) 1.2rem var(--s1);
    border-top-right-radius: var(--s3);
    font-size: 1.8rem;
    background-size: 2rem auto;
    background-position: right var(--s2) center;
  }
  .card-recommend-wrapper {
    margin: var(--s4) 0 var(--s3);
  }

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

      SP end

  */
}
