@charset "UTF-8";
:root {
  --fontBase: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  --fontIstokWeb: "Istok Web", sans-serif;
  --fontSizeBase: 16px;
  --fontWeight500: 500;
  --fontWeight700: 700;
  --lineHeight: 1.6;
  --colorTextPrimary: #222222;
  --colorTextSecondary: #ffffff;
  --colorTertiary: #64aecd;
  --colorQuaternary: #bc4b92;
  --colorBgPrimary: #ffffff;
  --colorBgSecondary: #0a1d37;
  --colorBgTertiary: #ffa9df;
  --colorBgQuaternary: #ffdff3;
  --colorBgQuinary: #bc4b92;
  --colorAccentPrimary: #31C301;
  --colorAccentSecondary: #fa7670;
  --colorAccentTertiary: #3995ba;
  --colorAccentQuaternary: #f8f86f;
  --colorAccentQuinary: #ffa9df;
  --shadowPrimary: #dddddd;
}

/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-size: var(--fontSizeBase);
  font-weight: var(--fontWeight500);
  line-height: var(--lineHeight);
  font-family: var(--fontBase);
  color: var(--colorTextPrimary);
  background: var(--colorBgPrimary);
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

li,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

button {
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: none;
  border-radius: 0;
}

.bg {
  position: relative;
}

.grid {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
}
@media (min-width: 480px) {
  .grid {
    grid-template-columns: 1fr 480px 1fr;
  }
}
.sub-head {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--colorBgTertiary);
}
.sub-head .sub-head__heading2 {
  order: 2;
  margin-top: 10px;
  text-align: center;
  font-weight: var(--fontWeight700);
}
.sub-head .sub-head__heading2 .is-title {
  line-height: 1;
  font-size: 2.1875rem;
  font-family: var(--fontIstokWeb);
  color: var(--colorQuaternary);
}
.sub-head .sub-head__heading2 .is-sub-title {
  color: var(--colorTextSecondary);
}
.sub-head .sub-head__icon {
  width: 12px;
}

.header {
  position: fixed;
  top: 0;
  /* left: 50%;
  transform: translateX(-50%); */
  width: 100%;
  height: 60px;
  background: transparent;
  z-index: 999;
  max-width: 480px;
}
.header .header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 12px;
}
.header .header__logo {
  width: 33px;
}
.header .header__nav--items {
  display: flex;
}
.header .header__nav--item {
  width: 60px;
}
.header .header__nav--item a {
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.header .header__nav--item:nth-child(1) a {
  background: var(--colorAccentPrimary);
}
.header .header__nav--item:nth-child(2) a {
  background: var(--colorAccentSecondary);
}
.header .header__nav--item:nth-child(3) a {
  background: var(--colorAccentTertiary);
}
.header .header__nav--item a img {
  width: 30px;
}
.header .header__nav--item:nth-child(1) a img {
  width: 50px;
}

.fv {
  position: relative;
  height: 490px;
  background: url(../img/index/fv/fv.jpg) no-repeat center center/cover;
}
.fv::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 164px;
  background: url(../img/index/fv/fv_cast.png) no-repeat center center/contain;
  z-index: 1;
}
.fv .fv__content {
  position: relative;
  padding-top: 100px;
  padding-left: 15px;
  z-index: 10;
}
.fv .fv__heading2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fv .fv__heading2 span {
  width: fit-content;
  font-weight: var(--fontWeight700);
  padding: 3px 10px;
  font-size: 30px;
  color: var(--colorTextSecondary);
  background: var(--colorBgSecondary);
}

