@charset "UTF-8";
/**関数定義 **/
/**基本定義 **/
:root {
  interpolate-size: allow-keywords;
  --font-size-16: 0.9375rem;
  --font-size-base: 1rem;
  --font-size-20: 1.125rem;
  --font-size-24: 1.25rem;
  --font-size-32: 1.5rem;
  --font-size-48: 1.625rem;
  --font-size-64: 2.25rem;
  --font-family-ja: 'Noto Sans JP', sans-serif;
  --font-family-en: "Space Grotesk", sans-serif;
  --inner-padding: 15px;
  --inner-width-normal: 1200px;
  --inner-width-large: 1360px;
  --header-height: 60px;
  --breadcrumb-height: 70px;
  /** color **/
  --color-dark-black: #0a0f2e;
  --color-black: #000;
  --color-black-bg: #282828;
  --color-black-text: 313131;
  --color-gray: #909090;
  --color-border: #cccccc;
  --color-gray-text: #a3a3a3;
  --color-gray-text-2: #8d8f94;
  --color-gray-text-light: #d9d9d9;
  --color-light-gray: #d9d9d9;
  --color-blue: #2a49b8;
  --color-dark-blue: #223a93;
  --color-light-blue: #33b9ef;
  --color-yellow: #f2ff82;
  --gradation: linear-gradient(90deg, #33b9ef 0%, #223a93 100%);
  --border-radius-section: 20px;
}

@media screen and (min-width: 768px) {
  :root {
    --font-size-16: 1rem;
    --font-size-base: 1.125rem;
    --font-size-20: 1.25rem;
    --font-size-24: 1.5rem;
    --font-size-32: 2rem;
    --font-size-48: 3rem;
    --font-size-64: 4rem;
    --inner-padding: 50px;
    --header-height: 120px;
  }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 4.2666666667vw;
  overscroll-behavior-y: none;
}

body {
  position: relative;
  font-family: var(--font-family-ja);
  font-size: var(--font-size-base);
  line-height: 1.5;
}

input,
select,
textarea,
button {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

address {
  font-style: normal;
}

p {
  line-height: 1.8;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 375px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
  p {
    line-height: 2;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}
/** layout **/
.siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  overflow: clip;
}

.container {
  width: min(100% - var(--inner-padding) * 2, var(--inner-width-normal));
  margin-inline: auto;
}

.container-large {
  width: min(100% - var(--inner-padding) * 2, var(--inner-width-large));
  margin-inline: auto;
}

/** utilities **/
.only-pc {
  display: none;
}

.only-sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .only-pc {
    display: block;
  }
  .only-sp {
    display: none;
  }
}
/** breadcrumb **/
.page__breadcrumb {
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid var(--color-dark-black);
  margin-inline-start: auto;
  text-transform: uppercase;
  min-height: var(--breadcrumb-height);
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: var(--font-size-16);
  font-family: var(--font-family-en);
}

@media screen and (min-width: 768px) {
  .page__breadcrumb {
    justify-content: flex-end;
  }
}
.page__breadcrumb a {
  color: inherit;
}

.page__breadcrumb > span:first-of-type {
  padding-right: 2em;
  text-transform: uppercase;
}

.page__breadcrumb > span:not(:first-of-type) {
  padding: 0 0 0 2em;
}

.page__breadcrumb > span:not(:last-of-type) {
  padding: 0 2em;
}

/** title **/
.title-1--border {
  border-bottom: 1px solid currentColor;
  padding-bottom: 30px;
}

.title-1__en {
  font-family: var(--font-family-en);
  font-size: 2.875rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  width: fit-content;
  letter-spacing: -0.03em;
}

.title-1__en--border {
  padding-bottom: 10px;
  padding-right: 40px;
  border-bottom: 1px solid currentColor;
}

.title-1__ja {
  margin-top: 20px;
  font-size: var(--font-size-20);
  font-weight: 400;
}

.title-1--mt100 {
  margin-bottom: 60px;
}

.title-1--mt50 {
  margin-bottom: 35px;
}

.title-2 {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 2.25rem;
  width: fit-content;
  text-transform: uppercase;
  height: fit-content;
}

.title-2--border {
  border-bottom: 1px solid currentColor;
}

.title-2--narrow {
  letter-spacing: -0.08em;
}

.title-3 {
  font-size: var(--font-size-32);
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .title-1--mt100 {
    margin-bottom: 100px;
  }
  .title-1--mt50 {
    margin-bottom: 50px;
  }
  .title-1__en {
    font-size: 7.25rem;
  }
  .title-1__en--border {
    padding-right: 64px;
  }
  .title-2 {
    font-size: 4.5rem;
  }
}
.paragraph {
  letter-spacing: -0.01em;
}

/** button **/
.buttons {
  display: none;
  background-color: #000;
}

.button-1 {
  --_width: min(100%, 310px);
  --_height: 75px;
  position: relative;
  width: var(--_width);
  height: var(--_height);
  background-color: #fff;
  background: var(--_outer-color);
  border-radius: 15px;
  color: var(--_color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.75em;
  transition: color 0.3s ease-out, background-image 0.3s ease-out;
}
.button-1::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--_inner-color);
  border-radius: 12px;
  transition: background 0.3s ease-out;
}
.button-1 svg,
.button-1 div {
  position: relative;
  z-index: 2;
}

.button-1--blue {
  --_color: #fff;
  --_outer-color: #fff;
  --_inner-color: var(--color-dark-blue);
}

.button-1--white {
  --_color: var(--color-blue);
  --_outer-color: var(--gradation);
  --_inner-color: #fff;
}

.button-1--transparent {
  border: 3px solid #fff;
  --_color: #fff;
  --_outer-color: transparent;
  --_inner-color: transparent;
}

.button-1__text-en {
  font-family: var(--font-family-en);
  font-size: var(--font-size-24);
  text-transform: uppercase;
  font-weight: 700;
}

.button-1__text-ja {
  font-size: 0.75rem;
}

.button-more {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.3s;
}
.button-more:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.button-more svg {
  display: block;
}

.button-more--white {
  color: #fff;
}

.button-more__text {
  font-family: var(--font-family-en);
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 700;
}

.button-2 {
  --_color: #fff;
  background: linear-gradient(to right, #2a4ab8 0%, #33b9ef 50%, #33b9ef 50.1%, #2a4ab8 100%);
  background-size: 200% 100%;
  background-position: right center;
  width: min(100%, 400px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 50px;
  padding: 0 2.0833333333em;
  color: var(--_color);
  transition: background-position 0.3s ease;
}

.button-2__text-ja {
  font-size: var(--font-size-24);
  line-height: 1;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .button-1 {
    --_width: min(100%, 400px);
    --_height: 94px;
    padding: 0 2.75em;
  }
  .button-1--blue:hover {
    --_color: var(--color-dark-blue);
    --_outer-color: var(--color-dark-blue);
    --_inner-color: #fff;
  }
  .button-1--white:not(:disabled):hover {
    --_color: #fff;
    --_inner-color: var(--gradation);
  }
  .button-1--transparent:hover {
    --_color: #000;
    --_outer-color: #fff;
  }
  .button-2 {
    height: 100px;
  }
  .button-2:hover {
    background-position: left center;
  }
}
/*** block-number ***/
.block-number {
  --_margin-bottom: 70px;
  margin-bottom: var(--_margin-bottom);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.625em;
  font-size: var(--font-size-24);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-family-en);
}

.block-number--mt140 {
  --_margin-bottom: 70px;
}

.block-number--white {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .block-number--mt140 {
    --_margin-bottom: 140px;
  }
}
.block-image {
  --_margin-bottom: 80px;
  margin-bottom: var(--_margin-bottom);
  position: relative;
}
.block-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1440/600;
  height: auto;
  min-height: 240px;
  object-fit: cover;
}

.block-image--mt35.block-image {
  --_margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
  .block-image {
    --_margin-bottom: 140px;
  }
}
/*** list ***/
.lists--white .list {
  --_border-color: #535353;
}

.list {
  --_border-color: var(--color-border);
  padding: 1.875em 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--_border-color);
}
.list dt {
  font-weight: 700;
}
.list address:not(:last-of-type) {
  margin-bottom: 1.75em;
}
.list a {
  color: var(--color-blue);
  text-decoration: underline;
}
.list ul {
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .list {
    grid-template-columns: 230px 1fr;
    gap: 50px;
  }
  .list a:hover {
    text-decoration: none;
  }
  .list ul {
    line-height: 2;
  }
}
[data-aos=fade-right].aos-init {
  transform: translateX(-50px);
}

[data-aos=fade-left].aos-init {
  transform: translateX(3px);
}

/* ========================================
  Header PC版スタイル
========================================= */
.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease, transform 0.3s ease;
}
.header.is-hidden {
  transform: translateY(-100%);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header__inner {
  height: inherit;
  margin: 0 auto;
  padding: 0 0 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: block;
  line-height: 1;
}
.header__logo img {
  height: auto;
  width: 7.5rem;
  aspect-ratio: 220/57;
}

.header__nav-wrapper {
  display: none;
  --_menu-color: #333;
}

.header__nav-wrapper--white {
  --_menu-color: #fff;
}

.header__button-menu {
  --_background-color: #000;
  position: relative;
  display: block;
  width: var(--header-height);
  aspect-ratio: 1/1;
  background-color: transparent;
  border: none;
}
.header__button-menu span {
  display: block;
  width: 1.875rem;
  height: 1px;
  background-color: var(--_background-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease-out;
}
.header__button-menu span:nth-child(1) {
  translate: -50% calc(-50% - 6px);
}
.header__button-menu span:nth-child(2) {
  translate: -50% -50%;
}
.header__button-menu span:nth-child(3) {
  translate: -50% calc(-50% + 6px);
}

.header__button-menu--white {
  --_background-color: #fff;
}

.header__button-menu.is-active span:nth-child(1) {
  translate: -50% -50%;
  rotate: 45deg;
}
.header__button-menu.is-active span:nth-child(2) {
  translate: -50% -50%;
  opacity: 0;
}
.header__button-menu.is-active span:nth-child(3) {
  translate: -50% -50%;
  rotate: -45deg;
}

/** spメニュー **/
.header__sp-nav {
  padding-top: 30px;
  padding-bottom: 100px;
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: 100%;
  background-color: var(--color-blue);
  max-height: 100vh;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow-y: scroll;
}

@media screen and (min-width: 600px) {
  .header__sp-nav {
    width: 50%;
  }
}
.header__sp-nav.is-active {
  transform: translateX(0);
}

.header__sp-nav-lists {
  margin-bottom: 40px;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
}

.header__sp-nav-list {
  border-bottom: 1px solid #6878b2;
}

.header__sp-nav-list a {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25em 0;
  font-size: 1rem;
}
.header__sp-nav-list a::after {
  content: "";
  display: block;
  width: 0.35em;
  height: 0.35em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
}

.header__sp-nav-contact a {
  margin-inline: auto;
  width: 12.5rem;
  height: 3.125rem;
  background-color: var(--color-light-blue);
  border: 1px solid var(--color-blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family-en);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 35px;
  }
  .header__logo {
    transition: opacity 0.3s ease-out;
  }
  .header__logo img {
    width: 13.75rem;
  }
  .header__logo:hover {
    opacity: 0.75;
  }
  .header__button-menu {
    display: none;
  }
  .header__nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .header__nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }
  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
  }
  .header__nav-link {
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-family-en);
    color: var(--_menu-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .header__nav-link:hover {
    --_menu-color: var(--color-blue);
  }
  .header__contact {
    flex-shrink: 0;
  }
  .header__contact-btn {
    width: 12.5rem;
    height: 3.75rem;
    background-color: var(--_background-color);
    border: 2px solid var(--_border);
    color: var(--_color);
    font-family: var(--font-family-en);
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-out;
  }
}
.header__contact-btn--blue {
  --_color: #fff;
  --_border: var(--color-blue);
  --_background-color: var(--color-blue);
}

.header__contact-btn--transparent {
  --_color: #fff;
  --_border: #fff;
  --_background-color: transparent;
}

