@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=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  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: #444444;
}

a {
  font-size: clamp(16px, 1rem, 18px);
}
@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: #284e98;
}
a:hover {
  transition: all 0.2s ease-out;
  color: #e49c00;
}
a:not([href^="#"]):hover {
  opacity: 1;
}

/* common */
header {
  width: 100%;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  background-color: #ffffff;
  position: fixed; /* スクロール時も要素を固定化 */
  left: 0;
  z-index: 100; /* 大きい数値ほど手前に表示される */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 640px) {
  header {
    padding: 0.3rem 1rem;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  align-items: center;
  display: grid;
  grid-template-columns: auto 200px 63px;
  gap: 0;
  align-items: stretch;
  /* .header_btn */
}
@media screen and (max-width: 640px) {
  .header__inner {
    grid-template-columns: auto 100px 45px;
  }
}
.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: 100%;
  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: 50%;
  max-width: 140px;
}
.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__inner .hd__btn {
  display: flex;
  align-items: center;
  text-indent: 0.3em;
  /* a */
}
.header__inner .hd__btn a {
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4rem;
  font-size: clamp(16px, 0.91vw + 16px, 20px);
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background-color: #61b7d9;
  transition: background-color 0.3s;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 640px) {
  .header__inner .hd__btn a {
    font-size: 13px;
    height: 55%;
    letter-spacing: 1px;
    border-radius: 30px;
  }
}
.header__inner .hd__btn a .triangle {
  font-size: 0.9rem;
  margin-left: 0.3em;
}
@media screen and (max-width: 640px) {
  .header__inner .hd__btn a .triangle {
    font-size: 0.7rem;
  }
}
.header__inner .hd__btn a:hover {
  background-color: #ff9b00;
}

/* .header__area */
/* ハンバーガーメニュー */
.menu__btn {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  position: relative;
}

.menu__btn span,
.menu__btn span:before,
.menu__btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 28px;
  margin: 2px 0;
  background-color: #444444;
  transition: 0.2s;
  position: absolute;
}

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

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

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

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

#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;
  bottom: 100%;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: #61b7d9;
  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;
  /* .header_btn */
}
#drawer-content > .drawer__inner .hd__btn {
  align-items: center;
  margin-top: 60px;
  /* a */
}
@media screen and (max-width: 640px) {
  #drawer-content > .drawer__inner .hd__btn {
    margin-top: 30px;
  }
}
#drawer-content > .drawer__inner .hd__btn a {
  width: 80%;
  margin-inline: auto;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4rem;
  font-size: clamp(16px, 0.91vw + 16px, 20px);
  font-weight: 500;
  color: #61b7d9;
  text-decoration: none;
  background-color: #ffffff;
  transition: background-color 0.3s;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 640px) {
  #drawer-content > .drawer__inner .hd__btn a {
    font-size: 16px;
    height: 55%;
    letter-spacing: 2px;
    border-radius: 30px;
  }
}
#drawer-content > .drawer__inner .hd__btn a:hover {
  background-color: #ff9b00;
}

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

dl.hd__white {
  color: #ffffff;
}
dl.hd__white dt {
  font-size: 16px;
  font-weight: 500;
}
dl.hd__white dd.hd__list {
  border-top: 1px solid #ffffff;
  letter-spacing: 1px;
}
dl.hd__white dd.hd__list.txt__small a {
  font-size: 13px !important;
}
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;
  font-size: 16px !important;
  font-weight: 500;
  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 {
  padding: 4rem 4rem 1rem;
  background-color: #61b7d9;
  color: #ffffff;
  box-sizing: border-box;
  /* footer__area */
}
@media screen and (max-width: 640px) {
  footer {
    padding: 3rem 3rem 1rem;
  }
}
footer .footer__area {
  width: 90%;
  max-width: 700px;
  text-align: center;
  margin-inline: auto;
  /* dl */
}
@media screen and (max-width: 640px) {
  footer .footer__area {
    width: -moz-fit-content;
    width: fit-content;
  }
}
footer .footer__area dl {
  /* dd */
}
footer .footer__area dl dt {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1em; /* ← 文字と文字の間を広くする */
}
@media screen and (max-width: 640px) {
  footer .footer__area dl dt {
    font-size: 17px;
  }
}
footer .footer__area dl dd {
  margin-top: 0.3rem;
}
footer .footer__area dl dd.space-ex {
  margin-top: 1.5rem;
}
@media screen and (max-width: 640px) {
  footer .footer__area dl dd {
    font-size: 15px;
  }
}
footer .footer__area dl dd a {
  text-decoration: none; /* アンダーラインを消す */
  color: #ffffff; /* 文字色を白にする */
}
footer .footer__area dl dd br.sp-only {
  display: none; /* PCでは反映されず、SP版で発動する */
}
@media screen and (max-width: 640px) {
  footer .footer__area dl dd br.sp-only {
    display: inline;
  }
}
footer .footer__area dl dd img {
  width: 36px;
  height: 36px;
}
footer p.ft-cr {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 640px) {
  footer p.ft-cr {
    font-size: 14px;
  }
}

