@charset "UTF-8";
/* src/sass/styles.scss */
html {
  font-size: 100%;
}
@media (max-width: 1238px) {
  html {
    font-size: 1.2924071082vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  overflow-x: hidden;
}

body.is-dim::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* 濃さはお好みで */
  z-index: 999; /* ヘッダーメニューより背面/前面を調整 */
  pointer-events: none; /* クリックは素通り（JSの外側クリック検知で閉じる） */
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* 初期状態で何も表示しない（必要ならフェード用のベースを用意） */
@media (prefers-reduced-motion: reduce) {
  body.is-dim::before {
    -webkit-transition: none;
    transition: none;
  }
}
/* スクロール固定したい場合はついでに */
body.is-dim,
body.fixed {
  overflow: hidden;
}

a,
button {
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
  color: #000;
  color: initial;
}
@media (hover: none) and (pointer: coarse) {
  a,
  button {
    -webkit-transition: none;
    transition: none;
  }
  a:hover,
  button:hover {
    opacity: 1;
    cursor: default;
    color: #000;
    color: initial;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
.l-banner {
  height: 26.25rem;
}
@media screen and (max-width: 767px) {
  .l-banner {
    height: 35.8125rem;
  }
}

.l-footer {
  padding: 2.5rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3rem 0 1.5rem;
  }
}

.l-header {
  width: 100%;
  height: 6.375rem;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 3.75rem;
  }
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1238px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-page-fv {
  padding-top: 6.375rem;
  height: 25rem;
}
@media screen and (max-width: 767px) {
  .l-page-fv {
    padding-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .l-page-fv {
    height: 12.5rem;
  }
}

.c-btn {
  width: 24rem;
  height: 4.5625rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  border-radius: 2.25rem;
  background: linear-gradient(225deg, rgb(30, 30, 30) 100%, rgb(54, 54, 54) 0%);
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  -webkit-box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 19.6875rem;
    height: 3.75rem;
    font-size: 1rem;
  }
}

.c-btn::after {
  content: "";
  width: 0.625rem;
  height: 1.25rem;
  background: url(../images/icon_arrow-white.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 2.0625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn::after {
    width: 0.5625rem;
    height: 1.0625rem;
    right: 1.6875rem;
  }
}

.c-btn:hover {
  color: #fff;
}

.c-cta {
  width: 24rem;
  height: 4.5625rem;
  border-radius: 2.25rem;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(240, 96, 70)),
    to(rgb(218, 0, 0))
  );
  background: linear-gradient(90deg, rgb(240, 96, 70) 0%, rgb(218, 0, 0) 100%);
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-cta {
    width: 19.625rem;
    height: 4.0625rem;
    font-size: 1rem;
  }
}

.c-cta:hover {
  color: #fff;
  opacity: 0.7;
}

.c-cta::after {
  content: "";
  width: 0.625rem;
  height: 1.25rem;
  background: url(../images/icon_arrow-white.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 2.0625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-cta__text {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16.3125rem;
  height: 2rem;
  border-radius: 1rem;
  color: #212121;
  font-size: 0.875rem;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.25rem;
  background-color: #fff;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-cta__text {
    height: 1.875rem;
    font-size: 0.75rem;
  }
}

.c-cta__text span {
  color: #da0000;
}

.c-cta__text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 1rem;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(240, 96, 70)),
    to(rgb(218, 0, 0))
  );
  background: linear-gradient(90deg, rgb(240, 96, 70) 0%, rgb(218, 0, 0) 100%);
}

.c-cta__text::after {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: -1;
  border-radius: 1rem;
  background-color: #fff;
}

.c-modal-why {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow-y: scroll;
}

.c-modal-why.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-modal-why__content {
  width: 67.75rem;
  height: 80vh;
  overflow-y: scroll;
  padding: 5rem;
  background-color: #fff;
  border-radius: 1.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-modal-why__content {
    width: 21rem;
    height: 80vh;
    padding: 2.5rem 1.25rem;
  }
}

.c-modal-why__close {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  background: url(../images/icon_cross.svg) no-repeat center/cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-modal-why__close {
    width: 1.5rem;
    height: 1.5rem;
    top: 0.9375rem;
    right: 1.125rem;
  }
}

.c-modal-why__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
}

.c-modal-why__sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #ff7a00;
  font-weight: 900;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-modal-why__sub-title {
    font-size: 0.75rem;
    gap: 0.3125rem;
  }
}

.c-modal-why__sub-title .en {
  font-family: avenir-lt-pro, sans-serif;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-modal-why__sub-title .en {
    font-size: 0.875rem;
  }
}

.c-modal-why__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.5;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-modal-why__title {
    margin-top: 2px;
    font-size: 1.375rem;
    text-align: center;
  }
}

.c-modal-why__title span {
  color: #ff7a00;
}

