@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Nunito:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizespeed;
  line-height: 1.5;
  width: 100%;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* フォームリセット */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* mixin
------------------------------------------------------------*/
/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --f-family-main: "Zen Kaku Gothic New", sans-serif;
  --f-family-sub: "Noto Sans JP", sans-serif;
  --f-family-en: "Josefin Sans", sans-serif;
  --f-family-en2: "Roboto", sans-serif;
  --f-font-size: 16px;
  --f-line-height: 1.5;
  --f-letter-spacing: 0.06em;
  --f-weight-regular: 300;
  --f-weight-medium: 400;
  --f-weight-semibold: 500;
  --f-weight-bold: 700;
  --f-weight-black: 900;
  --c-base: #121212;
  --c-white: #ffffff;
  --c-brand: #ae8148;
  --c-blue: #005bac;
  --c-yellow: #ffe932;
  --c-gray:#efefef;
  --c-deep_gray:#58595b;
  --c-base-rgb: 26, 26, 26;
  --c-form-deep_gray:#e7e7e7;
  --c-form-required: #d94d61;
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 16px;
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  font-weight: var(--f-weight-medium);
  line-height: var(--f-line-height);
  background-color: var(--c-white);
  color: var(--c-base);
  letter-spacing: var(--f-letter-spacing);
  overflow-wrap: break-word;
  word-break: break-all;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior: none;
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

button {
  transition: 0.3s;
}
button:hover, button:focus {
  opacity: 0.9;
}

.is-pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
.is-pc--inleine {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .is-pc--inleine {
    display: none !important;
  }
}
@media screen and (max-width: 979px) {
  .is-pc--inleine {
    display: none !important;
  }
}

.is-tab {
  display: none !important;
}
@media screen and (max-width: 979px) {
  .is-tab {
    display: block !important;
  }
}
.is-tab--inleine {
  display: inline-block !important;
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 979px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}
.is-sp--inleine {
  display: inline-block !important;
}

.sp-none {
  display: inline-block;
}
@media screen and (max-width: 979px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-block {
    display: inline-block;
  }
}

.center {
  margin: 0 auto;
  text-align: center;
}

/* コンテナー
------------------------------------------------------------*/
.body::before {
  content: "";
  display: block;
  background-image: url(../img/body-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.l-contents {
  max-width: 450px;
  position: relative;
  margin-inline: auto;
  container: inline-size;
  background-color: var(--c-white);
  transition: all 0.25s ease;
  box-shadow: 0px 0 12px 0px rgba(var(--c-base-rgb), 0.4);
}

@media (min-width: 1280px) {
  .l-contents {
    transform: translate(50px, 0px);
  }
}
.l-container {
  padding-inline: 4.8vw;
}

@media (min-width: 500px) {
  .l-container {
    padding-inline: 24px;
  }
}
.menu-pc {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 4.6875%;
  right: auto;
  margin: auto;
  width: 390px;
  height: 650px;
  padding: 32px;
  box-shadow: 0px 8px 12px 0px rgba(var(--c-base-rgb), 0.2);
  background-color: var(--c-white);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  display: none;
}
@media (min-width: 1280px) {
  .menu-pc {
    display: flex;
  }
}
.menu-pc__nav {
  margin-bottom: 32px;
  width: 100%;
}
.menu-pc__list {
  font-size: 1rem;
}
.menu-pc__item {
  margin-bottom: 16px;
}
.menu-pc__item:last-child {
  margin-bottom: 0;
}
.menu-pc__item a {
  font-size: 1rem;
  color: var(--c-blue);
  text-align: center;
  font-weight: var(--f-weight-semibold);
  display: inline-block;
  width: 100%;
  padding: 8px 0;
  line-height: 1;
  position: relative;
  cursor: pointer;
}
.menu-pc__item span {
  font-size: 1.25rem;
  color: var(--c-base);
  font-family: var(--f-family-sub);
  display: block;
  margin-top: 8px;
}
.menu-pc__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--c-blue);
  box-shadow: 0 5px 0 #014a8b;
}
.menu-pc__cta:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--c-blue);
}
.menu-pc__cta .cta-btn {
  display: inline-block;
  width: 90%;
}

