@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=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;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,
main {
  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: "Noto Sans JP", sans-serif;
  --f-family-en: "Barlow", sans-serif;
  --f-font-size: 16px;
  --f-line-height: 1.4;
  --f-letter-spacing: 0.06em;
  --f-weight-regular: 400;
  --f-weight-medium: 500;
  --f-weight-semibold: 600;
  --f-weight-bold: 700;
  --f-weight-black: 900;
  --c-base: #1f1f1f;
  --c-white: #ffffff;
  --c-red:#E94638;
  --c-orange:#ea5514;
  --c-green:#036f03;
  --c-light_green:#43a047;
  --c-gold: #c6ae3f;
  --c-deep_gold: #b99d1f;
  --c-blue: #00265e;
  --c-yellow: #eed700;
  --c-gray:#eeeeee;
  --c-deep_gray:#efefef;
  --c-bg_black: #313131;
  --c-required: #990000;
  --c-error:#d23d2a;
  --c-bg_error:#ffe5e5;
  --c-link: #3273dc;
  --c-base-rgb: 26, 26, 26;
}

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-regular);
  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;
}

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

.is-pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}
.is-pc--inleine {
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .sp-block {
    display: inline-block;
  }
}

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

/* コンテナー
------------------------------------------------------------*/
/* components
------------------------------------------------------------*/
.cta-btn {
  margin: 120px auto 0;
  text-align: center;
  width: 580px;
  background-color: #111;
  border: solid 8px var(--c-white);
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .cta-btn {
    width: 340px;
    margin-top: 80px;
    border: solid 4px var(--c-white);
  }
}
@media screen and (max-width: 320px) {
  .cta-btn {
    width: 95%;
  }
}
.cta-btn a {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  padding: 32px 0;
}
.cta-btn a::before {
  content: "";
  display: inline-block;
  background-image: url(../images/logo-fennel-symbol.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}
.cta-btn a::after {
  content: "";
  display: inline-block;
  background-image: url(../images/triangle-animation-tate.gif);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .cta-btn a {
    font-size: 1.125rem;
    padding: 24px 0;
  }
  .cta-btn a::before {
    content: "";
    width: 18px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
  }
}

.form-scroll {
  content: "";
  display: inline-block;
  background-image: url(../images/bnr-fixd.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 160px;
  height: 160px;
  z-index: 100;
  animation: rotateAnimation 20s linear infinite;
  opacity: 0;
  visibility: hidden;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35));
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
}
.form-scroll:hover {
  transform: scale(1.05);
}
.form-scroll.is-visible {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .form-scroll {
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
  }
}

/* header
------------------------------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  background-color: transparent;
}
.header__logo {
  width: 260px;
  height: 80px;
  padding: 16px 20px;
  background-color: var(--c-white);
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header__logo {
    padding: 12px 16px;
    width: 200px;
    height: 60px;
  }
}
.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  transform: translateX(100%);
  transition: transform 0.8s ease;
  z-index: 90;
  padding: 160px 0 160px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    transition: transform 0.4s ease;
    padding: 120px 16px 80px;
  }
}
.header__nav.is-open {
  transform: translateX(0);
}
.header__nav-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__item {
  border-top: solid 1px #333;
  padding: 24px 24px;
}
@media screen and (max-width: 768px) {
  .header__item {
    padding: 16px 16px;
  }
}
.header__item:last-child {
  margin-bottom: 0;
  border-bottom: solid 1px #333;
}
.header__item:hover {
  letter-spacing: 0.08em;
}
.header__link {
  position: relative;
  display: block;
  padding-right: 48px;
}
@media screen and (max-width: 768px) {
  .header__link {
    padding-right: 24px;
  }
}
.header__link::after {
  content: "";
  display: inline-block;
  background-image: url(../images/triangle-animation-yoko.gif);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header__link::after {
    width: 25px;
    height: 15px;
  }
}
.header__link span {
  font-size: 1.25rem;
  font-weight: var(--f-weight-bold);
  color: var(--c-white);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__link span {
    font-size: 1rem;
  }
}
.header__link span:hover {
  color: var(--c-red);
}
.header__bottom {
  margin-top: 40px;
  display: flex;
  gap: 24px;
}
.header__bottom .-benext {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .header__bottom .-benext {
    width: 100px;
  }
}
.header__bottom .-fennel {
  width: 60px;
}
@media screen and (max-width: 768px) {
  .header__bottom .-fennel {
    width: 45px;
  }
}

.hamburger {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #111;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 70px;
    height: 60px;
  }
}
.hamburger__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 20px;
}
.hamburger__wrap::after {
  content: "MENU";
  display: block;
  width: 100%;
  font-size: 0.75rem;
  color: var(--c-white);
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-bold);
  line-height: 1;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .hamburger__wrap::after {
    font-size: 0.625rem;
  }
}
.hamburger__wrap span {
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  background-color: var(--c-white);
  width: 100%;
  z-index: 10;
}
.hamburger__wrap span:nth-last-of-type(1) {
  top: -4px;
}
.hamburger__wrap span:nth-last-of-type(2) {
  top: 4px;
}
.hamburger__wrap span:nth-last-of-type(3) {
  top: 12px;
}
.hamburger.open .hamburger__wrap::after {
  content: "CLOSE";
}
.hamburger.open .hamburger__wrap span:nth-last-of-type(1) {
  transform: translate(-50%, -50%) rotate(25deg);
  top: 2px;
}
.hamburger.open .hamburger__wrap span:nth-last-of-type(2) {
  opacity: 0;
}
.hamburger.open .hamburger__wrap span:nth-last-of-type(3) {
  transform: translate(-50%, -50%) rotate(-25deg);
  top: 2px;
}

/* footer
------------------------------------------------------------*/
.footer {
  position: relative;
  background-color: var(--c-bg_black);
  padding: 60px 16px;
  text-align: center;
}
.footer__link {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__link {
    flex-direction: column;
  }
}
.footer__link-logo {
  background-color: var(--c-white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 20px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__link-logo {
    width: 100%;
    height: 100px;
  }
}
.footer__link-logo::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 30px solid var(--c-red);
  position: absolute;
  bottom: 10px;
  right: 10px;
  transition: bottom 0.3s ease, right 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer__link-logo::after {
    bottom: 4px;
    right: 4px;
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 20px solid var(--c-red);
  }
}
.footer__link-logo:hover::after {
  bottom: 0;
  right: 0;
}
.footer__link-logo:last-child {
  background-color: #111;
}
.footer__link-logo:last-child::after {
  border-bottom: 30px solid var(--c-white);
}
@media screen and (max-width: 768px) {
  .footer__link-logo:last-child::after {
    border-bottom: 20px solid var(--c-white);
  }
}
.footer__link .-benext {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .footer__link .-benext {
    width: 164px;
  }
}
.footer__link .-fennel {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .footer__link .-fennel {
    width: 68px;
  }
}
.footer__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__list {
    flex-wrap: wrap;
  }
}
.footer__item {
  font-size: 1rem;
  font-weight: var(--f-weight-semibold);
  font-family: var(--f-family-en);
  color: var(--c-white);
  padding: 0 1.2em;
  border-right: solid 1px var(--c-white);
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer__item {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }
}
.footer__item:last-child {
  border-right: none;
}
.footer__logo {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin-bottom: 24px;
  }
}
.footer__logo:first-child {
  margin-right: 24px;
}
.footer__logo .-benext {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .footer__logo .-benext {
    width: 120px;
  }
}
.footer__logo .-fennel {
  width: 60px;
}
@media screen and (max-width: 768px) {
  .footer__logo .-fennel {
    width: 50px;
  }
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 0.625rem;
  }
}

