@charset "UTF-8";
/*
Getup.css is released under the Open Source MIT license.
http://www.opensource.org/licenses/mit-license.php

Getup.css is inspired by OOCSS, inuit.css, Twitter Bootstrap, HTML5 Boilerplate, PocketGrid

LICENSE
https://github.com/nibushibu/getup-css/blob/master/LICENSE
*/
/* @import "compass";
@import "./normalize.scss";
@import "animate";
@import "ceaser-easing";
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=keyboard_arrow_up");
* {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 100.01%;
  list-style-type: none;
  text-align: left;
  zoom: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.6;
}

body {
  line-height: 1.6;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: #000000;
  background-color: #13AE67;
}

a {
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  a {
    font-size: clamp(13px, 0.812rem, 14px);
  }
}
a:link, a:visited {
  transition: all 0.2s ease-out;
  color: #ffffff;
}
a:hover {
  transition: all 0.2s ease-out;
  color: #e49c00;
}
a:not([href^="#"]):hover {
  opacity: 1;
}

p {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* common */
header {
  width: 95%;
  left: 2.5%;
  box-sizing: border-box;
  background-color: #ffffff;
  position: fixed; /* スクロール時も要素を固定化 */
  z-index: 100; /* 大きい数値ほど手前に表示される */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 15px 15px;
}
@media screen and (max-width: 640px) {
  header {
    padding: 1em 0;
  }
}
header.pc-hide {
  display: none;
  /* SPでは反映されず、PC版で発動する */
}
@media screen and (max-width: 640px) {
  header.pc-hide {
    display: inherit;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-100%); /* 上に隠す */
    transition: transform 0.5s ease;
    z-index: 100;
  }
  header.pc-hide.show {
    transform: translateY(0); /* 元の位置に戻す（スライドイン） */
  }
}

.header__inner {
  width: 95%;
  height: 100%;
  display: grid;
  grid-template-columns: auto 50px;
  gap: 0;
  align-items: stretch;
  margin-inline: auto;
}
.header__inner > div {
  box-sizing: border-box;
}
.header__inner > .hd__logo {
  display: flex;
  align-items: center;
}
.header__inner > .hd__logo h1 {
  box-sizing: border-box;
  width: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 640px) {
  .header__inner > .hd__logo h1 {
    gap: 10px;
  }
}
.header__inner > .hd__logo h1 .header-logo__img {
  height: 100%;
  width: auto;
  max-height: 45px;
}
@media screen and (max-width: 640px) {
  .header__inner > .hd__logo h1 .header-logo__img {
    max-height: 20px;
  }
}
.header__inner > .hd__logo h1 img {
  width: 100%;
  margin-left: 10px;
}
.header__inner > .hd__logo h1 p {
  display: inline;
  font-size: clamp(20px, 0.91vw + 20px, 26px);
  line-height: 1.2;
  letter-spacing: 3px;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .header__inner > .hd__logo h1 p {
    font-size: 16px;
    letter-spacing: 2px;
  }
}

/* .header__area */
/* ハンバーガーメニュー */
.menu__btn {
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  background: linear-gradient(90deg, #00ff00, #00cc66);
}

.menu__btn-in {
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00ff00, #00cc66);
}

.menu__btn span,
.menu__btn span:before,
.menu__btn span:after {
  content: "";
  display: block;
  height: 9px;
  width: 9px;
  margin: 2px 0;
  border-radius: 50%;
  background-color: #ffffff;
  transition: 0.2s;
  position: absolute;
}

.menu__btn-in span {
  content: "";
  display: block;
  height: 9px;
  width: 9px;
  margin: 2px 0;
  border-radius: 50%;
  background-color: #ffffff;
  transition: 0.2s;
  position: absolute;
}

.menu__btn span:before {
  bottom: 12px;
}

.menu__btn span:after {
  top: 12px;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* クリック後の挙動 */
#drawer_input:checked ~ .menu__btn span {
  background: rgba(255, 255, 255, 0); /* クリックされたら真ん中の線を透明にする */
  z-index: 100;
}

#drawer_input:checked ~ .menu__btn span::before {
  margin: 0;
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .menu__btn span::after {
  margin: 0;
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
#drawer-content {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: #13AE67;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(-100%); /* 元は−10％。これで画面外に出せるっぽい */
  box-sizing: border-box;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  #drawer-content {
    width: 100%;
  }
}
#drawer-content > .drawer__inner {
  display: block;
}

/* クリックされたらメニューを表示 */
#drawer_input:checked ~ #drawer-content {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

dl.hd__white {
  color: #ffffff;
}
dl.hd__white dt {
  font-size: 16px;
  font-weight: 500;
}
dl.hd__white dd.hd__list a {
  text-align: center;
  font-size: 21px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}