.c-modal-why__text {
  margin-top: 2.0625rem;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-modal-why__text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    text-align: left;
  }
}

.c-modal-why__text span {
  font-weight: 900;
}

.c-modal-why__img {
  width: 28.6875rem;
  height: 41.8125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-modal-why__img {
    width: 100%;
    height: 100%;
  }
}

.c-modal-why__img img {
  aspect-ratio: 447/670 !important;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-modal-why__img img {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
}

.c-section-title {
  font-size: 3rem;
  font-weight: 900;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.5rem;
  }
}

.c-section-title::before {
  content: attr(data-en);
  font-family: avenir-lt-pro, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #ff720c;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-section-title::before {
    font-size: 1.125rem;
  }
}

.c-section-title span {
  color: #ff720c;
}

.p-banner {
  background: url(../images/banner_bg.webp) no-repeat center/cover;
  aspect-ratio: 128/42;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-banner {
    background: url(../images/banner_bg-sp.webp) no-repeat center/cover;
    aspect-ratio: 0;
    height: 35.8125rem;
  }
}

.p-banner__inner {
  max-width: 71.25rem;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-banner__inner {
    max-width: 25rem;
  }
}

.p-banner__lead {
  font-size: 3rem;
  font-weight: 800;
  line-height: 2;
  color: #ff7a00;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.6875rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-banner__lead {
    font-size: 1.625rem;
    gap: 0.4375rem;
    height: auto;
    padding-top: 1.8125rem;
  }
}

.p-banner__lead span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 5.375rem;
  background-color: #fff;
  padding-left: 1.3125rem;
  -webkit-box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-banner__lead span {
    height: 2.9375rem;
    padding-left: 0.6875rem;
  }
}

.p-banner__img-box {
  position: absolute;
  top: 50%;
  right: -3.4375rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 26.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-banner__img-box {
    position: static;
    -webkit-transform: none;
    transform: none;
    width: 19.625rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 5.375rem;
    margin-inline: auto;
  }
}

.p-banner__img {
  width: 24.875rem;
}
@media screen and (max-width: 767px) {
  .p-banner__img {
    width: 18.75rem;
  }
}

.p-banner__btn {
  margin-top: -0.6875rem;
  width: 100%;
}

.p-banner__btn a {
  width: 100%;
}

.p-breadcrumb {
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb {
    padding: 0.5rem 0;
  }
}

.p-breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}

.p-breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.p-breadcrumb li:not(:last-child)::after {
  content: "";
  width: 0.3125rem;
  height: 0.625rem;
  background: url(../images/icon_arrow.svg) no-repeat center/cover;
}

.p-breadcrumb li a {
  color: #ff7a00;
  text-decoration: underline;
}

.p-footer {
  background: linear-gradient(225deg, rgb(30, 30, 30) 100%, rgb(54, 54, 54) 0%);
}

.p-footer__inner {
  max-width: 67.125rem;
}

.p-footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 2.0625rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 2.1875rem;
  }
}

.p-footer__logo {
  width: 13.375rem;
}

.p-footer__logo img {
  aspect-ratio: 214/62;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.p-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__menus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-footer__item:nth-child(n + 2) {
  margin-top: 1.5rem;
}

.p-footer__item a {
  line-height: 1.125;
  color: #fff;
}

.p-footer__sub-menu {
  margin-top: 1.5rem;
}

.p-footer__sub-item:nth-child(n + 2) {
  margin-top: 0.8125rem;
}

.p-footer__sub-item a {
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.3125rem;
  line-height: 1.2142857143;
}

.p-footer__sub-item a::before {
  content: "";
  width: 0.5625rem;
  height: 1px;
  background-color: #fff;
}

.p-footer__copyright {
  margin-top: 2rem;
  font-size: 0.75rem;
  line-height: 2;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 1rem;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
}

.p-header__innner {
  width: 100%;
  height: 100%;
  padding: 0 2.6875rem 0 1.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__innner {
    padding: 0 1.5rem 0 1rem;
  }
}

.p-header__logo {
  width: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 7.1875rem;
  }
}

.p-header__logo img {
  aspect-ratio: 188/54;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
    position: fixed;
    top: 3.75rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 3.75rem);
    background-color: #fff;
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.5rem 2.5rem;
    overflow: scroll;
  }
}

.p-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
  }
}

.p-header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__item {
    width: 100%;
    height: auto;
    display: block;
  }
}

.p-header__item a {
  font-weight: bold;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-header__item a {
    width: 100%;
    height: auto;
    padding-bottom: 1.1875rem;
    border-bottom: 1px solid #cbcbcb;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__item a::after {
    content: "";
    width: 0.625rem;
    height: 1.125rem;
    background: url(../images/icon_arrow.svg) no-repeat center/cover;
  }
}

