@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  margin: 0;
  padding: 0;
}
*,
::before,
::after {
  box-sizing: border-box;
}
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}
html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}
:where(svg) {
  stroke: none;
  fill: currentColor;
}
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}
:where(textarea) {
  resize: vertical;
}
@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
h1, h2, h3, h4 {
  font-weight: normal;
}
:where(ul, ol) {
  list-style: none;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
:where(a[href], area, button, label[for], select, summary, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}
:where(input[type=file]) {
  cursor: auto;
}
:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}
:where(address) {
  font-style: normal;
  line-height: inherit;
}
/* Typography */
/* Color */
/* Typography */
/* Color */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  color: #26272A;
  line-height: 1.5;
  letter-spacing: 0.005em;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
a {
  color: #26272A;
  text-decoration: none;
}
.is-sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
.is-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-pc {
    display: inline-block !important;
  }
}
svg {
  fill: transparent;
}
select,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
}
input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
}
@media screen and (min-width: 768px) {
  .nav {
    font-size: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .nav {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    font-size: 15px;
  }
}
/* common */
.inner {
  max-width: 1020px;
  padding-inline: 20px;
  margin-inline: auto;
}
.btn {
  max-width: 260px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .btn {
    max-width: 360px;
  }
}
.btn .btn__link {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 10px;
  border-radius: 60px;
  background: #26272A;
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .btn .btn__link {
    font-size: 20px;
    gap: 14px;
    padding: 12px 12px 10px;
  }
  .btn .btn__link:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .btn .btn__img {
    width: 28px;
    height: auto;
  }
}
.section {
  padding-block: 40px;
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 65px;
  }
}
.section.section--bg-blue {
  background: #F0FFFF;
}
.section.section--gray {
  background: #F9F9F9;
}
.section.section--dark {
  background: #26272A;
}
.section.section--dark .section-title {
  color: #FFF;
}
.section-title {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 10px;
  text-align: center;
}
.section-title.section-title--left {
  -webkit-box-align: start;
          align-items: flex-start;
  text-align: left;
}
.section-title__big {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .section-title__big {
    font-size: 48px;
  }
}
.section-title__sub {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.24;
}
.section-title__sub strong {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .section-title__sub {
    font-size: 24px;
    line-height: 1.5;
  }
  .section-title__sub strong {
    font-size: 32px;
    padding-inline: 4px 2px;
  }
}
.section-title__small {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .section-title__small {
    font-size: 18px;
  }
}
.primary-color {
  color: #0093FF;
}
.primary-gradient {
  background: -webkit-linear-gradient(left, #0093FF 3.23%, #03E2FF 29.9%, #00FFBE 56.58%);
  background: linear-gradient(90deg, #0093FF 3.23%, #03E2FF 29.9%, #00FFBE 56.58%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* contact */
@media screen and (min-width: 768px) {
  .contact .section-title__big {
    font-size: 42px;
  }
}
.contact__text {
  text-align: center;
  line-height: 1.6;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact__text {
    padding-top: 40px;
  }
}
.form {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .form {
    padding-top: 80px;
    margin-inline: auto;
    max-width: 760px;
  }
}
.form__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .form__list {
    gap: 16px;
  }
}
.form__item {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .form__item {
    gap: 10px;
    padding-bottom: 32px;
  }
}
.form__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .form__label {
    font-size: 16px;
  }
}
.form__required {
  color: #0093FF;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  vertical-align: top;
}
.form__input {
  border-radius: 10px;
  border: 1px solid #0093FF;
  background: #F4F4F4;
  min-height: 50px;
  padding: 10px 12px;
}
@media screen and (min-width: 768px) {
  .form__input {
    min-height: 70px;
  }
}
.form__input.is-error {
  background: #FFDEDE;
  border-color: #FE4444;
}
.form__input--textarea {
  min-height: 190px;
}
.form__privacy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 18px 1fr;
  -webkit-box-align: center;
          align-items: center;
  gap: 8px;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .form__privacy {
    margin: 0;
    padding-top: 30px;
  }
}
.form__checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #26272A;
  background: #FFF;
}
.form__privacy-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.form__privacy-label a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (min-width: 768px) {
  .form__privacy-label a:hover {
    text-decoration: none;
  }
}
.form__submit {
  max-width: 200px;
  padding-top: 24px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .form__submit {
    max-width: 260px;
  }
}
.form__btn {
  width: 100%;
  padding: 12px;
  border-radius: 35px;
  background: #26272A;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .form__btn {
    font-size: 20px;
    padding: 15px;
  }
  .form__btn:hover {
    opacity: 0.7;
  }
}
.form__btn:disabled {
  background: #A1A1A1;
  cursor: not-allowed;
  opacity: 1;
}
.form__error {
  display: none;
  font-size: 0.95em;
  color: #FF0000;
  position: absolute;
  bottom: 0;
}
.form__error.is-active {
  display: block;
}
/* footer ※既存合わせ */
.footer {
  margin: auto;
  text-align: left;
  padding-block: 60px 90px;
  border-top: 1px solid #26272A;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 120px;
  }
}
.footer__inner {
  display: -webkit-box;
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    -webkit-box-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 1199px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
.footer__item {
  -webkit-box-flex: 1;
          flex: 1;
}
.footer__item:last-child {
  -webkit-box-flex: 1.5;
          flex: 1.5;
}
.footer h2 {
  font-size: 13px;
  color: #000;
  margin: 0 0 15px 0;
  padding: 0px;
}
.footer p {
  font-size: 11px;
  color: #6c7279;
}
.footer a {
  color: #000;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .footer-share {
  margin-top: 0;
  line-height: 1;
}
.footer .footer-share li {
  display: inline-block;
  float: none;
}
.footer .footer-share a {
  border: none;
  font-size: 13px;
  color: #000;
  letter-spacing: 15px;
}
.footer .fa-heart {
  color: #e84545;
  font-size: 11px;
  margin: 0 2px;
}
.inbound-lp {
  background-color: #090A0A;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
}
.inbound-lp:lang[en] {
  font-family: "Lato", serif;
}
.inbound-lp h1 {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0;
  color: #333;
}
.inbound-lp .inner {
  margin-inline: auto;
  width: min(100% - 16px, 1200px);
  max-width: none;
  border-radius: 12px;
  background: #2D2D2D;
  padding-inline: 12px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .inner {
    padding-inline: 20px;
  }
}
.inbound-lp .contents {
  padding-block: 32px 40px;
  width: min(984px, 100%);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inbound-lp .contents {
    padding-block: 60px 52px;
  }
}
.inbound-lp .btn {
  display: -webkit-inline-box;
  display: inline-flex;
  gap: 8px;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border-radius: 25px;
  background: -webkit-linear-gradient(left, #FF4850 0%, #C704A5 100%);
  background: linear-gradient(90deg, #FF4850 0%, #C704A5 100%);
  color: #fff;
  padding: 14px;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.06em;
  max-width: 260px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .btn {
    max-width: 320px;
    max-width: 320px;
  }
}
.inbound-lp .c-title {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 20px;
  color: #f3f3f3;
  font-weight: 600;
  line-height: 1.4;
}
.inbound-lp .c-title[data-text=center] {
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
}
.inbound-lp .c-title__eg {
  font-weight: inherit;
  letter-spacing: 0.08em;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .c-title__eg {
    font-size: 16px;
  }
}
.inbound-lp .c-title__jp {
  font-weight: inherit;
  font-size: clamp(1.5rem, 1.159rem + 1.45vw, 2.25rem);
}
.inbound-lp .l-main__movie {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  -webkit-transition: -webkit-filter 0.3s ease 0s;
  transition: -webkit-filter 0.3s ease 0s;
  transition: filter 0.3s ease 0s;
  transition: filter 0.3s ease 0s, -webkit-filter 0.3s ease 0s;
}
.inbound-lp .l-main__movie.add-filter {
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
.inbound-lp .l-header {
  height: 70px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 100;
}
.inbound-lp .l-footer {
  height: 475px;
  width: 100%;
  background-color: #000;
}
.inbound-lp .in-fv {
  height: 100dvh;
  position: relative;
}
.inbound-lp .in-fv__inner {
  width: 100%;
  height: 100%;
  padding-inline: 27px;
  padding-bottom: 84px;
  display: grid;
  -webkit-box-align: end;
          align-items: flex-end;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-fv__inner {
    padding-bottom: 0;
    place-items: center;
  }
}
.inbound-lp .in-fv__contents {
  display: grid;
  gap: 80px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-fv__contents {
    gap: 32px;
  }
}
.inbound-lp .in-fv__wrap {
  text-align: center;
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-fv__wrap {
    gap: 40px;
  }
}
.inbound-lp .in-fv__lead {
  font-size: clamp(2rem, 1.318rem + 2.91vw, 3.5rem);
  font-weight: 600;
}
.inbound-lp .in-fv__text {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-fv__text {
    font-size: 18px;
  }
}
.inbound-lp .in-about {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-about {
    margin-top: 55px;
  }
}
.inbound-lp .in-about__contents {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-about__contents {
    grid-template-columns: 1fr 390px;
    gap: 40px;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
.inbound-lp .in-about__body {
  display: grid;
  gap: 32px;
}
.inbound-lp .in-about__text {
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1.8;
}
.inbound-lp .in-about__img img[data-img="1"] {
  margin-left: auto;
  width: calc(100% - 34px);
}
.inbound-lp .in-about__img img[data-img="2"] {
  margin-right: auto;
  margin-top: -20px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-about__img img[data-img="1"] {
    width: 100%;
    margin: 0;
  }
  .inbound-lp .in-about__img img[data-img="2"] {
    margin-left: -92px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .inbound-lp .in-about__img img[data-img="2"] {
    margin-left: -3vw;
  }
}
.inbound-lp .in-how {
  margin-top: 24px;
}
.inbound-lp .in-how__inner {
  padding-inline: 11px;
}
.inbound-lp .in-how__contents {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-how__contents {
    gap: 40px;
  }
}
.inbound-lp .in-how__text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-how__text {
    line-height: 2;
  }
}
.inbound-lp .in-how__wrap {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-how__wrap {
    gap: 57px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.inbound-lp .in-how__item {
  display: grid;
  gap: 16px;
}
.inbound-lp .in-how__img {
  border-radius: 8px;
  overflow: hidden;
}
.inbound-lp .in-how__img img {
  width: 100%;
}
.inbound-lp .in-how__label {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 8px;
  color: #F3F3F3;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-how__label {
    font-size: 20px;
    gap: 16px;
  }
}
.inbound-lp .in-guide {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide {
    margin-top: 48px;
  }
}
.inbound-lp .in-guide__contents {
  gap: 32px;
  display: grid;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__contents {
    gap: 40px;
  }
}
.inbound-lp .in-guide__tabContent {
  border-radius: 8px;
  background: #000;
  padding-block: 26px 32px;
  margin-top: -14px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__tabContent {
    margin-top: -22px;
    padding-block: 60px;
  }
}
.inbound-lp .in-guide__navList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border-radius: 21px;
  background: #505050;
  overflow: hidden;
  width: min(100% - 32px, 520px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__navList {
    gap: 50px;
    border-radius: 32px;
  }
}
.inbound-lp .in-guide__navItem {
  padding: 11px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.01em;
  font-weight: 600;
  border-radius: 21px;
  cursor: pointer;
}
.inbound-lp .in-guide__navItem.is-active {
  background: -webkit-linear-gradient(right, #8D2087 0%, #2E459D 100%);
  background: linear-gradient(270deg, #8D2087 0%, #2E459D 100%);
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__navItem {
    font-size: 18px;
    padding: 20px;
    border-radius: 32px;
  }
}
.inbound-lp .in-guide__tabItem {
  display: none;
  width: min(100%, 830px);
  margin-inline: auto;
  gap: 8px;
}
.inbound-lp .in-guide__tabItem.is-active {
  display: grid;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__tabItem {
    gap: 56px;
  }
}
.inbound-lp .in-guide__step {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__step {
    gap: 16px;
  }
}
.inbound-lp .in-guide__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.inbound-lp .in-guide__stepWrap {
  display: grid;
  gap: 17px;
  grid-template-columns: 17px 1fr;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__stepWrap {
    display: contents;
  }
}
.inbound-lp .in-guide__line {
  width: 1px;
  height: 100%;
  background-color: #e72b74;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__line {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__body {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 40px;
  }
}
.inbound-lp .in-guide__img {
  border-radius: 8px;
  overflow: hidden;
}
.inbound-lp .in-guide__img img {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__img {
    grid-column: 1/2;
  }
}
.inbound-lp .in-guide__textWrap {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__textWrap {
    margin-top: 0;
  }
}
.inbound-lp .in-guide__head {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__head {
    margin-top: 16px;
    font-size: 24px;
  }
}
.inbound-lp .in-guide__text {
  margin-top: 8px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__text {
    margin-top: 24px;
    font-size: 14px;
  }
}
.inbound-lp .in-guide__btn {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-guide__btn {
    margin-top: 28px;
    max-width: 218px;
    margin-left: auto;
  }
  .inbound-lp .in-guide__btn .btn {
    padding: 11px;
    font-size: 14px;
  }
}
.inbound-lp .in-find {
  margin-top: 40px;
}
.inbound-lp .in-find__inner {
  width: 100%;
  background-color: transparent;
}
.inbound-lp .in-find__text {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-top: 16px;
}
.inbound-lp .in-find__movie {
  margin-top: 22px;
}
.inbound-lp .in-find__movie iframe {
  max-width: 100%;
  width: 100%;
  height: 100%;
  aspect-ratio: 800/450;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-find__movie {
    margin-top: 34px;
    width: min(100%, 800px);
    margin-inline: auto;
  }
}
.inbound-lp .in-faq {
  margin-top: 47px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-faq {
    margin-top: 86px;
  }
}
.inbound-lp .in-faq__contents {
  gap: 30px;
  display: grid;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-faq__contents {
    gap: 40px;
  }
}
.inbound-lp .in-faq__wrap {
  display: grid;
  gap: 12px;
}
.inbound-lp .in-faq__item {
  border-radius: 8px;
  background: #000;
  padding: 16px 12px;
  font-size: 13px;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-faq__item {
    font-size: 14px;
    padding: 24px 28px 24px 32px;
  }
}
.inbound-lp .in-faq__question {
  padding-bottom: 12px;
  font-weight: 700;
  line-height: 2;
  border-bottom: 1px solid #fff;
}
.inbound-lp .in-faq__answer {
  padding-top: 12px;
  font-weight: 500;
  line-height: 1.8;
}
.inbound-lp .in-cta {
  height: 577px;
  height: 100dvh;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-cta {
    margin-top: 80px;
  }
}
.inbound-lp .in-cta__inner {
  width: 100%;
  height: 100%;
  padding-inline: 11px;
  padding-bottom: 84px;
  display: grid;
  -webkit-box-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-cta__inner {
    padding-bottom: 0;
    place-items: center;
  }
}
.inbound-lp .in-cta__contents {
  display: grid;
  gap: 80px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-cta__contents {
    gap: 32px;
  }
}
.inbound-lp .in-cta__wrap {
  text-align: center;
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-cta__wrap {
    gap: 40px;
  }
}
.inbound-lp .in-cta__lead {
  font-size: clamp(2rem, 1.318rem + 2.91vw, 3.5rem);
  font-weight: 600;
}
.inbound-lp .in-cta__text {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .inbound-lp .in-cta__text {
    font-size: 18px;
  }
}
.inbound-lp .in-fixBtn {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2D2D2D;
  padding: 20px;
  text-align: center;
  translate: 0 100%;
  -webkit-transition: translate 0.3s ease-in-out;
  transition: translate 0.3s ease-in-out;
}
.inbound-lp .in-fixBtn.is-active {
  translate: 0 0;
}