dl.hd__white dd.hd__list.btn-area {
  display: flex;
  justify-content: center;
}
dl.hd__white dd.hd__list.btn-area a.btn-w {
  background-color: #ffffff;
}
dl.hd__white dd.hd__list.btn-area a.btn-w::after {
  content: "▶";
}
dl.hd__white dd.hd__list a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  box-sizing: border-box;
}
dl.hd__white dd.hd__list a:link, dl.hd__white dd.hd__list a:visited {
  color: #fff;
}
dl.hd__white dd.hd__list a:hover {
  color: #ffc400;
}
dl.hd__white dd.hd__list a span.txt__small {
  font-size: 13px;
}
dl.hd__white img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: text-top;
}

footer {
  width: 100%;
  background-color: #eeeeee;
  box-sizing: border-box;
  padding-bottom: 2rem;
  color: #999;
}
footer img {
  width: 100%;
}
footer img + p {
  margin-top: 1em;
}
footer p.ft-cr {
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  footer p.ft-cr {
    font-size: 12px;
  }
}
footer p.ft-cr a {
  color: #13AE67;
}
footer p.ft-cr a:hover {
  color: #ffcc00;
}

/* Go to top*/
#page-top {
  position: fixed;
  right: 1.5em;
  bottom: 1.5em;
  display: none;
  z-index: 300;
}
@media screen and (max-width: 640px) {
  #page-top {
    right: 1em;
    bottom: 1em;
  }
}
#page-top a {
  display: block;
  width: 55px;
  height: 55px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  background: #ffe100;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
@media screen and (max-width: 640px) {
  #page-top a {
    width: 40px;
    height: 40px;
    border-radius: 3px;
  }
}
#page-top a:link, #page-top a:visited {
  color: #fff;
  text-align: center;
  transition-duration: 0.3s;
}
#page-top a:link i, #page-top a:visited i {
  color: #999;
}
#page-top a:hover {
  color: #111;
  background-color: #ffec5b;
  transition-duration: 0.3s;
}
#page-top a:hover i {
  color: #111;
}

.container {
  display: grid;
  grid-template-columns: 1fr 440px 460px;
}
@media screen and (max-width: 1149px) {
  .container {
    grid-template-columns: 1fr 440px 110px;
  }
}
@media screen and (max-width: 1100px) {
  .container {
    grid-template-columns: 1fr 440px 0;
  }
}
@media screen and (max-width: 640px) {
  .container {
    grid-template-columns: 1fr;
  }
}
.container div {
  /* menu__container */
}
.container div.container__logo > .container__logo__inner {
  box-sizing: border-box;
  width: calc(100% - 900px);
  height: 100vh;
  display: flex;
  align-items: center;
  position: fixed;
}
@media screen and (max-width: 1149px) {
  .container div.container__logo > .container__logo__inner {
    width: calc(100% - 550px);
  }
}
@media screen and (max-width: 1100px) {
  .container div.container__logo > .container__logo__inner {
    width: calc(100% - 440px);
  }
}
@media screen and (max-width: 640px) {
  .container div.container__logo > .container__logo__inner {
    display: none;
  }
}
.container div.container__logo > .container__logo__inner div.inner__contents {
  width: 100%;
}
.container div.container__logo > .container__logo__inner div.inner__contents h1 {
  width: 100%;
  text-align: center;
}
.container div.container__logo > .container__logo__inner div.inner__contents h1 img {
  width: 80%;
  height: auto;
  max-width: 330px;
}
@media screen and (max-width: 1149px) {
  .container div.container__logo > .container__logo__inner div.inner__contents h1 img {
    width: 50%;
  }
}
.container div.container__logo > .container__logo__inner div.inner__contents h1 + .menu__white {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .container div.container__logo > .container__logo__inner div.inner__contents h1 + .menu__white {
    margin-top: 20px;
  }
}
.container div.container__logo > .container__logo__inner div.inner__contents .menu__white {
  display: none;
}
@media screen and (max-width: 1149px) {
  .container div.container__logo > .container__logo__inner div.inner__contents .menu__white {
    display: inherit;
  }
}
.container div.lp__area {
  background-color: #eee;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 640px) {
  .container div.menu__container {
    display: none;
  }
}
.container div.menu__container > .menu__container__inner {
  text-align: center;
  width: 460px;
  position: fixed;
  top: 8vh;
  box-sizing: border-box;
  height: 88vh;
  display: inherit;
}
@media screen and (max-width: 1149px) {
  .container div.menu__container > .menu__container__inner {
    display: none;
  }
}
.container div.menu__container > .menu__container__inner .logo_springdays {
  margin-inline: auto;
}
.container div.menu__container > .menu__container__inner .logo_springdays + ul {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .container div.menu__container > .menu__container__inner .logo_springdays + ul {
    margin-top: 15px;
  }
}