/* components
------------------------------------------------------------*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.sec-ttl {
  font-size: 1.75rem;
  font-weight: var(--f-weight-bold);
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .sec-ttl {
    font-size: 1.5rem;
  }
}
.sec-ttl-en {
  font-size: 1.125rem;
  color: var(--c-blue);
  text-align: center;
  font-weight: var(--f-weight-semibold);
  margin-bottom: 4px;
}
.sec-ttl .-color-blue {
  color: var(--c-blue);
}

.ttl-sub {
  font-size: 1.625rem;
  color: var(--c-brand);
  font-family: var(--f-family-sub);
  padding-left: 0.25em;
  padding-bottom: 4px;
  border-bottom: solid 1px var(--c-brand);
  margin-bottom: 18px;
}

.cta-btn {
  font-size: 1.25rem;
  color: var(--c-white);
  font-weight: var(--f-weight-semibold);
  text-align: center;
  display: block;
  padding: 18px 24px;
  border-radius: 4px;
  transition: 0.4s;
}
.cta-btn:hover {
  opacity: 1;
}
.cta-btn.-recruiting {
  background-color: var(--c-yellow);
  box-shadow: 0 5px 0 #ccc258;
}
.cta-btn.-recruiting:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--c-yellow);
}
.cta-btn.-form {
  color: var(--c-white);
  background-color: #fd5b25;
  box-shadow: 0 5px 0 #dc350c;
}
.cta-btn.-form:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 #fd5b25;
}

/* header
------------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  background-color: var(--c-white);
  box-shadow: 0px 3px 4px 0px rgba(var(--c-base-rgb), 0.1);
}
.header__logo {
  display: inline-block;
  width: 128px;
  margin-right: auto;
  padding: 16px 0 16px 16px;
}
.header__cta {
  font-size: 1.125rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  height: 100%;
  background-color: var(--c-blue);
  padding: 0 8px;
}
.header__cta a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .sp-block {
  display: none;
}
@media (max-width: 1279px) {
  .header .sp-block {
    display: block;
  }
}
.header__hamburger {
  padding: 16px 16px 16px 16px;
}

.btn-trigger {
  position: relative;
  width: 38px;
  height: 28px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-base);
  border-radius: 2px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 13px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn-close.active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
#btn-close.active span:nth-of-type(2) {
  opacity: 0;
}
#btn-close.active span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}

/* footer
------------------------------------------------------------*/
.footer {
  background-color: var(--c-base);
  padding: 40px 0;
}
.footer__company {
  font-size: 0.875rem;
  color: var(--c-white);
  text-align: center;
  margin-bottom: 24px;
}
.footer__company a {
  text-decoration: underline #fff 1px;
  text-underline-offset: 4px;
}
.footer__copy {
  font-size: 0.875rem;
  font-weight: var(--f-weight-regular);
  color: var(--c-white);
  text-align: center;
}

/* modal
------------------------------------------------------------*/
.menu-sp__list {
  font-size: 1rem;
  margin-bottom: 32px;
}
.menu-sp__item {
  margin-bottom: 18px;
}
.menu-sp__item:last-child {
  margin-bottom: 0;
}
.menu-sp__item a {
  font-size: 1.125rem;
  color: var(--c-blue);
  text-align: center;
  font-weight: var(--f-weight-semibold);
  display: inline-block;
  width: 100%;
  padding: 8px 0;
  line-height: 1;
  position: relative;
}
.menu-sp__item span {
  font-size: 1.375rem;
  display: block;
  margin-top: 8px;
  color: var(--c-base);
}
.menu-sp__cta .cta-btn {
  margin-bottom: 20px;
}

.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
}
.modal__container {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 450px;
  height: calc(100% - 40px);
  margin: 0 auto;
  background-color: var(--c-white);
}
.modal__inner {
  position: relative;
  height: 100%;
  padding: 24px 6.4% 20px;
}

/* form
------------------------------------------------------------*/
.form {
  padding: 80px 3.2%;
}
.form__ttl {
  left: -3.4%;
}
.form__ttl span::after {
  border-width: 0em 0 1.2em 0.8em;
}
.form__wrap {
  padding: 40px 3.2%;
  background-color: var(--c-white);
}