/* footer */
section {
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  /* div */
  /* a */
  /* h4 */
  /* h5 */
}
section #top__kv {
  height: 100%;
  height: 100vh;
  max-height: 800px;
  background-image: url("../images/kvbg-sky.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding-bottom: 110px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  section #top__kv {
    height: calc(100vh - 70px);
  }
}
section #top__kv > .kv__inner {
  width: 100%;
  height: 100vh;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  section #top__kv > .kv__inner {
    height: 100vh;
  }
}
section #top__kv > .kv__inner > .kv__copy {
  width: 65%;
  max-width: 330px;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 640px) {
  section #top__kv > .kv__inner > .kv__copy {
    top: -4rem;
  }
}
section #top__kv .slider__parent {
  width: 40%;
  max-width: 600px; /* 各スライドショーの最大幅を設定 */
  overflow: hidden;
  position: absolute;
  border-radius: 15px;
}
@media screen and (max-width: 640px) {
  section #top__kv .slider__parent {
    width: 50%;
    border-radius: 8px;
  }
}
section #top__kv .slider__parent.slider1 {
  top: 90px;
  left: -1rem;
  z-index: 1;
  height: 150px;
  border-radius: 15px 0 15px 15px;
}
@media screen and (max-width: 640px) {
  section #top__kv .slider__parent.slider1 {
    top: 65px;
    height: 130px;
    left: -0.5rem;
  }
}
section #top__kv .slider__parent.slider2 {
  width: 35%;
  z-index: 1;
  top: 130px;
  right: 2rem;
  height: 150px;
}
@media screen and (max-width: 640px) {
  section #top__kv .slider__parent.slider2 {
    width: 40%;
    height: 100px;
    top: 120px;
    right: 1rem;
  }
}
section #top__kv .slider__parent.slider3 {
  width: 35%;
  height: 160px;
  top: 63%;
  left: 6rem;
  z-index: 10;
}
@media screen and (max-width: 640px) {
  section #top__kv .slider__parent.slider3 {
    width: 47%;
    height: 130px;
    left: 1.4rem;
    top: 60%;
  }
}
section #top__kv .slider__parent.slider4 {
  width: 43%;
  height: 170px;
  bottom: 6rem;
  right: 3rem;
  z-index: 4;
}
@media screen and (max-width: 640px) {
  section #top__kv .slider__parent.slider4 {
    width: 48%;
    right: 1rem;
    height: 120px;
  }
}
section #top__kv .slider__inner {
  position: relative;
  width: 100%;
  height: 200px; /* スライドショーの高さ。必要に応じて調整 */
}
@media screen and (max-width: 640px) {
  section #top__kv .slider__inner {
    height: 100%;
  }
}
section #top__kv .slider__child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1; /* 初期表示 */
  transition: opacity 1s ease-in-out; /* フェードアニメーション */
}
section #top__kv .slider__child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.section__map .map__inner {
  width: 100%;
  aspect-ratio: 4/2;
  margin-inline: auto;
  margin-top: 15px;
}
@media screen and (max-width: 640px) {
  section.section__map .map__inner {
    margin-top: 8px;
  }
}
section.section__map .map__inner iframe {
  width: 100%;
  height: 100%;
}
section.section__map + p {
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  section.section__map + p {
    margin-top: 5px;
  }
}
section.bg_light-blue {
  background-color: #e6fcff;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  section.bg_light-blue {
    padding-top: 0;
  }
}
section.bg_light-blue_ex {
  background-color: #e6fcff;
  box-sizing: border-box;
}
section.mg_ex {
  padding-top: 2.5rem;
}
section div {
  /* 応募するボタン 社長からごあいさつ */
  /* 応募するボタン */
}
section div.bb_area {
  max-width: 670px;
  border: 1px #ddd solid;
  border-radius: 1.1rem;
  margin: 0 1.2rem 0;
  padding: 2rem;
  background-color: #ffffff;
}
section div.bb_area.position__negative {
  position: relative;
  top: -4rem;
  margin-bottom: -4rem;
}
section div.bb_area + div {
  margin-top: 1.5rem;
}
section div.bb_area_ex {
  max-width: 670px;
  border: 1px #ff9b00 solid;
  border-radius: 1.1rem;
  margin: 0 1.2rem 0;
  padding: 2rem;
  background-color: #ffffff;
}
section div.site__read p.read__indent {
  margin-left: 1.3em;
  text-indent: -1.3em;
}
section div.site__read p.read__indent::before {
  content: "─";
  margin-right: 0.3em;
}
section div.site__read p + p {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  section div.site__read p + p {
    margin-top: 15px;
  }
}
section div.qa-ex_lb {
  border: none;
  background-color: #e6fcff;
  padding: 3rem 0.5rem 1rem;
}
section div.qa-ex_w {
  border: none;
  padding: 3rem 0.5rem;
}
section div.recruit_jb {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10%;
}
section div.pst_front {
  position: relative;
  /* 位置指定 */
  top: -3rem;
  /* 位置指定 */
  margin-bottom: -3rem;
  z-index: 20;
  /* 重なり順指定 */
}
section div.hukidasi-area {
  width: 75%;
  background-color: #fff;
  border: 2px solid gray;
  border-radius: 1.5rem;
  padding: 2rem;
}
@media screen and (max-width: 640px) {
  section div.hukidasi-area {
    width: 76%;
    padding: 1rem;
  }
}
section div.hukidasi-area._lb {
  height: 125px;
}
section div.hukidasi-area._or {
  height: 198px;
  display: flex;
  justify-content: flex-end;
  /* コンテンツを右に寄せる */
  align-items: flex-start;
  /* 上揃え */
  text-align: right;
  /* テキストも右寄せに */
}
section div.hukidasi-area.area__question {
  border-color: #2fb8c9;
  position: relative;
}
section div.hukidasi-area.area__question::after {
  content: "";
  display: block;
  width: 50px;
  height: 30px;
  background-image: url("../images/hukidasi_lb.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 20;
  bottom: -30px;
  left: 30px;
}
section div.hukidasi-area.area__answer {
  border-color: #ff9b00;
  margin-inline-start: auto;
  position: relative;
}
section div.hukidasi-area.area__answer::after {
  content: "";
  display: block;
  width: 50px;
  height: 30px;
  background-image: url("../images/hukidasi_or.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 20;
  bottom: -30px;
  right: 30px;
}
section div.hukidasi-area .huskidasi__clm {
  width: 100%;
  display: grid;
  margin-inline: auto;
  grid-template-columns: 1fr 8fr;
  gap: 5px;
}
section div.hukidasi-area .huskidasi__clm.question dt p {
  color: #2fb8c9;
}
section div.hukidasi-area .huskidasi__clm.answer dt p {
  color: #ff9b00;
}
section div.hukidasi-area .huskidasi__clm dt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
section div.hukidasi-area .huskidasi__clm dt p {
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
}
@media screen and (max-width: 640px) {
  section div.hukidasi-area .huskidasi__clm dt p {
    font-size: 28px;
  }
}
section div.hukidasi-area .huskidasi__clm dd {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
section div.hukidasi-area .huskidasi__clm dd p {
  text-align: left;
}
section div.hukidasi-area .hukidasi-icon {
  font-size: 1.6rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin: 40% auto;
}
section div.hukidasi-area .hukidasi-icon._lb {
  color: #2fb8c9;
}
section div.hukidasi-area .hukidasi-icon._or {
  color: #ff9b00;
}
section div.hukidasi-area + .hukidasi-area {
  margin-top: 45px;
}
section div.btn-area {
  display: flex;
  justify-content: center;
}
section div.btn-area__ex {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  section div.btn-area__ex {
    margin-top: 15px;
  }
}
section div.btn-message {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
section div.btn-message .btn-content {
  align-items: center;
  margin-bottom: 8px;
}
section div.btn-message .btn-content .btn-title {
  text-align: center;
}
section div.btn-icon {
  width: 22px;
  height: 22px;
  font-size: 1px;
  position: absolute;
  right: 10px;
}
section div.btn-icon img {
  position: relative;
  top: 2px;
}
section div.btn-icon-an {
  width: 18px;
  height: 18px;
  font-size: 1px;
  position: absolute;
  left: 56px;
  bottom: 15px;
  margin-bottom: 8px;
}
section div.btn-icon-an img {
  position: relative;
}
section div.ct__clm {
  display: flex;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  section div.ct__clm {
    margin-top: 20px;
  }
}
section div.ct__clm-l {
  width: 75%;
  background-color: #fff;
  border: 2px solid gray;
  border-radius: 1.5rem;
  padding: 2rem;
  border-color: #ff9b00;
  margin-inline-start: auto;
  position: relative;
}
@media screen and (max-width: 640px) {
  section div.ct__clm-l {
    width: 60%;
    padding: 1rem 1.5rem;
  }
}
section div.ct__clm-l::after {
  content: "";
  display: block;
  width: 35px;
  height: 24px;
  background-image: url("../images/ct_or.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 20;
  bottom: 40px;
  left: -35px;
}
section div.ct__clm-r {
  width: 75%;
  background-color: #fff;
  border: 2px solid gray;
  border-radius: 1.5rem;
  padding: 2rem;
  border-color: #ff9b00;
  position: relative;
}
@media screen and (max-width: 640px) {
  section div.ct__clm-r {
    width: 60%;
    padding: 1rem 1.5rem;
  }
}
section div.ct__clm-r::after {
  content: "";
  display: block;
  width: 35px;
  height: 24px;
  background-image: url("../images/ct_or.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 20;
  bottom: 40px;
  right: -35px;
  transform: scaleX(-1); /* ← ミラー反転（左右） */
}
section a.btn-lb {
  display: flex;
  align-items: center;
  background-color: #61b7d9;
  color: white;
  padding: 4px 48px 8px;
  border-radius: 2rem;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  position: relative;
}
section a.btn-lb:hover {
  background-color: #ff9b00;
}
section a.btn-lb p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}
section a.btn-lb p.btn-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-align: center;
  /* ← 文字と文字の広くする */
}
section a.btn-lb p.btn-sub {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}
section a.btn-or {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  background-color: #ff9b00;
  color: white;
  border-radius: 5rem;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
  position: relative;
}
section a.btn-or:hover {
  background-color: #ff9b00;
}
section h2.h2__main {
  font-size: clamp(18.2px, 0.55vw + 18.2px, 22.4px);
  color: #ff9b00;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
}
@media screen and (max-width: 640px) {
  section h2.h2__main {
    font-size: 20px;
  }
}
section h2.h2__main + .site__read {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  section h2.h2__main + .site__read {
    margin-top: 15px;
  }
}
section h3 {
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  section h3 {
    font-size: 16px;
  }
}
section h3.basic__h3 + p, section h3.basic__h3 + ul {
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  section h3.basic__h3 + p, section h3.basic__h3 + ul {
    margin-top: 5px;
  }
}
section h3.space-ex + h4 {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  section h3.space-ex + h4 {
    margin-top: 15px;
  }
}
section h3.orange-ex {
  color: #ff9b00;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
section h3.orange-ex + p {
  margin-top: 1.5em;
}
section h3.recruit_h {
  margin: auto 0;
}
@media screen and (max-width: 640px) {
  section h3.recruit_h {
    font-size: 15px;
  }
}
section h4 {
  margin-top: 1.5rem;
  /* orange_text */
}
section h4.point_lb {
  font-size: 18px;
  color: #2fb8c9;
  border: 2px #2fb8c9 solid;
  border-radius: 1.4rem;
  padding: 0.5rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 640px) {
  section h4.point_lb {
    border-radius: 1.2rem;
    font-size: 16px;
  }
}
section h4.point_lb + .point_sharp {
  margin-top: 15px;
}
@media screen and (max-width: 640px) {
  section h4.point_lb + .point_sharp {
    margin-top: 8px;
  }
}
section h4.orange_text {
  font-size: 18px;
  color: #ff9b00;
  font-weight: 600;
  position: relative;
  padding-left: 1.5em;
}
section h4.orange_text::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 15%;
  background-image: url("../images/icon_exc.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
section h4.orange_text.ad-ex::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 8%;
  background-image: url("../images/icon_exc.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  section h4.orange_text {
    font-size: 15px;
  }
}
section h4.orange_text + p {
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  section h4.orange_text + p {
    margin-top: 5px;
  }
}
section h5.lb-text {
  font-size: 18px;
  color: #2fb8c9;
  font-weight: 600;
  border-top: 1px solid #ccc;
  padding-top: 16px;
  margin-top: 18px;
}
@media screen and (max-width: 640px) {
  section h5.lb-text {
    font-size: 16px;
  }
}
section h5.qa_area {
  position: relative;
  text-align: center;
  color: #a1a1a1;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  border-radius: 50px;
  z-index: 1;
  background-image: url("../images/h5-qa_area_bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2px;
  letter-spacing: 0.4em;
}
section h5.qa_area > .wrapper {
  width: 100%;
  display: block;
  background-color: #fff;
  text-align: center;
  font-size: 28px;
  padding: 1rem 0;
  border-radius: 48px;
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  section h5.qa_area > .wrapper {
    padding: 0;
  }
}
section h5.qa_area > .wrapper span {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 500;
}
section h5.qa_area > .wrapper span.lb-text {
  color: #2fb8c9;
}
section h5.qa_area > .wrapper span.or-text {
  color: #ff9b00;
}
section h5.qa_area + p {
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  section h5.qa_area + p {
    margin-top: 5px;
  }
}
section h5.ct__area {
  font-size: 18px;
  color: #ff9b00;
  border: 2px #ff9b00 solid;
  border-radius: 1.4rem;
  padding: 0.5rem;
  font-weight: 400;
  text-align: center;
}
section h5.ct__h5 {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  section h5.ct__h5 {
    font-size: 12px;
    font-weight: 700;
  }
}
section p {
  /* point_sharp */
}
@media screen and (max-width: 640px) {
  section p {
    font-size: 14px;
  }
}
section p.point_sharp {
  font-weight: 400;
  text-align: center;
  color: #7d7d7d;
}
section p.line-upper {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-top: 12px;
}
section p.recruit_p {
  margin-top: 0;
}
section p.qa__copy {
  text-align: center;
}
section p.qa__copy + div {
  margin-top: 2rem;
}
section p.ct__upper {
  text-align: center;
}
section p.ct__upper::before {
  content: "\\";
  font-size: 20px;
  margin-right: 20px;
}
section p.ct__upper::after {
  content: "/";
  font-size: 20px;
  margin-left: 20px;
}
section p.ct__under {
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  section p.ct__under {
    margin-top: 15px;
  }
}
section p.ct__ma {
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  section p.ct__ma {
    margin-top: 5px;
  }
}
section p.ct__space + h5 {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  section p.ct__space + h5 {
    margin-top: 15px;
  }
}
section img.kirin-illust {
  display: block;
  margin: 2rem auto 0;
}
@media screen and (max-width: 640px) {
  section img.kirin-illust {
    width: auto;
    height: 110px;
  }
}
section img.pst_back {
  position: relative;
  /* 位置指定 */
  z-index: 10;
  /* 重なり順指定 */
}
@media screen and (max-width: 640px) {
  section img.pst_back {
    width: 100vw;
  }
}
section img.ct__img-l {
  width: 60px;
}
section img.ct__img-r {
  width: 60px;
  margin-inline-start: auto;
}
section br.sp-only {
  display: none;
  /* PCでは反映されず、SP版で発動する */
}
@media screen and (max-width: 640px) {
  section br.sp-only {
    display: inline;
  }
}
section br.pc-only {
  display: inline;
  /* SPでは反映されず、PC版で発動する */
}
@media screen and (max-width: 640px) {
  section br.pc-only {
    display: none;
  }
}
section dt {
  font-weight: 600;
  margin-top: 0.5em;
}
section dt.list-mark {
  margin-left: -0.3em;
  /* 左にずらす */
}
section dt.list-mark::before {
  content: "・";
}
section dt.line-upper {
  border-top: 1px solid #ccc;
  padding-top: 16px;
  margin-top: 18px;
}
section dd {
  padding-left: 0.9em;
}
@media screen and (max-width: 640px) {
  section dd {
    font-size: 14px;
  }
}
section dd.no-pa {
  padding-left: 0;
}
section ul.ul__basic {
  margin-left: 1.3em;
}
section ul.ul__basic li {
  list-style-type: disc;
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  section ul.ul__basic li {
    font-size: 14px;
  }
}
section ul.ul__basic li + li {
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  section ul.ul__basic li + li {
    margin-top: 5px;
  }
}
section ul.ul__list-none li {
  list-style-type: none;
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  section ul.ul__list-none li {
    font-size: 14px;
  }
}/*# sourceMappingURL=main.css.map */