@charset "UTF-8";
/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
input, textarea, button, header {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
  max-height: 999999px;
  outline: none;
  box-sizing: border-box;
  background: none;
}

button:focus {
  outline: 0;
}

ol, ul {
  list-style: none;
}

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
  text-decoration: none;
  outline: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  color: rgb(0, 0, 0);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
}
body.js-open {
  position: fixed;
}

a {
  font-weight: 500;
  color: rgb(51, 51, 51);
}

/* header */
.c-header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.3s;
}

.js-scrolled .c-header {
  background-color: rgb(255, 255, 255);
}

.c-header__body {
  display: block grid;
  align-items: center;
  grid-template-columns: 1fr 60px;
  height: 60px;
  padding-inline: 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .c-header__body {
    grid-template-columns: 1fr 245px 70px;
    height: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .c-header__body {
    grid-template-columns: 1fr 245px 80px;
    height: 80px;
  }
}
@media screen and (min-width: 1500px) {
  .c-header__body {
    grid-template-columns: 1fr 245px 90px;
    height: 90px;
    padding-inline: 2rem 0;
  }
}

.c-header__logo {
  position: relative;
  z-index: 60;
}

.c-header__logo-link {
  display: flex;
  width: 280px;
  transition: 0.3s;
}
.c-header__logo-link:hover {
  opacity: 0.5;
}
@media screen and (min-width: 476px) {
  .c-header__logo-link {
    width: 300px;
  }
}
@media screen and (min-width: 992px) {
  .c-header__logo-link {
    width: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .c-header__logo-link {
    width: 400px;
  }
}
@media screen and (min-width: 1500px) {
  .c-header__logo-link {
    width: 465px;
  }
}

.c-entry__button {
  height: 100%;
  display: none;
}
@media screen and (min-width: 768px) {
  .c-entry__button {
    display: block;
  }
}

.c-entry__button-link {
  display: block grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding-inline: 1.5rem 0;
  line-height: 1;
  color: rgb(255, 255, 255);
  border: 2px solid rgb(8, 86, 10);
  background-color: rgb(8, 86, 10);
  position: relative;
  transition: 0.3s;
}
.c-entry__button-link::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  right: 1.75rem;
  transform: translateY(-50%);
  rotate: 45deg;
  transition: 0.3s;
}
.c-entry__button-link:hover {
  color: rgb(8, 86, 10);
  background-color: rgb(255, 255, 255);
}
.c-entry__button-link:hover::after {
  border-top: 2px solid rgb(8, 86, 10);
  border-right: 2px solid rgb(8, 86, 10);
}

.c-entry__button-en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.375rem, 1.029rem + 0.96vw, 1.75rem);
}

.c-entry__button-jp {
  font-size: clamp(0.938rem, 0.88rem + 0.16vw, 1rem);
}

.c-header__menu {
  position: relative;
  z-index: 100;
}

.c-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: rgb(255, 255, 255);
  position: relative;
  z-index: 100;
}

.c-hamburger__body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1/1;
  position: relative;
}