.c-form__group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.c-form__group:last-child {
  margin-bottom: 0;
}
.c-form__group.-submit {
  justify-content: center;
  margin-top: 48px;
}
.c-form__areaselect {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.c-form__areaselect li {
  margin-bottom: 16px;
  width: 33%;
}
.c-form__areaselect li:nth-last-of-type(-n + 2) {
  margin-bottom: 0;
}
.c-form__button {
  font-size: 1.125rem;
  text-align: center;
  font-weight: var(--f-weight-semibold);
  width: 100%;
  height: 64px;
  background-color: var(--c-blue);
  box-shadow: 0 5px 0 #014a8b;
  transition: 0.4s;
}
.c-form__button:hover {
  opacity: 1;
  transform: translateY(4px);
  box-shadow: 0 5px 0 var(--c-blue);
}
.c-form__button button, .c-form__button input {
  color: var(--c-white);
  width: 100%;
  height: 100%;
}
.c-form__button.-back {
  margin: 24px auto 0;
  width: 50%;
  background-color: #e3e3e3;
  box-shadow: 0 5px 0 #b1b1b1;
}
.c-form__button.-back:hover {
  opacity: 1;
  transform: translateY(4px);
  box-shadow: 0 5px 0 #e3e3e3;
}
.c-form__button.-back input {
  color: var(--c-base);
}

.c-form__group__box {
  width: 100%;
  margin-bottom: 28px;
}
.c-form__group__box:last-child {
  margin-bottom: 0;
}
.c-form__group__box__title {
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.c-form__group__box__title.-required::before {
  content: "必須";
  display: inline-block;
  font-size: 0.8em;
  line-height: 1;
  vertical-align: middle;
  color: var(--c-white);
  padding: 0.25em 0.4em;
  background-color: var(--c-form-required);
  border-radius: 2px;
  margin-right: 0.8em;
  margin-bottom: 2px;
}
.c-form__group__box__title .-sm {
  font-size: 0.8em;
}
.c-form__group__box__radio {
  cursor: pointer;
  padding-left: 1.5em;
  position: relative;
}
.c-form__group__box__radio:first-of-type {
  margin-left: 0;
}
.c-form__group__box__radio::before, .c-form__group__box__radio::after {
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-form__group__box__radio::before {
  background-color: var(--c-form-deep_gray);
  width: 20px;
  height: 20px;
  left: 0;
}
.c-form__group__box__radio::after {
  background-color: var(--c-blue);
  width: 12px;
  height: 12px;
  left: 4px;
  opacity: 0;
}
.c-form__group__box__error {
  font-size: 0.875rem;
  color: var(--c-form-required);
  padding-top: 0.4em;
}
.c-form__group__box__note {
  margin-top: 4px;
  font-size: 0.75rem;
}
.c-form__group__box input[type=radio] {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.c-form__group__box input[type=radio]:checked + .c-form__group__box__radio::after {
  opacity: 1;
}
.c-form__group__box input[type=text],
.c-form__group__box input[type=tel],
.c-form__group__box input[type=email],
.c-form__group__box input[type=number] {
  font-size: 1rem;
  width: 100%;
  height: 55px;
  background-color: var(--c-form-deep_gray);
  border-radius: 5px;
  padding: 1em;
}
.c-form__group__box input[type=text]::placeholder,
.c-form__group__box input[type=tel]::placeholder,
.c-form__group__box input[type=email]::placeholder,
.c-form__group__box input[type=number]::placeholder {
  color: #9b9c9b;
}
.c-form__group__box input[type=checkbox] {
  width: 1.5em;
  height: 1.5em;
  background-color: var(--c-form-deep_gray);
  transform: translateY(0.6em);
}
.c-form__group__box input[type=checkbox]:checked::before {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(50deg);
  width: 10px;
  height: 20px;
  border-right: 4px solid var(--c-blue);
  border-bottom: 4px solid var(--c-blue);
  content: "";
}
.c-form__group__box textarea {
  font-size: 1rem;
  width: 100%;
  height: 240px;
  background-color: var(--c-form-deep_gray);
  border-radius: 5px;
  padding: 1em;
}

.label__select__box {
  display: flex;
  gap: 12px;
}
.label__select {
  width: 30%;
}

label.label__select {
  position: relative;
  width: 100%;
}
label.label__select::after {
  position: absolute;
  display: block;
  content: "";
  border-bottom: solid 2px #ccc;
  border-right: solid 2px #ccc;
  top: calc(50% - 6px);
  right: 10px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
}
label.label__select .textarea {
  width: 100%;
  padding: 1em;
  font-size: 1rem;
  color: var(--c-base);
  border-radius: 3px;
  background: var(--c-form-deep_gray);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
label a {
  color: #3273dc;
  text-decoration: underline;
}

.radio-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.confirm .c-form__group__box__value {
  font-size: 1rem;
  width: 100%;
  background-color: var(--c-form-deep_gray);
  border-radius: 5px;
  padding: 1em;
}
.confirm__btn {
  color: var(--c-white);
}

.thanks {
  height: 90vh;
}
.thanks__txt {
  font-size: 1rem;
  text-align: center;
  font-weight: var(--f-weight-semibold);
}
.thanks__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  width: 100%;
  background-color: var(--c-blue);
  box-shadow: 0 5px 0 #014a8b;
  margin-top: 40px;
}
.thanks__btn:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--c-blue);
}
.thanks__btn a {
  color: var(--c-white);
}

/* thanks
------------------------------------------------------------*/
.thanks {
  padding: 80px 3.2%;
}
/* TOP
------------------------------------------------------------*/
.mv {
  width: 100%;
  background-image: url(../img/mv__bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.mv__inner {
  padding: 24px 16px 0;
}
.mv__catch {
  width: 80%;
  margin: 0 auto 12px;
}
.mv__ttl {
  width: 100%;
  margin: 0 auto 12px;
}
.mv__copy {
  width: 100%;
  margin: 0 auto 4px;
}
.mv__wrap {
  position: relative;
}
.mv__wrap .human {
  display: block;
  width: 85%;
  margin: 0 auto;
}
.mv__wrap .name {
  width: 100%;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--c-white);
  text-align: center;
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .mv__wrap .name {
    font-size: 0.875rem;
  }
}
.mv__wrap .name span {
  background-color: var(--c-blue);
}
.mv__cta {
  position: absolute;
  width: 95%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}
.mv__cta p {
  display: inline-block;
  border-radius: 100vh;
  padding: 4px 1.2em;
  font-size: 1rem;
  font-weight: var(--f-weight-semibold);
  background-color: var(--c-yellow);
  position: absolute;
  z-index: 1;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .mv__cta p {
    font-size: 0.875rem;
  }
}
.mv__cta a {
  background-color: #36aea2;
  box-shadow: 0 5px 0 #2c978c;
}
.mv__cta a:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 #36aea2;
}

.worries {
  background-color: var(--c-gray);
}
.worries__inner {
  position: relative;
  padding: 80px 24px 40px;
}
.worries__inner::after {
  content: "";
  display: inline-block;
  background-image: url(../img/worries__triangle.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 240px;
  position: absolute;
  left: 0;
  bottom: -156px;
}
.worries__item {
  position: relative;
  margin-bottom: 120px;
}
.worries__item::after {
  content: "";
  display: inline-block;
  background-image: url(../img/worries__decoration.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  height: 80px;
  position: absolute;
  right: 32px;
}
.worries__item.-reverse::after {
  right: auto;
  left: 32px;
  transform: rotateY(180deg);
}
.worries__item-ttl {
  position: relative;
  background-color: var(--c-blue);
  background-image: url(../img/worries__item-bg.png);
  background-size: contain;
  font-size: 1.125rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  padding: 14px 14px 14px 42px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.worries__item-ttl::before {
  content: "";
  display: inline-block;
  background-image: url(../img/worries__check.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 16px;
  top: 16px;
}
@media screen and (max-width: 767px) {
  .worries__item-ttl {
    font-size: 1rem;
  }
}
.worries__item-txt {
  background-color: var(--c-white);
  font-size: 1rem;
  line-height: 1.6;
  padding: 24px 14px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media screen and (max-width: 767px) {
  .worries__item-txt {
    font-size: 0.875rem;
  }
}

.solution {
  background-color: var(--c-blue);
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 18%, transparent 18%);
  background-size: 8px 8px;
}
.solution__inner {
  padding: 180px 24px 80px;
}
.solution__block {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.solution__img {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .solution__img {
    width: 100px;
  }
}
.solution__ttl {
  font-size: 1.875rem;
  font-weight: var(--f-weight-bold);
  color: var(--c-blue);
  line-height: 1.8;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .solution__ttl {
    font-size: 1.375rem;
  }
}
.solution__ttl span {
  background-color: var(--c-white);
  padding: 0 8px;
}
.solution__item {
  margin-bottom: 80px;
}
.solution__item:last-child {
  margin-bottom: 0;
}
.solution__column {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.solution__column img {
  display: inline-block;
  width: 60px;
  padding-right: 16px;
}
.solution__column h3 {
  flex: 1;
  font-size: 1.25rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  padding-left: 16px;
  border-left: solid 2px var(--c-yellow);
}
@media screen and (max-width: 767px) {
  .solution__column h3 {
    font-size: 1.125rem;
  }
}
.solution__item-img {
  background-color: var(--c-white);
  border-radius: 8px;
  padding-top: 16px;
  width: 95%;
  margin: 0 auto 16px;
}
.solution__item-img img {
  display: block;
  width: 75%;
  margin: 0 auto;
}
.solution__item-txt {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--c-white);
}
@media screen and (max-width: 767px) {
  .solution__item-txt {
    font-size: 0.875rem;
  }
}

.about {
  background-color: var(--c-gray);
}
.about__inner {
  padding: 80px 24px 80px;
}
.about__ttl-sub {
  position: relative;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: var(--f-weight-semibold);
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .about__ttl-sub {
    font-size: 1rem;
  }
}
.about__ttl-sub::before {
  content: "(";
  font-size: 1.8em;
  line-height: 1;
  color: #36aea2;
  position: relative;
  top: 4px;
}
.about__ttl-sub::after {
  content: ")";
  font-size: 1.8em;
  line-height: 1;
  color: #36aea2;
  position: relative;
  top: 4px;
}
.about__img:hover {
  opacity: 0.8;
}

.service__inner {
  padding: 80px 24px 80px;
}
.service__txt {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .service__txt {
    font-size: 0.875rem;
  }
}
.service__img {
  width: 100%;
  margin: 0 auto;
}

.cta {
  background-color: var(--c-blue);
  padding: 80px 16px 80px;
}
.cta.-color-white {
  background-color: var(--c-white);
}
.cta__inner {
  background-color: var(--c-white);
  padding: 40px 16px;
}
.cta__catch {
  display: block;
  width: 70%;
  margin: 0 auto;
}
.cta__btn {
  position: relative;
  width: 100%;
  margin-top: 24px;
}
.cta__btn p {
  display: inline-block;
  border-radius: 100vh;
  padding: 4px 1.8em;
  font-size: 1.125rem;
  font-weight: var(--f-weight-semibold);
  background-color: var(--c-yellow);
  position: relative;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.cta__btn a {
  position: relative;
  display: block;
  font-size: 1.5rem;
  color: var(--c-white);
  font-weight: var(--f-weight-semibold);
  text-align: center;
  background-color: var(--c-blue);
  border-radius: 4px;
  box-shadow: 0 5px 0 #014a8b;
  padding: 28px 0;
  margin-top: -12px;
}
@media screen and (max-width: 767px) {
  .cta__btn a {
    font-size: 1.125rem;
  }
}
.cta__btn a:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 #014a8b;
}
.cta__btn a::before {
  content: "";
  display: inline-block;
  background-image: url(../img/cta__human.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 58px;
  height: 58px;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .cta__btn a::before {
    width: 48px;
    height: 48px;
    left: 18px;
  }
}

.reason {
  background-image: url(../img/reason__bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.reason__inner {
  padding: 80px 24px 80px;
}
.reason__item {
  margin-bottom: 80px;
}
.reason__item:last-child {
  margin-bottom: 0;
}
.reason__ttl-sub {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  line-height: 1.8;
  margin-top: -18px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .reason__ttl-sub {
    font-size: 1.125rem;
  }
}
.reason__ttl-sub span {
  background-color: var(--c-blue);
  padding: 0 8px;
}
.reason__img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.reason__txt {
  font-size: 1rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .reason__txt {
    font-size: 0.875rem;
  }
}

.faq {
  background-color: var(--c-blue);
}
.faq__inner {
  padding: 80px 24px 80px;
}
.faq .sec-ttl-en {
  color: var(--c-white);
}
.faq__ttl {
  color: var(--c-white);
}
.faq__item {
  margin-bottom: 40px;
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__item-ttl {
  position: relative;
  background-color: var(--c-white);
  font-size: 1.125rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-b-base);
  padding: 16px 40px 16px 40px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__item-ttl {
    font-size: 1rem;
  }
}
.faq__item-ttl::before {
  content: "Q";
  display: inline-block;
  font-size: 1.2em;
  color: var(--c-blue);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.faq__item-ttl::after {
  content: "";
  background-image: url(../img/more-plus.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.faq__item-ttl.is-active::after {
  content: "";
  background-image: url(../img/more-minus.svg);
  transform: translateY(-15%);
  height: 4px;
}
.faq__item-txt {
  font-size: 1rem;
  color: var(--c-white);
  padding: 18px 0;
  display: none;
}
@media screen and (max-width: 767px) {
  .faq__item-txt {
    font-size: 0.875rem;
  }
}

/* ここからLP
------------------------------------------------------------*/
.slick-dots li.slick-active button::before {
  color: var(--c-brand) !important;
  opacity: 1;
}

iframe {
  border: none;
}/*# sourceMappingURL=style.css.map */