/* modal
------------------------------------------------------------*/
/* form
------------------------------------------------------------*/
.form {
  position: relative;
  z-index: 1;
  background-color: var(--c-bg_black);
  padding: 80px 0 160px;
}
@media screen and (max-width: 768px) {
  .form {
    padding: 40px 0 100px;
  }
}
.form__ttl {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  margin-bottom: 40px;
}
.form__ttl img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .form__ttl img {
    width: 80%;
  }
}
.form__inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .form__inner {
    padding: 0 16px;
  }
}
.form__wrap {
  padding: 80px 3.2%;
  background-color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .form__wrap {
    padding: 60px 2.5%;
  }
}
.form a {
  color: var(--c-red);
  text-decoration: underline;
}
.form__list {
  background-color: var(--c-white);
  display: flex;
  gap: 8px;
}
.form__item {
  width: 33.3%;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #eee;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form__item:nth-child(1) {
    width: 100%;
  }
  .form__item:nth-child(2), .form__item:nth-child(3) {
    display: none;
  }
}
.form__item.-active {
  background-color: var(--c-base);
}
.form__item.-active::after {
  border-bottom: 20px solid var(--c-red);
}
@media screen and (max-width: 768px) {
  .form__item.-active::after {
    content: none;
  }
}
.form__item::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #aaa;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -16px;
  transform: translateY(-50%) rotate(90deg);
}
.form__item:last-child::after {
  content: none;
}
.form__item img {
  display: block;
  width: 100px;
}
.form__item p {
  font-size: 1.125rem;
  color: var(--c-white);
  font-weight: var(--f-weight-bold);
  margin-top: 4px;
}