.c-hamburger__body::before {
  content: "";
  width: 36px;
  height: 3px;
  background-color: rgb(44, 137, 46);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.js-open .c-hamburger__body::before {
  opacity: 0;
}

.c-hamburger__button {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  appearance: none;
  background: none;
  border: 0;
}

.c-hamburger__button::before,
.c-hamburger__button::after {
  content: "";
  width: 36px;
  height: 3px;
  position: absolute;
  left: 12px;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-hamburger__button::before,
  .c-hamburger__button::after {
    left: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .c-hamburger__button::before,
  .c-hamburger__button::after {
    left: 22px;
  }
}
@media screen and (min-width: 1500px) {
  .c-hamburger__button::before,
  .c-hamburger__button::after {
    left: 27px;
  }
}

.c-hamburger__button::before {
  background-color: rgb(8, 86, 10);
}

.c-hamburger__button::after {
  background-color: rgb(16, 154, 133);
}

.c-hamburger__button::before {
  top: 18px;
  transform-origin: left top;
}
@media screen and (min-width: 768px) {
  .c-hamburger__button::before {
    top: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .c-hamburger__button::before {
    top: 26px;
  }
}
@media screen and (min-width: 1500px) {
  .c-hamburger__button::before {
    top: 30px;
  }
}

.c-hamburger__button::after {
  bottom: 18px;
  transform-origin: left bottom;
}
@media screen and (min-width: 768px) {
  .c-hamburger__button::after {
    bottom: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .c-hamburger__button::after {
    bottom: 26px;
  }
}
@media screen and (min-width: 1500px) {
  .c-hamburger__button::after {
    bottom: 30px;
  }
}

.js-open .c-hamburger__button::before,
.js-open .c-hamburger__button::after {
  width: 44px;
  left: 12px;
}
@media screen and (min-width: 768px) {
  .js-open .c-hamburger__button::before,
  .js-open .c-hamburger__button::after {
    width: 44px;
    left: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .js-open .c-hamburger__button::before,
  .js-open .c-hamburger__button::after {
    width: 46px;
    left: 22px;
  }
}
@media screen and (min-width: 1500px) {
  .js-open .c-hamburger__button::before,
  .js-open .c-hamburger__button::after {
    width: 46px;
    left: 27px;
  }
}

.js-open .c-hamburger__button::before {
  transform: rotate(29deg);
}
@media screen and (min-width: 768px) {
  .js-open .c-hamburger__button::before {
    transform: rotate(32deg);
  }
}
@media screen and (min-width: 1200px) {
  .js-open .c-hamburger__button::before {
    transform: rotate(34deg);
  }
}
@media screen and (min-width: 1500px) {
  .js-open .c-hamburger__button::before {
    transform: rotate(37deg);
  }
}

.js-open .c-hamburger__button::after {
  transform: rotate(-30deg);
}
@media screen and (min-width: 768px) {
  .js-open .c-hamburger__button::after {
    transform: rotate(-32deg);
  }
}
@media screen and (min-width: 1200px) {
  .js-open .c-hamburger__button::after {
    transform: rotate(-34deg);
  }
}
@media screen and (min-width: 1500px) {
  .js-open .c-hamburger__button::after {
    transform: rotate(-37deg);
  }
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.c-megamenu {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgb(237, 244, 240);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 80;
}

.c-megamenu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-inline: 1.25rem;
}

.c-megamenu__body {
  width: 100%;
  margin-inline: auto;
}

.c-megamenu__main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: max-content;
  margin-block: 0 2rem;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .c-megamenu__main {
    gap: 1rem;
    margin-block: 0 4rem;
  }
}

.c-megamenu__link {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-block: 0.5rem;
  padding-inline: 0.5rem;
  font-size: clamp(1.125rem, 0.433rem + 1.92vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(150deg, rgb(44, 137, 46) 40%, rgb(16, 154, 133) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s;
}
.c-megamenu__link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .c-megamenu__link {
    padding-block: 1rem;
    padding-inline: 1rem;
  }
}

.c-megamenu__enrty {
  width: 100%;
  max-inline-size: 420px;
  height: 60px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-megamenu__enrty {
    height: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .c-megamenu__enrty {
    height: 80px;
  }
}

.c-megamenu__enrty-button {
  display: block grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding-inline: 1.5rem 0;
  line-height: 1;
  color: rgb(255, 255, 255);
  border: 2px solid rgb(8, 86, 10);
  background-color: rgb(8, 86, 10);
  position: relative;
  transition: 0.3s;
}
.c-megamenu__enrty-button::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  right: 1.75rem;
  transform: translateY(-50%);
  rotate: 45deg;
  transition: 0.3s;
}
.c-megamenu__enrty-button:hover {
  color: rgb(8, 86, 10);
  background-color: rgb(255, 255, 255);
}
.c-megamenu__enrty-button:hover::after {
  border-top: 2px solid rgb(8, 86, 10);
  border-right: 2px solid rgb(8, 86, 10);
}

.c-megamenu__button-en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.375rem, 1.029rem + 0.96vw, 1.75rem);
}

.c-megamenu__button-jp {
  font-size: clamp(0.938rem, 0.88rem + 0.16vw, 1rem);
}

/* footer */
.c-footer {
  padding-block: 4rem 3rem;
  padding-inline: 2rem;
  background-color: rgb(237, 244, 240);
  position: relative;
}

.c-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-inline-size: 980px;
  margin-inline: auto;
}

.c-footer__nav {
  display: block grid;
  grid-template-columns: 1fr;
  place-content: center;
  place-items: center;
  gap: 0.625rem;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 992px) {
  .c-footer__nav {
    grid-template-columns: repeat(3, auto);
    gap: 3rem;
  }
}

.c-footer__nav-link {
  font-size: clamp(0.938rem, 0.88rem + 0.16vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 992px) {
  .c-footer__nav-link:hover {
    text-decoration: underline;
  }
  .c-footer__nav-link:not(:last-of-type)::after {
    content: "";
    width: 1px;
    height: 18px;
    background-color: rgb(188, 188, 188);
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
  }
}

.c-footer__copy {
  font-size: clamp(0.813rem, 0.697rem + 0.32vw, 0.938rem);
  font-weight: normal;
  text-align: center;
  position: relative;
  z-index: 20;
}

/* component */
.c-innner {
  max-inline-size: 980px;
  margin-inline: auto;
  padding-inline: 4vw;
  box-sizing: revert;
}
@media screen and (min-width: 768px) {
  .c-innner {
    padding-inline: 2rem;
  }
}

.c-headline {
  display: block grid;
  justify-content: start;
  gap: 1rem;
  margin-block: 0 3rem;
  font-size: clamp(1.125rem, 1.01rem + 0.32vw, 1.25rem);
  font-weight: 500;
  line-height: 1;
}
.c-headline::before {
  content: attr(data-enttl) "";
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(3.125rem, 1.394rem + 4.81vw, 5rem);
  font-weight: 600;
  color: rgb(24, 47, 87);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(150deg, rgb(44, 137, 46) 40%, rgb(16, 154, 133) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 992px) {
  .c-headline {
    margin-block: 0 4rem;
  }
}

/* utility */
.u-mbmd {
  margin-block: 0 0.625rem;
}

.p-hero {
  position: relative;
}

.p-hero__fig {
  height: 550px;
  padding-inline: 0 3.75rem;
  padding-block: 0 3rem;
  position: relative;
}
.p-hero__fig::before {
  content: "";
  width: calc(100% - 24px);
  height: 100%;
  background: linear-gradient(150deg, rgb(8, 86, 10) 0%, rgb(16, 154, 133) 90%);
  background: linear-gradient(143deg, rgb(8, 86, 10) 0%, rgb(9, 97, 31) 20%, rgb(16, 154, 133) 72%);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-hero__fig {
    height: 650px;
    padding-inline: 0 4.375rem;
  }
  .p-hero__fig::before {
    width: calc(100% - 24px);
  }
}
@media screen and (min-width: 1200px) {
  .p-hero__fig {
    height: auto;
    padding-inline: 0 5rem;
  }
  .p-hero__fig::before {
    width: calc(100% - 64px);
  }
}
@media screen and (min-width: 1500px) {
  .p-hero__fig {
    padding-inline: 0 5.625rem;
    padding-block: 0 4rem;
  }
  .p-hero__fig::before {
    width: calc(100% - 90px);
  }
}
.p-hero__fig img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-hero__headline {
  display: block grid;
  gap: 1rem;
  padding-block: 1rem;
  padding-inline: 1rem 0;
  background-color: rgb(255, 255, 255);
  position: absolute;
  bottom: 5rem;
  left: 0;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .p-hero__headline {
    padding-block: 1.5rem;
    padding-inline: 1.5rem 0;
    bottom: 6.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-hero__headline {
    gap: 1.5rem;
    padding-block: 2rem;
    padding-inline: 4rem 0;
    bottom: 6.25rem;
  }
}
@media screen and (min-width: 1500px) {
  .p-hero__headline {
    padding-block: 3rem 2.5rem;
    padding-inline: 5.625rem 0;
    bottom: 10rem;
  }
}

.p-hero__headline-main {
  padding-inline: 0 0.75rem;
  font-size: clamp(1.625rem, 0.24rem + 3.85vw, 3.125rem);
  font-weight: 600;
  line-height: 1;
  color: rgb(16, 154, 133);
}
@media screen and (min-width: 768px) {
  .p-hero__headline-main {
    padding-inline: 0 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-hero__headline-main {
    padding-inline: 0 1.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .p-hero__headline-main {
    padding-inline: 0 2rem;
  }
}

.p-hero__headline-sub {
  display: block grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  font-size: clamp(0.875rem, 0.817rem + 0.16vw, 0.938rem);
  line-height: 1.2;
}
.p-hero__headline-sub::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgb(93, 181, 169);
}

.p-hero__deco {
  max-inline-size: 240px;
  position: absolute;
  right: 0;
  bottom: -3.75rem;
}
@media screen and (min-width: 768px) {
  .p-hero__deco {
    max-inline-size: 320px;
    bottom: -6.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-hero__deco {
    max-inline-size: 450px;
    bottom: -10rem;
  }
}
@media screen and (min-width: 1500px) {
  .p-hero__deco {
    max-inline-size: 100%;
  }
}

.p-about {
  container-type: inline-size;
  padding-block: 9rem 0;
}

.p-about__flow {
  overflow-x: scroll;
  margin-block: 0 2rem;
  position: relative;
}
.p-about__flow::before {
  content: "図をスワイプしてご覧ください";
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 0.875rem;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (min-width: 576px) {
  .p-about__flow {
    overflow: visible;
  }
  .p-about__flow::before {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-about__flow {
    margin-block: 0 3rem;
  }
}
@media screen and (min-width: 992px) {
  .p-about__flow {
    margin-block: 0 4rem;
  }
}

.p-about__flow-fig {
  width: 600px;
  position: relative;
}
@media screen and (min-width: 576px) {
  .p-about__flow-fig {
    width: auto;
  }
}

.p-about__note {
  max-inline-size: 860px;
  margin-inline: auto;
  margin-block: 0 6rem;
}

.p-driver {
  margin-inline: calc(50% - 50cqi);
  padding-block: 6rem;
  background-color: rgb(226, 243, 240);
}

.p-driver__menu {
  display: block grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  align-items: end;
  max-inline-size: 450px;
  margin-inline: auto;
  margin-block: 1rem;
}
@media screen and (min-width: 768px) {
  .p-driver__menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-inline-size: 730px;
    height: 65px;
    margin-block: 0;
  }
}
@media screen and (min-width: 992px) {
  .p-driver__menu {
    height: 77px;
  }
}

.p-driver__menu-item {
  display: block grid;
  place-content: center;
  place-items: center;
  height: 50px;
  font-size: clamp(1rem, 0.885rem + 0.32vw, 1.125rem);
  font-weight: 500;
  color: rgb(0, 0, 0);
  letter-spacing: 0.1em;
  background-color: rgb(255, 255, 255);
  transition: 0.3s;
  cursor: pointer;
}
.p-driver__menu-item:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(44, 137, 46);
}
@media screen and (min-width: 768px) {
  .p-driver__menu-item {
    height: 60px;
  }
  .p-driver__menu-item:hover {
    height: 65px;
  }
}
@media screen and (min-width: 992px) {
  .p-driver__menu-item {
    height: 70px;
  }
  .p-driver__menu-item:hover {
    height: 77px;
  }
}

.js_tab_stat1 .p-driver__menu-item[data-number="1"],
.js_tab_stat2 .p-driver__menu-item[data-number="2"] {
  height: 50px;
  color: rgb(255, 255, 255);
  background-color: rgb(44, 137, 46);
}
@media screen and (min-width: 768px) {
  .js_tab_stat1 .p-driver__menu-item[data-number="1"],
  .js_tab_stat2 .p-driver__menu-item[data-number="2"] {
    height: 65px;
  }
}
@media screen and (min-width: 992px) {
  .js_tab_stat1 .p-driver__menu-item[data-number="1"],
  .js_tab_stat2 .p-driver__menu-item[data-number="2"] {
    height: 77px;
  }
}

.p-driver__block {
  max-inline-size: 450px;
  margin-inline: auto;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-driver__block {
    max-inline-size: none;
  }
}

.p-driver__box {
  display: none;
}

.js_tab_stat1 .p-driver__block #driver01,
.js_tab_stat2 .p-driver__block #driver02 {
  display: block;
}

.p-driver__inner {
  display: block grid;
  grid-template-columns: 1fr;
  align-items: start;
  grid-template-areas: "fig" "title" "summary" "button";
  column-gap: 3.125rem;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-driver__inner {
    grid-template-columns: 350px 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "fig title" "fig summary" "button button";
    padding-block: 2rem;
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-driver__inner {
    grid-template-columns: 405px 1fr;
    padding-block: 3.125rem;
    padding-inline: 3.125rem;
  }
}

.p-driver__fig {
  grid-area: fig;
}

.p-driver__title {
  grid-area: title;
  padding-block: 1.25rem 0;
  font-size: clamp(1.375rem, 0.913rem + 1.28vw, 1.875rem);
  font-weight: 600;
  color: rgb(44, 137, 46);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-driver__title {
    padding-block: 1.5rem 0;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .p-driver__title {
    padding-block: 2rem 0;
  }
}

.p-driver__summary {
  grid-area: summary;
  padding-block: 1rem 0;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-driver__summary {
    padding-block: 1.5rem 0;
    line-height: 2;
  }
}
@media screen and (min-width: 992px) {
  .p-driver__summary {
    padding-block: 2rem 0;
  }
}

.p-driver__button {
  grid-area: button;
  padding-block: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-driver__button {
    padding-block: 2rem 0;
    line-height: 2;
  }
}
@media screen and (min-width: 992px) {
  .p-driver__button {
    padding-block: 3.4375rem 0;
  }
}

.p-driver__button-link {
  display: block grid;
  align-items: center;
  min-inline-size: 260px;
  max-inline-size: 300px;
  height: 60px;
  margin-inline: auto;
  padding-inline: 1rem 2rem;
  font-size: clamp(0.938rem, 0.764rem + 0.48vw, 1.125rem);
  font-weight: 500;
  color: rgb(255, 255, 255);
  line-height: 1.4;
  border: 2px solid rgb(8, 86, 10);
  background-color: rgb(8, 86, 10);
  position: relative;
  transition: 0.3s;
}
.p-driver__button-link::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  position: absolute;
  top: 48%;
  right: 1rem;
  transform: translateY(-50%);
  rotate: 45deg;
  transition: 0.3s;
}
.p-driver__button-link:hover {
  color: rgb(8, 86, 10);
  background-color: rgb(255, 255, 255);
}
.p-driver__button-link:hover::after {
  border-top: 2px solid rgb(8, 86, 10);
  border-right: 2px solid rgb(8, 86, 10);
}
@media screen and (min-width: 576px) {
  .p-driver__button-link {
    place-content: center;
    place-items: center;
    width: max-content;
    max-inline-size: none;
    height: 65px;
    padding-inline: 3.125rem;
    letter-spacing: 0.15em;
  }
  .p-driver__button-link::after {
    width: 12px;
    height: 12px;
    right: 1.75rem;
  }
  .p-driver__button-link br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-driver__button-link {
    height: 75px;
  }
}

.p-merit {
  position: relative;
}

.p-merit__inner {
  padding-block: 6rem 7rem;
}

.p-merit__block {
  display: block grid;
  gap: 3.75rem;
  max-inline-size: 450px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-merit__block {
    max-inline-size: none;
  }
}

.p-merit__box {
  display: block grid;
  grid-template-columns: 1fr;
  grid-template-areas: "title" "detail" "outline";
  padding-block: 1.75rem;
  padding-inline: 1.75rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-merit__box {
    grid-template-columns: 1fr 340px;
    grid-template-rows: auto 1fr;
    grid-template-areas: "title outline" "detail outline";
    column-gap: 2rem;
    padding-block: 2rem;
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-merit__box {
    grid-template-columns: 1fr 370px;
    column-gap: 3.5rem;
    padding-block: 3.125rem;
    padding-inline: 3.125rem;
  }
}

.p-merit__title {
  grid-area: title;
  font-size: clamp(1.25rem, 1.077rem + 0.48vw, 1.438rem);
  font-weight: 600;
  color: rgb(16, 154, 133);
  line-height: 1.4;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-merit__title {
    padding-block: 1rem 0;
  }
}
@media screen and (min-width: 992px) {
  .p-merit__title {
    padding-block: 1.5rem 0;
  }
}

.p-merit__detail {
  display: block grid;
  gap: 1rem;
  grid-area: detail;
  padding-block: 1.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-merit__detail {
    padding-block: 1.5rem 0;
  }
}

@media screen and (min-width: 768px) {
  .p-merit__summary {
    line-height: 2;
  }
}

.p-merit__outline {
  grid-area: outline;
  display: block grid;
  gap: 1.5rem;
  font-size: clamp(0.938rem, 0.88rem + 0.16vw, 1rem);
}

.p-merit__num {
  display: block grid;
  place-content: center;
  place-items: center;
  width: 56px;
  height: 56px;
  padding-block: 0 0.125rem;
  padding-inline: 0 0.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.75rem, 0.481rem + 3.53vw, 3.125rem);
  font-weight: bold;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  background-color: rgb(16, 154, 133);
  position: absolute;
  top: -0.875rem;
  left: -0.875rem;
}
.p-merit__num::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  right: -0.0625rem;
  bottom: -0.0625rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (min-width: 576px) {
  .p-merit__num {
    width: 70px;
    height: 70px;
    top: -1.75rem;
    left: -1.75rem;
  }
  .p-merit__num::before {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-merit__num {
    width: 80px;
    height: 80px;
  }
  .p-merit__num::before {
    width: 36px;
    height: 36px;
  }
}
@media screen and (min-width: 992px) {
  .p-merit__num {
    width: 92px;
    height: 92px;
  }
  .p-merit__num::before {
    width: 40px;
    height: 40px;
  }
}

.p-merit__outline-box {
  padding-block: 1.5rem;
  padding-inline: 1rem;
  background-color: rgb(237, 244, 240);
  clip-path: polygon(38px 0, 100% 0, 100% 100%, 0 100%, 0 38px);
}
@media screen and (min-width: 576px) {
  .p-merit__outline-box {
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-merit__outline-box {
    padding-block: 2rem;
    padding-inline: 2rem;
  }
}

.p-merit__outline-title {
  padding-block: 0 1rem;
  font-size: clamp(1rem, 0.885rem + 0.32vw, 1.125rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-merit__outline-title {
    padding-block: 0 1.5rem;
  }
}

.p-merit__outline-subtitle {
  text-indent: -0.5em;
}

@media screen and (min-width: 576px) {
  .p-course {
    display: block grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    width: calc(100% + 24px);
    margin-inline: -0.75rem;
  }
}

.p-course__item {
  display: block grid;
  grid-template-areas: "num num" "time price";
  column-gap: 1rem;
  padding-inline: 0.25rem;
  padding-block: 0.5rlh;
  font-size: clamp(0.938rem, 0.88rem + 0.16vw, 1rem);
  align-items: center;
  border-top: 1px solid rgb(192, 192, 192);
}
@media screen and (min-width: 576px) {
  .p-course__item {
    grid-template-columns: subgrid;
    grid-column: 1/-1;
    grid-template-areas: "num time price";
    padding-inline: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-course__item {
    column-gap: 0.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-course__item {
    column-gap: 1rem;
  }
}

.p-course__num {
  grid-area: num;
  font-weight: 600;
  color: rgb(16, 154, 133);
}

.p-course__time {
  grid-area: time;
}

.p-course__price {
  grid-area: price;
  text-align: right;
}

.p-merit__ratio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-inline-size: 285px;
  margin-inline: auto;
  line-height: 1;
}
.p-merit__ratio span:first-of-type {
  font-size: clamp(1rem, 0.885rem + 0.32vw, 1.125rem);
  font-weight: 600;
}
.p-merit__ratio span:last-of-type {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2rem, 0.962rem + 2.88vw, 3.125rem);
  font-weight: bold;
  color: rgb(8, 86, 10);
}

@media screen and (min-width: 576px) {
  .p-salary {
    width: calc(100% + 24px);
    margin-inline: -0.75rem;
  }
}

.p-salary__item {
  padding-inline: 0.25rem;
  padding-block: 0.75rem 0;
  font-size: clamp(0.938rem, 0.88rem + 0.16vw, 1rem);
  border-top: 1px solid rgb(192, 192, 192);
}
.p-salary__item:not(:last-of-type) {
  padding-block-end: 0.75rem;
}
@media screen and (min-width: 576px) {
  .p-salary__item {
    padding-inline: 0.75rem;
  }
}

.p-merit__deco {
  max-inline-size: 130px;
  position: absolute;
  top: -3.125rem;
  left: 1rem;
}
@media screen and (min-width: 1200px) {
  .p-merit__deco {
    max-inline-size: 140px;
    top: -2.5rem;
    left: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-merit__deco {
    max-inline-size: 160px;
    top: 2.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .p-merit__deco {
    max-inline-size: 185px;
    top: 1.25rem;
    left: 4.375rem;
  }
}

.p-interview {
  container-type: inline-size;
  padding-block: 6rem 4rem;
  background-color: rgb(223, 243, 240);
  position: relative;
}
.p-interview::before {
  content: "";
  width: 100%;
  height: 285px;
  background-color: rgb(16, 154, 133);
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-interview__block {
  display: block grid;
  gap: 2.5rem;
  max-inline-size: 400px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-interview__block {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-inline-size: none;
  }
}
@media screen and (min-width: 992px) {
  .p-interview__block {
    gap: 2rem;
  }
}

.p-interview__box {
  display: block;
  position: relative;
  z-index: 20;
}
.p-interview__box::before {
  content: "";
  width: 100cqi;
  height: 30%;
  margin-inline: calc(50% - 50cqi);
  background-color: rgb(16, 154, 133);
  position: absolute;
  bottom: -0.625rem;
  left: 0;
}
.p-interview__box:hover .p-interview__fig {
  scale: 1.05;
}
.p-interview__box:hover .p-interview__summary {
  opacity: 0.7;
}
.p-interview__box:hover .p-interview__data {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-interview__box::before {
    display: none;
  }
}

.p-interview__fig {
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  transition: 0.3s;
}
.p-interview__fig img {
  transition: 0.3s;
  clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%, 0 60px);
}
.p-interview__fig::before {
  content: "";
  width: 60px;
  height: 60px;
  background-color: rgb(253, 230, 124);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 20;
}
.p-interview__fig::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgb(44, 137, 46);
  border-right: 2px solid rgb(44, 137, 46);
  position: absolute;
  right: 1.125rem;
  bottom: 0.5rem;
  transform: translateY(-50%);
  rotate: 45deg;
  transition: 0.3s;
  z-index: 20;
}

.p-interview__summary {
  padding-block: 1rem 0;
  font-size: clamp(1rem, 0.885rem + 0.32vw, 1.125rem);
  font-weight: 600;
  color: rgb(255, 255, 255);
  line-height: 1.5;
  transition: 0.3s;
  position: relative;
  z-index: 20;
}
.p-interview__summary br {
  display: none;
}
@media screen and (min-width: 992px) {
  .p-interview__summary {
    line-height: 1.75;
  }
  .p-interview__summary br {
    display: block;
  }
}

.p-interview__data {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  transition: 0.3s;
  position: relative;
  z-index: 20;
}

.p-interview__name {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.5rem, 1.154rem + 0.96vw, 1.875rem);
  font-weight: bold;
  color: rgb(253, 230, 124);
}
.p-interview__name span {
  font-size: 1rem;
  font-weight: normal;
}

.p-interview__info {
  font-size: clamp(0.938rem, 0.88rem + 0.16vw, 1rem);
  color: rgb(255, 255, 255);
}

.p-interview__deco {
  max-inline-size: 140px;
  position: absolute;
  top: -2rem;
  right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-interview__deco {
    max-inline-size: 180px;
    right: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .p-interview__deco {
    max-inline-size: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .p-interview__deco {
    max-inline-size: 220px;
  }
}
@media screen and (min-width: 1500px) {
  .p-interview__deco {
    max-inline-size: 245px;
    top: -2.375rem;
    right: 1.75rem;
  }
}

.p-benefits {
  padding-block: 7rem 6rem;
}
.p-benefits .c-headline {
  place-content: center;
  place-items: center;
}

.p-benefits__block {
  display: block grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 576px) {
  .p-benefits__block {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-benefits__block {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.375rem;
  }
}

.p-benefits__box {
  display: block grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 1.25rem;
  padding-block: 1.5rem 1.5rem;
  padding-inline: 1.5rem;
  position: relative;
  clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
  background-color: rgb(221, 221, 221);
  position: relative;
}
.p-benefits__box::before {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  clip-path: polygon(49px 0, 100% 0, 100% 100%, 0 100%, 0 49px);
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__box {
    padding-block: 2.375rem 2rem;
    padding-inline: 1.75rem;
  }
}

.p-benefits__title {
  font-size: clamp(1.25rem, 1.077rem + 0.48vw, 1.438rem);
  text-align: center;
  position: relative;
  z-index: 20;
}

.p-benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin-inline: auto;
  position: relative;
  z-index: 20;
}
.p-benefits__icon img {
  max-inline-size: 150px;
}
@media screen and (min-width: 992px) {
  .p-benefits__icon {
    width: auto;
  }
}

.p-benefits__summary {
  position: relative;
  z-index: 20;
}

.p-flow {
  padding-block: 6.75rem;
  background-color: rgb(234, 244, 240);
  position: relative;
}
.p-flow .c-headline {
  place-content: center;
  place-items: center;
}

.p-flow__block {
  display: block grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  grid-template-areas: "step01" "step02" "step03" "step04" "step05" "step06" "step07";
}
@media screen and (min-width: 768px) {
  .p-flow__block {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    grid-template-areas: "step01 step02" "step03 step03" "step04 step04" "step05 step05" "step06 step07";
  }
}
@media screen and (min-width: 992px) {
  .p-flow__block {
    gap: 3.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__block {
    gap: 4rem;
  }
}

.p-flow__box {
  display: block flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__box {
    gap: 1rem;
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-flow__box {
    gap: 1.75rem;
    padding-block: 2rem 3rem;
    padding-inline: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__box {
    padding-block: 2rem 3rem;
    padding-inline: 2.5rem;
  }
}

.step01 {
  grid-area: step01;
}

.step02 {
  grid-area: step02;
}

.step03 {
  grid-area: step03;
}
.step03 .p-flow__fig {
  max-inline-size: 180px;
  margin-block: 0 -1.5rem;
  margin-inline: auto -1.5rem;
}
@media screen and (min-width: 576px) {
  .step03 .p-flow__sumamry {
    inline-size: 60%;
  }
  .step03 .p-flow__fig {
    max-inline-size: 180px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .step03 .p-flow__fig {
    max-inline-size: 218px;
  }
}
.step04 {
  grid-area: step04;
}
.step04 .p-flow__num {
  background-color: rgb(44, 137, 46);
}
.step04 .p-flow__title {
  color: rgb(44, 137, 46);
}
.step04 .p-flow__fig {
  max-inline-size: 140px;
  margin-inline: auto;
}
@media screen and (min-width: 576px) {
  .step04 .p-flow__sumamry {
    inline-size: 60%;
  }
  .step04 .p-flow__fig {
    max-inline-size: 140px;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) {
  .step04 .p-flow__fig {
    max-inline-size: 164px;
    right: 3.5rem;
  }
}
.step05 {
  grid-area: step05;
}
.step05 .p-flow__num {
  background-color: rgb(44, 137, 46);
}
.step05 .p-flow__title {
  color: rgb(44, 137, 46);
}
.step05 .p-flow__fig {
  max-inline-size: 170px;
  margin-inline: auto;
}
@media screen and (min-width: 576px) {
  .step05 .p-flow__sumamry {
    inline-size: 60%;
  }
  .step05 .p-flow__fig {
    max-inline-size: 170px;
    position: absolute;
    right: 1.5rem;
    bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .step05 .p-flow__fig {
    max-inline-size: 210px;
    right: 2.5rem;
    bottom: 3rem;
  }
}
.step06 {
  grid-area: step06;
}
.step06 .p-flow__num {
  background-color: rgb(8, 86, 10);
}
.step06 .p-flow__title {
  color: rgb(8, 86, 10);
}

.step07 {
  grid-area: step07;
}
.step07 .p-flow__num {
  background-color: rgb(8, 86, 10);
}
.step07 .p-flow__title {
  color: rgb(8, 86, 10);
}

.p-flow__title {
  width: 100%;
  font-size: clamp(1.25rem, 1.077rem + 0.48vw, 1.438rem);
  color: rgb(16, 154, 133);
  text-align: center;
}

@media screen and (min-width: 992px) {
  .p-flow__sumamry {
    max-inline-size: 565px;
  }
}

.p-flow__num {
  display: block grid;
  place-content: center;
  place-items: center;
  width: 62px;
  height: 62px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2rem, 1.25rem + 2.08vw, 2.813rem);
  font-weight: 600;
  color: rgb(255, 255, 255);
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 50%;
  background-color: rgb(16, 154, 133);
  position: absolute;
  top: -0.875rem;
  left: -0.875rem;
}
.p-flow__num span {
  font-size: 0.4em;
}
@media screen and (min-width: 576px) {
  .p-flow__num {
    width: 70px;
    height: 70px;
    top: -1.5rem;
    left: -1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__num {
    width: 80px;
    height: 80px;
    top: -1.875rem;
    left: -1.625rem;
  }
}
@media screen and (min-width: 992px) {
  .p-flow__num {
    width: 88px;
    height: 88px;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__num {
    width: 96px;
    height: 96px;
  }
}

.p-flow__list {
  padding-block: 1rem;
  padding-inline: 1rem;
  background-color: rgb(237, 244, 240);
}
@media screen and (min-width: 576px) {
  .p-flow__list {
    max-inline-size: 60%;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    padding-block: 1.25rem;
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-flow__list {
    max-inline-size: 565px;
    padding-block: 1.5rem;
    padding-inline: 2rem;
  }
}

.p-flow__list-main {
  display: block grid;
  gap: 0.5rem;
}

.p-flow__list-item {
  display: block grid;
  grid-template-columns: 12px 1fr;
  gap: 0.5rem;
  line-height: 1.6;
}
.p-flow__list-item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgb(44, 137, 46);
  position: relative;
  top: 0.5rem;
}

.p-flow__deco {
  max-inline-size: 120px;
  position: absolute;
  top: -1.25rem;
  left: 0.5rem;
}
@media screen and (min-width: 576px) {
  .p-flow__deco {
    max-inline-size: 130px;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__deco {
    max-inline-size: 140px;
  }
}
@media screen and (min-width: 992px) {
  .p-flow__deco {
    max-inline-size: 150px;
    left: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__deco {
    max-inline-size: 170px;
    left: 3rem;
  }
}
@media screen and (min-width: 1400px) {
  .p-flow__deco {
    max-inline-size: 185px;
    left: 5rem;
  }
}

.p-entry {
  padding-block: 5.5rem;
}

.p-entry__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-entry__button {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 0.625rem;
  padding-block: 1.25rem;
  color: rgb(255, 255, 255);
  line-height: 1;
  border: 2px solid rgb(44, 137, 46);
  background-color: rgb(44, 137, 46);
  transition: 0.3s;
  position: relative;
}
.p-entry__button::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid rgb(255, 255, 255);
  border-right: 3px solid rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  rotate: 45deg;
  transition: 0.3s;
  z-index: 20;
}
.p-entry__button:hover {
  color: rgb(44, 137, 46);
  background-color: rgb(255, 255, 255);
}
.p-entry__button:hover::after {
  border-top: 3px solid rgb(44, 137, 46);
  border-right: 3px solid rgb(44, 137, 46);
}
.p-entry__button:nth-of-type(2) {
  border: 2px solid rgb(16, 154, 133);
  background-color: rgb(16, 154, 133);
}
.p-entry__button:nth-of-type(2):hover {
  color: rgb(16, 154, 133);
  background-color: rgb(255, 255, 255);
}
.p-entry__button:nth-of-type(2):hover::after {
  border-top: 3px solid rgb(16, 154, 133);
  border-right: 3px solid rgb(16, 154, 133);
}
@media screen and (min-width: 768px) {
  .p-entry__button {
    gap: 1rem;
    padding-block: 1.5rem;
  }
  .p-entry__button::after {
    right: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-entry__button {
    gap: 1.25rem;
    padding-block: 2rem;
  }
  .p-entry__button::after {
    right: 2rem;
  }
}

.p-entry__button-en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2rem, 1.538rem + 1.28vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.p-entry__button-jp {
  font-size: clamp(0.938rem, 0.822rem + 0.32vw, 1.063rem);
}

.l-modal .modal_inner {
  width: 100%;
  max-width: 980px;
  margin: 0;
  margin-block: 1.25rem;
  margin-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-modal .modal_inner {
    margin-block: 2rem;
    margin-inline: 2rem;
  }
}

.p-modalinterview {
  max-inline-size: 980px;
  padding-block: 0 3rem;
}
@media screen and (min-width: 768px) {
  .p-modalinterview {
    padding-block: 0 4rem;
  }
}

.p-modalinterview__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-modalinterview__head {
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    padding-inline: 0 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-modalinterview__head {
    grid-template-columns: 420px 1fr;
    gap: 3.125rem;
    padding-inline: 0 4rem;
  }
}

.p-modalinterview__fig img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-modalinterview__detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-modalinterview__detail {
    padding-block: 1rem 0;
    padding-inline: 0;
  }
}
@media screen and (min-width: 992px) {
  .p-modalinterview__detail {
    padding-block: 3.125rem 0;
  }
}

.p-modalinterview__copy {
  font-size: clamp(1.25rem, 0.904rem + 0.96vw, 1.625rem);
  font-weight: 600;
  color: rgb(16, 154, 133);
  line-height: 1.4;
}
.p-modalinterview__copy br {
  display: none;
}
@media screen and (min-width: 576px) {
  .p-modalinterview__copy {
    line-height: 1.6;
  }
  .p-modalinterview__copy br {
    display: block;
  }
}

.p-modalinterview__data {
  margin-inline: auto 0;
  padding-block: 2rem 0;
}

.p-modalinterview__name {
  padding-block: 0 0.625rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2rem, 1.308rem + 1.92vw, 2.75rem);
  font-weight: bold;
  text-align: right;
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-modalinterview__name span {
  font-size: clamp(1rem, 0.769rem + 0.64vw, 1.25rem);
  font-weight: normal;
  letter-spacing: 0.05em;
}

.p-modalinterview__info {
  line-height: 1;
}

.p-modalinterview__faq {
  counter-reset: number 0;
  display: grid;
  gap: 1rem;
  padding-block: 2rem;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-modalinterview__faq {
    gap: 1.375rem;
    padding-block: 3rem;
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-modalinterview__faq {
    padding-block: 3.5rem 4rem;
    padding-inline: 3.125rem;
  }
}

.p-modalinterview__faq-box {
  padding-block: 1.25rem;
  padding-inline: 1.5rem;
  background-color: rgb(237, 244, 240);
}
@media screen and (min-width: 768px) {
  .p-modalinterview__faq-box {
    padding-block: 1.5rem;
    padding-inline: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .p-modalinterview__faq-box {
    padding-block: 1.75rem 2rem;
    padding-inline: 2.5rem;
  }
}

.p-modalinterview__faq-head {
  padding-block: 0 0.625rem;
  padding-inline: 2rem 0;
  font-size: clamp(1rem, 0.885rem + 0.32vw, 1.125rem);
  font-weight: 600;
  color: rgb(16, 154, 133);
  line-height: 1.4;
  border-bottom: 1px solid rgb(192, 192, 192);
  position: relative;
}
.p-modalinterview__faq-head::before {
  counter-increment: number 1;
  content: "Q" counter(number) " ";
  margin-inline: 0 0.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.375rem, 0.913rem + 1.28vw, 1.875rem);
  font-weight: bold;
  position: absolute;
  top: -0.1875rem;
  left: 0rem;
}
@media screen and (min-width: 576px) {
  .p-modalinterview__faq-head {
    padding-inline: 2.125rem 0;
  }
  .p-modalinterview__faq-head::before {
    top: -0.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-modalinterview__faq-head {
    padding-inline: 2.5rem 0;
  }
  .p-modalinterview__faq-head::before {
    top: -0.3125rem;
  }
}
@media screen and (min-width: 992px) {
  .p-modalinterview__faq-head {
    padding-inline: 2.5rem 0;
  }
  .p-modalinterview__faq-head::before {
    top: -0.4375rem;
  }
}

.p-modalinterview__faq-body {
  padding-block: 1rem 0;
}
@media screen and (min-width: 768px) {
  .p-modalinterview__faq-body {
    padding-block: 1.5rem 0;
  }
}

.p-modalmenu {
  display: grid;
  place-content: center;
  place-items: center;
}

.p-modalmenu__button {
  display: grid;
  place-content: center;
  place-items: center;
  width: 200px;
  height: 55px;
  font-size: clamp(1rem, 0.885rem + 0.32vw, 1.125rem);
  font-weight: 500;
  border: 2px solid rgb(228, 228, 228);
  background-color: rgb(255, 255, 255);
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.p-modalmenu__button:hover {
  opacity: 0.7;
}
.p-modalmenu__button span {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}
.p-modalmenu__button span::before, .p-modalmenu__button span::after {
  content: "";
  width: 21px;
  height: 2px;
  background-color: rgb(16, 154, 133);
  position: absolute;
}
.p-modalmenu__button span::before {
  rotate: 45deg;
  transform-origin: left top;
}
.p-modalmenu__button span::after {
  bottom: 0;
  rotate: -45deg;
  transform-origin: left bottom;
}
@media screen and (min-width: 576px) {
  .p-modalmenu__button {
    width: 220px;
    height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-modalmenu__button {
    width: 240px;
    height: 70px;
  }
  .p-modalmenu__button span {
    right: 1.75rem;
  }
}

.p-fixbutton {
  width: 100%;
  height: 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
}
@media screen and (min-width: 576px) {
  .p-fixbutton {
    height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-fixbutton {
    display: none;
  }
}

.p-fixbutton__link {
  display: block grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding-inline: 1.5rem 0;
  line-height: 1;
  color: rgb(255, 255, 255);
  border: 2px solid rgb(8, 86, 10);
  background-color: rgb(8, 86, 10);
  position: relative;
  transition: 0.3s;
}
.p-fixbutton__link::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgb(255, 255, 255);
  border-right: 2px solid rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  right: 1.75rem;
  transform: translateY(-50%);
  rotate: 45deg;
  transition: 0.3s;
}

.p-fixbutton__link-en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.375rem, 1.029rem + 0.96vw, 1.75rem);
}

.p-fixbutton__link-jp {
  font-size: clamp(0.938rem, 0.88rem + 0.16vw, 1rem);
}