@media screen and (max-width: 767px) {
  .p-header__item a.child::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

@media screen and (max-width: 767px) {
  .p-header__item a.child.close::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

@media screen and (max-width: 767px) {
  .p-header__item a span {
    display: none;
  }
}

.p-header__sub-list {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.25);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.3s,
    -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s,
    -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s,
    -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__sub-list {
    position: static;
    -webkit-transform: none;
    transform: none;
    padding: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: none;
    transition: none;
    display: none;
    margin-top: 1rem;
  }
}

.p-header__item:hover > .p-header__sub-list,
.p-header__item:focus-within > .p-header__sub-list {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(calc(100% - 1.5625rem));
  transform: translateY(calc(100% - 1.5625rem));
  -webkit-transition: opacity 0.3s ease, visibility 0s,
    -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s,
    -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__item:hover > .p-header__sub-list,
  .p-header__item:focus-within > .p-header__sub-list {
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
  }
}

.p-header__sub-item a {
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-header__sub-item a {
    font-size: 1rem;
  }
}

.p-header__sub-item:not(:last-child) a {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e6e6e6;
}

.p-header__sub-item:nth-child(n + 2) {
  margin-top: 1rem;
}

.p-header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-header__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__btns--footer {
    margin-top: 2.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }
}

.p-header__btn a,
.p-header__btn button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 3.0625rem;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-header__btn a,
  .p-header__btn button {
    height: 3.5rem;
    border-radius: 1.875rem;
  }
}

.p-header__btn--yoyaku a {
  width: 11.9375rem;
  color: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(240, 96, 70)),
    to(rgb(218, 0, 0))
  );
  background: linear-gradient(90deg, rgb(240, 96, 70) 0%, rgb(218, 0, 0) 100%);
}
@media screen and (max-width: 767px) {
  .p-header__btn--yoyaku a {
    width: 16.1875rem;
  }
}

.p-header__btn--yoyaku a::before {
  content: "";
  width: 1.125rem;
  height: 0.875rem;
  background: url(../images/icon_mail.svg) no-repeat center/cover;
}

.p-header__btn--member .member {
  width: 13rem;
  position: relative;
  color: #f06046;
}
@media screen and (max-width: 767px) {
  .p-header__btn--member .member {
    width: 16.1875rem;
  }
}

.p-header__btn--member .member::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 1.5rem;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(247, 148, 57)),
    to(rgb(240, 96, 70))
  );
  background: linear-gradient(
    90deg,
    rgb(247, 148, 57) 0%,
    rgb(240, 96, 70) 100%
  );
}

.p-header__btn--member .member::before {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: -1;
  border-radius: 1.5rem;
  background-color: #fff;
}

.p-header__btn--member .member span {
  width: 0.9375rem;
  height: 1.4375rem;
  background: url(../images/icon_man.svg) no-repeat center/contain;
}

.p-header__member-menu {
  width: 16rem;
  position: absolute;
  bottom: 0;
  right: 0;
  height: calc(100vh - 6.375rem);
  -webkit-transform: translate(100%, 100%);
  transform: translate(100%, 100%);
  background-color: #fff;
  padding: 2rem 1.5rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__member-menu {
    width: 20.9375rem;
    position: static;
    height: auto;
    background-color: #fafafa;
    -webkit-transform: none;
    transform: none;
    margin-top: 2rem;
    padding: 1.5rem 1.125rem;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    transition: none;
    display: none;
    pointer-events: auto;
  }
}

.p-header__member-item:nth-child(n + 2) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-header__member-item:nth-child(n + 2) {
    margin-top: 1rem;
  }
}

.p-header__member-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e6e6e6;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-header__member-item a {
    height: auto;
    padding-bottom: 1.1875rem;
  }
}

.p-header__member-item a::after {
  content: "";
  width: 0.5rem;
  height: 0.875rem;
  background: url(../images/icon_arrow.svg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-header__member-item a::after {
    width: 0.625rem;
    height: 1.125rem;
  }
}

.p-header__member-menu.is-open {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
@media screen and (max-width: 767px) {
  .p-header__member-menu.is-open {
    -webkit-transform: none;
    transform: none;
  }
}

.p-header__toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__toggle {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #1e1e1e;
    cursor: pointer;
  }
}

.p-header__toggle span {
  width: 1.125rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.p-header__toggle span:nth-child(1) {
  top: 0.75rem;
}

.p-header__toggle span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-header__toggle span:nth-child(3) {
  bottom: 0.75rem;
}

.p-header__toggle.show span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-header__toggle.show span:nth-child(2) {
  opacity: 0;
}

.p-header__toggle.show span:nth-child(3) {
  bottom: auto;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-page-fv {
  background: url(../images/page-fv_bg.webp) no-repeat center/cover;
}

.p-page-fv__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-page-fv__title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-page-fv__title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