.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.5rem;
  text-align: center;
  font-weight: var(--f-weight-medium);
  width: 100%;
}
.c-form__button button {
  color: var(--c-white);
  line-height: 1;
  border-radius: 100vh;
  display: inline-block;
  height: 64px;
  padding: 0 64px;
  background-color: var(--c-red);
}
.c-form__button input {
  display: inline-block;
  height: 64px;
  background-color: var(--c-orange);
  box-shadow: 0 5px 0 #b8400b;
  transition: 0.4s;
  color: var(--c-white);
  width: 100%;
}
.c-form__button input:hover {
  opacity: 1;
  transform: translateY(4px);
  box-shadow: 0 5px 0 var(--c-orange);
}
.c-form__button .-back {
  width: 50%;
  color: var(--c-base);
  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 .column {
  display: flex;
  gap: 12px;
  align-items: end;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-form .column {
    gap: 8px;
  }
  .c-form .column .width250 {
    max-width: 50% !important;
  }
}
.c-form .column .radio__wrap, .c-form .column .column__wrap {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-form .column .radio__wrap, .c-form .column .column__wrap {
    margin-bottom: 12px;
  }
}
.c-form .input-error {
  border: solid 2px var(--c-error) !important;
  background-color: var(--c-bg_error) !important;
}

.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.4em 0.4em;
  background-color: var(--c-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__title-sub {
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.c-form__group__box__title-sub2 {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--c-white);
  background-color: var(--c-base);
  padding: 0.2em 0.4em;
  margin-bottom: 4px;
}
.c-form__group__box__radio {
  cursor: pointer;
  margin-left: 1em;
  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-deep_gray);
  width: 20px;
  height: 20px;
  left: 0;
}
.c-form__group__box__radio::after {
  background-color: var(--c-red);
  width: 12px;
  height: 12px;
  left: 4px;
  opacity: 0;
}
.c-form__group__box__note {
  font-size: 0.875rem;
  margin-top: 8px;
}
.c-form__group__box__note .marker {
  font-weight: var(--f-weight-semibold);
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.5);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}
.c-form__group__box__error {
  font-size: 0.875rem;
  color: var(--c-required);
  padding-top: 0.4em;
}
.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 select,
.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;
  color: var(--c-base);
  width: 100%;
  height: 55px;
  background-color: var(--c-deep_gray);
  border-radius: 4px;
  padding: 1em;
}
.c-form__group__box select::placeholder,
.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;
}
@media screen and (max-width: 768px) {
  .c-form__group__box select,
  .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: 0.9375rem;
  }
}
.c-form__group__box textarea {
  font-size: 1rem;
  width: 100%;
  min-height: 180px;
  background-color: var(--c-deep_gray);
  border-radius: 4px;
  padding: 1em;
}
.c-form__group__box textarea::placeholder {
  color: #9b9c9b;
}
@media screen and (max-width: 768px) {
  .c-form__group__box textarea {
    font-size: 0.9375rem;
  }
}
.c-form__group__box input[type=checkbox] {
  width: 24px;
  height: 24px;
  background-color: var(--c-deep_gray);
  transform: translateY(0.45em);
}
.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-red);
  border-bottom: 4px solid var(--c-red);
  content: "";
}
.c-form__group__box .radio__wrap {
  margin-bottom: 12px;
}
.c-form__group__box .radio__wrap:last-child {
  margin-bottom: 0;
}
.c-form__group__box .radio__wrap input[type=radio]:checked + label {
  font-weight: var(--f-weight-semibold);
}
.c-form__group__box .radio__wrap label {
  display: inline-block;
  width: 100%;
  background-color: var(--c-deep_gray);
  padding: 1em 1em 1em 40px;
  border-radius: 4px;
}
.c-form__group__box .radio__wrap label::before {
  background-color: var(--c-white);
  border: solid 2px var(--c-red);
  width: 24px;
  height: 24px;
  left: 8px;
}
.c-form__group__box .radio__wrap label::after {
  background-color: var(--c-red);
  width: 14px;
  height: 14px;
  left: 13px;
  opacity: 0;
}
.c-form__group__box .checkbox__wrap {
  display: flex;
  align-items: baseline;
}
.c-form__group__box .checkbox__wrap input {
  margin-right: 12px;
}
.c-form__group__box .checkbox__wrap label {
  flex: 1;
}

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% - 4px);
  right: 4%;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
}

select {
  position: relative;
  width: 100%;
}
select::after {
  position: absolute;
  display: block;
  content: "";
  border-bottom: solid 2px #ccc;
  border-right: solid 2px #ccc;
  top: calc(50% - 4px);
  right: 4%;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
}

td.ui-datepicker-week-end:first-child a.ui-state-default {
  background-color: #ffecec;
  color: #f00 !important;
}
td.ui-datepicker-week-end:last-child a.ui-state-default {
  background-color: #eaeaff;
  color: #00f !important;
}
td.ui-datepicker-week-end a.ui-state-hover {
  opacity: 0.8;
}
td.ui-datepicker-week-end a.ui-state-highlight {
  background-color: #fffa90 !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.width250 {
  width: 250px !important;
}

.cnfirm__txt {
  font-size: 1rem;
  color: var(--c-base);
  width: 100%;
  background-color: var(--c-deep_gray);
  border-radius: 4px;
  padding: 1em;
}
.cnfirm__btn {
  margin-bottom: 24px;
}

