@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
:root {
  --noto: "Noto Sans", sans-serif;
  --zen-old: "Zen Old Mincho", serif;
  --innter: "Inter", sans-serif;
  --main-color: #101525;
  --accent-color: #B49552;
  --accent-dark-color: #695A38;
  --font-color: white;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 9.6rem;
}
@media screen and (min-width: 1600px) {
  html {
    font-size: calc(160px / 1400 * 100);
  }
}
@media screen and (min-width: 768px) and (max-width: 1599px) {
  html {
    font-size: calc(10vw / 1400 * 100);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10vw / 400 * 100);
  }
}
html.is-hidden body {
  pointer-events: none;
}

body {
  font-family: var(--noto);
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin: 0;
  background-color: var(--main-color);
  color: var(--font-color);
  opacity: 0;
  transition: opacity 0.5s;
  font-weight: 500;
}
body.is-active {
  opacity: 1;
}
body.is-menu-open {
  height: 100vh;
  overflow: hidden;
}

:where(a) {
  text-decoration: none;
}
:where(a):visited, :where(a):link {
  color: inherit;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

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

picture {
  display: inline-block;
  width: 100%;
  height: auto;
}

figure {
  padding: 0;
  margin: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.l-main {
  line-height: 1.2;
}

svg,
img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  html,
  body {
    width: 100%;
    height: 100%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  dl,
  dt,
  dd,
  p {
    padding: 0;
    margin: 0;
  }
  img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}
[x-cloak] {
  display: none !important;
}

.js-inview[data-inview=fade] {
  opacity: 0;
  transition: opacity 1s;
}
.js-inview[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(30px);
}
.js-inview[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=fade-left] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(-30px);
}
.js-inview[data-inview=fade-left].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(30px);
}
.js-inview[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn] a::before,
.js-inview[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn] i {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn].is-inview a::before,
.js-inview[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn].is-inview i {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn-border] a::after,
.js-inview[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn-border].is-inview a::after,
.js-inview[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=bg]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: transform 0.4s;
  transform: scale(1, 1);
  transform-origin: right top;
}
.js-inview[data-inview=bg].is-inview::after {
  transform: scale(0, 1);
}
.js-inview[data-inview=bg-white]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  transition: transform 0.4s;
  transform: scale(1, 1);
  transform-origin: right top;
}
.js-inview[data-inview=bg-white].is-inview::after {
  transform: scale(0, 1);
}
.js-inview[data-inview=bg-scale]::before {
  transition: transform 0.8s;
  transform: translate(-50%, -50%) scale(0.5);
  transform-origin: center center;
}
.js-inview[data-inview=bg-scale].is-inview::before {
  transform: translate(-50%, -50%) scale(1);
}
.js-inview-photo[data-inview=scale-small] {
  transition: transform 1s;
  transform: scale(1.5);
}
.is-inview .js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}

.js-inview-photo-img[data-inview=scale-small] {
  transition: transform 1s;
  transform: translateX(-50%) scale(1.5);
}
.is-inview .js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}