section {
  max-width: 750px;
  margin: 0 auto;
}
section.wb {
  /* div */
  /* a */
  /* h4 */
  /* h5 */
  /* p */
  /* dl */
  /* dt */
  /* dd */
}
section.wb + section {
  margin-top: 50px;
}
section.wb.kv {
  background-color: rgb(174, 206, 116);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  section.wb.kv {
    height: 100dvh;
    display: flex;
    align-items: center;
  }
  section.wb.kv video {
    height: 95dvh;
    max-height: 670px;
    width: auto;
    margin-inline: auto;
    border-radius: 35px;
  }
}
section.wb.kv + section {
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  section.wb.kv + section {
    margin-top: 30px;
  }
}
section.wb div {
  /* voice__area */
}
section.wb div.lg__area {
  border-radius: 50px;
  background-color: #9BCB60;
  /* -ex */
}
section.wb div.lg__area.plan__area {
  padding-bottom: 40px;
}
section.wb div.lg__area + div {
  margin-top: 1.5rem;
}
section.wb div.lg__area + .from__text {
  margin-top: 40px;
}
section.wb div.lg__area-ex {
  display: flex;
  align-items: flex-start; /* 上端を揃える */
  justify-content: center; /* 中央から配置 */
  gap: 25px;
  position: relative;
  padding: 2rem;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: #9BCB60;
}
section.wb div.lg__area-ex::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: 4%;
  width: 35%;
  height: 100%;
  background: url("../images/hanko.svg") no-repeat center/contain;
}
section.wb div.lg__area-ex img {
  display: block;
}
section.wb div.lg__area-gr {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-big.svg");
  background-repeat: no-repeat;
  background-size: cover; /* 全画面にフィットさせる */
  background-position: center; /* 中央寄せ */
  padding: 64px 0 50px;
}
section.wb div.lg__area-gr + .from__text {
  margin-top: 50px;
}
section.wb div.text__area {
  width: 90%;
  margin-inline: auto;
}
section.wb div.btn-area__ex {
  width: 90%;
  max-width: 365px;
  margin-inline: auto;
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb div.btn-area__ex {
    margin-top: 10px;
  }
}
section.wb div.btn-area__ex + .from__sub {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb div.btn-area__ex + .from__sub {
    margin-top: 10px;
  }
}
section.wb div.btn-area__ex .btn-gr-red {
  width: 100%;
  height: 99px;
  display: grid;
  grid-template-columns: 115px auto;
  align-items: center;
  background: linear-gradient(225deg, #CA0062, #FF8E00);
  border-radius: 5rem;
}
@media screen and (max-width: 640px) {
  section.wb div.btn-area__ex .btn-gr-red {
    grid-template-columns: 90px auto;
  }
}
section.wb div.btn-area__ex .btn-gr-red:hover {
  filter: brightness(120%);
}
section.wb div.btn-area__ex .btn-gr-red .btn-icon img {
  display: block;
  margin: 0 auto;
}
section.wb div.btn-area__ex .btn-gr-red .btn-content {
  margin-left: -40px;
}
section.wb div.btn-area__ex .btn-gr-red .btn-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}
section.wb div.btn-area__ex .btn-gr-red .btn-content p.btn-title {
  font-size: 23px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em; /* 文字間を少し詰める */
}
@media screen and (max-width: 640px) {
  section.wb div.btn-area__ex .btn-gr-red .btn-content p.btn-title {
    font-size: 21px;
  }
}
section.wb div.btn-area__ex .btn-gr-blue {
  width: 100%;
  height: 99px;
  display: grid;
  grid-template-columns: 115px auto;
  align-items: center;
  background: linear-gradient(225deg, #0065CA, #00EB17);
  border-radius: 5rem;
}
@media screen and (max-width: 640px) {
  section.wb div.btn-area__ex .btn-gr-blue {
    grid-template-columns: 90px auto;
  }
}
section.wb div.btn-area__ex .btn-gr-blue:hover {
  filter: brightness(120%);
}
section.wb div.btn-area__ex .btn-gr-blue .btn-icon img {
  width: 44%;
  display: block;
  margin: 0 auto;
}
section.wb div.btn-area__ex .btn-gr-blue .btn-content {
  margin-left: -15%;
}
section.wb div.btn-area__ex .btn-gr-blue .btn-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}
section.wb div.btn-area__ex .btn-gr-blue .btn-content p.btn-title {
  font-size: 23px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em; /* 文字間を少し詰める */
}
@media screen and (max-width: 640px) {
  section.wb div.btn-area__ex .btn-gr-blue .btn-content p.btn-title {
    font-size: 21px;
  }
}
section.wb div.btn-area__ex .btn-gr-blue .btn-content p.btn-sub {
  width: 228px;
  font-size: 18px;
  font-weight: 500;
  color: #13AE67;
  background: #ffffff;
  border-radius: 5rem;
  margin: 8px auto;
  padding-bottom: 2px;
}
section.wb div.change__area {
  width: 387px;
  height: 289px;
  background-color: #9BCB60;
  border-radius: 1.5em;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 40px auto 0;
  opacity: 0;
  /* vaetical__text */
}
@media screen and (max-width: 640px) {
  section.wb div.change__area {
    width: 100%;
  }
}
section.wb div.change__area.popup {
  opacity: 1;
}
section.wb div.change__area .vaetical__text-r {
  font-size: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  writing-mode: vertical-rl; /* 縦書き（右から左へ） */
  position: absolute;
  right: 13px;
  top: 10px;
  align-items: flex-start; /* 上端を揃える */
  letter-spacing: 0.01em; /* 文字間を少し開ける */
}
section.wb div.change__area .vaetical__text-m {
  font-size: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  writing-mode: vertical-rl; /* 縦書き（右から左へ） */
  position: absolute;
  right: 48px;
  top: 23px;
  align-items: flex-start; /* 上端を揃える */
  letter-spacing: 0.1em; /* 文字間を少し開ける */
  z-index: 1;
}
section.wb div.change__area .vaetical__text-l {
  font-size: 28px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  writing-mode: vertical-rl; /* 縦書き（右から左へ） */
  position: absolute;
  left: 17px;
  top: 23px;
  letter-spacing: 0.1em; /* 文字間を少し開ける */
}
section.wb div.change__area .change__img {
  position: absolute;
  top: 28px;
  left: 61px;
  width: 295px;
}
section.wb div.change__area + .from__text {
  margin-top: 30px;
}
section.wb div.plan__area-red {
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  border: 2px solid #FF004D;
  border-radius: 20px;
  background-color: #ffffff;
  margin: 30px auto 35px;
  padding-bottom: 25px;
}
@media screen and (max-width: 640px) {
  section.wb div.plan__area-red {
    width: 95%;
  }
}
section.wb div.plan__area-red p.plan__text {
  margin-left: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}
