@charset "UTF-8";
:root {
  --hamburger-color: currentColor;
}

.u-d-none--pc {
  display: none;
}
@media (max-width: 767px) {
  .u-d-none--pc {
    display: inline-block;
  }
}

.u-d-none--sp {
  display: inline-block;
}
@media (max-width: 767px) {
  .u-d-none--sp {
    display: none;
  }
}

html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  html {
    font-weight: 500;
  }
}

body {
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  display: flex;
  width: 100%;
  height: 100%;
  background-color: black;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
body.is-fixed {
  overflow: hidden;
}
body.is-fixed::before {
  visibility: visible;
  opacity: 0.3;
}

label {
  user-select: none;
}

input:focus,
textarea:focus {
  outline: solid 2px #0054fb;
}

::placeholder {
  color: rgb(182, 182, 182);
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

form .wpcf7-response-output {
  border: none !important;
  background-color: rgb(246, 246, 246);
  color: red;
  padding: 20px !important;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin: 30px 0 0 !important;
  font-size: min(16px, 1.4vw);
}
@media (max-width: 767px) {
  form .wpcf7-response-output {
    font-size: 4.26vw;
  }
}
@media (max-width: 767px) {
  form .wpcf7-response-output {
    grid-template-columns: 1fr;
    padding: 4vw;
    gap: 2vw;
  }
}
form .wpcf7-response-output::before {
  content: "!";
  line-height: 1;
  letter-spacing: 0;
  font-weight: bold;
  background-color: red;
  color: #fff;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(16px, 1.4vw);
}
@media (max-width: 767px) {
  form .wpcf7-response-output::before {
    font-size: 4.26vw;
  }
}
@media (max-width: 767px) {
  form .wpcf7-response-output::before {
    width: 10vw;
  }
}
form.sent .wpcf7-response-output {
  color: green;
}
form.sent .wpcf7-response-output::before {
  display: none;
}

.error-message {
  display: none;
  color: red;
}
summary {
  display: flex;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

svg {
  overflow: visible;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.dg {
  display: none;
}

.c-heading-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(15px, 1vw);
}
@media (max-width: 767px) {
  .c-heading-1 {
    gap: 1vw;
  }
}
.c-heading-1__en {
  height: min(45px, 4vw);
}
@media (max-width: 767px) {
  .c-heading-1__en {
    height: 8vw;
  }
}
.c-heading-1__ja {
  font-size: min(20px, 1.8vw);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-heading-1__ja {
    font-size: 5.33vw;
  }
}
@media (max-width: 767px) {
  .c-heading-1__ja {
    font-size: min(12px, 1vw);
    letter-spacing: 0;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .c-heading-1__ja {
    font-size: 3.2vw;
  }
}

.c-heading-2 {
  display: inline;
  background-image: linear-gradient(0deg, #c5877a, #c5877a);
  background-repeat: no-repeat;
  background-size: 100%;
  color: #fff;
  font-size: min(32px, 2.8vw);
  font-weight: 600;
  padding: 3px 12px 6px;
  width: fit-content;
}
@media (max-width: 767px) {
  .c-heading-2 {
    font-size: min(21px, 1.9vw);
    padding: 0 3vw;
    line-height: 1.9;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .c-heading-2 {
    font-size: 5.6vw;
  }
}

.c-pdf-btn {
  padding: 18px 50px 21px;
  border: solid 1px black;
  border-radius: 100vw;
  font-size: min(22px, 2vw);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 290px;
  position: relative;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-pdf-btn {
    font-size: 5.86vw;
  }
}
@media (max-width: 767px) {
  .c-pdf-btn {
    font-size: min(12px, 1vw);
    padding: 3vw 4vw;
    padding-right: 7vw;
    min-width: 40vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .c-pdf-btn {
    font-size: 3.2vw;
  }
}
.c-pdf-btn.is-close {
  pointer-events: none;
  opacity: 0.3;
}
.c-pdf-btn svg {
  width: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
}
@media (max-width: 767px) {
  .c-pdf-btn svg {
    width: 3.5vw;
    right: 3.5vw;
  }
}
.c-pdf-btn svg .pdf-1 {
  fill: #231815;
  transition: 0.3s ease;
}
.c-pdf-btn svg .pdf-2 {
  fill: #fff;
  transition: 0.3s ease;
}
@media (min-width: 767px) and (hover: hover) and (pointer: fine) {
  .c-pdf-btn:hover {
    background-color: black;
    color: #fff;
  }
  .c-pdf-btn:hover .pdf-1 {
    fill: #fff;
  }
  .c-pdf-btn:hover .pdf-2 {
    fill: black;
  }
}

.c-btn-1 {
  padding: 18px 60px;
  border-radius: 100vw;
  width: fit-content;
  background-color: #c5877a;
  border: solid 1px #c5877a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: min(25px, 2.15vw);
  font-weight: 600;
  line-height: 1;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-btn-1 {
    font-size: 6.6vw;
  }
}
@media (max-width: 767px) {
  .c-btn-1 {
    font-size: min(12px, 1vw);
    padding: 1.5vw 6vw;
    line-height: 2.2;
    gap: 2.4vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .c-btn-1 {
    font-size: 3.2vw;
  }
}
.c-btn-1 svg {
  width: 30px;
}
@media (max-width: 767px) {
  .c-btn-1 svg {
    width: 4vw;
  }
}
.c-btn-1 svg path {
  fill: #fff;
  transition: 0.3s ease;
}
@media (min-width: 767px) and (hover: hover) and (pointer: fine) {
  .c-btn-1:hover {
    background-color: transparent;
    color: #c5877a;
  }
  .c-btn-1:hover svg path {
    fill: #c5877a;
  }
}
.c-btn-1.is-white {
  background-color: white;
  border-color: white;
  color: #c5877a;
}
.c-btn-1.is-white svg path {
  fill: #c5877a;
}
@media (min-width: 767px) and (hover: hover) and (pointer: fine) {
  .c-btn-1.is-white:hover {
    color: white;
    background-color: transparent;
  }
  .c-btn-1.is-white:hover svg path {
    fill: white;
  }
}

.c-buy-btn {
  --position:min(40px,3vw);
  position: fixed;
  bottom: var(--position);
  right: var(--position);
  z-index: 9998;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-buy-btn {
    --position: 4vw;
  }
}
.c-buy-btn img {
  width: min(170px, 13vw);
}
@media (max-width: 767px) {
  .c-buy-btn img {
    width: 27vw;
  }
}
.c-buy-btn img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
@media (min-width: 767px) and (hover: hover) and (pointer: fine) {
  .c-buy-btn:hover {
    scale: 1.1;
    filter: brightness(1.2);
  }
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 767px) {
  .c-header {
    padding: 3vw 6vw;
    background-color: rgba(255, 255, 255, 0.168627451);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    filter: none;
  }
}
.c-header__logo {
  width: 70px;
  position: relative;
}
@media (max-width: 767px) {
  .c-header__logo {
    width: 12vw;
  }
}
.c-header__logo img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.c-header__logo img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
@media (max-width: 767px) {
  .c-header__logo img:last-child {
    display: none;
  }
}
.c-header__hamburger {
  height: 26px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 999999;
}
@media (max-width: 767px) {
  .c-header__hamburger {
    height: 8vw;
  }
}
.c-header__hamburger span {
  width: 100%;
  height: 1.5px;
  transition: 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .c-header__hamburger span {
    height: 1px;
  }
}
.c-header__hamburger span::before, .c-header__hamburger span::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
  background-color: var(--hamburger-color);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
  transform-origin: center;
}
@media (max-width: 767px) {
  .c-header__hamburger span::before, .c-header__hamburger span::after {
    background-color: black;
  }
}
.c-header__hamburger span::before {
  translate: 0 4px;
}
.c-header__hamburger span::after {
  translate: 0 -4px;
}
.c-header__hamburger.is-active span {
  rotate: 30deg;
}
.c-header__hamburger.is-active span::before, .c-header__hamburger.is-active span::after {
  background-color: #fff;
}
@media (max-width: 767px) {
  .c-header__hamburger.is-active span::before, .c-header__hamburger.is-active span::after {
    background-color: #fff;
  }
}
.c-header__hamburger.is-active span::before {
  translate: 0;
}
.c-header__hamburger.is-active span::after {
  rotate: 120deg;
  translate: 0;
}
.c-header__open-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  height: 100vh;
  padding: 40px min(50px, 3vw);
  background-color: #c5877a;
  color: #fff;
  visibility: hidden;
  overflow: scroll;
  translate: 100% 0;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-header__open-nav {
    padding: 10vw;
    top: -3vw;
    right: -3vw;
  }
}
.c-header__open-nav.is-active {
  visibility: visible;
  translate: 0 0;
}
.c-header__open-nav__logo img {
  width: min(50px, 5vw);
}
@media (max-width: 767px) {
  .c-header__open-nav__logo img {
    width: 14vw;
  }
}
.c-header__open-nav__list {
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (max-width: 767px) {
  .c-header__open-nav__list {
    padding-top: 14vw;
    gap: 4vw;
  }
}
.c-header__open-nav__list a {
  width: fit-content;
  font-size: min(16px, 1.4vw);
  font-weight: 600;
  background-image: linear-gradient(#fff, #fff);
  background-size: 0 1px;
  background-position: bottom right;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease-out;
}
@media (max-width: 767px) {
  .c-header__open-nav__list a {
    font-size: 4.26vw;
  }
}
@media (min-width: 767px) and (hover: hover) and (pointer: fine) {
  .c-header__open-nav__list a:hover {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
.c-header__open-nav .c-btn-1 {
  font-size: min(16px, 1.4vw);
  padding: 11px 35px;
  gap: 10px;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .c-header__open-nav .c-btn-1 {
    font-size: 4.26vw;
  }
}
@media (max-width: 767px) {
  .c-header__open-nav .c-btn-1 {
    padding: 1.4vw 6vw;
    margin-top: 10vw;
  }
}
.c-header__open-nav .c-btn-1 svg {
  width: 18px;
}
@media (max-width: 767px) {
  .c-header__open-nav .c-btn-1 svg {
    width: 6vw;
  }
}
.c-header__open-nav__bottom {
  padding-top: 35px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (max-width: 767px) {
  .c-header__open-nav__bottom {
    padding-top: 8vw;
    gap: 3vw;
  }
}
.c-header__open-nav__bottom a {
  font-size: min(14px, 1.2vw);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-header__open-nav__bottom a {
    font-size: 3.73vw;
  }
}
.c-header__open-nav__bottom a svg {
  width: 12px;
}
@media (min-width: 767px) and (hover: hover) and (pointer: fine) {
  .c-header__open-nav__bottom a:hover {
    opacity: 0.5;
  }
}

.c-footer__main {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4d4d4d;
  color: #fff;
  padding: 48px;
}
@media (max-width: 767px) {
  .c-footer__main {
    padding: 20vw 0 16vw;
  }
}
.c-footer__main__inner {
  width: min(1000px, 90vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .c-footer__main__inner {
    width: 88vw;
  }
}
@media (max-width: 767px) {
  .c-footer__main__inner {
    flex-direction: column;
    gap: 8vw;
  }
}
.c-footer__main__logo img {
  width: min(162px, 15vw);
}
@media (max-width: 767px) {
  .c-footer__main__logo img {
    width: 37vw;
  }
}
.c-footer__main__right {
  display: flex;
  gap: min(60px, 6vw);
}
@media (max-width: 767px) {
  .c-footer__main__right {
    flex-direction: column;
    gap: 13vw;
    width: 100%;
  }
}
.c-footer__main__right__item {
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-footer__main__right__item > span {
  color: #fff;
  font-size: min(12px, 1vw);
}
@media (max-width: 767px) {
  .c-footer__main__right__item > span {
    font-size: 3.2vw;
  }
}
.c-footer__main__right__item img {
  height: min(18px, 2vw);
  margin-top: 15px;
}
@media (max-width: 767px) {
  .c-footer__main__right__item img {
    height: 5.3vw;
    margin-top: 4vw;
  }
}
.c-footer__main__right__item > p:nth-of-type(1) {
  font-size: min(16px, 1.4vw);
  font-weight: 500;
  padding: 14px 0 3px;
}
@media (max-width: 767px) {
  .c-footer__main__right__item > p:nth-of-type(1) {
    font-size: 4.26vw;
  }
}
@media (max-width: 767px) {
  .c-footer__main__right__item > p:nth-of-type(1) {
    padding: 3vw 0 1vw;
  }
}
.c-footer__main__right__item > p:nth-of-type(2) {
  font-size: min(12px, 1vw);
}
@media (max-width: 767px) {
  .c-footer__main__right__item > p:nth-of-type(2) {
    font-size: 3.2vw;
  }
}
.c-footer__contact {
  background-color: #c5877a;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .c-footer__contact {
    padding: 6vw;
  }
}
.c-footer__contact .c-btn-1 {
  font-size: min(16px, 1.4vw);
  letter-spacing: 0;
  font-weight: 400;
}
@media (max-width: 767px) {
  .c-footer__contact .c-btn-1 {
    font-size: 4.26vw;
  }
}
@media (max-width: 767px) {
  .c-footer__contact .c-btn-1 {
    font-size: min(14px, 1.2vw);
    width: 60%;
    font-weight: 500;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .c-footer__contact .c-btn-1 {
    font-size: 3.73vw;
  }
}
.c-footer__copyright {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(12px, 1vw);
}
@media (max-width: 767px) {
  .c-footer__copyright {
    font-size: 3.2vw;
  }
}
@media (max-width: 767px) {
  .c-footer__copyright {
    font-size: min(10px, 0.8vw);
    padding: 4vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .c-footer__copyright {
    font-size: 2.66vw;
  }
}

.p-top__section-1 {
  width: 100vw;
  aspect-ratio: 1200/622;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .p-top__section-1 {
    aspect-ratio: 750/1140;
  }
}
.p-top__section-1 > picture img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top__section-1__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(50px, 4vw);
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: min(25px, 2.08vw);
  line-height: 2;
  position: relative;
}
@media (max-width: 767px) {
  .p-top__section-1__texts {
    font-size: min(16px, 1.4vw);
    letter-spacing: 0.15em;
    line-height: 1.56;
    gap: 6.6vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-1__texts {
    font-size: 4.26vw;
  }
}
.p-top__section-1__texts h1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(12px, 1vw);
}
@media (max-width: 767px) {
  .p-top__section-1__texts h1 {
    position: unset;
    gap: 2vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-1__texts h1 span {
    font-size: min(12px, 1vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-1__texts h1 span {
    font-size: 3.2vw;
  }
}
.p-top__section-1__texts h1 img:nth-of-type(1) {
  width: min(484px, 40.6vw);
}
@media (max-width: 767px) {
  .p-top__section-1__texts h1 img:nth-of-type(1) {
    width: 62.8vw;
  }
}
.p-top__section-1__texts h1 img:nth-of-type(2) {
  position: absolute;
  top: max(-30px, -2.5vw);
  right: max(-150px, -12.5vw);
  width: min(120px, 10vw);
}
@media (max-width: 767px) {
  .p-top__section-1__texts h1 img:nth-of-type(2) {
    width: 19.3vw;
    top: -22vw;
    right: -9vw;
  }
}
.p-top__section-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  overflow: clip;
  padding-bottom: 125px;
}
@media (max-width: 767px) {
  .p-top__section-2 {
    padding-bottom: 15.3vw;
  }
}
.p-top__section-2__inner {
  width: min(1000px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top__section-2__inner {
    width: 88vw;
  }
}
.p-top__section-2__top {
  position: relative;
  padding: 0 4.2vw;
}
@media (max-width: 767px) {
  .p-top__section-2__top {
    padding: 0 6.6vw;
  }
}
.p-top__section-2__top > img {
  display: flex;
  width: 3000px;
  position: absolute;
  top: 0;
}
.p-top__section-2__top > img:nth-of-type(1) {
  left: -3000px;
}
.p-top__section-2__top > img:nth-of-type(2) {
  right: -3000px;
  transform: rotateY(180deg);
}
.p-top__section-2__top__lamp {
  position: relative;
  animation: flick 2s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes flick {
  0% {
    rotate: 5deg;
  }
  50% {
    rotate: -5deg;
  }
  100% {
    rotate: 5deg;
  }
}
.p-top__section-2__top__lamp img {
  width: min(93px, 6vw);
}
@media (max-width: 767px) {
  .p-top__section-2__top__lamp img {
    width: 12.2vw;
  }
}
.p-top__section-2__top__lamp img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: blink 2s steps(1) infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-top__section-2 .c-heading-1 {
  padding-top: 57px;
}
@media (max-width: 767px) {
  .p-top__section-2 .c-heading-1 {
    padding-top: 12vw;
  }
}
.p-top__section-2__texts {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media (max-width: 767px) {
  .p-top__section-2__texts {
    padding-top: 9.3vw;
    gap: 6vw;
  }
}
.p-top__section-2__texts p {
  text-align: center;
}
.p-top__section-2__texts p:nth-of-type(1) {
  font-size: min(32px, 2.8vw);
  font-weight: 600;
}
@media (max-width: 767px) {
  .p-top__section-2__texts p:nth-of-type(1) {
    font-size: min(21px, 1.9vw);
    line-height: 1.5;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-2__texts p:nth-of-type(1) {
    font-size: 5.6vw;
  }
}
.p-top__section-2__texts p:nth-of-type(2) {
  font-size: min(21px, 1.9vw);
  letter-spacing: 0.07em;
}
@media (max-width: 767px) {
  .p-top__section-2__texts p:nth-of-type(2) {
    font-size: 5.6vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-2__texts p:nth-of-type(2) {
    font-size: min(14px, 1.2vw);
    line-height: 1.78;
    white-space: nowrap;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-2__texts p:nth-of-type(2) {
    font-size: 3.73vw;
  }
}
.p-top__section-2__list {
  padding-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(50px, 4vw);
}
@media (max-width: 767px) {
  .p-top__section-2__list {
    padding-top: 11.3vw;
    grid-template-columns: 1fr;
    gap: 15vw;
  }
}
.p-top__section-2__list__item {
  position: relative;
}
.p-top__section-2__list__item > img {
  height: min(43px, 3vw);
  position: absolute;
  top: -17px;
  left: -8px;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-top__section-2__list__item > img {
    height: 11.6vw;
    top: -4vw;
    left: -1vw;
  }
}
.p-top__section-2__list__item__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top__section-2__list__item__texts {
  padding-top: 15px;
}
@media (max-width: 767px) {
  .p-top__section-2__list__item__texts {
    padding-top: 6vw;
  }
}
.p-top__section-2__list__item__texts h3 {
  font-size: min(28px, 2.4vw);
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-top__section-2__list__item__texts h3 {
    font-size: 7.46vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-2__list__item__texts h3 {
    font-size: min(22px, 2vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-2__list__item__texts h3 {
    font-size: 5.86vw;
  }
}
.p-top__section-2__list__item__texts p {
  font-size: min(18px, 1.6vw);
  padding-top: min(20px, 1.7vw);
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .p-top__section-2__list__item__texts p {
    font-size: 4.8vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-2__list__item__texts p {
    font-size: min(16px, 1.4vw);
    padding-top: 3.5vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-2__list__item__texts p {
    font-size: 4.26vw;
  }
}
.p-top__section-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6e5df;
  padding: 120px 0 180px;
  position: relative;
}
@media (max-width: 767px) {
  .p-top__section-3 {
    padding: 30vw 0 45vw;
  }
}
.p-top__section-3__jag {
  height: 10px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 0;
  animation: jag-scroll 60s linear infinite;
}
@keyframes jag-scroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
@media (max-width: 767px) {
  .p-top__section-3__jag {
    height: 1.5vw;
    animation-duration: 30s;
  }
}
.p-top__section-3__mountain {
  position: absolute;
  bottom: 0;
  right: 0;
}
.p-top__section-3__mountain img {
  width: min(668px, 50vw);
}
@media (max-width: 767px) {
  .p-top__section-3__mountain img {
    width: 86vw;
  }
}
.p-top__section-3__inner {
  width: min(1000px, 90vw);
}
@media (max-width: 767px) {
  .p-top__section-3__inner {
    width: 88vw;
  }
}
.p-top__section-3__inner > p {
  font-size: min(30px, 2.6vw);
  font-weight: 600;
  text-align: center;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .p-top__section-3__inner > p {
    font-size: 8vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-3__inner > p {
    font-size: min(21px, 1.9vw);
    line-height: 1.8;
    padding-top: 6.6vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-3__inner > p {
    font-size: 5.6vw;
  }
}
.p-top__section-3__list {
  padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px 50px;
}
@media (max-width: 767px) {
  .p-top__section-3__list {
    padding-top: 10.6vw;
    grid-template-columns: 1fr;
    gap: 10vw;
  }
}
.p-top__section-3__list__item__img {
  aspect-ratio: 475/297;
  position: relative;
}
.p-top__section-3__list__item__img img:nth-of-type(1) {
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 2;
  height: 16.1%;
}
.p-top__section-3__list__item__img img:nth-of-type(2) {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top__section-3__list__item > p {
  font-size: min(22px, 2vw);
  line-height: 1.8;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .p-top__section-3__list__item > p {
    font-size: 5.86vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-3__list__item > p {
    padding-top: 5vw;
    font-size: min(16px, 1.4vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-3__list__item > p {
    font-size: 4.26vw;
  }
}
.p-top__section-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 125px 0 75px;
  text-align: center;
  position: relative;
  z-index: 9;
  background-color: #fff;
}
@media (max-width: 767px) {
  .p-top__section-4 {
    padding: 18vw 0 14vw;
  }
}
.p-top__section-4__slash {
  height: 32px;
  width: 100%;
  position: absolute;
  top: -16px;
  left: 0;
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 0;
  animation: slash-scroll 60s linear infinite;
}
@keyframes slash-scroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100% 0;
  }
}
@media (max-width: 767px) {
  .p-top__section-4__slash {
    height: 4.2vw;
    top: -2.1vw;
    animation-duration: 30s;
  }
}
.p-top__section-4__inner {
  width: min(1000px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top__section-4__inner {
    width: 88vw;
  }
}
.p-top__section-4__inner > p {
  padding-top: 40px;
  font-size: min(20px, 1.8vw);
  line-height: 2;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .p-top__section-4__inner > p {
    font-size: 5.33vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-4__inner > p {
    font-size: min(14px, 1.2vw);
    letter-spacing: 0.07em;
    text-align: left;
    padding-top: 8vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-4__inner > p {
    font-size: 3.73vw;
  }
}
.p-top__section-4__inner picture img {
  width: min(700px, 80vw);
  padding-top: 30px;
}
@media (max-width: 767px) {
  .p-top__section-4__inner picture img {
    width: 71vw;
    padding-top: 10vw;
  }
}
.p-top__section-4__figure {
  margin-top: 60px;
  width: 100%;
  aspect-ratio: 5/3;
  background-color: rgb(243, 243, 243);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top__section-4__figure {
    margin-top: 15vw;
  }
}
.p-top__section-5 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 160px 0 115px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .p-top__section-5 {
    padding: 22vw 0;
  }
}
.p-top__section-5 canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.p-top__section-5 > img {
  position: absolute;
  top: 0;
  left: 0;
}
.p-top__section-5 > img.triangle {
  width: 100vw;
  height: 56px;
  z-index: 3;
}
@media (max-width: 767px) {
  .p-top__section-5 > img.triangle {
    height: 12vw;
  }
}
.p-top__section-5 > img.gradient {
  top: -38px;
  width: 100vw;
  height: 378px;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-top__section-5 > img.gradient {
    top: -8.9vw;
    height: 40vw;
  }
}
.p-top__section-5 > img.smoke {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-position: bottom center;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .p-top__section-5 > img.smoke {
    object-position: 90% 0;
  }
}
.p-top__section-5__inner {
  width: min(1000px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .p-top__section-5__inner {
    width: 88vw;
  }
}
.p-top__section-5__inner > p {
  letter-spacing: 0;
  line-height: 2;
}
.p-top__section-5__inner > p:nth-of-type(1) {
  padding-top: 30px;
  font-size: min(27px, 2.3vw);
  text-align: center;
}
@media (max-width: 767px) {
  .p-top__section-5__inner > p:nth-of-type(1) {
    font-size: 7.2vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-5__inner > p:nth-of-type(1) {
    font-size: min(14px, 1.2vw);
    padding-top: 5.3vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-5__inner > p:nth-of-type(1) {
    font-size: 3.73vw;
  }
}
.p-top__section-5__inner > p:nth-of-type(2) {
  padding-top: 35px;
  font-size: min(26px, 2.2vw);
}
@media (max-width: 767px) {
  .p-top__section-5__inner > p:nth-of-type(2) {
    font-size: 6.93vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-5__inner > p:nth-of-type(2) {
    font-size: min(13px, 1.1vw);
    padding-top: 9.3vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-5__inner > p:nth-of-type(2) {
    font-size: 3.46vw;
  }
}
.p-top__section-5__lamp {
  width: min(142px, 13vw);
  position: relative;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .p-top__section-5__lamp {
    width: 18.9vw;
    margin-top: 6.6vw;
  }
}
.p-top__section-5__lamp img {
  width: 100%;
}
.p-top__section-5__lamp img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
.p-top__section-5__lamp .blink-1 {
  animation: blink-1 2s steps(1) infinite;
}
.p-top__section-5__lamp .blink-2 {
  animation: blink-2 1s steps(1) infinite;
}
@keyframes blink-1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blink-2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.p-top__section-5__slider {
  width: min(484px, 50vw);
  position: relative;
  margin-top: min(55px, 4vw);
}
@media (max-width: 767px) {
  .p-top__section-5__slider {
    margin-top: 7.3vw;
    width: 70.6vw;
  }
}
.p-top__section-5__slider__labels {
  display: flex;
  justify-content: space-between;
  margin: 0 -42px;
}
@media (max-width: 767px) {
  .p-top__section-5__slider__labels {
    margin: 0 -4vw;
  }
}
.p-top__section-5__slider__labels__item {
  font-size: min(26px, 2.2vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .p-top__section-5__slider__labels__item {
    font-size: 6.93vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-5__slider__labels__item {
    font-size: min(14px, 1.2vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-5__slider__labels__item {
    font-size: 3.73vw;
  }
}
.p-top__section-5__slider__labels__item span {
  font-size: min(22px, 2vw);
}
@media (max-width: 767px) {
  .p-top__section-5__slider__labels__item span {
    font-size: 5.86vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-5__slider__labels__item span {
    font-size: min(11px, 0.9vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-5__slider__labels__item span {
    font-size: 2.93vw;
  }
}
.p-top__section-5__slider__track {
  height: 40px;
  padding: 11px 0;
  position: relative;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .p-top__section-5__slider__track {
    height: 8vw;
    padding: 1vw 0;
    margin-top: 2.6vw;
  }
}
.p-top__section-5__slider__track__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  height: 100%;
  aspect-ratio: 1/1;
  background: #c5877a;
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
  transition: left 0.3s cubic-bezier(0.22, 0.61, 0.36, 1); /* カスタムイージング */
  will-change: left;
  touch-action: none;
}
.p-top__section-5__slider__track__handle:active {
  cursor: grabbing;
}
.p-top__section-5__slider__track__handle.is-dragging {
  transition: none;
}
.p-top__section-5__slider__track__bar {
  background: linear-gradient(0.25turn, #f8ecea, #d08376);
  height: 100%;
  position: relative;
  border-radius: 100px;
}
.p-top__section-5__slider__track__bar span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #fff;
}
.p-top__section-5__slider__track__bar span:nth-of-type(2) {
  left: 50%;
  translate: -50% 0;
}
.p-top__section-5__slider__track__bar span:nth-of-type(3) {
  left: auto;
  right: 0;
}
.p-top__section-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 0 130px;
  background-color: #c5877a;
  color: #fff;
  overflow-x: clip;
}
@media (max-width: 767px) {
  .p-top__section-6 {
    padding: 20vw 0 24vw;
  }
}
.p-top__section-6__inner {
  width: min(1000px, 90vw);
}
@media (max-width: 767px) {
  .p-top__section-6__inner {
    width: 88vw;
  }
}
.p-top__section-6 .c-heading-1 {
  align-items: flex-start;
}
.p-top__section-6__list {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 767px) {
  .p-top__section-6__list {
    padding-top: 5.3vw;
    gap: 12vw;
  }
}
.p-top__section-6__list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  width: 100%;
  height: 587px;
}
@media (max-width: 767px) {
  .p-top__section-6__list__item {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.p-top__section-6__list__item__texts {
  padding-top: 265px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-top__section-6__list__item__texts {
    padding: 0;
    order: 2;
    margin-top: -13vw;
  }
}
.p-top__section-6__list__item__texts h3 {
  font-size: min(34px, 3vw);
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-top__section-6__list__item__texts h3 {
    font-size: min(18px, 1.6vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-6__list__item__texts h3 {
    font-size: 4.8vw;
  }
}
.p-top__section-6__list__item__texts > p {
  max-width: min(510px, 45vw);
  font-size: min(22px, 2vw);
  line-height: 1.8;
  letter-spacing: 0;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .p-top__section-6__list__item__texts > p {
    font-size: 5.86vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-6__list__item__texts > p {
    max-width: none;
    font-size: min(11px, 0.9vw);
    padding-top: 2.6vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-6__list__item__texts > p {
    font-size: 2.93vw;
  }
}
.p-top__section-6__list__item__img {
  --position:max(-140px,-10vw);
  width: 100%;
  height: min(587px, 60vw);
  position: relative;
}
@media (max-width: 767px) {
  .p-top__section-6__list__item__img {
    height: 78.2vw;
  }
}
.p-top__section-6__list__item__img img {
  position: absolute;
  left: var(--position);
  top: 0;
  height: 100%;
}
@media (max-width: 767px) {
  .p-top__section-6__list__item__img img {
    left: auto;
  }
}
.p-top__section-6__list__item:nth-of-type(2n) {
  direction: rtl;
}
.p-top__section-6__list__item:nth-of-type(2n) .p-top__section-6__list__item__texts {
  direction: ltr;
}
.p-top__section-6__list__item:nth-of-type(2n) .p-top__section-6__list__item__img img {
  left: auto;
  right: var(--position);
}
@media (max-width: 767px) {
  .p-top__section-6__list__item:nth-of-type(2n) .p-top__section-6__list__item__img img {
    right: auto;
  }
}
.p-top__section-6__list__item:nth-of-type(2n) .p-top__section-6__list__item__img img.lamp {
  position: absolute;
  right: auto;
  top: auto;
  bottom: -20px;
  left: 0;
  width: min(110px, 12vw);
  height: auto;
}
@media (max-width: 767px) {
  .p-top__section-6__list__item:nth-of-type(2n) .p-top__section-6__list__item__img img.lamp {
    width: 15vw;
    left: auto;
    right: 4vw;
    bottom: 7vw;
  }
}
.p-top__section-7 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6e5df;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .p-top__section-7 {
    padding: 16vw 0 20vw;
  }
}
.p-top__section-7__inner {
  width: min(850px, 90vw);
}
.p-top__section-7 table {
  margin-top: 50px;
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
}
@media (max-width: 767px) {
  .p-top__section-7 table {
    margin-top: 8.6vw;
  }
}
.p-top__section-7 table tr th,
.p-top__section-7 table tr td {
  border: solid 1px black;
  padding: 17px 24px;
  font-size: min(18px, 1.6vw);
  font-weight: 300;
}
@media (max-width: 767px) {
  .p-top__section-7 table tr th,
  .p-top__section-7 table tr td {
    font-size: 4.8vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-7 table tr th,
  .p-top__section-7 table tr td {
    padding: 2.8vw 3vw;
    font-size: min(10px, 0.8vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-7 table tr th,
  .p-top__section-7 table tr td {
    font-size: 2.66vw;
  }
}
.p-top__section-7 table tr th {
  background-color: #e6e6e6;
  font-size: min(19px, 1.7vw);
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-top__section-7 table tr th {
    font-size: 5.06vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-7 table tr th {
    font-size: min(10px, 0.8vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-7 table tr th {
    font-size: 2.66vw;
  }
}
.p-top__section-7 table tr th:first-child {
  width: min(291px, 37vw);
}
@media (max-width: 767px) {
  .p-top__section-7 table tr th:first-child {
    width: 36vw;
  }
}
.p-top__section-7__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: min(56px, 5vw);
  padding-top: min(64px, 6vw);
}
@media (max-width: 767px) {
  .p-top__section-7__btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-7__btn .c-pdf-btn {
    width: 100%;
  }
}
.p-top__section-8 {
  padding: 113px 0 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .p-top__section-8 {
    padding: 16vw 0 24vw;
  }
}
.p-top__section-8__inner {
  width: min(1000px, 90vw);
}
@media (max-width: 767px) {
  .p-top__section-8__inner {
    width: 88vw;
  }
}
.p-top__section-8__list {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 45px;
}
@media (max-width: 767px) {
  .p-top__section-8__list {
    padding-top: 6vw;
  }
}
.p-top__section-8__list__item {
  border-bottom: solid 1px black;
  font-weight: 300;
}
.p-top__section-8__list__item:first-child {
  border-top: solid 1px black;
}
.p-top__section-8__list__item__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  font-size: min(22px, 2vw);
  letter-spacing: 0;
  padding: 35px 0;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .p-top__section-8__list__item__summary {
    font-size: 5.86vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-8__list__item__summary {
    gap: 4vw;
    padding: 5vw 0;
    font-size: min(14px, 1.2vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-8__list__item__summary {
    font-size: 3.73vw;
  }
}
.p-top__section-8__list__item__summary::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(248, 248, 248);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease;
}
.p-top__section-8__list__item__summary span {
  width: 27px;
  height: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 10px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-top__section-8__list__item__summary span {
    width: 3vw;
    margin-right: 1vw;
  }
}
.p-top__section-8__list__item__summary span::before, .p-top__section-8__list__item__summary span::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
}
.p-top__section-8__list__item__summary span::after {
  position: absolute;
  top: 0;
  left: 0;
  rotate: 90deg;
  transition: 0.3s ease;
}
@media (min-width: 767px) and (hover: hover) and (pointer: fine) {
  .p-top__section-8__list__item__summary:hover::before {
    opacity: 1;
  }
}
.p-top__section-8__list__item__contents {
  overflow: clip;
}
.p-top__section-8__list__item__contents p {
  font-size: min(20px, 1.8vw);
  line-height: 1.7;
  letter-spacing: 0;
  padding: 0 25px 40px;
}
@media (max-width: 767px) {
  .p-top__section-8__list__item__contents p {
    font-size: 5.33vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-8__list__item__contents p {
    font-size: min(12px, 1vw);
    padding: 0 0 8vw 4vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-8__list__item__contents p {
    font-size: 3.2vw;
  }
}
.p-top__section-8__list__item__contents p a {
  text-decoration: underline;
}
@media (min-width: 767px) and (hover: hover) and (pointer: fine) {
  .p-top__section-8__list__item__contents p a:hover {
    opacity: 0.5;
  }
}
.p-top__section-8__list__item.is-opened .p-top__section-8__list__item__summary span::after {
  rotate: 1turn;
}
.p-top__section-9 {
  position: relative;
  text-align: center;
  padding: 136px 0 127px;
  overflow: clip;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top__section-9 {
    padding: 53vw 0;
  }
}
.p-top__section-9 > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top__section-9__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  position: relative;
}
.p-top__section-9__texts > p:nth-of-type(1) {
  font-size: min(32px, 2.8vw);
  font-weight: 700;
  line-height: 1.56;
}
@media (max-width: 767px) {
  .p-top__section-9__texts > p:nth-of-type(1) {
    font-size: min(21px, 1.9vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-9__texts > p:nth-of-type(1) {
    font-size: 5.6vw;
  }
}
.p-top__section-9__texts > p:nth-of-type(2) {
  font-size: min(20px, 1.8vw);
  line-height: 2;
  padding: 35px 0 45px;
}
@media (max-width: 767px) {
  .p-top__section-9__texts > p:nth-of-type(2) {
    font-size: 5.33vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-9__texts > p:nth-of-type(2) {
    font-size: min(14px, 1.2vw);
    padding: 6vw 0;
    line-height: 1.78;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-9__texts > p:nth-of-type(2) {
    font-size: 3.73vw;
  }
}
.p-top__section-9__texts > img {
  --position:max(-400px,-20vw);
  width: min(222px, 15vw);
  position: absolute;
  top: 50%;
  z-index: -1;
  translate: 0 -50%;
}
@media (max-width: 767px) {
  .p-top__section-9__texts > img {
    --position:-20vw;
    width: 33vw;
  }
}
.p-top__section-9__texts > img:nth-of-type(1) {
  left: var(--position);
}
.p-top__section-9__texts > img:nth-of-type(2) {
  right: calc(var(--position) - 5vw);
}
.p-top__section-10 {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top__section-10 {
    padding: 14vw 0;
  }
}
.p-top__section-10__inner {
  width: min(1000px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e6e6e6;
  padding: 65px;
}
@media (max-width: 767px) {
  .p-top__section-10__inner {
    width: 88vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-10__inner {
    padding: 20vw 10vw;
  }
}
.p-top__section-10__title {
  font-size: min(26px, 2.2vw);
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-top__section-10__title {
    font-size: 6.93vw;
  }
}
@media (max-width: 767px) {
  .p-top__section-10__title {
    font-size: min(18px, 1.6vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-top__section-10__title {
    font-size: 4.8vw;
  }
}
.p-top__section-10__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .p-top__section-10__list {
    gap: 4vw;
    padding-top: 6vw;
  }
}
.p-top__section-10__list__item {
  width: min(360px, 30vw);
  height: min(110px, 10vw);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .p-top__section-10__list__item {
    width: 100%;
    height: 20vw;
  }
}
.p-top__section-10__list__item img {
  max-width: 83%;
  max-height: 69%;
}
@media (min-width: 767px) and (hover: hover) and (pointer: fine) {
  .p-top__section-10__list__item:hover {
    box-shadow: none;
    scale: 0.99;
  }
}

.p-contact {
  background-color: #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-contact__section-1 {
  width: min(910px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .p-contact__section-1 {
    width: min(1000px, 90vw);
    padding: 40vw 0 20vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-contact__section-1 {
    width: 88vw;
  }
}
.p-contact__section-1 h1 {
  font-size: min(36px, 3.2vw);
  font-weight: 700;
  color: #c5877a;
}
@media (max-width: 767px) {
  .p-contact__section-1 h1 {
    font-size: 9.6vw;
  }
}
@media (max-width: 767px) {
  .p-contact__section-1 h1 {
    font-size: min(28px, 2.4vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-contact__section-1 h1 {
    font-size: 7.46vw;
  }
}
.p-contact__section-1 > p:nth-of-type(1) {
  font-size: min(16px, 1.4vw);
  letter-spacing: 0.07em;
  padding: 35px 0;
}
@media (max-width: 767px) {
  .p-contact__section-1 > p:nth-of-type(1) {
    font-size: 4.26vw;
  }
}
@media (max-width: 767px) {
  .p-contact__section-1 > p:nth-of-type(1) {
    padding: 8vw 0 6vw;
  }
}
.p-contact__section-1 > p:nth-of-type(2) {
  font-size: min(14px, 1.2vw);
  letter-spacing: 0.025em;
  line-height: 1.78;
}
@media (max-width: 767px) {
  .p-contact__section-1 > p:nth-of-type(2) {
    font-size: 3.73vw;
  }
}
.p-contact__section-1__contents {
  padding-top: 100px;
  width: 100%;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents {
    padding-top: 20vw;
  }
}
.p-contact__section-1__contents form {
  --color-1:rgb(190, 190, 190);
  display: grid;
  grid-template-columns: 1fr;
  font-size: 16px;
}
.p-contact__section-1__contents form .form {
  display: flex;
  flex-direction: column;
}
.p-contact__section-1__contents form .form__list {
  display: grid;
  grid-template-columns: 1fr;
}
.p-contact__section-1__contents form .form__list__item {
  display: grid;
  grid-template-columns: min(214px, 20vw) 1fr;
  gap: min(57px, 4vw);
  padding: 27px 0;
  border-bottom: solid 1px #211815;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__list__item {
    grid-template-columns: 1fr;
    padding: 8vw 0;
    gap: 2vw;
  }
}
.p-contact__section-1__contents form .form__list__item:first-child {
  border-top: solid 1px #211815;
}
.p-contact__section-1__contents form .form__list__item label {
  padding-top: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__list__item label {
    font-size: 14px;
    justify-content: flex-start;
    gap: 2vw;
  }
}
.p-contact__section-1__contents form .form__list__item label span {
  background-color: #c5877a;
  color: #fff;
  height: fit-content;
  font-size: min(11px, 0.9vw);
  line-height: 1;
  letter-spacing: 0;
  padding: 5px;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__list__item label span {
    font-size: 2.93vw;
  }
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__list__item label span {
    padding: 1vw;
  }
}
.p-contact__section-1__contents form .form__list__item .wpcf7-form-control-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding-right: min(87px, 8vw);
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__list__item .wpcf7-form-control-wrap {
    padding: 0;
  }
}
.p-contact__section-1__contents form .form__list__item .wpcf7-form-control-wrap input,
.p-contact__section-1__contents form .form__list__item .wpcf7-form-control-wrap select,
.p-contact__section-1__contents form .form__list__item .wpcf7-form-control-wrap textarea {
  padding: 5px 10px;
  background-color: rgb(246, 246, 246);
  width: 100%;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__list__item .wpcf7-form-control-wrap input,
  .p-contact__section-1__contents form .form__list__item .wpcf7-form-control-wrap select,
  .p-contact__section-1__contents form .form__list__item .wpcf7-form-control-wrap textarea {
    padding: 2vw 3vw;
  }
}
.p-contact__section-1__contents form .form__list__item .wpcf7-form-control-wrap textarea {
  resize: vertical;
}
.p-contact__section-1__contents form .form__accept {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 35px 0;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__accept {
    align-items: flex-start;
    gap: 1vw;
    padding: 12vw 0;
  }
}
.p-contact__section-1__contents form .form__accept .wpcf7-list-item {
  margin: 0;
}
.p-contact__section-1__contents form .form__accept label {
  font-size: min(18px, 1.6vw);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__accept label {
    font-size: 4.8vw;
  }
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__accept label {
    font-size: min(16px, 1.4vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-contact__section-1__contents form .form__accept label {
    font-size: 4.26vw;
  }
}
.p-contact__section-1__contents form .form__accept label input {
  height: 25px;
  width: auto;
  aspect-ratio: 1/1;
  appearance: none;
  position: relative;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__accept label input {
    height: 6vw;
  }
}
.p-contact__section-1__contents form .form__accept label input::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 2px #c5877a;
  position: absolute;
  top: 0;
  left: 0;
}
.p-contact__section-1__contents form .form__accept label input::after {
  content: "";
  width: 60%;
  height: 40%;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  position: absolute;
  top: 45%;
  left: 50%;
  translate: -50% -50%;
  rotate: 135deg;
  display: none;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__accept label input::after {
    border-width: 3px;
  }
}
.p-contact__section-1__contents form .form__accept label input:checked {
  background-color: #c5877a;
}
.p-contact__section-1__contents form .form__accept label input:checked::after {
  display: flex;
}
.p-contact__section-1__contents form .form__accept > p {
  font-size: min(14px, 1.2vw);
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__accept > p {
    font-size: 3.73vw;
  }
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .form__accept > p {
    font-size: min(12px, 1vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-contact__section-1__contents form .form__accept > p {
    font-size: 3.2vw;
  }
}
.p-contact__section-1__contents form .form__accept > p a {
  text-decoration: underline;
}
.p-contact__section-1__contents form .form__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-contact__section-1__contents form .form__btn input[disabled] {
  background-color: var(--color-1);
  pointer-events: none;
  border-color: var(--color-1);
}
.p-contact__section-1__contents form .confirm {
  display: none;
  flex-direction: column;
}
.p-contact__section-1__contents form .confirm > p {
  font-size: min(20px, 1.8vw);
  font-weight: 600;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .confirm > p {
    font-size: 5.33vw;
  }
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .confirm > p {
    padding-bottom: 3vw;
  }
}
.p-contact__section-1__contents form .confirm__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .confirm__list {
    gap: 4vw;
  }
}
.p-contact__section-1__contents form .confirm__list__item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .confirm__list__item {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-contact__section-1__contents form .confirm__list__item p:nth-of-type(1) {
  opacity: 0.5;
}
.p-contact__section-1__contents form .confirm__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(30px, 3vw);
  padding-top: 30px;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .confirm__btn {
    gap: 4vw;
    padding: 14vw 0 4vw;
  }
}
.p-contact__section-1__contents form .confirm__btn input {
  width: 100%;
}
.p-contact__section-1__contents form .confirm__btn input:nth-of-type(1) {
  background-color: var(--color-1);
  border-color: var(--color-1);
}
@media (min-width: 767px) and (hover: hover) and (pointer: fine) {
  .p-contact__section-1__contents form .confirm__btn input:nth-of-type(1):hover {
    background-color: transparent;
    color: var(--color-1);
  }
}
.p-contact__section-1__contents form .c-btn-1 {
  font-size: min(21px, 1.9vw);
  width: min(360px, 100%);
  text-align: center;
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .c-btn-1 {
    font-size: 5.6vw;
  }
}
@media (max-width: 767px) {
  .p-contact__section-1__contents form .c-btn-1 {
    font-size: min(16px, 1.4vw);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-contact__section-1__contents form .c-btn-1 {
    font-size: 4.26vw;
  }
}

.p-contact-thanks__section-1 {
  min-height: 700px;
  width: 100vw;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .p-contact-thanks__section-1 {
    padding: 10vw;
    min-height: 100vh;
  }
}
.p-contact-thanks__section-1 h1 {
  font-size: min(30px, 2.6vw);
  font-weight: 600;
  color: #c5877a;
}
@media (max-width: 767px) {
  .p-contact-thanks__section-1 h1 {
    font-size: 8vw;
  }
}
.p-contact-thanks__section-1 > p {
  font-size: min(16px, 1.4vw);
  padding: 30px 0 50px;
}
@media (max-width: 767px) {
  .p-contact-thanks__section-1 > p {
    font-size: 4.26vw;
  }
}
@media (max-width: 767px) {
  .p-contact-thanks__section-1 > p {
    padding: 4vw 0 8vw;
  }
}
.p-contact-thanks__section-1 .c-btn-1 {
  font-size: min(18px, 1.6vw);
}
@media (max-width: 767px) {
  .p-contact-thanks__section-1 .c-btn-1 {
    font-size: 4.8vw;
  }
}
@media (max-width: 767px) {
  .p-contact-thanks__section-1 .c-btn-1 {
    font-size: min(14px, 1.2vw);
    width: 60%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-contact-thanks__section-1 .c-btn-1 {
    font-size: 3.73vw;
  }
}