.js-inview-eachItem[data-inview=fade] {
  opacity: 0;
  transition: opacity 0.8s;
}
.js-inview-eachItem[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview-eachItem[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview-eachItem[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(30px);
}
.js-inview-eachItem[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview-eachItem[data-inview=btn] a::before,
.js-inview-eachItem[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-eachItem[data-inview=btn].is-inview a::before,
.js-inview-eachItem[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview-eachItem[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=btn-border] a::after,
.js-inview-eachItem[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-eachItem[data-inview=btn-border].is-inview a::after,
.js-inview-eachItem[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview-eachItem[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=list-border]::before {
  transition: transform 0.8s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=list-border] span,
.js-inview-eachItem[data-inview=list-border] figure,
.js-inview-eachItem[data-inview=list-border] a {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=list-border] i {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(-20px) rotate(45deg);
}
.js-inview-eachItem[data-inview=list-border].is-inview::before {
  transform: scale(1);
}
.js-inview-eachItem[data-inview=list-border].is-inview span,
.js-inview-eachItem[data-inview=list-border].is-inview figure,
.js-inview-eachItem[data-inview=list-border].is-inview a {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=list-border].is-inview i {
  opacity: 1;
  transform: translateX(-10px) rotate(45deg);
}
.js-inview-eachItem-fast[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(10px);
}
.js-inview-eachItem-fast[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade] {
  opacity: 0;
  transition: transform 0.8s;
}
.js-inview-eachItem-delay[data-inview=fade].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem-delay[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(30px);
}
.js-inview-eachItem-delay[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview-eachItem-delay[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-inview-all[data-inview=btn] a::before,
.js-inview-all[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-all[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-all[data-inview=btn].is-inview a::before,
.js-inview-all[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview-all[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-all[data-inview=btn-border] a::after,
.js-inview-all[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-all[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-all[data-inview=btn-border].is-inview a::after,
.js-inview-all[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview-all[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}

.l-inner-center {
  margin-inline: auto;
  max-width: calc(100% - 4rem);
}
.l-inner-center--full-width {
  max-width: 100%;
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 5rem 4.4rem;
  height: 9.6rem;
  z-index: 1000;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-header {
    width: 100%;
    position: fixed;
    height: 7rem;
    padding-inline: 2rem 1.8rem;
  }
}
.c-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.6) 0%, rgba(16, 21, 37, 0.8) 50%);
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .c-header::before {
    height: 7rem;
  }
}
.c-header.is-active::before {
  opacity: 1;
}
.c-header__logo {
  position: relative;
}
.c-header__logo img {
  width: 6.2rem;
}
@media screen and (max-width: 768px) {
  .c-header__logo img {
    width: 4rem;
  }
}
.c-header__sp-menu-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-header__sp-menu-toggle {
    display: block;
    width: 5.7rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    z-index: 2;
  }
  .c-header__sp-menu-toggle > .in-bar {
    width: 2.6rem;
    height: 1px;
    background-color: white;
    position: absolute;
    left: 50%;
    transition: transform 0.3s;
  }
  .c-header__sp-menu-toggle > .in-bar--top {
    top: 1.2rem;
    transform: translate(-50%, -50%);
  }
  .c-header__sp-menu-toggle > .in-bar--bottom {
    bottom: 1.2rem;
    transform: translate(-50%, 50%);
  }
  .c-header__sp-menu-toggle.is-active > .in-bar--top {
    top: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
  }
  .c-header__sp-menu-toggle.is-active > .in-bar--bottom {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-30deg);
  }
}
.c-header__cover {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-header__cover {
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: white;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    visibility: hidden;
  }
  .c-header__cover.is-active {
    opacity: 0.4;
    pointer-events: auto;
    visibility: visible;
  }
}
.c-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-header__nav {
    position: fixed;
    top: 0;
    left: 100vw;
    z-index: 1;
    width: calc(100vw - 10.6rem);
    background-color: var(--main-color);
    transition: left 0.3s;
    visibility: hidden;
    pointer-events: none;
    height: 100vh;
    padding: 10rem 4rem 1.2rem;
    flex-direction: column;
    gap: 4rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .c-header__nav.is-active {
    left: 10.6rem;
    visibility: visible;
    pointer-events: auto;
  }
}
.c-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .c-header__nav-list {
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.c-header__nav-list-item a {
  font-size: 1.5rem;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-header__nav-list-item a:hover {
    opacity: 0.7;
  }
}
.c-header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  border: solid 1px white;
  border-radius: 0.4rem;
  width: 15.2rem;
  height: 5rem;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-header__button {
    width: 100%;
    height: 6rem;
    gap: 1.6rem;
  }
}
.c-header__button > .in-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s;
}
.c-header__button > .in-text {
  font-size: 1.5rem;
  transition: color 0.3s;
}
@media (hover: hover) {
  .c-header__button:hover {
    background-color: white;
  }
  .c-header__button:hover > .in-icon {
    background-color: var(--main-color);
  }
  .c-header__button:hover > .in-text {
    color: var(--main-color);
  }
}
.c-header__footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-header__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 2.5rem;
    width: 100%;
  }
}
.c-header__corp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  gap: 0.5rem;
}
.c-header__copyright {
  text-align: center;
  color: #878787;
  font-size: 1.2rem;
}

.c-footer {
  background-color: rgba(255, 255, 255, 0.1);
}
.c-footer__corp-link-wrap {
  padding-block: 2.2rem;
  border-bottom: solid 1px white;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-footer__corp-link-wrap {
    padding-block: 1.5rem;
  }
}
.c-footer__corp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-footer__corp-link:hover {
    opacity: 0.7;
  }
}
.c-footer__copyright {
  padding-block: 1.2rem;
  text-align: center;
  color: #878787;
  font-size: 1.2rem;
}

.c-over-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-cta {
  background-color: var(--accent-color);
  padding-block: 4rem;
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding-block: 4rem 5rem;
    padding-inline: 2rem;
  }
}
.c-cta__sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .c-cta__sub-title {
    font-size: 1.4rem;
  }
}
.c-cta__sub-title::before, .c-cta__sub-title::after {
  content: "";
  display: block;
  width: 13.8rem;
  height: 0.1rem;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .c-cta__sub-title::before, .c-cta__sub-title::after {
    width: 4rem;
  }
}
.c-cta__main-title {
  text-align: center;
  font-size: 3.6rem;
  font-family: var(--zen-old);
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-cta__main-title {
    font-size: 2.6rem;
  }
}
.c-cta__button-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-cta__button-list {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.c-cta__button {
  display: flex;
  align-items: center;
  padding: 2.6rem 2.4rem;
  gap: 1.6rem;
  background-color: white;
  border-radius: 0.4rem;
  width: 42rem;
  height: 11rem;
  color: #333333;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-cta__button {
    width: 100%;
    height: 8.6rem;
    gap: 1.7rem 1.6rem;
    gap: 1.5rem;
  }
}
@media (hover: hover) {
  .c-cta__button:not(.c-cta__button--no-hover):hover {
    background-color: var(--main-color);
    color: white;
  }
  .c-cta__button:not(.c-cta__button--no-hover):hover .c-cta__button-icon {
    background-color: white;
  }
}
.c-cta__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  aspect-ratio: 1/1;
  background-color: rgba(180, 149, 82, 0.2);
  border-radius: 100%;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-cta__button-icon {
    width: 5.2rem;
  }
}
.c-cta__button-icon--tel img {
  width: 2.9rem;
}
@media screen and (max-width: 768px) {
  .c-cta__button-icon--tel img {
    width: 2.5rem;
  }
}
.c-cta__button-icon--mail img {
  width: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-cta__button-icon--mail img {
    width: 2.9rem;
  }
}
.c-cta__button-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-cta__button-sub-text {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-cta__button-sub-text {
    font-size: 1.3rem;
  }
}
.c-cta__button-tel-text {
  font-size: 3.6rem;
  font-family: var(--innter);
}
@media screen and (max-width: 768px) {
  .c-cta__button-tel-text {
    font-size: 3.3rem;
  }
}
.c-cta__button-mail-text {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .c-cta__button-mail-text {
    font-size: 2rem;
  }
}

.c-heading {
  font-size: 4.2rem;
  font-family: var(--zen-old);
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 2.6rem;
  }
}
.c-heading__large {
  font-size: 6.6rem;
}
@media screen and (max-width: 768px) {
  .c-heading__large {
    font-size: 5.2rem;
  }
}
.c-heading__accent {
  color: var(--accent-color);
}
.c-heading--accent-border-bottom {
  padding-bottom: 1rem;
}
.c-heading--accent-border-bottom::after {
  content: "";
  display: block;
  width: 7.7rem;
  height: 1px;
  background-color: var(--accent-dark-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.c-spec-item {
  display: grid;
  grid-template-columns: 12.8rem 1fr;
  gap: 0.4rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-spec-item {
    font-size: 1.4rem;
  }
}
.c-spec-item__title {
  padding: 3rem 0.9rem;
  border-bottom: solid 1px var(--accent-color);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-spec-item__title {
    padding-block: 2rem;
  }
}
.c-spec-item__data {
  padding: 3rem 1.7rem;
  border-bottom: solid 1px white;
}
@media screen and (max-width: 768px) {
  .c-spec-item__data {
    padding-block: 2rem;
  }
}
.c-spec-item:nth-of-type(1) .c-spec-item__title, .c-spec-item:nth-of-type(2) .c-spec-item__title {
  border-top: solid 1px var(--accent-color);
}
.c-spec-item:nth-of-type(1) .c-spec-item__data, .c-spec-item:nth-of-type(2) .c-spec-item__data {
  border-top: solid 1px white;
}
@media screen and (max-width: 768px) {
  .c-spec-item:nth-of-type(2) .c-spec-item__title {
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  .c-spec-item:nth-of-type(2) .c-spec-item__data {
    border-top: none;
  }
}

.c-faq-item {
  background-color: white;
  padding: 2.4rem 3.2rem;
  padding-right: 10.2rem;
  border-radius: 0.4rem;
  color: #333333;
  font-size: 1.6rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-faq-item {
    padding: 2rem;
    padding-right: 5rem;
    font-size: 1.5rem;
  }
}
@media (hover: hover) {
  .c-faq-item:hover {
    opacity: 0.7 !important;
  }
}
.c-faq-item__title {
  position: relative;
  padding-left: 3.9rem;
  padding-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .c-faq-item__title {
    padding-left: 3rem;
    padding-top: 0.4rem;
  }
}
.c-faq-item__title::before {
  content: "Q.";
  font-family: var(--zen-old);
  font-weight: normal;
  font-size: 2.4rem;
  color: var(--accent-color);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-faq-item__title::before {
    font-size: 2rem;
  }
}
.c-faq-item__toggle {
  position: absolute;
  top: 50%;
  right: -5rem;
  display: block;
  width: 2rem;
  aspect-ratio: 1/1;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .c-faq-item__toggle {
    right: -3rem;
    width: 1.5rem;
  }
}
.c-faq-item__toggle::before, .c-faq-item__toggle::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-faq-item__toggle::before {
  transform: translate(-50%, -50%);
}
.c-faq-item__toggle::after {
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: transform 0.3s;
}
.c-faq-item__toggle.is-open::after {
  transform: translate(-50%, -50%);
}
.c-faq-item__data {
  position: relative;
  padding-left: 3.9rem;
}
@media screen and (max-width: 768px) {
  .c-faq-item__data {
    padding-left: 3rem;
  }
}
.c-faq-item__data::before {
  content: "A.";
  font-family: var(--zen-old);
  font-weight: normal;
  font-size: 2.4rem;
  position: absolute;
  top: 1.2rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-faq-item__data::before {
    font-size: 2rem;
    top: 1.4rem;
  }
}
.c-faq-item__data-inner {
  padding-top: 2rem;
  line-height: 1.7;
}

.c-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  width: 18rem;
  height: 16.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-flow-item {
    width: 10rem;
    height: 12.7rem;
    justify-content: flex-start;
    padding-block: 1.4rem;
    gap: 1rem;
    counter-increment: flowCount;
  }
}
.c-flow-item::before {
  content: "";
  display: block;
  width: 2rem;
  height: 4rem;
  background-image: url(../svg/ic-flow-angle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: calc(100% + 2.7rem);
  transform: translate(50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-flow-item::before {
    width: 1.3rem;
    height: 2.6rem;
    right: calc(100% + 1.5rem);
  }
}
.c-flow-item__num {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-flow-item__num {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 5rem;
    height: 3.3rem;
    background: linear-gradient(146deg, #D9D9D9 0%, #D9D9D9 2.8rem, transparent 2rem);
  }
  .c-flow-item__num::before {
    content: counter(flowCount, decimal-leading-zero);
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    color: #333333;
    font-size: 1.4rem;
    font-family: var(--innter);
  }
}
.c-flow-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8.8rem;
}
@media screen and (max-width: 768px) {
  .c-flow-item__icon {
    height: 5.4rem;
  }
}
.c-flow-item__icon img {
  width: 9rem;
}
@media screen and (max-width: 768px) {
  .c-flow-item__icon img {
    width: 7rem;
  }
}
.c-flow-item p {
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-flow-item p {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
.c-flow-item:first-of-type::before {
  display: none;
}

.c-wpcf7 {
  color: #333333;
}
.c-wpcf7__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.c-wpcf7__title {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.5rem;
}
.c-wpcf7__required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 2rem;
  border-radius: 4rem;
  border: solid 1px var(--accent-color);
  color: var(--accent-color);
  font-size: 1.2rem;
}
.c-wpcf7__data {
  font-size: 1.5rem;
}
.c-wpcf7__data input[type=text], .c-wpcf7__data input[type=email], .c-wpcf7__data input[type=tel], .c-wpcf7__data textarea {
  border: solid 1px #B5B5B5;
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
}
.c-wpcf7__data input[type=text]::-moz-placeholder, .c-wpcf7__data input[type=email]::-moz-placeholder, .c-wpcf7__data input[type=tel]::-moz-placeholder, .c-wpcf7__data textarea::-moz-placeholder {
  color: #B5B5B5;
}
.c-wpcf7__data input[type=text]::placeholder, .c-wpcf7__data input[type=email]::placeholder, .c-wpcf7__data input[type=tel]::placeholder, .c-wpcf7__data textarea::placeholder {
  color: #B5B5B5;
}
.c-wpcf7__data textarea {
  padding: 1.5rem;
  line-height: 1.5;
}
.c-wpcf7__data .wpcf7-list-item {
  margin: 0;
  display: block;
  margin-bottom: 0.5rem;
}
.c-wpcf7__data .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-wpcf7__data .wpcf7-list-item label, .c-wpcf7__data .wpcf7-list-item input {
  cursor: pointer;
  margin: 0;
}
.c-wpcf7__policy {
  width: 100%;
  max-height: 12rem;
  overflow-y: scroll;
  border: solid 1px #B5B5B5;
  padding: 2rem 3rem;
  margin-bottom: 2.4rem;
}
.c-wpcf7__policy h3 {
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
}
.c-wpcf7__policy ol, .c-wpcf7__policy ul {
  font-size: 1.2rem;
  margin-block: 1.5rem;
}
.c-wpcf7__policy ol {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-wpcf7__policy ol li {
  counter-increment: listCounter;
  padding-left: 1.2em;
  position: relative;
}
.c-wpcf7__policy ol li::before {
  content: counter(listCounter) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.c-wpcf7__policy p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.c-wpcf7__accept {
  margin-bottom: 2.4rem;
}
.c-wpcf7__accept .wpcf7-list-item {
  width: 100%;
  text-align: center;
  margin: 0;
}
.c-wpcf7__accept label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  cursor: pointer;
}
.c-wpcf7__accept label input {
  cursor: pointer;
}
.c-wpcf7__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19.3rem;
  height: 4.8rem;
  background-color: var(--accent-color);
  border-radius: 0.4rem;
  color: white;
  font-size: 1.6rem;
  margin-inline: auto;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .c-wpcf7__button:hover {
    background-color: var(--main-color);
  }
}

.p-top :where(p) {
  line-height: 1.7;
}
.p-top .c-heading {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-top .c-heading {
    margin-bottom: 4rem;
  }
}
.p-top__mv {
  height: 64rem;
  width: 100%;
  position: relative;
  margin-top: 9.6rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv {
    margin-top: 7rem;
    height: 60rem;
    margin-top: 7rem;
  }
}
.p-top__mv-accent {
  position: absolute;
  top: -9.6rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top__mv-accent {
    top: -7rem;
  }
}
.p-top__mv-accent img {
  width: 69.7rem;
  mix-blend-mode: screen;
}
@media screen and (max-width: 768px) {
  .p-top__mv-accent img {
    width: 100%;
  }
}
.p-top__mv-inner {
  position: relative;
  z-index: 1;
  padding-left: 15rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-top__mv-inner {
    padding-inline: 3.5rem 1.5rem;
  }
}
.p-top__mv-desc-wrap {
  width: 61.2rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv-desc-wrap {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.p-top__mv-title {
  font-size: 6.8rem;
  font-family: var(--zen-old);
  font-weight: 500;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-top__mv-title {
    font-size: 3.9rem;
    padding-right: 2rem;
  }
}
.p-top__mv-title > .in-text:last-of-type {
  margin-left: auto;
}
.p-top__mv-intro-item {
  display: flex;
  align-items: center;
}
.p-top__mv-intro-wrap {
  flex-grow: 1;
}
.p-top__mv-intro-wrap p {
  font-size: 1.5rem;
  padding-left: 2.5rem;
  line-height: 1.7;
}
.p-top__mv-intro-head {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv-intro-head {
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
  }
}
.p-top__mv-intro-head-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.6rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  z-index: 1;
  font-size: 1.6rem;
  border: solid 1px white;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top__mv-intro-head-icon {
    width: 10.8rem;
    font-size: 1.5rem;
  }
}
.p-top__mv-intro-head-icon::before {
  content: "";
  display: block;
  width: 11rem;
  aspect-ratio: 1/1;
  background-color: white;
  opacity: 0.1;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top__mv-intro-head-icon::before {
    width: 9.5rem;
  }
}
.p-top__mv-intro-head-title {
  padding-block: 2rem;
  font-size: 1.8rem;
  border-top: solid 1px white;
  border-bottom: solid 1px white;
  padding-left: 4rem;
  margin-left: -1.2rem;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-top__mv-intro-head-title {
    padding-block: 1.5rem;
    padding-inline: 0;
    font-size: 1.6rem;
    border: none;
  }
}
.p-top__mv-item-image {
  width: 25.5rem;
  flex-shrink: 0;
  margin-left: -2rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv-item-image {
    width: 17rem;
  }
}
.p-top__mv-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 59rem;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top__mv-bg {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 23.6rem;
  }
}
.p-top__mv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
}
.p-top__mv-mobile-desc {
  text-align: center;
  font-size: 1.4rem;
}
.p-top__risk {
  padding-block: 12rem 5rem;
  width: 112rem;
}
@media screen and (max-width: 768px) {
  .p-top__risk {
    padding-block: 8rem 3rem;
  }
}
.p-top__risk-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top__risk-list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.p-top__risk-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  gap: 1.8rem;
}
.p-top__risk-item-image {
  width: 14rem;
  height: 15rem;
  overflow: hidden;
  box-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-top__risk-item-image {
    width: 8rem;
    height: 16rem;
  }
}
.p-top__risk-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__risk-item-desc-wrap {
  padding-right: 1.8rem;
}
.p-top__risk-item-desc-wrap p {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top__risk-item-desc-wrap p {
    font-size: 1.4rem;
  }
}
.p-top__risk-item-title {
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top__risk-item-title {
    font-size: 1.6rem;
  }
}
.p-top__benefit {
  padding-block: 5rem 10rem;
  width: 98rem;
}
@media screen and (max-width: 768px) {
  .p-top__benefit {
    padding-block: 3rem 6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__benefit .c-heading {
    line-height: 1.1;
  }
}
.p-top__benefit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__benefit-list {
    gap: 5rem;
  }
}
.p-top__benefit-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  counter-increment: listCounter;
}
@media screen and (max-width: 768px) {
  .p-top__benefit-item {
    flex-direction: column;
    padding-inline: 1rem;
    gap: 0;
  }
}
.p-top__benefit-item::before {
  content: counter(listCounter, decimal-leading-zero);
  font-size: 11rem;
  color: var(--accent-dark-color);
  font-family: var(--zen-old);
  font-style: italic;
  position: absolute;
  top: -2.7rem;
  left: 0;
  z-index: 2;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-top__benefit-item::before {
    font-size: 8rem;
    top: -3.7rem;
  }
}
.p-top__benefit-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-top__benefit-item:nth-of-type(even) {
    flex-direction: column;
  }
}
.p-top__benefit-item:nth-of-type(even)::before {
  left: auto;
  right: 0;
}
.p-top__benefit-item:nth-of-type(even) .p-top__benefit-item-image {
  transform: translateX(-7rem);
}
@media screen and (max-width: 768px) {
  .p-top__benefit-item:nth-of-type(even) .p-top__benefit-item-image {
    transform: none;
    margin-left: auto;
    margin-right: 1rem;
  }
}
.p-top__benefit-item:nth-of-type(even) .p-top__benefit-item-desc {
  padding-inline: 4rem 10rem;
}
@media screen and (max-width: 768px) {
  .p-top__benefit-item:nth-of-type(even) .p-top__benefit-item-desc {
    padding: 7.4rem 2.4rem 2.4rem;
    margin-left: 0;
    margin-right: auto;
  }
}
.p-top__benefit-item-image {
  width: 29rem;
  height: 19.4rem;
  flex-shrink: 0;
  transform: translateX(7rem);
}
@media screen and (max-width: 768px) {
  .p-top__benefit-item-image {
    width: calc(100% - 3rem);
    height: 17rem;
    transform: none;
    position: relative;
    z-index: 1;
    margin-left: 1rem;
    margin-right: auto;
  }
}
.p-top__benefit-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__benefit-item-desc {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4rem 4rem 4rem 10rem;
  height: 28rem;
}
@media screen and (max-width: 768px) {
  .p-top__benefit-item-desc {
    margin-top: -5.4rem;
    width: calc(100% - 2rem);
    margin-left: auto;
    padding: 7.4rem 2.4rem 2.4rem;
    height: auto;
  }
}
.p-top__benefit-item-desc p {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top__benefit-item-desc p {
    font-size: 1.4rem;
  }
}
.p-top__benefit-item-title {
  font-size: 2.4rem;
  font-family: var(--zen-old);
  margin-bottom: 1.5rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-top__benefit-item-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.p-top__case {
  padding-block: 12rem 8rem;
  width: 103.2rem;
}
@media screen and (max-width: 768px) {
  .p-top__case {
    padding-block: 8rem 4rem;
  }
}
.p-top__case-copy {
  text-align: center;
  font-size: 2.8rem;
  font-family: var(--zen-old);
  font-weight: normal;
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 768px) {
  .p-top__case-copy {
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }
}
.p-top__case-desc {
  width: 88.5rem;
  font-size: 1.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__case-desc {
    margin-bottom: 3rem;
  }
}
.p-top__case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__case-list {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}
.p-top__case-item {
  background-color: rgba(255, 255, 255, 0.1);
}
.p-top__case-item-image {
  width: 100%;
  height: 18.2rem;
}
.p-top__case-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__case-item-desc {
  padding: 2.3rem 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__case-item-desc {
    padding: 2.4rem;
  }
}
.p-top__case-item-desc p {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top__case-item-desc p {
    font-size: 1.4rem;
  }
}
.p-top__case-item-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.p-top__spec {
  padding-block: 8rem 6rem;
  width: 103.2rem;
}
@media screen and (max-width: 768px) {
  .p-top__spec {
    padding-block: 4rem;
  }
}
.p-top__spec .c-heading {
  margin-bottom: 5rem;
}
.p-top__spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-top__spec-list {
    grid-template-columns: 1fr;
  }
}
.p-top__spec-attention {
  font-size: 1.3rem;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-top__spec-attention {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
}
.p-top__faq {
  padding-block: 6rem;
  width: 90rem;
}
@media screen and (max-width: 768px) {
  .p-top__faq {
    padding-block: 4rem;
  }
}
.p-top__faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
.p-top__flow {
  padding-block: 6rem;
  width: 112rem;
}
@media screen and (max-width: 768px) {
  .p-top__flow {
    padding-block: 4rem;
  }
}
.p-top__flow-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.5rem;
}
@media screen and (max-width: 768px) {
  .p-top__flow-list {
    flex-wrap: wrap;
    gap: 3rem;
  }
}
.p-top__inquiry {
  padding-block: 6rem 8rem;
  width: 79rem;
}
@media screen and (max-width: 768px) {
  .p-top__inquiry {
    padding-block: 4rem;
  }
}
.p-top__inquiry-desc {
  width: 72.2rem;
  font-size: 1.5rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-top__inquiry-desc {
    margin-bottom: 3rem;
  }
}
.p-top__wpcf7 {
  background-color: white;
  border-radius: 0.4rem;
  padding: 9rem 11.4rem 7rem;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .p-top__wpcf7 {
    padding: 4rem 2rem;
  }
}/*# sourceMappingURL=styles.css.map */