@media screen and (min-width: 1024px) {
  .header__contact-btn--blue:hover {
    --_color: var(--color-blue);
    --_background-color: #fff;
  }
  .header__contact-btn--transparent:hover {
    --_color: #fff;
    --_border: #fff;
    --_background-color: var(--color-blue);
  }
}
.footer--margin {
  margin-top: -40px;
}

.footer {
  background-color: var(--color-blue);
  padding: 70px 0 40px;
  z-index: 1;
  position: relative;
}

.foooter__container {
  margin-bottom: 45px;
}

.footer__copy {
  font-family: var(--font-family-en);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.footer__logo {
  margin-bottom: 45px;
}
.footer__logo img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  aspect-ratio: 220/57;
}

.footer__name-icon {
  margin-bottom: 50px;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/220;
}

.footer__title {
  margin-bottom: 45px;
  padding-bottom: 25px;
  color: #fff;
  border-bottom: 1px solid currentColor;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__title h2 {
  margin-inline: auto;
}

.footer__title-button {
  margin-inline: auto;
}

.footer__body {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.footer__sns-items {
  display: flex;
  align-items: center;
  gap: 25px;
  display: none;
}

.footer__sns-items a {
  transition: opacity 0.8 ease-out;
  cursor: pointer;
}

.footer__sns-items img {
  display: block;
}

.footer__nav {
  display: none;
}

.footer__nav-block-title {
  font-size: var(--font-size-24);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.footer__nav-items {
  text-transform: capitalize;
  font-size: var(--font-size-16);
  line-height: 2;
}

.footer__nav-items a {
  transition: color 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .footer {
    background-color: var(--color-blue);
    padding: 135px 0 60px;
  }
  .footer__name-icon {
    margin-bottom: 100px;
  }
  .footer__title {
    padding-bottom: 0.8620689655em;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 90px;
  }
  .footer__title h2 {
    margin-inline: 0;
  }
  .footer__title-button {
    margin-inline: 0;
  }
  .foooter__container {
    margin-bottom: 85px;
  }
  .footer__sns-items a:hover {
    opacity: 0.8;
  }
  .footer__nav {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 50px;
    color: #fff;
    font-family: var(--font-family-en);
  }
  .footer__nav-items a:hover {
    color: var(--color-black);
  }
}
.page {
  margin-bottom: 50px;
  position: relative;
}

.page__image {
  position: relative;
}

.page__image-bg {
  display: block;
  width: 100%;
  aspect-ratio: 1440/840;
  height: auto;
  min-height: 300px;
  max-height: calc(100vh - var(--header-height) - var(--breadcrumb-height));
  max-height: calc(100vh - var(--header-height) - var(--breadcrumb-height) + 70px);
  object-fit: cover;
  object-position: top center;
}

.page-image-text {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: auto;
}

.philosophy__block-image img {
  display: block;
  width: 50vw;
  aspect-ratio: 1/1;
  height: auto;
}

@media screen and (min-width: 768px) {
  .page {
    margin-bottom: 145px;
  }
  .page__image-bg {
    min-height: 600px;
  }
  .page-image-text {
    bottom: -20px;
  }
}
.contact-section {
  --_color: #fff;
  padding: 70px 0 40px;
  position: relative;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #33baf0, #2a4ab8) border-box;
  border: 10px solid transparent;
  border-radius: 10px;
  color: var(--_color);
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-section__image {
  z-index: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-section__header {
  margin-bottom: 40px;
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.contact-section__header h2 {
  letter-spacing: -0.02em;
}

.contact-section__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.contact-section__body .title-3 {
  letter-spacing: -0.06em;
}

@media screen and (min-width: 768px) {
  .contact-section {
    padding: 145px 0 110px;
  }
  .contact-section__header {
    margin-bottom: 55px;
    flex-direction: row;
    gap: 15px;
  }
  .contact-section__body {
    grid-template-columns: auto 50%;
    gap: 45px;
  }
}
.text__md {
  font-size: 1.5em;
}

.text__lg {
  font-size: 2em;
}

.text__xl {
  font-size: 2.5em;
}

.text__ja {
  font-family: var(--font-family-ja);
}

.text__en {
  font-family: var(--font-family-en);
}

.text__bold {
  font-weight: 700;
}

.text__semibold {
  font-weight: 600;
}

.text__regular {
  font-weight: 400;
}

.text__blue {
  color: var(--color-blue);
}

.text__green {
  color: #84ccc9;
}

.text__yellow {
  color: #f2ff82;
}

.text__marker {
  background: linear-gradient(transparent 64%, #f2ff82 64.1%);
}

.text__transformY-10 {
  display: inline-block;
  transform: translateY(-13px);
}

.header-lp {
  --_header-height: 50px;
  margin-left: 15px;
  margin-right: 15px;
  width: calc(100% - 30px);
  background-color: #fff;
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 999;
  border-radius: 40px;
  height: var(--_header-height);
  box-shadow: 0 0 30px rgba(153, 153, 153, 0.25);
  transition: transform 0.3s ease;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header-lp.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.header-lp__container {
  position: relative;
  z-index: 999;
  padding: 0 15px 0 15px;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 40px;
}

.header-lp__logo {
  width: min(100%, 13.75rem);
}
.header-lp__logo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 386/51;
}

.header-lp__menu {
  display: none;
}

.header-lp__nav-list {
  display: flex;
  align-items: center;
  gap: 1.375rem;
}

.header-lp__contact-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 500;
  font-size: var(--font-size-16);
  padding: 0 1.875em;
  border-radius: 25px;
  background: linear-gradient(to right, #2a4ab8 0%, #33b9ef 50%, #33b9ef 50.1%, #2a4ab8 100%);
  background-size: 200% 100%;
  background-position: right center;
  width: 12.5rem;
  height: 3.4375rem;
  transition: background-position 0.3s ease;
}

.header-lp__nav-item a {
  color: #000;
  transition: color 0.3s ease-out;
  font-size: var(--font-size-16);
}

.header-lp__button {
  --_space: 6px;
  --_width: 22px;
  position: absolute;
  display: block;
  width: var(--_width);
  aspect-ratio: 1;
  height: auto;
  position: relative;
  border: none;
  background-color: transparent;
}
.header-lp__button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s ease-out;
}
.header-lp__button span:nth-child(1) {
  translate: -50% calc(-50% - var(--_space));
}
.header-lp__button span:nth-child(2) {
  translate: -50% -50%;
}
.header-lp__button span:nth-child(3) {
  translate: -50% calc(-50% + var(--_space));
}

.header-lp__button.is-active span:nth-child(1) {
  translate: -50% -50%;
  rotate: 45deg;
}
.header-lp__button.is-active span:nth-child(2) {
  translate: -50% -50%;
  opacity: 0;
}
.header-lp__button.is-active span:nth-child(3) {
  translate: -50% -50%;
  rotate: -45deg;
}

.header-lp__sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: rgba(42, 74, 184, 0.93);
  height: 100vh;
  color: #fff;
  padding-top: 80px;
  transform: translateY(-100%);
  transition: transform 0.3s ease-out;
  z-index: 998;
}

.header-lp__sp-nav.is-active {
  transform: translateY(0);
}

.header-lp__sp-nav-list {
  padding: 0px 40px;
}

.header-lp__sp-nav-item {
  border-bottom: 1px solid #fff;
}

.header-lp__sp-nav-link {
  padding: 1.25em 0;
  display: block;
  font-size: var(--font-size-16);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-lp__sp-nav-link::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
  translate: -50% 0;
}

@media screen and (min-width: 768px) {
  .header-lp {
    --_header-height: 80px;
    top: 40px;
    margin-left: 40px;
    margin-right: 40px;
    width: calc(100% - 80px);
  }
  .header-lp__container {
    padding: 0 20px 0 40px;
  }
  .header-lp__logo {
    width: min(100%, 24.125rem);
  }
  .header-lp__contact-btn:hover {
    background-position: left center;
  }
  .header-lp__nav-item a:hover {
    color: var(--color-blue);
  }
  .header-lp__button {
    --_space: 9px;
    --_width: 30px;
  }
  .header-lp__sp-nav {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1280px) {
  .header-lp__menu {
    display: flex;
    align-items: center;
    gap: 35px;
  }
  .header-lp__button {
    display: none;
  }
}
.faqs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.faq__item {
  --_background-color: #fff;
  border-radius: 40px;
  background-color: var(--_background-color);
}

.faq__item.faq__item--grey {
  --_background-color: #eeeeee;
}

.faq__item-question,
.faq__item-answer {
  padding-left: 83px;
  padding-right: 40px;
}

.faq__item-question {
  --_rotate: 135deg;
  position: relative;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  background-color: #fff;
  border-radius: 40px;
  cursor: pointer;
  min-height: 5.04em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.faq__item-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  width: 0.4em;
  height: 0.4em;
  aspect-ratio: 1;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  rotate: var(--_rotate);
  transition: rotate 0.3s ease-in-out;
}

.faq__item-answer p:not(:last-of-type) {
  margin-bottom: 1.75em;
}

.faq__item-question.is-open {
  --_rotate: -45deg;
}

.faq__item-answer-wrapper {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease-out;
}

.faq__item-answer {
  min-height: 0;
  padding-top: 15px;
  padding-bottom: 20px;
  line-height: 2;
  font-weight: 400;
  font-size: 0.875rem;
}

.faq__item-icon {
  --_icon-color: #33b8ef;
  position: absolute;
  height: 100%;
  width: auto;
  aspect-ratio: 1;
  top: 0;
  left: 0;
  background-color: var(--_icon-color);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5625rem;
  font-weight: 700;
  font-family: var(--font-family-en);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__item-icon.faq__item-icon--black {
  --_icon-color: #282828;
}

@media screen and (min-width: 768px) {
  .faq__item-question,
  .faq__item-answer {
    padding-left: 100px;
    padding-right: 100px;
  }
  .faq__item-question {
    font-size: var(--font-size-24);
  }
  .faq__item-question::after {
    right: 30px;
  }
  .faq__item-question {
    min-height: 3.24em;
  }
  .faq__item-answer {
    font-size: 1.125rem;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .faq__item-icon {
    font-size: 2.25rem;
  }
}
.top {
  position: relative;
}

.main {
  margin-top: var(--header-height);
}

.top__hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: transparent;
}

.top__hero-inner {
  --_bottom: 80px;
  position: absolute;
  bottom: var(--_bottom);
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  display: flex;
  gap: 50px;
  flex-direction: column;
}

.top__hero-scroll {
  --_length: 120px;
  position: absolute;
  bottom: calc(var(--_bottom) * -1);
  right: -8px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.top__hero-scroll div {
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.top__hero-scroll span {
  height: var(--_length);
  width: 2px;
  background-color: #fff;
  display: block;
  transform: scaleY(0);
  animation: scroll 3s ease-out infinite;
}

@keyframes scroll {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  35% {
    transform: scaleY(1);
    transform-origin: top;
  }
  35.01% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  70% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@media screen and (min-width: 768px) {
  .top__hero-scroll {
    right: 0px;
    --_length: 220px;
  }
}
.top__hero-lead {
  line-height: 1;
  font-family: var(--font-family-en);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.top__hero-lead-top {
  font-size: 3.4375rem;
  text-transform: uppercase;
}

.top__hero-lead-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top__hero-lead-bottom-left {
  font-size: 1.875rem;
  text-transform: uppercase;
}

.top__hero-lead-bottom-right {
  font-size: 1rem;
  text-transform: capitalize;
  line-height: 1.15;
}

.top__hero-title-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}

.top__hero-title-en {
  font-size: 1.25rem;
  font-family: var(--font-family-en);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.top__hero-title-ja {
  font-size: 1.25rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .top__hero {
    min-height: 900px;
  }
  .top__hero-inner {
    flex-direction: row;
    justify-content: space-between;
    padding-right: 90px;
    align-items: flex-end;
  }
  .top__hero-lead-top {
    font-size: min(9.0277777778vw, 8.125rem);
  }
  .top__hero-lead-bottom-left {
    font-size: min(4.5138888889vw, 4.0625rem);
  }
  .top__hero-lead-bottom-right {
    font-size: 1.375rem;
  }
  .top__hero-title-ja {
    font-size: 1.5rem;
  }
}
/** slider **/
.top__swiper {
  --_opacity: 0;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: clip;
}
.top__swiper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(10, 15, 46, 0.7);
  z-index: 2;
  opacity: var(--_opacity);
  transition: background-color 0.5s ease;
}
.top__swiper.is-white::before {
  background-color: #fff;
}

.top__hero-slide img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/** philosophy section **/
.top__philosophy {
  padding-top: 40px;
  padding-bottom: 120px;
  background-color: transparent;
  position: relative;
  z-index: 3;
  color: #fff;
}

.top__philosophy-body {
  padding-top: 170px;
  width: min(100%, var(--inner-width-normal));
  margin-inline: auto;
}

.top__philosophy-body-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.top__philosophy-body-text p {
  font-weight: 500;
}
.top__philosophy-body-text p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.top__philosophy-body-text p:last-of-type {
  margin-bottom: 90px;
}

@media screen and (min-width: 768px) {
  .top__philosophy {
    padding-bottom: 240px;
  }
  .top__philosophy-body {
    padding-top: 340px;
  }
  .top__philosophy-body-text {
    grid-template-columns: auto 57.0833333333%;
  }
}
/** message **/
.top__message {
  padding-top: 40px;
  position: relative;
  background-color: #fff;
  position: relative;
  z-index: 3;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.top__message::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  z-index: -1;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.top__message-title {
  margin-bottom: 45px;
}

.top__message-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.top__message-body-figure {
  position: relative;
}
.top__message-body-figure img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: min(52.6470588235vw, 716px);
  aspect-ratio: 722/799;
  height: auto;
}

.top__message-body-text {
  padding-top: 30px;
}

.top__message-body-text h3 {
  margin-bottom: 70px;
}

.top__message-name-en {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 0.01em;
}
.top__message-name-en span:last-child {
  text-indent: 1.3em;
  display: block;
}

.top__message-name {
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
}

.top__message-position-en {
  font-size: var(--font-size-16);
  font-weight: 400;
  color: var(--color-gray);
  line-height: 1.1;
}

.top__message-name-ja {
  font-size: var(--font-size-32);
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .top__message-body-figure {
    height: 49.9375rem;
  }
  .top__block-body {
    margin-inline: auto;
    width: min(100%, 1280px);
  }
  .top__message-body {
    grid-template-columns: auto 53.75%;
    gap: 60px;
  }
  .top__message-name-en {
    font-size: 4rem;
  }
  .top__message-name {
    margin-bottom: 90px;
    position: relative;
    left: 50%;
    transform: translateX(-65%);
  }
}
/*** images ***/
.top__images {
  position: relative;
  padding-top: 30px;
  padding-bottom: 70px;
  z-index: 3;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.top__images-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  position: relative;
}

.top__image {
  position: relative;
  margin-inline: auto;
}
.top__image img {
  display: block;
  height: auto;
  width: 100%;
  border-radius: 10px;
}

.top__image--left {
  margin-bottom: 20px;
  width: 200px;
  aspect-ratio: 317/236;
  translate: -100px 0;
}

.top__image--center {
  width: 290px;
  aspect-ratio: 638/480.75;
}

.top__image--right {
  width: 350px;
  aspect-ratio: 877/586;
  translate: 80px 0;
}

@media screen and (min-width: 768px) {
  .top__images {
    padding-bottom: 175px;
  }
  .top__images-body {
    flex-direction: row;
    translate: 5.625rem 0;
  }
  .top__image {
    margin-inline: 0;
  }
  .top__image--left {
    translate: -50% 0;
    width: clamp(150px, 22.0138888889vw, 317px);
  }
  .top__image--center {
    width: clamp(250px, 44.3055555556vw, 638px);
  }
  .top__image--right {
    width: clamp(400px, 41.7361111111vw, 601px);
    translate: 0 80px;
  }
  .top__image--right img {
    aspect-ratio: 645/601;
    object-fit: cover;
  }
}
/** service **/
.top__service {
  position: relative;
  z-index: 3;
  margin-top: -100px;
  padding-top: 140px;
  padding-bottom: 70px;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.top__service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 20px;
}

.top__service-title {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top__service-title p {
  font-size: var(--font-size-32);
  font-weight: 700;
  line-height: 1.5;
}

.p-top__service-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-top__service-heading3 {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: var(--font-family-en);
}

.p-top__service-text-body {
  padding-top: 40px;
  border-top: 1px solid #fff;
}

.p-top__service-text-body-top {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-top__service-text-body-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.p-top__service-text-body-top-left h4 {
  margin-bottom: 1.875em;
  font-size: var(--font-size-24);
}
.p-top__service-text-body-top-left p {
  margin-bottom: 2.5em;
}

.p-top__service-text-body-bottom {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.p-top__service-text-body-bottom-item h4 {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #fff;
  font-size: var(--font-size-24);
  font-weight: 400;
  line-height: 2;
}
.p-top__service-text-body-bottom-item li {
  line-height: 2.2222222222em;
}

.p-top__service-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .top__service {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .top__service-title {
    flex-direction: row;
    gap: 100px;
    align-items: center;
  }
  .p-top__service-text {
    grid-template-columns: auto 1fr;
    gap: 90px;
  }
  .p-top__service-text-body-top {
    margin-bottom: 55px;
    grid-template-columns: 49.0797546012% 1fr;
    gap: 50px;
  }
  .p-top__service-text-body-bottom {
    margin-bottom: 80px;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .p-top__service-button {
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
}
/** service gallarys **/
.gallary {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  z-index: 4;
  overflow: hidden;
}

.gallary-body {
  display: flex;
  width: fit-content;
  animation: service-gallary-slide 40s linear infinite;
}

.gallary-item {
  flex-shrink: 0;
  /**
  * SP: 1画面に1.8枚表示 + 各スライド右に20px余白
  * 
  * 100vw = 1.8 × (スライド幅 + 20px)
  * 100vw = 1.8 × スライド幅 + 36px
  * スライド幅 = (100vw - 36px) / 1.8
  */
  width: calc((100vw - 36px) / 1.8);
  margin-right: 20px;
}

@media screen and (min-width: 768px) {
  .gallary-item {
    /**
    * PC: 1画面に3.5枚表示 + 各スライド右に40px余白
    * 
    * 100vw = 3.5 × (スライド幅 + 40px)
    * 100vw = 3.5 × スライド幅 + 140px
    * スライド幅 = (100vw - 140px) / 3.5
    */
    width: calc((100vw - 140px) / 3.5);
    margin-right: 40px;
  }
}
.gallary-item img {
  display: block;
  height: auto;
  width: 100%;
}

/**
 * 無限スライダーのアニメーション
 * 
 * 仕組み:
 * - 4枚の画像を2セット（計8枚）並べている
 * - translateX(-50%) = 自身の幅の50% = 1セット分（4枚分）
 * - 1セット分移動完了時、見た目は開始時と全く同じ
 * - だからシームレスに繰り返せる
 * 
 * カクつかない理由:
 * - linear（等速）で移動するので速度変化がない
 * - 開始位置と終了位置が視覚的に一致している
 * - GPUアクセラレーションが効く（transform使用）
 */
@keyframes service-gallary-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/** case **/
.top__case {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding-top: 80px;
  padding-bottom: 140px;
  background-color: #fff;
}

.top__case-title {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.top__case-cards {
  margin-bottom: 50px;
}

.top__case-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .top__case-cards {
    margin-bottom: 70px;
  }
  .top__case-button {
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
}
@media screen and (min-width: 1024px) {
  .top__case-title {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
  }
}
/** card **/
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media screen and (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.card a {
  --_animation-color: var(--color-blue);
  --_opacity: 0;
  display: block;
  position: relative;
}
.card a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--_animation-color);
  z-index: 2;
  opacity: var(--_opacity);
  transition: opacity 0.3s ease-out;
}

.card a:hover {
  --_opacity: .7;
}

.card__image {
  position: relative;
  z-index: 1;
}
.card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 450/335;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

.card__body {
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
}

.card__title {
  font-weight: 500;
  min-height: 3.2em;
  line-height: 1.7777777778em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card__time {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

/** news **/
.top__news {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 140px;
  background-color: var(--color-light-gray);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.top__news-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.top__news-cards {
  margin-bottom: 40px;
}

.top__news-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .top__news-header {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 90px;
  }
  .top__news-button {
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
}
.c-categorys {
  display: flex;
  align-items: center;
  gap: 8px 15px;
  flex-wrap: wrap;
}

.c-categorys__item {
  font-weight: 500;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}
.c-categorys__item a {
  display: block;
  transition: color 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .c-categorys {
    gap: 10px 30px;
  }
  .c-categorys a:hover {
    color: var(--color-blue);
  }
}
/** posts **/
.posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.post a {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.post__body {
  padding: 22px 18px 25px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.post__image {
  aspect-ratio: 450/260;
  overflow: hidden;
  border-radius: 10px;
}
.post__image img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  transition: scale 0.3s ease-out;
}

.post__time {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-family-en);
  color: var(--color-gray-text);
}

.post__title {
  font-weight: 500;
  line-height: 1.5;
  min-height: 3em;
}

.post__para {
  --_line-height: 1.8;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black-text);
  min-height: calc(2em * var(--_line-height));
}

.post__title,
.post__para {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
  .post__image {
    aspect-ratio: 450/235;
  }
  .post__body {
    padding: 45px 35px 50px;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .post__para {
    --_line-height: 2;
  }
}
@media screen and (min-width: 1024px) {
  .posts {
    grid-template-columns: repeat(3, 1fr);
  }
  .post a:hover .post__image img {
    scale: 1.05;
  }
}
/** recruit **/
.top__recruit {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding-top: 40px;
  padding-bottom: 90px;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
}

.top__recruit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.top__recruit-body {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .top__recruit {
    padding-bottom: 190px;
  }
  .top__recruit-title {
    padding-right: initial;
  }
}
.top__recruit-title,
.top__recruit-button {
  margin-inline: auto;
}

.top__recruit-para {
  text-align: center;
  margin-bottom: 60px;
  font-size: var(--font-size-32);
  font-weight: 700;
}

/** philosophyページ **/
.philosophy__section {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.philosophy__block {
  overflow-x: clip;
}

.philosophy__image {
  margin-bottom: 40px;
  width: 100%;
  height: auto;
  aspect-ratio: 1400/600;
  max-height: 600px;
  min-height: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

.philosophy__gallarys {
  margin-bottom: 40px;
  width: min(117.8571428571vw, 1650px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.philosophy__gallary img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
}

.philosophy__block-body {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 1200px);
  margin-inline: auto;
}

.philosophy__block-body h2 {
  margin-bottom: 1.25em;
}

.philosophy__block-lead {
  font-size: var(--font-size-32);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2em;
}

.philosophy__block-text p:not(:last-of-type) {
  margin-bottom: 1.75em;
}

.philosophy__block-body-text {
  margin-bottom: 40px;
}

.philosophy__block-body-image img {
  display: block;
  width: min(100%, 600px);
  aspect-ratio: 1;
}

@media screen and (min-width: 768px) {
  .philosophy__section {
    margin-bottom: 160px;
    gap: 100px;
  }
  .philosophy__image {
    border-radius: 30px;
  }
  .philosophy__gallarys {
    gap: 16px;
  }
  .philospy__block-number {
    margin-bottom: 140px;
  }
  .philosophy__block-body {
    grid-template-columns: auto 50%;
    gap: 20px;
  }
  .philosophy__block-body-text {
    margin-bottom: 0;
  }
  .philosophy__block-body-image img {
    padding-left: 100px;
    padding-bottom: 100px;
    width: min(50vw, 600px);
  }
}
.message__section {
  margin-bottom: 80px;
}

.message__profile {
  margin-bottom: 80px;
}

.message__heading-2 {
  margin-bottom: 50px;
}

.message__header,
.message__image,
.message__block {
  margin-bottom: 70px;
}

.message__image {
  aspect-ratio: 1440/600;
}
.message__image img {
  display: block;
  width: 100%;
  height: auto;
}

.message__text {
  letter-spacing: -0.02em;
}
.message__text *:not(:last-of-type) {
  margin-bottom: 1.75em;
}

.message__profile-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-inline: auto;
  width: min(100%, 1200px);
}

.message__profile-image img {
  display: block;
  width: 100%;
  aspect-ratio: 400/540;
  height: auto;
}

.message__profile-text-name {
  margin-bottom: 1em;
  font-size: var(--font-size-64);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-en);
}

.message__profile-name-en {
  margin-bottom: 1.25em;
  color: var(--color-gray-text);
}

.message__profile-name-ja {
  margin-bottom: 55px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .message__section {
    margin-bottom: 140px;
  }
  .message__profile {
    margin-bottom: 155px;
  }
  .message__heading-2 {
    margin-bottom: 70px;
  }
  .message__header,
  .message__image,
  .message__block {
    margin-bottom: 140px;
  }
  .message__profile-body {
    grid-template-columns: 33.3333333333% 1fr;
    gap: 80px;
  }
}
.message__name {
  width: min(100%, 1200px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -53%);
  color: #fff;
}

.message__name-en {
  font-size: var(--font-size-64);
  font-weight: 600;
  font-family: var(--font-family-en);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.546875em;
}
.message__name-en div:last-of-type {
  text-indent: 1.3em;
}

.message__name-position {
  font-size: var(--font-size-16);
  margin-bottom: 4px;
}

.message__name-ja {
  font-size: var(--font-size-32);
  font-weight: 500;
}

.company__section {
  margin-bottom: 75px;
}

.services__header,
.company__header {
  margin-bottom: 70px;
}

.company__lists {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.company__location {
  background-color: var(--color-black-bg);
  padding: 40px 0 70px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #fff;
}

.company__heading3 {
  margin-bottom: 50px;
}

.company__location-body {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.company__location-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.company__location-list-iframe {
  margin-bottom: 40px;
}
.company__location-list-iframe iframe {
  display: block;
  width: 100%;
  aspect-ratio: 560/280;
  background-color: #fff;
  border-radius: 10px;
}

.company__location-list h4 {
  font-size: var(--font-size-24);
  font-weight: 400;
  line-height: 1.1;
}

.company__location-list p {
  font-size: 1rem;
}

.company__location-list a {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .company__section {
    margin-bottom: 155px;
  }
  .services__header,
  .company__header {
    margin-bottom: 120px;
  }
  .company__location {
    padding: 40px 0 140px;
  }
  .company__heading3 {
    margin-bottom: 80px;
  }
  .company__location-lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
  .company__location-list p {
    font-size: 1.0625rem;
  }
  .company__location-list a:hover {
    text-decoration: none;
  }
}
.services__section {
  margin-bottom: 75px;
  position: relative;
}

.services__section-bg {
  z-index: -1;
  position: absolute;
  top: calc(100% - 40px);
  left: 0;
  width: 100%;
  aspect-ratio: 1440/620;
  height: auto;
  object-fit: cover;
}

.services__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.services__link {
  padding-bottom: 1.25em;
  font-size: var(--font-size-24);
  font-weight: 400;
  line-height: 2;
  border-bottom: 1px solid #000;
}

.services__link {
  --_hover-animation: 0 25%;
  --_color: #000;
  display: flex;
  align-items: center;
  color: var(--_color);
  transition: color 0.3s ease-out;
}
.services__link::after {
  content: "";
  display: inline-block;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  width: 0.25em;
  height: 0.25em;
  rotate: 45deg;
  translate: var(--_hover-animation);
  margin-left: 0.5em;
  transition: translate 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .services__section {
    margin-bottom: 155px;
  }
  .services__links {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .services__link:hover {
    --_hover-animation: 5px 25%;
    --_color: var(--color-blue);
  }
}
.services__title-en {
  padding-bottom: 0.3055555556em;
  margin-bottom: 0.3888888889em;
  border-bottom: 1px solid currentColor;
  line-height: 1;
}

.services__body {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.services__title {
  margin-bottom: 65px;
}

.services__title h2 {
  font-size: var(--font-size-20);
  font-weight: 400;
}

.services__2columns {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
}

.services__2column-main h3 {
  margin-bottom: 1.875em;
  letter-spacing: -0.04em;
}

.services__2column-sub h4 {
  margin-bottom: 1.875em;
  padding-bottom: 0.6666666667em;
  font-size: var(--font-size-24);
  font-weight: 400;
  line-height: 1.1;
  border-bottom: 1px solid currentColor;
}

.services__2column-sub ul {
  line-height: 2;
}

.services__box {
  margin-bottom: 60px;
  padding: 30px 17px 45px;
  border-radius: 10px;
  background-image: linear-gradient(180deg, #080c17 0%, #080c17 50%, #393c45 100%);
}

.services__box-image {
  margin-bottom: 40px;
}
.services__box-image img {
  display: block;
  width: min(100%, 850px);
  height: auto;
  aspect-ratio: 848/311;
  margin-inline: auto;
}

.services__box-body {
  width: min(100%, 980px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.services__box-text-text {
  color: #fff;
}

.service__box-title h3 {
  color: #fff;
  font-size: var(--font-size-32);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.59375em;
}
.service__box-title p {
  margin-bottom: 2.5em;
  color: var(--color-gray-text-2);
  font-size: var(--font-size-24);
  font-weight: 400;
  line-height: 1.1;
}

.services__title-1 {
  margin-bottom: 35px;
  width: min(100%, 1200px);
  margin-inline: auto;
}

.services__title-1-en {
  font-size: var(--font-size-48);
  font-weight: 600;
  font-family: var(--font-family-en);
  color: #cfcfcf;
  line-height: 1.1;
  text-transform: capitalize;
  margin-bottom: 0.3125em;
}

.services__title-1-ja {
  font-size: var(--font-size-32);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.services__functions-lists {
  --_grid-rows: 7;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
}

.services__functions-list {
  background-color: #f2f2f2;
  padding: 30px 25px 35px;
  border-radius: 10px;
}

.services__functions-list-title {
  letter-spacing: -0.04em;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1em;
}
.services__functions-list-title span {
  font-size: 0.75em;
}

.services__features-lists {
  margin-bottom: 75px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 10px;
}

.services__features-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}

.services__features-list-title {
  padding-bottom: 25px;
}

.services__features-list-icon {
  margin-bottom: 25px;
  height: 68px;
  width: auto;
  display: block;
  margin-inline: auto;
}

.services__features-list-body {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding-top: 35px;
  padding-inline: 30px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto 1fr;
}

.services__features-list-image img {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 445/240;
  object-fit: cover;
}

.services__features-list-en {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.25rem;
  font-weight: 600;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

.services__features-list-title {
  text-align: center;
}

.services__features-list-ja {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
}

.services__features-list-title p {
  font-weight: 500;
}

.services__gallary {
  margin-bottom: 50px;
}

.services__system-lists {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.services__system-list h4 {
  margin-bottom: 1.5625em;
}

.services__system-number {
  margin-bottom: 3em;
  padding-bottom: 0.75em;
  font-size: var(--font-size-20);
  font-family: var(--font-family-en);
  text-transform: capitalize;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/** method **/
.services__method-lists-cover {
  overflow-x: auto;
  padding-top: 100px;
  margin-top: -70px;
}

.services__method-lists {
  margin-bottom: 60px;
  min-width: 1360px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.services__method-list--recommend {
  --_color: var(--color-blue);
  position: relative;
  background: linear-gradient(#f3f3f3, #f3f3f3) padding-box, linear-gradient(to right, #33baf0, #2a4ab8) border-box;
  border: 3px solid transparent;
  border-radius: 10px;
}

.services__recommend-icon {
  position: absolute;
  display: block;
  width: min(100%, 55px);
  aspect-ratio: 90/70;
  height: auto;
  top: -15px;
  left: 50%;
  translate: -50% -100%;
}

.services__method-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 125px 150px 240px 1fr;
  background-color: #f3f3f3;
  border-radius: 10px;
  padding: 60px 15px;
}

.services__method-list h4 {
  margin-bottom: 50px;
  text-align: center;
  font-size: var(--font-size-24);
  min-height: 2.2em;
  line-height: 1.1;
}

.services__method-list h5 {
  font-weight: 500;
  font-size: var(--font-size-16);
  margin-bottom: 1em;
}

.services__method-list-icon {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  gap: 13px;
}
.services__method-list-icon img {
  display: block;
  width: auto;
  height: 100%;
}

.services__method-list-feautre,
.services__method-list-merit,
.services__method-list-demerit {
  border-top: 1px solid #0d0d0d;
  padding: 25px 0;
}
.services__method-list-feautre li,
.services__method-list-merit li,
.services__method-list-demerit li {
  --_size: 0.875rem;
  position: relative;
  font-size: var(--_size);
  padding-left: 1.2em;
}
.services__method-list-feautre li:not(:last-of-type),
.services__method-list-merit li:not(:last-of-type),
.services__method-list-demerit li:not(:last-of-type) {
  border-bottom: 1px solid #dadada;
  margin-bottom: 0.6em;
  padding-bottom: 0.6em;
}

.list-style-disc li::before,
.list-style-cross li::before,
.list-style-circle li::before {
  position: absolute;
  top: calc(var(--_size) * 1.5 / 2);
  left: 0;
  border-radius: 50%;
  display: block;
  translate: 0 -50%;
}

.list-style-disc li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #000;
}

.list-style-cross li::before {
  content: "×";
  width: 0.8em;
  aspect-ratio: 1;
}

.list-style-circle li::before {
  content: "◯";
  width: 0.8em;
  aspect-ratio: 1;
}

.services__icons-lists {
  margin-bottom: 60px;
}
.services__icons-lists img {
  width: min(100%, 1440px);
  height: auto;
  margin-inline: auto;
  aspect-ratio: 1440/107;
}

@media screen and (min-width: 768px) {
  .services__title {
    margin-bottom: 130px;
  }
  .services__2columns {
    margin-bottom: 135px;
    grid-template-columns: 57.5% 1fr;
    gap: 85px;
  }
  .services__box {
    margin-bottom: 120px;
    padding: 65px 30px 95px;
  }
  .services__box-body {
    grid-template-columns: 1fr 46.9387755102%;
    gap: 120px;
  }
  .services__title-1 {
    margin-bottom: 50px;
  }
  .services__functions-lists {
    margin-bottom: 115px;
  }
  .services__functions-list {
    padding: 55px 45px 45px;
  }
  .services__functions-list-title {
    font-size: 1.375rem;
  }
  .services__features-lists {
    margin-bottom: 150px;
  }
  .services__features-list-body,
  .services__features-list-title {
    padding-bottom: 50px;
  }
  .services__features-list-body {
    padding-inline: 50px;
    padding-top: 50px;
  }
  .services__gallary {
    margin-bottom: 70px;
  }
  .services__system-lists {
    margin-bottom: 140px;
    grid-template-columns: repeat(2, 1fr);
  }
  .services__method-lists {
    margin-bottom: 100px;
  }
  .services__recommend-icon {
    width: min(100%, 90px);
    top: -30px;
  }
  .services__icons-lists {
    margin-bottom: 120px;
  }
  .services__features-list:not(:last-of-type) {
    position: relative;
  }
  .services__features-list:not(:last-of-type)::before, .services__features-list:not(:last-of-type)::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3.5px;
    background-color: #000;
    top: 50%;
    left: calc(100% + 5px);
    z-index: 3;
    translate: -50% -50%;
  }
  .services__features-list:not(:last-of-type)::before {
    rotate: 45deg;
  }
  .services__features-list:not(:last-of-type)::after {
    rotate: -45deg;
  }
}
@media screen and (min-width: 1400px) {
  .services__functions-list-title {
    white-space: nowrap;
  }
}
.lp__section,
.arrow {
  --_width: min(100%, 150px);
  position: relative;
}
.lp__section::before,
.arrow::before {
  content: "";
  display: block;
  width: var(--_width);
  aspect-ratio: 250/40;
  height: auto;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  background: linear-gradient(to right, #33b9ef 0%, #2a4bb9 100%);
}

@media screen and (min-width: 768px) {
  .lp__section,
  .arrow {
    --_width: min(100%, 250px);
  }
}
:root {
  --color-blue-bg: #e9edf7;
}

/** hero **/
.lp__hero {
  padding: 120px 0 60px;
  background: linear-gradient(to bottom, #080c18 0%, #080c18 65%, #363a43 100%);
}

.lp__hero-container {
  width: min(100% - var(--inner-padding) * 2, 1030px);
  margin-inline: auto;
}

.lp__hero-body {
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.lp__hero-figure img {
  display: block;
  width: min(100%, 190px);
  height: auto;
  aspect-ratio: 287/307;
  margin-inline: auto;
}

.lp__hero-text-para {
  margin-bottom: 10px;
  width: fit-content;
  font-size: 0.9375rem;
  color: #84ccc9;
  font-weight: 700;
  border: 1px solid #84ccc9;
  line-height: 1;
  padding: 0.6em 0.9em;
  border-radius: 10px;
}

.lp__hero-text-image {
  margin-bottom: 30px;
  display: block;
  width: min(100%, 656px);
  aspect-ratio: 656/131;
  height: auto;
  translate: -12px 0;
  margin-inline: auto;
}

.lp__hero-lists {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.lp__hero-list {
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background-color: #41454d;
  padding: 1.2222222222em;
  width: 100%;
  margin-inline: auto;
}

.lp__hero-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.lp__hero-icon {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 220px);
  margin-inline: auto;
}

.lp__hero-icon-image {
  aspect-ratio: 66/91;
  width: 20.625%;
  height: auto;
  display: block;
}

.lp__hero-icon-image--reverse {
  scale: -1 1;
}

.lp__hero-icon-title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: var(--font-size-16);
  color: #919298;
}

.lp__hero-icon-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #84ccc9;
  font-weight: 700;
  line-height: 1;
  font-size: var(--font-size-24);
}

@media screen and (min-width: 768px) {
  .lp__hero {
    padding: 200px 0 60px;
  }
  .lp__hero-body {
    padding-left: 40px;
    margin-bottom: 45px;
    grid-template-columns: 28.640776699% 1fr;
    gap: 3.75em;
  }
  .lp__hero-text-para {
    font-size: 1.25rem;
  }
  .lp__hero-figure img {
    width: min(100%, 295px);
  }
  .lp__hero-lists {
    flex-direction: row;
    gap: 1.25em;
  }
  .lp__hero-text-image {
    margin-bottom: 10px;
  }
  .lp__hero-lists {
    gap: 1.25em;
  }
  .lp__hero-list {
    width: auto;
    margin-inline: 0;
  }
  .lp__hero-icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  .lp__hero-icon {
    width: 100%;
  }
}
/** faq **/
.lp__faq {
  background-color: var(--color-blue-bg);
  padding-top: 35px;
  padding-bottom: 40px;
  margin-bottom: 80px;
}

.lp__title {
  text-align: center;
  margin-bottom: 45px;
}

.lp__title-1 {
  margin-bottom: 5px;
  font-size: var(--font-size-24);
  font-family: var(--font-family-en);
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(to right, #33b9ef 0%, #33b9ef 40%, #2a4bb9 60%, #2a4bb9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp__title-2 {
  font-weight: 400;
  padding: 15px 10px;
  text-align: center;
  letter-spacing: 0.02em;
  border-radius: 15px;
  font-size: var(--font-size-24);
  color: #fff;
  list-style: 1;
  background: linear-gradient(to right, #33b9ef 0%, #2a4bb9 100%);
}

.lp__lead {
  font-size: 1.375rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .lp__title-2 {
    border-radius: 40px;
    padding: 10px;
  }
  .lp__lead {
    font-size: 2rem;
    font-weight: 700;
  }
}
.lp__lead--mt50 {
  margin-bottom: 35px;
}

.lp__paragraph {
  width: min(100%, 944px);
  margin-inline: auto;
}

.lp__faq-body {
  position: relative;
}

.lp__faq-icon {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(60px, 9.5833333333vw, 115px);
  aspect-ratio: 115/182;
  height: auto;
  display: block;
  translate: 0 -80%;
}

.lp__faq-lists {
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 17px;
}

.lp__faq-list {
  border-radius: 15px;
  padding: 30px 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
}

.lp__faq-list-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp__faq-list-text p {
  font-size: var(--font-size-16);
  line-height: 1.5;
}

.lp__faq-list-icon {
  width: 9.4915254237%;
  height: auto;
  aspect-ratio: 1;
}

.lp__faq-title {
  font-size: var(--font-size-24);
  color: var(--color-blue);
  font-weight: 700;
}

.lp__faq-heading {
  margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .lp__faq {
    padding-top: 70px;
    padding-bottom: 80px;
    margin-bottom: 120px;
  }
  .lp__faq-lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 17px;
  }
  .lp__faq-list {
    padding: 48px 30px;
    gap: 18px;
  }
  .lp__faq-icon {
    translate: 0 -80%;
    left: min(4.1666666667vw, 50px);
  }
  .lp__faq-heading {
    margin-bottom: 50px;
  }
}
/** reason **/
.lp__reason-title {
  margin-bottom: 40px;
}

.lp__reason-lists {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px 20px;
}

.lp__reason-list {
  padding: 30px 20px;
  border-radius: 15px;
  background-color: var(--color-blue-bg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.lp__reason-list-body {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

.lp__reason-list-figure {
  max-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp__reason-list-figure img {
  display: block;
  max-height: 100%;
  width: auto;
}

.lp__reason-list-number {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family-en);
}
.lp__reason-list-number::before {
  content: attr(data-text);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.lp__reason-list-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.8em;
  color: var(--color-blue);
}

.lp__reason-list-text p {
  font-size: var(--font-size-16);
}

@media screen and (min-width: 768px) {
  .lp__reason-title {
    margin-bottom: 55px;
  }
  .lp__reason-lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
  }
  .lp__reason-list {
    padding: 40px 35px;
    grid-template-rows: 300px auto;
    gap: 20px;
  }
  .lp__reason-list-body {
    gap: 40px;
  }
  .lp__reason-list-title {
    font-size: 1.3125rem;
  }
  .lp__reason-list-number {
    font-size: 4.5rem;
  }
  .lp__reason-list-number::before {
    font-size: 1rem;
  }
  .lp__reason-list-figure {
    max-height: 250px;
  }
}
/** banner **/
.lp__banner--mt100 {
  margin-bottom: 60px;
}

.lp__banner--mt40 {
  margin-bottom: 40px;
}

.lp__banner-body {
  padding: 30px 20px;
  background-color: #080c18;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
  align-items: center;
}

.lp__banner-text {
  width: min(100%, 622px);
}

.lp__banner-figure {
  width: min(100%, 200px);
}
.lp__banner-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 266/287;
}

.lp__banner-text-image {
  margin-bottom: 10px;
  display: block;
  width: 100%;
  aspect-ratio: 622/131;
  height: auto;
  translate: -6px 0;
}

.lp__banner-para {
  color: #fff;
  font-size: var(--font-size-20);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
  margin-inline: auto;
  width: fit-content;
}

.lp__banner-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .lp__banner--mt100 {
    margin-bottom: 100px;
  }
  .lp__banner-body {
    padding: 50px;
    gap: 75px;
    flex-direction: row;
  }
  .lp__banner-figure {
    width: min(100%, 266px);
  }
  .lp__banner-para {
    margin-inline-start: 0;
  }
  .lp__banner-button {
    margin-inline-start: 0;
  }
}
/** necessity **/
.lp__necessity {
  margin-bottom: 50px;
}

.lp__necessity-body {
  position: relative;
}

.lp__necessity-icon {
  display: none;
  z-index: 1;
  position: absolute;
  top: 0;
  left: min(12.5vw, 150px);
  translate: 0 -100%;
  aspect-ratio: 147/152;
  height: auto;
  width: min(12.25vw, 147px);
}

.lp__necessity-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px 10px;
}

.lp__necessity-list {
  padding-top: 28px;
  border-top: 2px solid #000;
  padding-inline: 25px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 25px;
}

.lp__necessity-list-number {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 2.25rem;
  font-family: var(--font-family-en);
  line-height: 1;
}

.lp__necessity-list p {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .lp__necessity {
    margin-bottom: 80px;
  }
  .lp__necessity-icon {
    display: block;
  }
  .lp__necessity-list {
    grid-template-rows: auto 3em 1fr;
  }
}
/** problems **/
.lp__problems {
  padding: 50px 0 45px;
  margin-bottom: 80px;
  background-color: #221e25;
}

.lp__problems-title .lp__title-1 {
  color: #918f92;
  -webkit-text-fill-color: #918f92;
  background: none;
}

.lp__problems-title .lp__paragraph {
  color: #fff;
}

.lp__problems-title .lp__lead {
  color: #fff;
}

.lp__problems-heading3 {
  margin-bottom: 30px;
  font-size: var(--font-size-24);
  font-weight: 500;
  background-color: #4e4b51;
  color: #fff;
  padding: 0.625em;
  text-align: center;
  border-radius: 10px;
}

.lp__problems-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.lp__problems-list {
  --_bg-color: #fff;
  position: relative;
  background-color: var(--_bg-color);
  border-radius: 10px;
  padding: 40px 30px;
}
.lp__problems-list::before {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 0;
  background-color: #fff;
  translate: -50% -100%;
}

.lp__problems-list--last {
  --_bg-color: #bdbcbe;
}

.lp__problems-list-title {
  font-size: var(--font-size-24);
  font-weight: 500;
  margin-bottom: 30px;
}

.lp__problems-list-title-2 {
  font-weight: 500;
  margin-bottom: 1.3333333333em;
}

.lp__problems-list-subtitle {
  margin-bottom: 8px;
  font-size: var(--font-size-16);
  font-weight: 500;
  color: #fff;
  background-color: #4e4b51;
  display: inline-block;
  padding: 4px 0.8em;
  border-radius: 5px;
  line-height: 1;
}

.lp__problems-list-points {
  --_size: 0.875rem;
  --_line-height: 2;
  font-size: var(--_size);
  line-height: var(--_line-height);
}

.lp__problems-list-point {
  position: relative;
  padding-left: 1.2em;
}
.lp__problems-list-point::before {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1;
  background-color: #4e4b51;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(var(--_size) * var(--_line-height) / 2);
  translate: 0 -50%;
}

.lp__problems-list p {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .lp__problems {
    padding: 100px 0 90px;
    margin-bottom: 120px;
  }
  .lp__problems-lists {
    grid-template-columns: 36% 36% 1fr;
    gap: 20px;
  }
}
/** strength **/
.lp__strength {
  margin-bottom: 80px;
}

.lp__strength-list {
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "text" "figure";
  gap: 25px;
}
.lp__strength-list:not(:first-child) {
  border-top: 1px solid #cccccc;
  padding-top: 40px;
}

.lp__strength-list-text {
  grid-area: text;
}

.lp__strength-list-figure {
  grid-area: figure;
}
.lp__strength-list-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.lp__strength-list-number {
  color: var(--color-blue);
  font-family: var(--font-family-en);
  font-size: 2.8125rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  font-weight: 700;
}
.lp__strength-list-number::before {
  content: attr(data-text);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-family-en);
}

.lp__strength-list-number,
.lp__strength-list-title {
  margin-bottom: 25px;
}

.lp__strength-list-para:not(:last-child) {
  margin-bottom: 2em;
}
.lp__strength-list-para p:not(:last-child) {
  margin-bottom: 2em;
}

.lp__strength-list-points {
  --_line-height: 1.8;
  background-color: #e9edf7;
  border-radius: 10px;
  padding: 20px;
  line-height: var(--_line-height);
}

.lp__strength-list-points li {
  padding-left: 1.1em;
  position: relative;
}
.lp__strength-list-points li::before {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: calc(var(--_line-height) * 1em / 2);
  translate: 0 -50%;
}

@media screen and (min-width: 768px) {
  .lp__strength {
    margin-bottom: 50px;
  }
  .lp__strength-list {
    padding-bottom: 75px;
    gap: 50px;
  }
  .lp__strength-list:not(:first-child) {
    padding-top: 75px;
  }
  .lp__strength-list:nth-child(odd) {
    grid-template-areas: "figure text";
    grid-template-columns: 43.3333333333% 1fr;
  }
  .lp__strength-list:nth-child(even) {
    grid-template-areas: "text figure";
    grid-template-columns: 1fr 43.3333333333%;
  }
  .lp__strength-list-figure--translate-y {
    translate: 0 100px;
  }
  .lp__strength-list-number,
  .lp__strength-list-title {
    margin-bottom: 65px;
  }
  .lp__strength-list-number {
    font-size: 4.5rem;
    gap: 8px;
  }
  .lp__strength-list-number::before {
    font-size: 1.125rem;
  }
  .lp__strength-list-points {
    padding: 35px;
  }
}
/** template **/
.lp__template {
  margin-bottom: 60px;
  position: relative;
  padding: 55px 0 65px;
}

.lp__template-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.lp__template-title {
  margin-bottom: 10px;
}

.lp__template-lead {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
}

.lp__template-lead-figure img {
  width: min(100%, 132px);
  height: auto;
  aspect-ratio: 132/177;
  margin-inline: auto;
}

.lp__template-lead-text {
  letter-spacing: -0.05em;
}

.lp__template-lead-text-p1 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.lp__template-lead-text-p2 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
}

.lp__template-para {
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}

.lp__template-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 30px;
}

.lp__template-list {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
}

.lp__template-list-figure {
  margin-bottom: 40px;
}
.lp__template-list-figure img {
  display: block;
  width: min(100%, 256px);
  height: auto;
  aspect-ratio: 256/132;
  margin-inline: auto;
}

.lp__template-list-title {
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.lp__template-list-text {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .lp__template {
    padding: 110px 0 125px;
    margin-bottom: 110px;
  }
  .lp__template-lead {
    margin-bottom: 60px;
    grid-template-columns: 130px 1fr;
  }
  .lp__template-lead-text-p1 {
    font-size: 2.25rem;
  }
  .lp__template-lead-text-p2 {
    font-size: 3.25rem;
  }
  .lp__template-para {
    margin-bottom: 50px;
  }
  .lp__template {
    position: relative;
    padding: 110px 0 125px;
  }
  .lp__template-list {
    padding: 40px;
  }
}
/** flow **/
.lp__flow {
  margin-bottom: 50px;
}

.lp__flow-title {
  margin-bottom: 70px;
}

.lp__flow-para {
  font-weight: 700;
}

.lp__flow-lists {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 0 10px;
}

.lp__flow-list {
  position: relative;
  border-top: 1px solid #323232;
  padding: 60px 20px;
}

.lp__flow-term {
  position: absolute;
  top: 12px;
  left: 25px;
  background-color: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-20);
  line-height: 1;
  padding: 0.5em 1em;
  border-radius: 5px;
}
.lp__flow-term::after {
  content: "";
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  display: block;
  width: 10%;
  aspect-ratio: 1;
  background-color: var(--color-blue);
  position: absolute;
  left: 20%;
  top: 99.5%;
}

.lp__flow-list-number {
  margin-bottom: 25px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-en);
  color: var(--color-blue);
}

.lp__flow-list-figure {
  margin-bottom: 20px;
}
.lp__flow-list-figure img {
  display: block;
  width: min(100%, 340px);
  aspect-ratio: 270/150;
  height: auto;
}

.lp__flow-list-para {
  font-weight: 700;
}

.lp__flow-block {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.lp__flow-block-body {
  padding: 30px 20px;
  background-color: var(--color-blue-bg);
  border-radius: 10px;
}

.lp__flow-block-figure {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.lp__flow-block-figure img {
  display: block;
  aspect-ratio: 520/320;
  height: auto;
  width: min(100%, 520px);
  margin-inline: auto;
}

.lp__flow-block h3 {
  padding: 0.625em;
  font-size: 1.5rem;
  background-color: var(--color-blue);
  color: #fff;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.lp__flow-block-text {
  margin-bottom: 60px;
}
.lp__flow-block-text p:not(:last-child) {
  margin-bottom: 2em;
}

.lp__flow-block-heading4 {
  margin-bottom: 20px;
  padding: 0.6em 1em;
  background-color: #4e4b51;
  border-radius: 10px;
  font-size: var(--font-size-24);
  font-weight: 700;
  color: #fff;
}

.lp__flow-block-paragraph {
  margin-bottom: 30px;
  font-size: 0.75rem;
  color: #74767b;
}

.lp__flow-block-lists {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 45px;
  gap: 13px;
}
.lp__flow-block-lists::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: var(--scroll-width, 100%);
  height: 1px;
  background-color: var(--color-blue);
  z-index: 1;
}

.lp__flow-block-list {
  position: relative;
  min-width: 250px;
  flex-shrink: 0;
}
.lp__flow-block-list::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 4px;
  aspect-ratio: 1;
  background-color: var(--color-blue);
  z-index: 1;
  translate: 0 -35%;
  border-radius: 50%;
}

.lp__flow-block-list-number {
  font-size: 1.5625rem;
  font-weight: 700;
  font-family: var(--font-family-en);
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: 50px;
}

.lp__flow-block-list-title {
  margin-bottom: 40px;
  font-size: var(--font-size-20);
  font-weight: 700;
  line-height: 1.2;
}

.lp__flow-block-list-items li {
  --_line-height: 1.8;
  --_size: 0.875rem;
  padding-left: 1em;
  line-height: var(--_line-height);
  position: relative;
  font-size: var(--_size);
}
.lp__flow-block-list-items li::before {
  content: "";
  display: block;
  width: 3px;
  aspect-ratio: 1;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: calc(var(--_line-height) * var(--_size) / 2);
  left: 0;
  translate: 0 -50%;
}

@media screen and (min-width: 768px) {
  .lp__flow {
    margin-bottom: 75px;
  }
  .lp__flow-title {
    margin-bottom: 120px;
  }
  .lp__flow-lists {
    margin-bottom: 60px;
  }
  .lp__flow-block-body {
    padding: 55px 60px;
  }
  .lp__flow-block-figure {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .lp__flow-block h3 {
    font-size: 2.25rem;
  }
  .lp__flow-block-heading4 {
    margin-bottom: 40px;
  }
  .lp__flow-list-figure img {
    width: min(100%, 270px);
  }
}
@media screen and (min-width: 1200px) {
  .lp__flow-list {
    padding: 30px 25px;
  }
  .lp__flow-term {
    top: -25px;
    left: 25px;
    translate: 0 -100%;
  }
  .lp__flow-term::after {
    left: 20%;
    top: 99.5%;
  }
}
/** cost **/
.lp__cost {
  position: relative;
  padding: 50px 0 40px;
  margin-bottom: 70px;
}

.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.lp__cost-title {
  margin-bottom: 50px;
}

.lp__cost-lists {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lp__cost-list {
  position: relative;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.lp__cost-list-header {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.lp__cost-list-title-text {
  color: #fff;
  background-color: var(--color-blue);
  padding: 0.5em 1em;
  border-radius: 5px;
  font-size: var(--font-size-20);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 10px;
}

.lp__cost-list-title {
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--color-blue);
}

.lp__cost-list-number {
  font-size: 2.8125rem;
  font-weight: 700;
  font-family: var(--font-family-en);
  color: var(--color-blue);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp__cost-list-number::before {
  content: attr(data-text);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-family-en);
}

.lp__cost-list-effect {
  margin-bottom: 30px;
  background-color: var(--color-blue);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 10px;
  line-height: 1.2;
}

.lp__cost-list-bf {
  --_gap: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--_gap);
}

.lp__cost-list-before,
.lp__cost-list-after {
  border-radius: 10px;
  padding: 20px 12px;
}

.lp__cost-list-bf-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.lp__cost-list-after h4 {
  color: var(--color-blue);
}

.lp__cost-list-bf-subtitle {
  font-weight: 700;
  font-size: var(--font-size-20);
  line-height: 1;
  margin-bottom: 40px;
}

.lp__cost-list-before .lp__cost-list-bf-subtitle {
  color: #7a7a7a;
}

.lp__cost-list-after .lp__cost-list-bf-subtitle {
  color: #9dabde;
}

.lp__cost-list-before {
  position: relative;
  background-color: #f5f5f5;
}
.lp__cost-list-before::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  background: linear-gradient(135deg, #33b9ef 0%, #2a4bb9 100%);
  translate: 0 -50%;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: var(--_gap);
  height: auto;
  aspect-ratio: 25/73;
  z-index: 1;
}

.lp__cost-list-after {
  background-color: var(--color-blue-bg);
}

.lp__cost-list-bf ul {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #000;
}

.lp__cost-list-image img {
  margin-bottom: 45px;
  display: block;
  width: min(100%, 500px);
  margin-inline: auto;
  height: auto;
  aspect-ratio: 500/400;
}

.lp__cost-text {
  padding: 0.8em 1em;
  font-weight: 500;
  text-align: center;
  font-size: var(--font-size-32);
  line-height: 1.5em;
  margin-bottom: 130px;
  background-color: var(--color-blue);
  color: #fff;
  border-radius: 10px;
}
.lp__cost-text img {
  width: 0.5em;
  aspect-ratio: 22/30;
  display: inline-block;
  height: auto;
  margin-right: 4px;
}

.lp__cost-text-inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .lp__cost {
    padding: 100px 0 40px;
    margin-bottom: 120px;
  }
  .lp__cost-title {
    margin-bottom: 75px;
  }
  .lp__cost-list-number {
    font-size: 4.5rem;
  }
  .lp__cost-list-number::before {
    font-size: 1.125rem;
  }
  .lp__cost-list-header {
    margin-bottom: 55px;
    gap: 55px;
  }
  .lp__cost-list-bf {
    --_gap: 30px;
  }
  .lp__cost-list-before,
  .lp__cost-list-after {
    padding: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .lp__cost-list {
    padding: 55px 60px;
    grid-template-columns: 1fr 46.9483568075%;
    gap: 55px;
  }
}
/** price **/
.lp__price {
  margin-bottom: 60px;
}

.lp__price-lists {
  margin-bottom: 30px;
  display: grid;
  gap: 30px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.lp__price-notices {
  margin-bottom: 85px;
}

.lp__price-notices li {
  font-size: 0.875rem;
  opacity: 0.6;
}

@media screen and (min-width: 768px) {
  .lp__price-notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
  }
}
.lp__price-list-body {
  padding: 30px 20px 30px;
  background-color: #1b1b1b;
  color: #fff;
  border-radius: 20px;
  height: 100%;
}

.lp__price-list-number {
  margin-bottom: 30px;
  color: var(--color-yellow);
  font-family: var(--font-family-en);
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 6.875rem;
}

.lp__price-list-number-icon {
  display: block;
  width: min(31.5789473684%, 120px);
  aspect-ratio: 104/101;
  height: auto;
}

.lp__price-list-number-main {
  font-size: 6.875rem;
}

.lp__price-list-number-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.lp__price-list-number-left-top {
  font-size: 1.875rem;
  display: block;
  text-transform: uppercase;
}

.lp__price-list-number-left-bottom {
  font-size: 4.125rem;
  display: block;
}

.lp__price-list-text {
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.lp__price-list-text-2 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.lp__price-heading3 {
  text-align: center;
  background-color: #4e4b51;
  color: #fff;
  padding: 0.6em 1em;
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 1.2;
  border-radius: 10px 10px 0 0;
}

.lp__price-example-body {
  background-color: #f2f2f2;
  padding: 30px 20px;
}

.lp__price-example-block:not(:last-child) {
  padding-bottom: 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid #000;
}

@media screen and (min-width: 768px) {
  .lp__price-example-body {
    padding: 60px;
  }
  .lp__price-example-block:not(:last-child) {
    padding-bottom: 85px;
    border-bottom: 1px solid #000;
    margin-bottom: 85px;
  }
}
.lp__price-example-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
}

@media screen and (min-width: 1024px) {
  .lp__price-example-row {
    grid-template-columns: 10.9375rem 1fr;
    gap: 45px;
  }
}
.lp__price-example-label {
  background-color: #4e4b51;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 5px;
  font-size: var(--font-size-20);
  font-weight: 700;
  line-height: 1;
  height: fit-content;
  text-align: center;
  margin-bottom: 30px;
  max-width: 10.9375rem;
}

.lp__price-example-section-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.lp__price-example-section-title {
  margin-bottom: 30px;
  font-size: var(--font-size-24);
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #c2c2c2;
  line-height: 1;
}

.lp__price-example-list {
  position: relative;
  line-height: 1.8;
}
.lp__price-example-list::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 73px;
  aspect-ratio: 73/17;
  height: auto;
  translate: -50% 20px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: linear-gradient(135deg, #33b9ef 0%, #2a4bb9 100%);
}

.lp__price-example-list-item-note {
  font-size: 0.9375rem;
  color: #666666;
  line-height: 3;
}

.lp__price-example-section-content {
  --_gap: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--_gap);
}

@media screen and (min-width: 768px) {
  .lp__price {
    margin-bottom: 115px;
  }
  .lp__price-example-list {
    line-height: 2;
  }
  .lp__price-example-list::after {
    content: "";
    width: 25px;
    aspect-ratio: 25/73;
    top: 0;
    left: 100%;
    translate: 0 0%;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
  .lp__price-example-section-content {
    grid-template-columns: 58.4795321637% 1fr;
    width: min(100%, 855px);
  }
}
.lp__price-example-section-note {
  font-size: 13px;
  color: #666;
  margin-top: 15px;
  margin-bottom: 0;
  line-height: 1.6;
}

.lp__price-example-arrow {
  flex-shrink: 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp__price-example-arrow-icon {
  width: 40px;
  height: auto;
  fill: #4169E1;
}

.lp__price-example-result {
  text-align: center;
}

.lp__price-example-result-label {
  font-size: 18px;
  font-weight: 700;
  color: #4169E1;
  margin-bottom: 8px;
}

.lp__price-example-result-price {
  font-size: var(--font-size-24);
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.4;
  margin-bottom: 15px;
}

.lp__price-example-result-badge {
  background-color: var(--color-blue);
  color: #fff;
  padding: 0.1em 0.5em;
  border-radius: 8px;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
}

.lp__price-example-result-note {
  font-size: 0.875rem;
  color: #7f92d4;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .lp__price-list-body {
    padding: 60px 40px 40px;
  }
  .lp__price-example-result {
    text-align: left;
  }
}
/** service **/
.lp__service {
  margin-bottom: 60px;
}

.lp__service-title {
  margin-bottom: 50px;
}

.lp__service-lists dt {
  background-color: #4e4b51;
  color: #fff;
  text-align: center;
  font-size: var(--font-size-24);
  font-weight: 500;
  line-height: 1;
  padding: 0.8333333333em 1em;
  border-radius: 10px 10px 0 0;
}
.lp__service-lists dd {
  text-align: center;
  padding: 1.9583333333em 0;
  line-height: 1.2;
  font-size: var(--font-size-24);
  background-color: #f2f2f2;
  border-radius: 0 0 10px 10px;
}

.lp__service-body {
  margin-bottom: 60px;
}

.lp__service-body > p {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .lp__service {
    margin-bottom: 110px;
  }
}
/** price table **/
.lp__price-table {
  overflow-x: auto;
  margin-bottom: 20px;
}

.lp__price-table-main {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
  table-layout: fixed;
  overflow-x: auto;
}

.lp__price-table-empty {
  background-color: #fff;
  border: none;
}

.lp__price-table-header {
  color: #fff;
  text-align: center;
  padding: 38px 10px;
  vertical-align: middle;
  font-weight: 700;
  border: 2px solid #fff;
  width: 14.7916666667%;
}
.lp__price-table-header--10 {
  background-color: #5972cb;
}
.lp__price-table-header--30 {
  background-color: #2a49b8;
}
.lp__price-table-header--100 {
  background-color: #18318a;
}
.lp__price-table-header--over {
  background-color: #0c1c55;
}

.lp__price-table-header-label {
  display: block;
  margin-bottom: 5px;
}

.lp__price-table-header-value {
  display: block;
}
.lp__price-table-header-value sup {
  font-size: 0.75rem;
}

.lp__price-table-category {
  background-color: #e0e1e7;
  padding: 40px 30px;
  vertical-align: top;
  width: 17.5%;
  border: 2px solid #fff;
}

.lp__price-table-category-title {
  display: block;
  font-size: 1.3125rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.lp__price-table-category-list {
  font-size: 0.75rem;
  color: #000;
  line-height: 2.4;
}
.lp__price-table-category-list li {
  list-style: none;
}

.lp__price-table-item {
  background-color: #e0e1e7;
  padding: 38px 25px;
  font-weight: 700;
  border: 2px solid #fff;
  width: 23.3333333333%;
}

.lp__price-table-value {
  padding: 20px 15px;
  text-align: center;
  vertical-align: middle;
  border: 2px solid #fff;
}
.lp__price-table-value--gray {
  background-color: #e0e1e7;
}
.lp__price-table-value--blue {
  background-color: #e9edf7;
}

.lp__price-table-value--narrow {
  padding: 12px 15px;
}

.lp__price-table-note {
  display: block;
  font-size: 0.75rem;
  color: #000;
}

.lp__price-table-sub {
  display: block;
  font-size: 0.75rem;
  color: #000;
  margin-bottom: 5px;
}

.lp__price-table-price {
  display: block;
  font-size: 1.3125rem;
  font-weight: 500;
}
.lp__price-table-price--large {
  font-size: 1.5rem;
}

.lp__question {
  padding: 110px 0 40px;
  position: relative;
}

.lp__question-body {
  margin-bottom: 125px;
}

.recruit__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100% - var(--inner-padding) * 2, var(--inner-width-normal));
  margin-inline: auto;
  color: #fff;
  translate: -50% -50%;
}

.recruit__title h1 {
  margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
  .recruit__title {
    translate: -50% -75%;
  }
  .recruit__title h1 {
    margin-bottom: 80px;
  }
}
.recruit__title-para {
  font-size: var(--font-size-32);
  font-weight: 700;
  line-height: 1.5;
}

.recruit__heading2 {
  margin-bottom: 80px;
}

.recruit__message-number {
  margin-bottom: 60px;
}

.recruit__message {
  margin-top: -100px;
  position: relative;
  padding-top: 60px;
  margin-bottom: 80px;
}

.recruit__section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.recruit__message-icon {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: block;
}

.recruit__message-icon img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
  overflow: hidden;
}

.recruit__message-body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "text" "figure";
  gap: 40px;
}

.recruit__message-image {
  grid-area: figure;
}

.recruit__message-figure {
  margin-bottom: 50px;
}
.recruit__message-figure img {
  display: block;
  width: min(100%, 640px);
  height: auto;
  aspect-ratio: 640/560;
  object-fit: cover;
  margin-inline: auto;
}

.recruit__message-name-en {
  margin-bottom: 50px;
  font-size: 2.625rem;
  font-weight: 600;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}
.recruit__message-name-en span {
  display: block;
}
.recruit__message-name-en span:last-of-type {
  text-indent: 3em;
  display: block;
}

.recruit__message-name-ja {
  width: fit-content;
  translate: 25% 0;
  margin-inline: auto;
}

.recruit__message-name-position {
  font-size: var(--font-size-16);
  font-weight: 400;
  color: var(--color-gray);
  line-height: 1.1;
}

.recruit__message-name-ja-text {
  grid-area: text;
  font-size: var(--font-size-32);
  font-weight: 500;
}

.recruit__message-text {
  padding-top: 60px;
  width: min(100%, 555px);
}

.recruit__message-text-paragraph {
  margin-bottom: 55px;
}
.recruit__message-text-paragraph *:not(:last-of-type) {
  margin-bottom: 1.75em;
}

.recruit__message-signature {
  width: min(45.1612903226vw, 310px);
  aspect-ratio: 310/72;
  height: auto;
  display: block;
  margin-inline-start: auto;
}

@media screen and (min-width: 768px) {
  .recruit__message {
    margin-bottom: 140px;
    margin-top: -170px;
  }
  .recruit__message-body {
    margin-top: -30px;
    grid-template-areas: "figure text";
    grid-template-columns: 47.0588235294% 1fr;
    gap: 80px;
  }
  .recruit__message-text {
    padding-top: 130px;
  }
  .recruit__message-signature {
    width: min(100%, 310px);
  }
}
/** culture **/
.recruit__culture {
  margin-bottom: 80px;
}

.recruit__culture-title {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: min(100%, 1200px);
  margin-inline: auto;
}

.recruit__culture-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
}

.recruit__culture-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "figure" "text";
  gap: 40px;
  width: min(100%, 1200px);
}

@media screen and (min-width: 768px) {
  .recruit__culture {
    margin-bottom: 170px;
  }
  .recruit__culture-title {
    margin-bottom: 100px;
    gap: 225px;
    flex-direction: row;
    align-items: center;
  }
  .recruit__culture-list {
    gap: 60px;
    align-items: center;
  }
  .recruit__culture-list:nth-of-type(odd) {
    grid-template-columns: 50% 1fr;
    margin-inline-end: auto;
    grid-template-areas: "figure text";
  }
  .recruit__culture-list:nth-of-type(even) {
    grid-template-columns: 1fr 50%;
    grid-template-areas: "text figure";
    margin-inline-start: auto;
  }
}
.recruit__culture-list-figure {
  grid-area: figure;
}
.recruit__culture-list-figure img {
  display: block;
  width: min(100%, 600px);
  aspect-ratio: 600/400;
  height: auto;
  margin-inline: auto;
}

.recruit__culture-list-text {
  grid-area: text;
}

.recruit__culture-list-title {
  font-size: var(--font-size-32);
  font-weight: 700;
  margin-bottom: 20px;
}

/*** recruit__info ***/
.recruit__info {
  padding: 60px 0 135px;
  background-color: #282828;
  color: #fff;
  border-radius: 20px 20px 0 0;
}

.recruit__info-container {
  margin-bottom: 136px;
}

.recruit__info-title {
  margin-bottom: 140px;
}
.recruit__info-title h2 {
  margin-bottom: 100px;
}

.recruit__info-body {
  width: min(100%, 1200px);
}

/*** recruit__gallary ***/
.recruit__gallary {
  position: relative;
}
.recruit__gallary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
  background-color: #282828;
}

/*** recruit__flow ***/
.recruit__flow {
  padding: 35px 0 0;
  margin-bottom: 70px;
}

.recruit__flow-number {
  margin-bottom: 50px;
}

.recruit__flow-body {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.recruit__flow-title {
  margin-bottom: 45px;
}

.recruit__flow-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 35px 20px;
}

.recruit__flow-list-number {
  font-size: 1.75rem;
  font-family: var(--font-family-en);
  font-weight: 600;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0.4em;
  margin-bottom: 0.4em;
  border-bottom: 1px solid currentColor;
}
.recruit__flow-list-number::before {
  content: attr(data-text);
  display: block;
  font-size: var(--font-size-24);
  line-height: 1;
  font-family: var(--font-family-en);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.recruit__flow-list-title {
  font-weight: 700;
  margin-bottom: 5px;
}

.recruit__flow-list-text {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .recruit__flow {
    padding: 35px 0 0;
    margin-bottom: 140px;
  }
  .recruit__flow-number {
    margin-bottom: 100px;
  }
  .recruit__flow-list-number {
    font-size: 3rem;
  }
}
/** faq **/
.recruit__faq {
  padding: 50px 0;
  border-radius: 20px 20px 0 0;
  position: relative;
  background-color: #e4e4e4;
}

.recruit__faq-bg {
  border-radius: 20px 20px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.5;
}

.recruit__faq-container {
  position: relative;
  z-index: 3;
}

.recruit__faq-number {
  margin-bottom: 60px;
}

.recruit__faq-body {
  margin-bottom: 0px;
  width: min(100%, 1200px);
  margin-inline: auto;
}

.recruit__faq-title {
  margin-bottom: 40px;
}

.recruit__faq-items {
  margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .recruit__faq-number {
    margin-bottom: 100px;
  }
  .recruit__faq-body {
    margin-bottom: 0px;
  }
  .recruit__faq-title {
    margin-bottom: 65px;
  }
  .recruit__faq-items {
    margin-bottom: 160px;
  }
}
.recruit__banner {
  position: relative;
  z-index: 3;
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
}

.recruit__banner-container {
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/2.5;
  border-radius: 20px;
}

.recruit__banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.recruit__banner-title {
  margin-bottom: 60px;
}
.recruit__banner-title h2 {
  margin-inline: auto;
}

.recruit__banner-text {
  font-size: var(--font-size-32);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.recruit__banner-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .recruit__banner-container {
    padding: 75px;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: flex-start;
    gap: 100px;
    aspect-ratio: 1360/540;
  }
  .recruit__banner-text {
    text-align: left;
  }
  .recruit__banner-title h2,
  .recruit__banner-button {
    margin-inline: 0;
  }
}
.section.archive {
  margin-bottom: 65px;
}

.archive__header {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.archive__category {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.archive__cards {
  margin-bottom: 40px;
}

.archive__category-wrapper {
  display: flex;
  gap: 20px;
}

.archive__no-posts {
  font-size: var(--font-size-16);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .section.archive {
    margin-bottom: 130px;
  }
  .archive__header {
    margin-bottom: 60px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .archive__cards {
    margin-bottom: 55px;
  }
  .archive__category-wrapper {
    gap: 40px;
  }
}
/** category **/
.category.archive__category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.4em;
  border-bottom: 1px solid #000;
  width: min(100%, 220px);
}

@media screen and (min-width: 768px) {
  .category.archive__category-item {
    width: min(100%, 320px);
  }
}
.category-list,
.category-label {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.category-dropdown {
  position: relative;
}

.category-trigger {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  font-size: inherit;
  font-family: inherit;
}
.category-trigger::after {
  content: "";
  width: 0.4em;
  aspect-ratio: 1;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
  display: inline-block;
  transition: transform 0.3s ease;
}
.category-trigger[aria-expanded=true]::after {
  transform: rotate(-45deg);
}

.category-lists {
  position: absolute;
  top: calc(100% + 1em);
  right: -0.5em;
  min-width: 11.25rem;
  background: #fff;
  border: 1px solid #000;
  padding: 0.5em 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 10;
}
.category-dropdown.is-open .category-lists {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-list a {
  display: block;
  padding: 0.7em 1.1em;
  transition: background 0.3s ease;
}

@media screen and (min-width: 768px) {
  .category-lists {
    min-width: 14.375rem;
  }
  .category-list a {
    padding: 0.7em 1.5em;
  }
  .category-list a:hover {
    background: #f5f5f5;
  }
}
/** pagenation **/
.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagenation .wp-pagenavi a {
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}

.pagenation .page,
.pagenation .current {
  font-weight: 600;
  font-family: var(--font-family-en);
  line-height: 1;
  padding: 0 0.55em 5px;
}

.pagenation .current {
  border-bottom: 2.5px solid currentColor;
}

.nextpostslink,
.previouspostslink {
  width: 0.5em;
  aspect-ratio: 1;
  display: inline-block;
  border-top: 2.5px solid #000;
  border-right: 2.5px solid #000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin: 0 0.5em;
}

.previouspostslink {
  scale: -1 1;
}

.single__section {
  margin-bottom: 100px;
}

.single__container {
  width: min(100% - var(--inner-padding) * 2, 960px);
  margin-inline: auto;
}

.single__image {
  margin-bottom: 60px;
}
.single__image img {
  display: block;
  width: 100%;
  height: auto;
}

.single__header {
  margin-bottom: 50px;
}

.single__header-top {
  margin-bottom: 50px;
  display: flex;
  gap: 50px;
}

.single__header-top time {
  color: #b6b6b6;
  font-size: 0.875rem;
  font-weight: 500;
}

.single__meta {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.single__meta span {
  display: inline-block;
}

.single__title {
  margin-bottom: 25px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.single__content h2, .single__content h3, .single__content h4, .single__content h5 {
  margin-top: 50px;
  margin-bottom: 30px;
}
.single__content h2 {
  font-size: var(--font-size-32);
  font-weight: 700;
}
.single__content h3 {
  font-size: var(--font-size-24);
  padding-bottom: 0.625em;
  border-bottom: 1px solid #e1e1e1;
}
.single__content h4 {
  font-size: var(--font-size-20);
}
.single__content h5 {
  font-size: var(--font-size-18);
}
.single__content p, .single__content ol, .single__content ul {
  margin-top: 2em;
  margin-bottom: 2em;
}
.single__content li {
  --_line-height: 1.8;
  line-height: var(--_line-height);
  position: relative;
  font-size: var(--font-size-16);
  padding-left: 1.75em;
}
.single__content ol {
  counter-reset: number;
  list-style: none;
  padding-left: 0;
}
.single__content ol li {
  position: relative;
}
.single__content ol li::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: calc(var(--_line-height) * var(--font-size-16) / 2);
  color: #000;
  translate: 0 -50%;
}
.single__content ul li {
  position: relative;
}
.single__content ul li::before {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 1;
  background-color: #000;
  position: absolute;
  top: calc(var(--_line-height) * var(--font-size-16) / 2);
  left: 0;
  translate: 0 -50%;
  border-radius: 50%;
}
.single__content .wp-block-table td, .single__content .wp-block-table th {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 1.5em 2em;
}
.single__content > .wp-block-image {
  margin-top: 80px;
  margin-bottom: 80px;
}

.wp-block-image :where(figcaption) {
  margin-top: 2em;
  color: #909090;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .single__section {
    margin-bottom: 200px;
  }
  .single__header {
    margin-bottom: 100px;
  }
  .single__title {
    font-size: 2.25rem;
  }
  .single__content h2, .single__content h3, .single__content h4, .single__content h5 {
    margin-top: 70px;
    margin-bottom: 50px;
  }
  .single__content li {
    --_line-height: 2;
  }
}
/** single__related **/
.single__related {
  margin-bottom: 80px;
}

.single__related-header {
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .single__related {
    margin-bottom: 140px;
  }
}
.single__no-posts,
.single__cards {
  margin-bottom: 50px;
}

.single__more-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .single__no-posts,
  .single__cards {
    margin-bottom: 80px;
  }
  .single__more-button {
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
}
.contact__section {
  margin-bottom: 70px;
}

.contact__paragraph {
  font-size: var(--font-size-16);
  line-height: 2;
  margin-bottom: 40px;
}

.contact__form {
  width: min(100%, 960px);
}

@media screen and (min-width: 768px) {
  .contact__section {
    margin-bottom: 145px;
  }
  .contact__paragraph {
    margin-bottom: 50px;
  }
}
/** form **/
/****
フォーム
***/
.form-row {
  --bottom: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: var(--bottom);
}

@media screen and (min-width: 768px) {
  .form-row {
    --bottom: 70px;
  }
}
.form-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  font-size: var(--font-size-20);
  font-weight: 500;
}

.form-label--privacy {
  font-size: var(--font-size-24);
}

/*** 必須・任意ボタン ***/
.form-label .optional,
.form-label .required {
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  font-weight: 400;
  font-size: 0.75rem;
  flex-shrink: 0;
  border-radius: 5px;
}

.form-label .required {
  background-color: var(--color-blue);
}

.form-label .optional {
  background-color: #737373;
}

@media screen and (min-width: 768px) {
  .form-label .optional,
  .form-label .required {
    padding: 2px 12px;
  }
}
.form-radio label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5em 1.2em;
  background-color: #eeeeee;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.wpcf7-radio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  .wpcf7-radio {
    grid-template-columns: 1fr 1fr;
  }
}
.wpcf7-radio .wpcf7-list-item {
  margin: 0;
  width: min(100%, 470px);
}

.wpcf7-radio .wpcf7-list-item input {
  width: 19px;
  height: 19px;
}

.wpcf7-radio .wpcf7-list-item-label {
  margin-left: 10px;
}

/*** input ***/
.form-select select {
  appearance: none;
  /* 矢印などを消す（Chrome / Firefox）*/
  -webkit-appearance: none;
  /* Safari */
  -moz-appearance: none;
  border-radius: 0;
  color: var(--color-main);
  padding: 1em 1em;
  border: 1px solid #C3C3C3;
  min-width: 250px;
}

.form-select {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.form-select::before {
  z-index: 2;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color-main);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}

@media screen and (min-width: 768px) {
  .form-select select {
    min-width: 400px;
  }
}
.form-input input[type=text],
.form-input input[type=email],
.form-input input[type=tel],
.form-input textarea {
  position: relative;
  width: 100%;
  border-radius: 0;
  color: var(--color-main);
  padding: 1.5em 2em;
  background-color: #eeeeee;
  border: none;
  border-radius: 10px;
}

.form-input input::file-selector-button {
  border: 1px solid #D7DFDF;
  padding: 10px 20px;
  background-color: #ECECEC;
}

.form-input textarea {
  min-height: 150px;
}

/*** お名前の2列入力 ***/
.form-input--name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-input__name-field {
  position: relative;
}

@media screen and (min-width: 768px) {
  .form-input--name {
    gap: 20px;
  }
}
.form-input input::-moz-placeholder,
.form-input textarea::-moz-placeholder {
  color: #878787;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #878787;
}

/*** checkbox ***/
.form-checkbox label:has(input:checked)::before {
  --bg: #1A2B5C;
  border-color: #1A2B5C;
}

.form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--color-blue);
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.form-checkbox label {
  padding-left: 1.8em;
  margin-right: 1em;
  position: relative;
  cursor: pointer;
}

.form-checkbox label::before {
  --bg: #fff;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 1.25rem;
  translate: 0 -50%;
  background-color: var(--bg);
}

/* privacy */
.privacy-privacy {
  text-align: center;
  margin-bottom: 50px;
}

.privacy-privacy p {
  line-height: 3;
}

/*** 個人情報セクション ***/
.form-row--privacy {
  margin-bottom: 50px;
}

.form-privacy {
  width: 100%;
}

.form-privacy__lead {
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.form-privacy__box {
  margin-bottom: 35px;
  background-color: #fff;
  border: 1px solid #C3C3C3;
  padding: 20px;
  max-height: 250px;
  overflow-y: auto;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .form-privacy__box {
    margin-bottom: 65px;
  }
}
.form-privacy__box h4 {
  font-weight: 500;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.form-privacy__box h4:first-child {
  margin-top: 0;
}

.form-privacy__box p {
  line-height: 1.8;
  margin-bottom: 0.5em;
  font-weight: 500;
}

.form-privacy__box ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}

.form-privacy__box li {
  line-height: 1.8;
  list-style: disc;
  font-weight: 500;
}

.form-privacy__box a {
  color: var(--color-blue);
  word-break: break-all;
}

.form-privacy__box a:hover {
  text-decoration: underline;
}

.form-privacy__checkbox {
  text-align: left;
}

.form-privacy__checkbox label {
  display: inline-flex;
  align-items: center;
  padding: 10px 25px 10px 50px;
  background-color: #ECECEC;
  border-radius: 0;
  cursor: pointer;
  width: 19.375rem;
  height: 5rem;
}

.form-privacy__checkbox label::before {
  top: 50%;
  translate: 0 -50%;
}

@media screen and (min-width: 768px) {
  .form-row--privacy {
    margin-bottom: 80px;
  }
  .form-privacy__box {
    padding: 25px 30px;
  }
}
/*** エラーメッセージ ***/
.wpcf7-form-control-wrap {
  height: inherit;
  display: block;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 3px);
  font-size: var(--font-size-16);
}

.form-checkbox .wpcf7-not-valid-tip {
  left: 50%;
  translate: -50% 0;
  width: 100%;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

/** ボタン **/
.form-button {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  outline: none;
  cursor: pointer;
  margin-inline: auto;
}

.wpcf7-submit.button-1 {
  margin: 0;
  border: none;
}

.wpcf7-submit.button-1:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/** 住所 **/
.form-row--address p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.form-zipcode {
  padding-left: 1.5em;
  position: relative;
}

.form-zipcode input {
  max-width: 150px;
}

.form-zipcode::before {
  content: "〒";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}


.default__section {
  margin-bottom: 80px;
}

.default__paragraph {
  margin-bottom: 40px;
}

.default__article {
  padding-top: 35px;
  padding-bottom: 140px;
  background-color: #d9d9d9;
  border-radius: 20px 20px 0 0;
}

@media screen and (min-width: 768px) {
  .default__section {
    margin-bottom: 150px;
  }
  .default__paragraph {
    margin-bottom: 65px;
  }
}

/*# sourceMappingURL=style.css.map */