/* thanks
------------------------------------------------------------*/
.thanks {
  padding: 160px 0 160px;
  background-color: var(--c-bg_black);
}
@media screen and (max-width: 768px) {
  .thanks {
    padding: 120px 0 80px;
  }
}
.thanks__ttl {
  font-size: 1.875rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .thanks__ttl {
    font-size: 1.5rem;
  }
}
.thanks__catch {
  font-size: 1.125rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .thanks__catch {
    font-size: 1rem;
    margin-bottom: 36px;
  }
}
.thanks__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}
.thanks__wrap {
  background-color: var(--c-white);
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .thanks__wrap {
    margin-bottom: 60px;
  }
}
.thanks .form__list {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .thanks .form__list {
    margin-bottom: 60px;
  }
}
.thanks .form__list-wrap {
  padding: 0 8px;
}
@media screen and (max-width: 768px) {
  .thanks .form__item:nth-child(2) {
    width: 100%;
    display: flex;
  }
  .thanks .form__item:nth-child(1), .thanks .form__item:nth-child(3) {
    display: none;
  }
}
.thanks__txt {
  font-size: 1rem;
  font-weight: var(--f-weight-semibold);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.2em;
}
.thanks__txt:last-child {
  margin-bottom: 0;
}
.thanks__txt .-large {
  font-size: 1.25em;
}
.thanks__txt .-marker {
  font-size: 1.2em;
  background: linear-gradient(transparent 70%, #fbed72 0%);
}
.thanks__txt.-fw-normal {
  font-weight: var(--f-weight-medium);
}
@media screen and (max-width: 768px) {
  .thanks__txt {
    font-size: 0.875rem;
  }
}
.thanks__txt2 {
  font-size: 1.25rem;
  font-weight: var(--f-weight-semibold);
  text-align: center;
  line-height: 1.6;
  color: var(--c-red);
  margin-top: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .thanks__txt2 {
    font-size: 1.125rem;
  }
}
.thanks .btn-box {
  text-align: center;
  margin: 0 auto;
}
.thanks .btn-box span {
  display: block;
  font-size: 1.125rem;
  font-weight: var(--f-weight-semibold);
  margin-bottom: 4px;
}
.thanks .tanks-btn {
  display: inline-block;
  font-size: 1.25rem;
  color: var(--c-white);
  text-align: center;
  font-weight: var(--f-weight-semibold);
  width: 100%;
  max-width: 400px;
  padding: 24px 0;
  background-color: #06C755;
  box-shadow: 0 5px 0 #00953e;
  transition: 0.4s;
}
.thanks .tanks-btn.-back {
  background-color: #e3e3e3;
  box-shadow: 0 5px 0 #b1b1b1;
  margin-top: 40px;
}
.thanks .tanks-btn.-back:hover {
  opacity: 1;
  transform: translateY(4px);
  box-shadow: 0 5px 0 #e3e3e3;
}
.thanks .loader {
  margin: 40px auto 40px;
  height: 15px;
  aspect-ratio: 5;
  display: grid;
  animation: l39-0 1s infinite linear;
}
.thanks .loader:before,
.thanks .loader:after {
  content: "";
  width: 46.6666666667%;
  grid-area: 1/1;
  --_g: no-repeat radial-gradient(farthest-side,#06C755 94%,#0000);
  background: var(--_g) left, var(--_g) right;
  background-size: 42.8571428571% 100%;
  animation: l39-1 1s infinite linear;
}
.thanks .loader:after {
  margin-left: auto;
  --s:-1;
}
@keyframes l39-0 {
  0%, 30% {
    transform: rotate(0);
  }
  50%, 100% {
    transform: rotate(0.5turn);
  }
}
@keyframes l39-1 {
  30%, 70% {
    transform: translate(calc(var(--s, 1) * 400% / 14));
  }
}

/* TOP
------------------------------------------------------------*/
.mv {
  position: relative;
  z-index: 1;
  background-color: var(--c-bg_black);
  width: 100%;
  overflow: hidden;
}
.mv__inner {
  position: relative;
}
.mv__slide {
  height: 100%;
}
.mv__slide .slick-slide {
  height: 100%;
}
.mv__item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.mv__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.mv__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.8) rotate(-6deg);
  transition: transform 4s ease;
  position: relative;
  z-index: 0;
}
.mv__item.slick-active img {
  transform: scale(1) rotate(0deg);
}
.mv__info {
  max-width: 1000px;
  padding: 0 100px;
  position: absolute;
  bottom: 14vh;
}
@media screen and (max-width: 768px) {
  .mv__info {
    padding: 0 20px;
    bottom: 12vh;
  }
}
.mv__ttl {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .mv__ttl {
    width: 80%;
  }
}
.mv__txt {
  font-size: 1.125rem;
  font-weight: var(--f-weight-bold);
  color: var(--c-white);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .mv__txt {
    font-size: 0.875rem;
  }
}
.mv__decoration {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  direction: rtl;
  font-size: 2.5rem;
  color: var(--c-red);
  -webkit-text-stroke: 1px #fff;
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-black);
  background-color: var(--c-red);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
}
.mv__decoration .slick-track {
  display: flex !important;
}
.mv__decoration__item {
  direction: ltr;
  display: inline-block;
  width: auto;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0 10px;
}
.mv__decoration__item span {
  display: inline-block;
  padding: 4px 28px;
  position: relative;
  white-space: nowrap;
}
.mv__decoration__item span::after {
  content: "";
  background-image: url(../images/bnt-angle_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.5em;
  height: 0.6em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-45%);
}