.induction {
  padding-top: 80px;
}
.induction .induction__inner {
  padding-left: 20px;
  padding-right: 20px;
}
.induction .induction__head--heading2 {
  position: relative;
  padding-left: 38px;
  font-size: 24px;
  font-weight: var(--fontWeight700);
  color: var(--colorTertiary);
}
.induction .induction__head--heading2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 15px;
  height: 25px;
  background: url(../img/_common/icon/icon_drop.svg) no-repeat center center/contain;
}
.induction .induction__items {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (min-width: 576px) {
  .induction .induction__items {
    gap: 40px 20px;
  }
}
.induction .induction--item a {
  position: relative;
  z-index: 10;
  max-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--shadowPrimary);
  border: 5px solid var(--colorAccentQuaternary);
  transition: all 0.3s ease;
}
@media (any-hover: hover), (hover: hover) and (pointer: fine) {
  .induction .induction--item a:hover, .induction .induction--item a:focus {
    background: var(--colorAccentQuaternary);
  }
}

.privilege .privilege__head {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--colorBgTertiary);
}
.privilege .privilege__head--heading2 {
  order: 2;
  margin-top: 10px;
  text-align: center;
  font-weight: var(--fontWeight700);
}
.privilege .privilege__head--heading2 .is-title {
  line-height: 1;
  font-size: 2.1875rem;
  font-family: var(--fontIstokWeb);
  color: var(--colorQuaternary);
}
.privilege .privilege__head--heading2 .is-sub-title {
  color: var(--colorTextSecondary);
}
.privilege .privilege__head--icon {
  order: 1;
  width: 12px;
}
.privilege .privilege__boxes {
  padding-block: 50px 66px;
  background: var(--colorBgQuaternary);
}
.privilege .privilege__boxes--inner {
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.privilege .privilege__box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.privilege .privilege__box--heading3 {
  order: 1;
  position: relative;
  text-align: center;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: var(--fontWeight700);
  font-size: 1.125rem;
  background: var(--colorBgPrimary);
  border-radius: 30px;
  line-height: 1.2;
}
.privilege .privilege__box--heading3::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  width: 12px;
  height: 19px;
  background: url(../img/_common/icon/icon_drop-gray.png) no-repeat center center/contain;
}
.privilege .privilege__box--heading3 span {
  font-size: 0.875rem;
}
.privilege .privilege__box--text {
  order: 3;
  font-size: 0.9375rem;
}
.privilege .privilege__box--text p span,
.privilege .privilege__box--text p strong {
  background: var(--colorAccentQuaternary);
}
.privilege .privilege__box--image {
  order: 2;
}

.qa .qa__boxes {
  padding-block: 50px;
  background: var(--colorBgQuaternary);
}
.qa .qa__boxes--inner {
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qa .qa__box {
  padding: 16px 16px 20px 16px;
  background: var(--colorBgPrimary);
  border: 3px solid var(--colorAccentQuinary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: var(--fontWeight700);
}
.qa .qa__box dt .qa__box--head,
.qa .qa__box dd .qa__box--head {
  display: inline-block;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  border-radius: 50%;
  color: var(--colorTextSecondary);
}
.qa .qa__box dt {
  padding-bottom: 10px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--colorAccentQuinary);
}
.qa .qa__box dt.--1line {
  align-items: center;
}
.qa .qa__box dt .qa__box--head {
  background: var(--colorBgQuinary);
}
.qa .qa__box dt .qa__box--title {
  width: calc(100% - 30px);
  line-height: 1.5;
}
.qa .qa__box dd {
  padding-top: 10px;
  display: flex;
  gap: 8px;
}
.qa .qa__box dd .qa__box--head {
  background: var(--colorBgTertiary);
}
.qa .qa__box dd .qa__box--body {
  width: calc(100% - 30px);
  line-height: 1.5;
}
.qa .qa__box dd .qa__box--body small {
  display: inline-block;
}
.qa .qa__box dd .qa__box--body small.is-inline {
  display: inline;
}

.footer {
  margin-top: 100px;
  padding: 90px 20px 31px;
  color: var(--colorTextSecondary);
  background: var(--colorBgSecondary);
}
.footer .footer__logo {
  width: 268px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.footer .footer__copy-right {
  margin-top: 170px;
  text-align: center;
  letter-spacing: 0.08em;
}