section.wb div.plan__area-red p.plan__text + .plan__point {
  margin-top: 30px;
}
section.wb div.plan__area-red img.plan__img {
  display: block;
  width: 86%;
  margin: 0 auto;
}
section.wb div.plan__area-red img.plan__img + .plan__text {
  margin-top: 15px;
}
section.wb div.plan__area-red img.plan__img + img {
  margin-top: 15px;
}
section.wb div.plan__area-blue {
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  border: 2px solid #006DA8;
  border-radius: 20px;
  background-color: #ffffff;
  margin: 30px auto 0;
  padding-bottom: 25px;
}
@media screen and (max-width: 640px) {
  section.wb div.plan__area-blue {
    width: 95%;
  }
}
section.wb div.plan__area-blue .plan__additional {
  text-align: center;
  font-size: 13px;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 20px;
}
section.wb div.plan__area-blue .plan__colmun {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  justify-content: end; /* ここでグリッド全体を右寄せ */
  align-items: center; /* 下揃え */
  width: 90%;
  margin-inline: auto;
  gap: 15px 5px;
}
section.wb div.plan__area-blue .plan__colmun p.plan__text {
  font-size: 13px;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  text-align: right;
}
section.wb div.plan__area-blue .plan__colmun p.plan__text strong.small {
  font-size: 10px;
}
section.wb div.plan__area-blue .plan__colmun img.plan__img {
  display: block;
  margin-right: 0;
  margin: 0 auto;
}
section.wb div.plan__area-blue + .plan__expnote {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb div.plan__area-blue + .plan__expnote {
    margin-top: 10px;
  }
}
section.wb div.recruit_jb {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10%;
}
section.wb div.voice__area {
  position: relative; /* 相対配置して、子要素を絶対配置できるようにする */
  width: 100%;
  margin-top: 10px;
}
section.wb div.voice__area .voice-r {
  position: relative;
  width: 100%;
  opacity: 0;
}
section.wb div.voice__area .voice-r.popup {
  opacity: 1;
}
section.wb div.voice__area .voice-r .voice__fukidashi-r {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 410px;
}
section.wb div.voice__area .voice-r p {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  line-height: 1.6;
  font-size: 18px;
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;
}
section.wb div.voice__area .voice-r p strong.pink {
  color: #FF99CB;
}
section.wb div.voice__area .voice-l {
  position: relative;
  width: 100%;
  opacity: 0;
}
section.wb div.voice__area .voice-l.popup {
  opacity: 1;
}
section.wb div.voice__area .voice-l .voice__fukidashi-l {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 410px;
}
section.wb div.voice__area .voice-l p {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  line-height: 1.6;
  font-size: 18px;
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;
}
section.wb div.voice__area .voice__img-r {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
section.wb div.voice__area .voice__img-l {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
section.wb div.voice__area .man4 {
  transform: translate(-11px, 89px) scale(1.05);
}
@media screen and (max-width: 640px) {
  section.wb div.voice__area .man4 {
    transform: translate(-5px, 85px) scale(0.98);
  }
}
section.wb div.voice__area .man2 {
  transform: translate(22px, 84px) scale(1);
}
@media screen and (max-width: 640px) {
  section.wb div.voice__area .man2 {
    transform: translate(5px, 84px) scale(0.95);
  }
}
section.wb div.voice__area .man6 {
  transform: translate(-30px, 101px) scale(1);
}
@media screen and (max-width: 640px) {
  section.wb div.voice__area .man6 {
    transform: translate(-5px, 85px) scale(0.95);
  }
}
section.wb div.voice__area .man7 {
  transform: translate(24px, 71px) scale(1.07);
}
@media screen and (max-width: 640px) {
  section.wb div.voice__area .man7 {
    transform: translate(5px, 50px) scale(1);
  }
}
section.wb div.voice__area .man3 {
  transform: translate(-20px, 69px) scale(1.05);
}
@media screen and (max-width: 640px) {
  section.wb div.voice__area .man3 {
    transform: translate(-5px, 51px) scale(0.95);
  }
}
section.wb div.voice__area .man1 {
  transform: translate(14px, 38px) scale(1.13);
}
@media screen and (max-width: 640px) {
  section.wb div.voice__area .man1 {
    transform: translate(5px, 35px) scale(0.98);
  }
}
section.wb div.voice__area .man5 {
  transform: translate(-13px, 82px) scale(1.14);
}
@media screen and (max-width: 640px) {
  section.wb div.voice__area .man5 {
    transform: translate(-5px, 88px) scale(0.99);
  }
}
section.wb div.contact__form__area {
  padding: 1.5rem 1.5rem 2rem;
}
section.wb div.form__privacypolicy {
  margin-top: 30px;
  background-color: #eee;
  padding: 1em 1em;
  width: 100%;
  height: 200px;
  overflow-y: scroll;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 640px) {
  section.wb div.form__privacypolicy {
    margin-top: 15px;
  }
}
section.wb div.form__privacypolicy .block__inquiry {
  border: 1px solid #ccc;
  padding: 1em;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  section.wb div.form__privacypolicy .block__inquiry {
    margin-top: 20px;
  }
}
section.wb div.form__privacypolicy .block__inquiry a {
  color: #13AE67;
}
section.wb div.form__privacypolicy .block__inquiry a:hover {
  color: #ffcc00;
}
section.wb div.form__privacypolicy .block__inquiry h4 {
  text-align: center;
}
section.wb div.form__privacypolicy .block__inquiry h4 + dl {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb div.form__privacypolicy .block__inquiry h4 + dl {
    margin-top: 10px;
  }
}
section.wb div.form__privacypolicy .block__inquiry dl {
  display: grid;
  grid-template-columns: auto 2fr;
  gap: 5px;
}
section.wb div.form__privacypolicy .block__inquiry dl dt p {
  text-align: left;
  white-space: nowrap;
}
section.wb div.form__privacypolicy .block__inquiry dl dd p::before {
  content: "：";
}
section.wb div.form__privacypolicy h3 {
  margin-top: 40px;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  section.wb div.form__privacypolicy h3 {
    margin-top: 20px;
  }
}
section.wb div.form__privacypolicy h3 + p {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb div.form__privacypolicy h3 + p {
    margin-top: 10px;
  }
}
section.wb div.form__privacypolicy ul {
  margin-top: 20px;
  margin-left: 1.5em;
}
@media screen and (max-width: 640px) {
  section.wb div.form__privacypolicy ul {
    margin-top: 10px;
  }
}
section.wb div.form__privacypolicy ul li {
  list-style-type: disc;
}
section.wb div.form__privacypolicy ul + p {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb div.form__privacypolicy ul + p {
    margin-top: 10px;
  }
}
section.wb div.form__privacypolicy + p {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  section.wb div.form__privacypolicy + p {
    margin-top: 15px;
  }
}
section.wb a.btn-or {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  color: white;
  border-radius: 5rem;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  position: relative;
}
section.wb h2 {
  color: #13AE67;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
section.wb h2.dg__title {
  padding-right: 0.5em;
  font-size: 27px;
  font-weight: 800;
}
@media screen and (max-width: 640px) {
  section.wb h2.dg__title {
    font-size: 25px;
  }
}
section.wb h2.plan__title {
  text-align: center;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  padding-top: 20px;
}
section.wb h2.service__title {
  color: #13AE67;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  font-weight: 700;
}
section.wb h2.qa__title {
  text-align: center;
  color: #13AE67;
  font-size: 30px;
  font-weight: 700;
}
section.wb h2.qa__title + .qa__area {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  section.wb h2.qa__title + .qa__area {
    margin-top: 15px;
  }
}
section.wb h2.contact__form__title {
  text-align: center;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  padding-top: 20px;
}
section.wb h3 {
  font-family: "Zen Maru Gothic", sans-serif;
}
section.wb h3.step__title {
  font-size: 21px;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  section.wb h3.step__title {
    font-size: 21px;
  }
}
section.wb h3.plan__item-red {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  background-color: #FF004D;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 10px;
}
section.wb h3.plan__item-blue {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  background-color: #006DA8;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 10px;
}
section.wb h4 {
  font-family: "Zen Maru Gothic", sans-serif;
}
section.wb h4.plan__point {
  text-align: center;
  color: #ffffff;
  background-color: #727171;
  border-radius: 15px;
  margin: 30px 15px 20px;
  padding: 1px;
}
section.wb h4.plan__point + .plan__text {
  margin-top: 20px;
}
section.wb h5 {
  margin-top: 1.5rem;
}
@media screen and (max-width: 640px) {
  section.wb p {
    font-size: 14px;
  }
}
section.wb p.recruit_p {
  margin-top: 0;
}
section.wb p.qa__copy {
  text-align: center;
}
section.wb p.qa__copy + div {
  margin-top: 2rem;
}
section.wb p.normal__text {
  font-size: 18px;
  line-height: 2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
section.wb p.normal__text + .normal__text {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb p.normal__text + .normal__text {
    margin-top: 10px;
  }
}
section.wb p.normal__text strong.dg__text {
  color: #13AE67;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  margin: 0 0.2em;
}
section.wb p.from__text {
  text-align: center;
  font-size: 17px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  section.wb p.from__text {
    margin-top: 20px;
  }
}
section.wb p.from__text::before {
  content: url("../images/mark_l.svg");
  display: inline-block;
  margin-right: 10px; /* 文字との間隔を調整 */
  vertical-align: middle; /* テキストと縦位置を揃える */
}
section.wb p.from__text::after {
  content: url("../images/mark_r.svg");
  display: inline-block;
  margin-left: 10px; /* 文字との間隔を調整 */
  vertical-align: middle; /* テキストと縦位置を揃える */
}
section.wb p.from__sub {
  text-align: center;
  font-size: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}
section.wb p.service__text {
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  margin: 20px 15px 0;
}
section.wb p.plan__notes {
  text-align: left;
  font-size: 13px;
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0 28px;
  padding-bottom: 30px;
}
section.wb p.contact__form__text {
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 30px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  section.wb p.contact__form__text {
    margin-top: 15px;
  }
}
section.wb img.cathand-illust {
  display: block;
  margin: 50px auto 0;
}
section.wb img.service__map {
  margin-top: 30px;
  width: 100%;
  height: auto;
}
section.wb img.service__map + .from__text {
  margin-top: 30px;
}
section.wb dl.service__area {
  display: grid;
  grid-template-columns: 60px 1fr;
  row-gap: 2rem; /* 各ステップの間隔 */
  align-items: start;
  margin: 20px 20px 0;
}
section.wb dl.service__area + .from__text {
  margin-top: 30px;
}
section.wb dl.step__area {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 2rem; /* 各ステップの間隔 */
  column-gap: 1.5rem;
  align-items: center;
  margin-top: 20px;
}
section.wb dl.step__area + .from__text {
  margin-top: 30px;
}
section.wb dl.faq__dl {
  margin-top: 30px;
  width: 90%;
  margin-inline: auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 50px auto;
  gap: 15px;
}
@media screen and (max-width: 640px) {
  section.wb dl.faq__dl {
    margin-top: 15px;
  }
}
section.wb dl.faq__dl dt, section.wb dl.faq__dl dd {
  box-sizing: border-box;
}
section.wb dl.faq__dl .question__dt div {
  background-color: #13AE67;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  color: #fff;
  display: block;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.wb dl.faq__dl .question__dt div p {
  transform: translateY(-0.05em);
  font-size: 29.7px;
  font-weight: 900;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
}
section.wb dl.faq__dl .question__dd {
  padding-top: 0.5em;
}
section.wb dl.faq__dl .question__dd p {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.3;
  color: #13AE67;
}
section.wb dl.faq__dl .answer__dt div {
  background-color: #fff;
  box-sizing: border-box;
  border: 2px solid #13AE67;
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  color: #fff;
  display: block;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.wb dl.faq__dl .answer__dt div p {
  transform: translateY(-0.05em);
  font-size: 29.7px;
  font-weight: 900;
  color: #13AE67;
  font-family: "Zen Maru Gothic", sans-serif;
}
section.wb dl.faq__dl .answer__dd p {
  font-family: "Zen Maru Gothic", sans-serif;
}
section.wb dl.qa__area-q {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding-left: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  section.wb dl.qa__area-q {
    margin-top: 15px;
  }
}
section.wb dl.qa__area-a {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding-left: 30px;
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  section.wb dl.qa__area-a {
    margin-top: 5px;
  }
}
section.wb dl.qa__area-a + .from__text {
  margin-top: 40px;
}
section.wb dt.service__img {
  align-items: center;
}
section.wb dt.step__img {
  transform: translateY(1em);
}
section.wb dt.step__img .mask__circle {
  width: 112%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 5em;
  display: inline-block;
  margin-left: -15px;
}
section.wb dt.step__img .mask__circle img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  display: block;
}
section.wb dt.qa__q {
  background-color: #13AE67;
  border-radius: 50%;
  width: 46px;
  height: 46px;
}
section.wb dt.qa__q p {
  color: #ffffff;
  font-size: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  position: relative;
  top: -3px;
  text-align: center;
}
section.wb dt.qa__a {
  background-color: #ffffff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  border: 1px #13AE67 solid;
}
section.wb dt.qa__a p {
  color: #13AE67;
  font-size: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  position: relative;
  top: -3px;
  text-align: center;
}
section.wb dd.qa__question p {
  color: #13AE67;
  font-size: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
section.wb dd.qa__answer p {
  font-size: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}
section.wb dd.step__list h3 {
  line-height: 2.2;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  color: #13AE67;
}
section.wb dd.step__list p.step__item {
  color: #9BCB60;
  font-size: 17px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
section.wb dd.step__list p.step__text {
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  padding-right: 10px;
}
section.wb ul.change__ul {
  margin: 20px 10px 0;
}
section.wb ul.service__ul {
  margin-left: 1.1em;
}
section.wb ul.into__ul {
  margin-left: 1.5em;
}
section.wb ul.into__ul li {
  margin-top: 5px;
  position: relative;
  list-style-type: circle;
  font-size: 15px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}
section.wb ul.normal__list {
  margin-top: 20px;
  margin-left: 2em;
}
@media screen and (max-width: 640px) {
  section.wb ul.normal__list {
    margin-top: 10px;
  }
}
section.wb ul.normal__list li {
  list-style-type: disc;
  font-size: 18px;
  line-height: 2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
section.wb ul.normal__list + p {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb ul.normal__list + p {
    margin-top: 10px;
  }
}
section.wb ul.plan__expnote {
  width: calc(90% - 2.5em);
  margin-inline: auto;
  margin-left: 2.5em;
}
section.wb ul.plan__expnote li {
  list-style-type: disc;
  font-size: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
}
section.wb ul.plan__expnote li + li {
  margin-top: 0.3em;
}
section.wb ul li.service__list {
  margin-top: 10px;
  position: relative;
  list-style-type: disc;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  section.wb ul li.service__list {
    margin-top: 5px;
  }
}
section.wb ul li.service__list::marker {
  font-size: 0.6em; /* マーカーの大きさを小さく */
}
section.wb ul li.change__list {
  position: relative;
  padding-left: 3em; /* 画像分、左にインデント */
  color: #13AE67;
  font-size: 21px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 640px) {
  section.wb ul li.change__list {
    font-size: 19px;
    padding-left: 2.6em;
  }
}
section.wb ul li.change__list:last-child {
  margin-bottom: 0; /* 最後だけ余白を消す */
}
section.wb ul li.change__list::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -2px;
  width: 40px;
  height: 40px;
  background: url("../images/ill-checkbox.svg") no-repeat center/contain;
}
@media screen and (max-width: 640px) {
  section.wb ul li.change__list::before {
    left: 5px;
  }
}
section.wb .hidden-fields-container {
  display: none;
}
section.wb dl.contact__dl {
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}
section.wb dl.contact__dl dt {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
section.wb dl.contact__dl dt p {
  font-size: 19px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
section.wb dl.contact__dl dd {
  display: block;
  text-align: left;
  box-sizing: border-box;
  padding-bottom: 1rem;
}
section.wb dl.contact__dl dd input[type=text], section.wb dl.contact__dl dd input[type=email], section.wb dl.contact__dl dd input[type=tel] {
  width: 100%;
  border: 0;
  box-sizing: border-box;
  padding: 1em 2em;
  border-radius: 30px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}
section.wb dl.contact__dl dd input[type=text] + p, section.wb dl.contact__dl dd input[type=email] + p, section.wb dl.contact__dl dd input[type=tel] + p {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb dl.contact__dl dd input[type=text] + p, section.wb dl.contact__dl dd input[type=email] + p, section.wb dl.contact__dl dd input[type=tel] + p {
    margin-top: 10px;
  }
}
section.wb dl.contact__dl dd .select__container {
  position: relative;
}
section.wb dl.contact__dl dd .select__container::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #13AE67;
  content: "";
  position: absolute;
  right: 0.8em;
  top: 1.5em;
  width: 0;
}
section.wb dl.contact__dl dd select {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  border: 1px solid #aaa;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none; /* デフォルトの矢印を非表示 */
}
section.wb dl.contact__dl dd select + p {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb dl.contact__dl dd select + p {
    margin-top: 10px;
  }
}
section.wb dl.contact__dl dd .wpcf7-list-item {
  display: block;
}
section.wb dl.contact__dl dd .wpcf7-list-item label {
  display: block;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0.5em 1em;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  color: #999;
  cursor: pointer;
}
section.wb dl.contact__dl dd .wpcf7-list-item label input[type=radio] {
  margin-right: 0.5em;
}
section.wb dl.contact__dl dd .wpcf7-list-item label:has(input[type=radio]:checked) {
  background-color: #fff;
  transition: background-color 0.8s ease;
  color: #111;
}
section.wb dl.contact__dl dd .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 8px;
}
section.wb dl.contact__dl dd textarea {
  width: 100%;
  height: 180px;
  box-sizing: border-box;
  padding: 1em 1em;
  border-radius: 10px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  border: 0;
}
section.wb dl.contact__dl dd textarea + p {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb dl.contact__dl dd textarea + p {
    margin-top: 10px;
  }
}
section.wb dl.contact__dl dd p + p {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  section.wb dl.contact__dl dd p + p {
    margin-top: 10px;
  }
}
section.wb dl.contact__privacy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}
section.wb dl.contact__privacy > dt p {
  text-align: center;
  font-weight: 700;
}
section.wb dl.contact__privacy > dd p {
  text-align: left;
}
section.wb input[type=submit].wpcf7-submit {
  margin-top: 30px;
  font-size: 20px;
  width: 100%;
  text-align: center;
  padding: 0.5em 1.5em;
  box-sizing: border-box;
  background: linear-gradient(0deg, #FFAA00 0%, #FFEA00 100%);
  border: 2px solid #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 38px;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  section.wb input[type=submit].wpcf7-submit {
    margin-top: 15px;
  }
}
section.wb iframe.form__privacypolicy {
  background-color: #fff;
  padding: 1.5em;
  width: 100%;
  height: 150px;
  overflow-y: scroll;
  box-sizing: border-box;
}
section.wb .wpcf7-acceptance {
  border: 1px solid #fff;
  border-radius: 5px;
  display: block;
  padding: 0.5em 0.8em;
  transition: background-color 0.3s ease;
}
section.wb .wpcf7-acceptance:hover {
  background-color: #fff;
  transition: background-color 0.8s ease;
}
section.wb .wpcf7-acceptance label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  a.anchorpoint {
    position: relative;
    top: -100px;
    margin-bottom: -100px;
    display: block;
    width: 100%;
    height: 100px;
    z-index: 200;
    pointer-events: none;
  }
}

ul.menu__white {
  color: #ffffff;
}
ul.menu__white li {
  text-align: center;
}
ul.menu__white li a {
  white-space: nowrap;
  font-size: 21px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 1100px) {
  ul.menu__white li a {
    font-size: 16px;
    white-space: wrap;
  }
}
ul.menu__white li + li {
  margin-top: 0.5em;
}
ul.menu__white li.mt__ex {
  margin-top: 20px;
}
ul.menu__white li.txt__small a {
  font-size: 15px;
}

/* スクロールイベントでのFadeUpアニメーション用 */
.fadeUp {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールイベントでのpopupアニメーション用 */
.popup {
  animation-name: popupAnime;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

@keyframes popupAnime {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  70% {
    transform: scale(0.9);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=main.css.map */