.recruit {
  position: relative;
  z-index: 1;
  background-image: url(../images/recruit__bg.jpg);
  background-repeat: round;
  background-size: contain;
  padding: 160px 0;
}
@media screen and (max-width: 768px) {
  .recruit {
    padding: 80px 0;
  }
}
.recruit__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit__inner::before {
    content: "";
    background-color: transparent;
    position: absolute;
    padding: 0 2px;
    border-left: solid 4px var(--c-red);
    border-right: solid 4px var(--c-red);
    width: 5px;
    height: calc(100% - 112px);
    top: 0;
    left: 8px;
  }
}
@media screen and (max-width: 768px) {
  .recruit__inner::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 14px solid var(--c-red);
    position: absolute;
    bottom: 108px;
    left: 9px;
    transform: translateX(-13%) rotate(45deg);
  }
}
.recruit__catch {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #111;
  box-shadow: inset 0px 0px 32px 16px rgba(255, 255, 255, 0.15);
  padding: 64px 0 104px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .recruit__catch {
    box-shadow: inset 0px 0px 28px 12px rgba(255, 255, 255, 0.15);
    padding: 32px 0 40px;
  }
}
.recruit__catch::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/noise.gif);
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
}
.recruit__catch img {
  transform: scale(2);
  filter: blur(10px);
  opacity: 0;
  transition: none;
}
.recruit__catch-wrap {
  padding: 0 4%;
  margin: 0 auto;
  transform: rotate(-2.5deg);
}
@media screen and (max-width: 768px) {
  .recruit__catch-wrap {
    padding: 0 4%;
  }
}
.recruit__catch-txt .-catch {
  display: block;
  width: 40%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .recruit__catch-txt .-catch {
    width: 100%;
  }
}
.recruit__contents-wrap {
  max-width: 1240px;
  margin: 0 auto;
}
.recruit__ttl {
  position: relative;
  width: 680px;
  margin: 200px auto 0;
}
@media screen and (max-width: 768px) {
  .recruit__ttl {
    width: 82%;
    margin: 100px auto 0;
  }
}
.recruit__ttl::before {
  content: "";
  display: inline-block;
  background-image: url(../images/logo-benext-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 300px;
  height: 100px;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .recruit__ttl::before {
    width: 160px;
    height: 140px;
    top: -60px;
  }
}
.recruit__box {
  position: relative;
  padding-bottom: 40px;
}
.recruit__box::before {
  content: "";
  background-color: transparent;
  position: absolute;
  padding: 0 5px;
  border-left: solid 10px var(--c-red);
  border-right: solid 10px var(--c-red);
  width: 10px;
  height: calc(100% - 20px);
  top: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .recruit__box::before {
    content: none;
  }
}
.recruit__box::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 40px solid var(--c-red);
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-13%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .recruit__box::after {
    content: none;
  }
}
.recruit__list {
  padding-top: 100px;
}
.recruit__item {
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  .recruit__item {
    flex-direction: column;
    margin-bottom: 80px;
    padding: 0 16px 16px 40px;
  }
}
.recruit__item::before {
  content: "";
  display: inline-block;
  border: 1px dashed var(--c-red);
  width: 225px;
  position: absolute;
  top: 18px;
  left: 400px;
  right: auto;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .recruit__item::before {
    width: 40px;
    top: 14px;
    left: 30px;
  }
}
.recruit__item.-reverse {
  flex-direction: row-reverse;
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  .recruit__item.-reverse {
    margin-top: 0;
  }
}
.recruit__item.-reverse::before {
  content: "";
  display: inline-block;
  border: 1px dashed var(--c-red);
  width: 190px;
  position: absolute;
  top: 18px;
  left: auto;
  right: 400px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .recruit__item.-reverse::before {
    width: 40px;
    top: 14px;
    left: 30px;
  }
}
.recruit__item:nth-child(even) .recruit__item-wrap::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 30px solid var(--c-red);
  position: absolute;
  right: 0;
  left: auto;
  animation: blink 2s infinite;
}
@media screen and (max-width: 768px) {
  .recruit__item:nth-child(even) .recruit__item-wrap::after {
    border-left: 18px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 18px solid var(--c-red);
    right: 0;
    left: auto;
  }
}
.recruit__item:nth-child(odd) .recruit__item-wrap::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid var(--c-red);
  position: absolute;
  bottom: -24px;
  left: 0;
  animation: blink 2s infinite;
}
@media screen and (max-width: 768px) {
  .recruit__item:nth-child(odd) .recruit__item-wrap::after {
    border-left: 18px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 18px solid var(--c-red);
    bottom: -24px;
    left: auto;
    right: 0;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.recruit__item:last-child {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .recruit__item:last-child {
    margin-bottom: 40px;
  }
}
.recruit__item-wrap {
  position: relative;
  width: 45%;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .recruit__item-wrap {
    width: 100%;
    padding-bottom: 8px;
  }
}
.recruit__item-en {
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 1;
  font-weight: var(--f-weight-black);
  font-family: var(--f-family-en);
  text-align: left;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-red);
  margin-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .recruit__item-en {
    font-size: 1.375rem;
    margin-bottom: 40px;
    text-align: right;
  }
}
.recruit__item-en.-reverse {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .recruit__item-en.-reverse {
    text-align: right;
  }
}
.recruit__item-ttl {
  font-size: 2.25rem;
  line-height: 1.4;
  font-weight: var(--f-weight-black);
  color: var(--c-red);
  text-align: left;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .recruit__item-ttl {
    font-size: 1.375rem;
    margin-bottom: 14px;
  }
}
.recruit__item-ttl.-reverse {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .recruit__item-ttl.-reverse {
    text-align: left;
  }
}
.recruit__item-ttl span {
  background-color: var(--c-white);
}
.recruit__item-txt {
  font-size: 1.125rem;
  color: var(--c-white);
  line-height: 1.6;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .recruit__item-txt {
    font-size: 1rem;
  }
}
.recruit .cta-btn {
  margin-top: 0;
  margin-bottom: 0;
}

.attempt {
  position: relative;
  z-index: 1;
  background-color: var(--c-bg_black);
  padding: 0 0 160px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .attempt {
    padding: 0 0 100px;
    margin-top: -80px;
  }
}
.attempt__inner {
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .attempt__inner {
    position: relative;
  }
}
.attempt__wrap {
  display: flex;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .attempt__wrap {
    flex-direction: column;
    gap: 60px;
    padding: 0 16px 16px 40px;
  }
}
.attempt__wrap::before {
  content: "";
  background-color: transparent;
  position: absolute;
  padding: 0 5px;
  border-left: solid 10px var(--c-red);
  border-right: solid 10px var(--c-red);
  width: 10px;
  height: var(--attempt-line-height);
  top: 336px;
  left: var(--before-left);
}
@media screen and (max-width: 768px) {
  .attempt__wrap::before {
    content: "";
    background-color: transparent;
    position: absolute;
    padding: 0 2px;
    border-left: solid 4px var(--c-red);
    border-right: solid 4px var(--c-red);
    width: 5px;
    height: calc(100% - 120px);
    top: 0;
    left: 8px;
  }
}
.attempt__wrap::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 40px solid var(--c-red);
  position: absolute;
  bottom: 340px;
  bottom: 280px;
  left: var(--before-left);
  transform: translateX(-13%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .attempt__wrap::after {
    border-left: 14px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 14px solid var(--c-red);
    left: 9px;
    bottom: 116px;
  }
}
.attempt__inner-left {
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: fit-content;
  padding-top: 80px;
  background-color: var(--c-bg_black);
}
@media screen and (max-width: 768px) {
  .attempt__inner-left {
    margin-left: -32px;
    padding-left: 8px;
    z-index: 10;
    width: calc(100% + 32px);
  }
}
.attempt__ttl {
  width: 500px;
  background-color: var(--c-bg_black);
}
@media screen and (max-width: 768px) {
  .attempt__ttl {
    width: 85%;
    margin-left: -8px;
  }
}
.attempt__inner-right {
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .attempt__inner-right {
    margin-top: 0;
  }
}
.attempt__info {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: solid 1px var(--c-red);
}
@media screen and (max-width: 768px) {
  .attempt__info {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
}
.attempt__info:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.attempt__info-img {
  display: block;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .attempt__info-img {
    margin-bottom: 24px;
  }
}
.attempt__info-ttl {
  font-size: 1.5rem;
  font-weight: var(--f-weight-black);
  color: var(--c-red);
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .attempt__info-ttl {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
}
.attempt__info-ttl span {
  display: inline-block;
  background-color: var(--c-white);
  padding: 0 0.4em;
}
.attempt__info-txt {
  font-size: 1rem;
  color: var(--c-white);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .attempt__info-txt {
    font-size: 0.875rem;
  }
}
.attempt__info-list {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
}
.attempt__info-list li {
  font-size: 1rem;
  font-weight: var(--f-weight-black);
  color: var(--c-white);
  background-color: #111;
  padding: 0 0.4em;
}
@media screen and (max-width: 768px) {
  .attempt__info-list li {
    font-size: 0.875rem;
  }
}

.result {
  background-color: var(--c-bg_black);
  padding: 160px 0 160px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .result {
    padding: 80px 0 80px;
  }
}
.result__fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-image: url(../images/result__bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: none !important;
  will-change: auto;
  backface-visibility: hidden;
}
.result__wrap {
  position: relative;
  z-index: 1;
}
.result__ttl {
  max-width: 1000px;
  margin: 0 auto 80px;
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .result__ttl {
    width: 90%;
    margin: 0 0 40px;
  }
}
.result__ttl .-ttl-decoration {
  width: 330px;
}
.result__inner {
  max-width: 1000px;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .result__inner {
    padding: 0 16px 0;
  }
  .result__inner .-decoration {
    width: 65%;
    margin: 0 auto 32px;
  }
}
.result__list {
  display: flex;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .result__list {
    flex-direction: column;
    gap: 32px;
  }
}
.result__item {
  width: 50%;
  background-color: var(--c-white);
  border-radius: 32px;
  padding: 24px;
  text-align: center;
  box-shadow: inset 0px 0px 26px 8px rgba(170, 170, 170, 0.8);
}
@media screen and (max-width: 768px) {
  .result__item {
    width: 100%;
  }
}
.result__box dt {
  font-size: 2rem;
  font-weight: var(--f-weight-black);
  color: var(--c-base);
  line-height: 1;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 768px) {
  .result__box dt {
    font-size: 1.5rem;
  }
}
.result__box dd {
  font-size: 8rem;
  font-weight: var(--f-weight-black);
  font-family: var(--f-family-en);
  color: var(--c-red);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .result__box dd {
    font-size: 6.25rem;
  }
}
.result__box dd span {
  font-size: 1.75rem;
  color: var(--c-base);
  font-family: var(--f-family-main);
}
@media screen and (max-width: 768px) {
  .result__box dd span {
    font-size: 1.25rem;
  }
}

.interview {
  position: relative;
  z-index: 1;
  background-color: var(--c-bg_black);
  padding: 160px 0 80px;
}
@media screen and (max-width: 768px) {
  .interview {
    padding: 0 0 80px;
  }
}
.interview__inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}
.interview__en {
  max-width: 1240px;
  margin: 0 auto;
  font-size: 6.875rem;
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-bold);
  color: var(--c-white);
  background-color: var(--c-red);
  line-height: 0.8;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .interview__en {
    writing-mode: unset;
    color: var(--c-white);
    font-size: 13.8666666667vw;
    margin-bottom: 48px;
    position: relative;
    opacity: 0.1;
    background-color: transparent;
    text-align: right;
  }
}
.interview__ttl {
  margin-bottom: 64px;
  width: 96%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .interview__ttl {
    margin-bottom: 40px;
  }
}
.interview__card {
  display: flex;
  justify-content: end;
  gap: 40px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .interview__card {
    flex-direction: column;
    padding: 0 16px;
  }
}
.interview__card-item {
  position: relative;
  width: 42%;
  display: flex;
  flex-direction: column;
  transform: skewX(-2.5deg);
  overflow: hidden;
}
.interview__card-item:nth-child(2) .interview__card-ttl {
  margin-top: -54px;
}
@media screen and (max-width: 768px) {
  .interview__card-item:nth-child(2) .interview__card-ttl {
    margin-top: -34px;
  }
}
@media screen and (max-width: 768px) {
  .interview__card-item {
    width: 100%;
    transform: skewX(-1.8deg);
  }
}
.interview__card-box {
  background-color: var(--c-red);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.interview__card-img {
  transform: skewX(3deg) scale(1.05);
}
@media screen and (max-width: 768px) {
  .interview__card-img {
    transform: skewX(1.8deg) scale(1.05);
  }
}
.interview__card-ttl {
  position: relative;
  font-size: 1.5rem;
  font-weight: var(--f-weight-semibold);
  text-align: right;
  color: var(--c-red);
  margin-top: -32px;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .interview__card-ttl {
    font-size: 1.25rem;
    margin-right: 8px;
    margin-top: -24px;
  }
}
.interview__card-ttl span {
  background-color: #111;
  padding: 0 10px;
}
.interview__card-info {
  padding: 18px 24px 80px;
}
@media screen and (max-width: 768px) {
  .interview__card-info {
    padding: 18px 18px 60px;
  }
}
.interview__card-name {
  transform: skewX(2.5deg);
  font-size: 1.25rem;
  color: var(--c-white);
  text-align: right;
  padding-bottom: 14px;
  border-bottom: solid 1px var(--c-white);
}
@media screen and (max-width: 768px) {
  .interview__card-name {
    font-size: 1.125rem;
    transform: skewX(1.8deg);
  }
}
.interview__card-name span {
  font-size: 0.8em;
}
.interview__card-txt {
  transform: skewX(2.5deg);
  font-size: 1rem;
  text-align: justify;
  line-height: 1.6;
  color: var(--c-white);
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .interview__card-txt {
    font-size: 0.875rem;
    transform: skewX(1.8deg);
  }
}
.interview__card-en {
  transform: skewX(2.5deg);
  font-size: 2.625rem;
  line-height: 1;
  text-align: right;
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-black);
  color: var(--c-white);
  opacity: 0.4;
  position: absolute;
  bottom: -4px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .interview__card-en {
    font-size: 2rem;
    transform: skewX(1.8deg);
    bottom: 0;
  }
}
.interview .cta-btn {
  margin-bottom: 0;
}

.benext {
  position: relative;
  z-index: 1;
  background-color: var(--c-red);
  padding: 160px 0 160px;
}
@media screen and (max-width: 768px) {
  .benext {
    padding: 0 0 80px;
  }
}
.benext__en {
  font-size: 8rem;
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-bold);
  color: var(--c-white);
  line-height: 1.2;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .benext__en {
    writing-mode: unset;
    font-size: 12.8vw;
    margin-bottom: 64px;
    position: relative;
  }
}
.benext__ttl {
  display: flex;
  justify-content: end;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .benext__ttl {
    flex-direction: column;
  }
}
.benext__ttl-logo {
  width: 18%;
  padding: 10px 32px;
  display: block;
  background-color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .benext__ttl-logo {
    width: 100%;
    padding: 12px 120px;
  }
}
.benext__ttl-catch {
  width: 72%;
  padding: 16px 180px 16px 32px;
  display: block;
  background-color: #595656;
}
@media screen and (max-width: 768px) {
  .benext__ttl-catch {
    width: 100%;
    padding: 24px 40px;
  }
}
.benext__inner {
  max-width: 950px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .benext__inner {
    padding: 0 16px 0;
  }
}
.benext__txt {
  font-size: 1.75rem;
  line-height: 1.6;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .benext__txt {
    font-size: 1.125rem;
  }
}
.benext___list {
  margin-bottom: 100px;
}
.benext__item {
  position: relative;
  background-color: var(--c-white);
  margin-bottom: 60px;
}
.benext__item:nth-child(1)::after {
  content: "01";
  font-size: 9.6875rem;
  -webkit-text-stroke: 2px #fff;
  color: var(--c-red);
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-bold);
  line-height: 1;
  position: absolute;
  top: -26px;
  left: -88px;
}
@media screen and (max-width: 768px) {
  .benext__item:nth-child(1)::after {
    font-size: 4rem;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.benext__item:nth-child(2)::after {
  content: "02";
  font-size: 9.6875rem;
  -webkit-text-stroke: 2px #fff;
  color: var(--c-red);
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-bold);
  line-height: 1;
  position: absolute;
  top: -26px;
  left: -88px;
}
@media screen and (max-width: 768px) {
  .benext__item:nth-child(2)::after {
    font-size: 4rem;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.benext__item:nth-child(3)::after {
  content: "03";
  font-size: 9.6875rem;
  -webkit-text-stroke: 2px #fff;
  color: var(--c-red);
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-bold);
  line-height: 1;
  position: absolute;
  top: -26px;
  left: -88px;
}
@media screen and (max-width: 768px) {
  .benext__item:nth-child(3)::after {
    font-size: 4rem;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.benext__item:nth-child(4)::after {
  content: "04";
  font-size: 9.6875rem;
  -webkit-text-stroke: 2px #fff;
  color: var(--c-red);
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-bold);
  line-height: 1;
  position: absolute;
  top: -26px;
  left: -88px;
}
@media screen and (max-width: 768px) {
  .benext__item:nth-child(4)::after {
    font-size: 4rem;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.benext__item:last-child {
  margin-bottom: 0;
}
.benext__item h3 {
  position: relative;
  font-size: 1.5rem;
  font-weight: var(--f-weight-bold);
  color: var(--c-red);
  text-align: center;
  padding: 20px 12px;
  border-bottom: solid 4px var(--c-red);
}
.benext__item h3::before {
  content: "";
  display: inline-block;
  background-image: url(../images/bnt-angle_red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 160px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .benext__item h3::before {
    width: 24px;
    height: 24px;
    left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .benext__item h3 {
    font-size: 1.125rem;
  }
}
.benext__item p {
  font-size: 1rem;
  color: var(--c-base);
  padding: 20px 120px;
}
@media screen and (max-width: 768px) {
  .benext__item p {
    font-size: 0.875rem;
    padding: 20px 12px;
  }
}

.flow {
  position: relative;
  z-index: 1;
  background-color: var(--c-bg_black);
  padding: 160px 0 80px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 80px 0 80px;
  }
}
.flow__ttl {
  max-width: 1240px;
  margin: 0 auto 40px;
}
.flow__ttl img {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .flow__ttl img {
    width: 95%;
  }
}
.flow__inner {
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .flow__inner {
    padding: 0 24px 0;
  }
}
.flow__list {
  display: flex;
  gap: 68px;
}
@media screen and (max-width: 768px) {
  .flow__list {
    flex-direction: column;
  }
}
.flow__list .flow__item:last-child::before {
  content: none;
}
.flow__item {
  position: relative;
  padding: 40px 32px;
  background-color: #111;
  border: solid 2px var(--c-white);
}
.flow__item::before {
  content: "";
  display: inline-block;
  background-image: url(../images/triangle-animation-yoko.gif);
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 70px;
  position: absolute;
  top: 50%;
  right: -56px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .flow__item::before {
    background-image: url(../images/triangle-animation-tate.gif);
    top: auto;
    width: 20px;
    height: 35px;
    bottom: -52px;
    left: 50%;
    transform: translateY(0%);
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .flow__item {
    padding: 30px 28px;
  }
  .flow__item:last-child {
    margin-bottom: 0;
  }
}
.flow__step {
  width: 180px;
  margin: 0 auto 20px;
}
.flow__description {
  font-size: 1rem;
  font-weight: var(--f-weight-bold);
  line-height: 1.6;
  text-align: center;
  color: var(--c-white);
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .flow__description {
    font-size: 0.875rem;
  }
}
.flow__description span {
  color: var(--c-white);
  background-color: var(--c-red);
}
.flow__txt {
  font-size: 1.5rem;
  font-weight: var(--f-weight-bold);
  text-align: center;
  color: var(--c-red);
  position: relative;
  margin-top: 64px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .flow__txt {
    font-size: 1rem;
  }
}
.flow__txt::after {
  content: "";
  display: inline-block;
  background-image: url(../images/triangle-animation-tate.gif);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 80px;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .flow__txt::after {
    width: 24px;
    height: 50px;
    bottom: -24px;
  }
}
.flow__txt span {
  background-color: var(--c-white);
}

/* ここからLP
------------------------------------------------------------*//*# sourceMappingURL=style.css.map */