@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, img, a, table {
  border: 0;
  vertical-align: bottom;
}

span, tr, th, td {
  vertical-align: baseline;
}

div, article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

span {
  display: inline-block;
}

ol, ul, li {
  list-style: none;
  list-style-type: none;
}

p, a, h1, h2, h3, h4, li, div, span, dt, dd, th, td {
  text-align: left;
}

a {
  text-decoration: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  color: currentColor;
  font: inherit;
  font-size: 100%;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

:root {
  --header-height: 7.5rem;
  --side-width: 5rem;
  --side-height: auto;
  --vh: 1vh;
  --100vh: calc(var(--vh) * 100);
  --mv-height: calc(var(--100vh) - 8rem - var(--header-height));
  --mv-height: clamp(57rem, calc(var(--100vh) - 8rem - var(--header-height)), 92rem);
}
@media screen and (max-width: 960px) {
  :root {
    --side-width: 100%;
    --mv-height: 84rem;
    --side-width: 100%;
    --side-height: 8rem;
  }
}

html {
  font-size: 10px;
}
@media screen and (max-width: 1700px) {
  html {
    font-size: 0.5882352941vw;
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  background: #232323;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 960px) {
  body {
    font-size: 2.4rem;
  }
}

a {
  color: inherit;
  display: inline-block;
}

a:not([class]) {
  color: inherit;
  /* text-decoration: underline; */
}
@media screen and (min-width: 961px) {
  a:not([class]) {
    transition: opacity ease 0.3s;
  }
  a:not([class]):hover {
    opacity: 0.7;
  }
}

picture {
  line-height: 0;
  display: inherit;
}
picture img {
  vertical-align: baseline;
}

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

.l-main {
  background: #232323;
}

.l-section {
  position: relative;
  z-index: 10;
}

.l-inner {
  width: 100%;
  max-width: 184rem;
  padding: 0 4rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-inner {
    padding: 0 1.5rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9001;
  padding: 2.6rem 4.2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header-form {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  padding: 2.6rem 4.2rem;
  mix-blend-mode: exclusion;
}
@media screen and (max-width: 960px) {
  .l-header-form {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.l-header__title {
  line-height: 0;
}

.l-header__logo {
  width: 27.9rem;
  line-height: 0;
  overflow: hidden;
}
.l-header__logo img {
  transform: translate(0, 110%);
  animation: headerLogo 1.2s cubic-bezier(0.01, 0.55, 0.55, 1) forwards;
}

@keyframes headerLogo {
  to {
    transform: translate(0, 0);
  }
}
.l-gnav {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9001;
  width: 46.8rem;
  height: 100vh;
  padding: 9.5rem 1.5rem 9.5rem 4rem;
  background: rgba(38, 29, 22, 0.9019607843);
  font-family: "Zen Old Mincho", serif;
  transition: 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .l-gnav {
    width: 100%;
    padding: 14.4rem 7.4rem 14.4rem 6.3rem;
  }
}

.l-gnav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.l-gnav__list {
  height: 100%;
}

.l-gnav__item {
  margin-bottom: 1.7rem;
}
.l-gnav__item:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .l-gnav__item {
    margin-bottom: 2.5rem;
  }
}

.l-gnav__link {
  font-size: 2.4rem;
  cursor: pointer;
  transition: 0.4s ease;
}
@media screen and (max-width: 960px) {
  .l-gnav__link {
    font-size: 3.4rem;
  }
}

@media (hover: hover) {
  .l-gnav__link:hover {
    opacity: 0.7;
  }
}
.l-gnav__list-archive {
  padding-left: 2rem;
  margin-bottom: 1.7rem;
}
@media screen and (max-width: 960px) {
  .l-gnav__list-archive {
    padding-left: 5rem;
    margin-bottom: 2.5rem;
  }
}

.l-gnav__list-archive__item {
  margin-bottom: 1.7rem;
}
.l-gnav__list-archive__item:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .l-gnav__list-archive__item {
    margin-bottom: 2.5rem;
  }
}

.l-gnav__list-archive__link {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.4s ease;
}
@media screen and (max-width: 960px) {
  .l-gnav__list-archive__link {
    font-size: 3.4rem;
    gap: 5rem;
  }
}

@media (hover: hover) {
  .l-gnav__list-archive__link:hover {
    opacity: 0.7;
  }
}
.l-gnav__list-archive__link::before {
  display: block;
  content: "";
  background: #fff;
  height: 1px;
  width: 0.5rem;
}
@media screen and (max-width: 960px) {
  .l-gnav__list-archive__link::before {
    width: 1rem;
  }
}

.l-header__hamburger {
  --h: 2.5rem;
  --line: .2rem;
  --move: calc((var(--h) - var(--line)) / 2);
  position: relative;
  z-index: 9002;
  width: 3.2rem;
  height: var(--h);
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .l-header__hamburger {
    --h: 4rem;
    width: 5rem;
  }
}

.l-header__hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--line);
  background: #fff;
  border-radius: 0.4rem;
  transform-origin: center;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.35);
}
.l-header__hamburger__line.-top {
  top: 0;
}
.l-header__hamburger__line.-middle {
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.l-header__hamburger__line.-bottom {
  bottom: 0;
}

.l-header__hamburger.is-active .l-header__hamburger__line.-top {
  animation: open-menu-top 0.75s forwards;
}
.l-header__hamburger.is-active .l-header__hamburger__line.-middle {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger__line.-bottom {
  animation: open-menu-bottom 0.75s forwards;
}

.l-header__hamburger.is-close .l-header__hamburger__line.-top {
  animation: close-menu-top 0.75s forwards;
}
.l-header__hamburger.is-close .l-header__hamburger__line.-middle {
  opacity: 1;
}
.l-header__hamburger.is-close .l-header__hamburger__line.-bottom {
  animation: close-menu-bottom 0.75s forwards;
}

/*  バーガーメニューのアニメーション
============================================ */
@keyframes close-menu-top {
  0% {
    transform: translateY(var(--move)) rotate(45deg);
  }
  50% {
    transform: translateY(var(--move)) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes close-menu-bottom {
  0% {
    transform: translateY(calc(var(--move) * -1)) rotate(-45deg);
  }
  50% {
    transform: translateY(calc(var(--move) * -1)) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes open-menu-top {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(var(--move)) rotate(0);
  }
  100% {
    transform: translateY(var(--move)) rotate(45deg);
  }
}
@keyframes open-menu-bottom {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(calc(var(--move) * -1)) rotate(0);
  }
  100% {
    transform: translateY(calc(var(--move) * -1)) rotate(-45deg);
  }
}
body.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden; /* iOS対策にもなることが多い */
}

.l-side {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 9000;
  width: var(--side-width);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media screen and (max-width: 960px) {
  .l-side {
    top: auto;
    bottom: 0;
    transform: translate(0, 0);
    flex-direction: row;
    gap: 0.3rem;
  }
}

.l-side__link {
  width: 100%;
  height: 13rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #232323;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 700;
  writing-mode: vertical-rl;
}
.l-side__link.-reserve {
  background: #c30d23;
}
@media screen and (max-width: 960px) {
  .l-side__link {
    width: auto;
    height: var(--side-height);
    flex: 1;
    font-size: 2.4rem;
    writing-mode: horizontal-tb;
  }
}

.l-footer {
  padding: 14.5rem 0 2.5rem;
  background: #232323;
}
.l-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 46rem;
  height: 100%;
  display: block;
  background: #535353;
  clip-path: polygon(55.4% 0%, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding: 10rem 0 calc(3.5rem + var(--side-height));
  }
  .l-footer::before {
    width: 44rem;
    clip-path: polygon(61.4% 0%, 100% 0, 100% 100%, 0% 100%);
  }
}

.l-footer__inner {
  width: 56rem;
  max-width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-footer__inner {
    width: 60rem;
  }
}

.l-footer__logo {
  width: 51.5rem;
  max-width: 100%;
  margin: 0 auto 8.5rem;
}

.l-footer__company {
  margin: 0 0 15rem;
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 960px) {
  .l-footer__company {
    margin: 0 0 11.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.l-footer__company-name {
  font-size: 3.6rem;
  line-height: 1.0277777778;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: "Akshar", sans-serif;
}
@media screen and (max-width: 960px) {
  .l-footer__company-name {
    font-size: 6rem;
  }
}

.l-footer__company-address {
  font-size: 1.6rem;
  line-height: 2.3125;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .l-footer__company-address {
    font-size: 2.8rem;
    line-height: 1.3214285714;
  }
}

.l-footer__company-tel {
  font-size: 2.4rem;
  line-height: 1.5416666667;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: "Akshar", sans-serif;
}
@media screen and (max-width: 960px) {
  .l-footer__company-tel {
    font-size: 3rem;
  }
}

.l-footer__copyright {
  font-size: 1.4rem;
  line-height: 2.6428571429;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-family: "Akshar", sans-serif;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-footer__copyright {
    margin: 0 calc(50% - 50vw);
    font-size: 2rem;
    line-height: 1.85;
  }
}

.c-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 4rem;
  height: 4rem;
}
.c-slider-arrow::before {
  content: "";
  width: 400%;
  height: 400%;
  display: inline-block;
  border-style: solid;
  position: absolute;
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-color: #000 transparent transparent #000;
}
.c-slider-arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  border-style: solid;
  position: absolute;
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-color: #fff transparent transparent #fff;
  transition: width 0.4s cubic-bezier(1, 0, 0, 1), height 0.4s cubic-bezier(1, 0, 0, 1);
}
@media (hover: hover) {
  .c-slider-arrow:hover::after {
    width: 400%;
    height: 400%;
  }
}
@media screen and (max-width: 960px) {
  .c-slider-arrow {
    top: 47.5%;
  }
}

.p-model:nth-child(even) .c-slider-arrow::before {
  border-color: #fafafa transparent transparent #fafafa;
}
.p-model:nth-child(even) .c-slider-arrow::after {
  border-color: #232323 transparent transparent #232323;
}

.c-slider-arrow.-prev {
  left: 2rem;
  transform: translate(0, -50%) rotate(-45deg);
}
@media screen and (max-width: 960px) {
  .c-slider-arrow.-prev {
    left: 1rem;
  }
}

.c-slider-arrow.-next {
  right: 2rem;
  transform: translate(0, -50%) rotate(45deg) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .c-slider-arrow.-next {
    right: 1rem;
  }
}

.c-slider-arrow__black {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 4rem;
  height: 4rem;
}
.c-slider-arrow__black::before {
  content: "";
  width: 400%;
  height: 400%;
  display: inline-block;
  border-style: solid;
  position: absolute;
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-color: #fff transparent transparent #fff;
}
.c-slider-arrow__black::after {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  border-style: solid;
  position: absolute;
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
  border-color: #000 transparent transparent #000;
  transition: width 0.4s cubic-bezier(1, 0, 0, 1), height 0.4s cubic-bezier(1, 0, 0, 1);
}
@media (hover: hover) {
  .c-slider-arrow__black:hover::after {
    width: 400%;
    height: 400%;
  }
}
@media screen and (max-width: 960px) {
  .c-slider-arrow__black {
    top: 47.5%;
  }
}

.c-slider-arrow__black.-prev {
  left: 2rem;
  transform: translate(0, -50%) rotate(-45deg);
}
@media screen and (max-width: 960px) {
  .c-slider-arrow__black.-prev {
    left: 1rem;
  }
}

.c-slider-arrow__black.-next {
  right: 2rem;
  transform: translate(0, -50%) rotate(45deg) scale(-1, 1);
}
@media screen and (max-width: 960px) {
  .c-slider-arrow__black.-next {
    right: 1rem;
  }
}

.c-slider-pagination {
  display: flex;
}

.c-slider-pagination__bullet {
  position: relative;
  height: 2px;
  flex: 1;
  background: #d9d9d9;
  overflow: hidden;
}
.c-slider-pagination__bullet::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #343232;
  opacity: 0;
}
.c-slider-pagination__bullet.is-active::after {
  opacity: 1;
}

@media (hover: hover) {
  .c-hover-opacity {
    transition: 0.4s ease;
  }
  .c-hover-opacity:hover {
    opacity: 0.7;
  }
}

.c-enter-opacity {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.01, 0.55, 0.55, 1);
  will-change: opacity;
}
.c-enter-opacity.is-view {
  opacity: 1;
  will-change: auto;
}

.c-enter-fadeup {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: 1s cubic-bezier(0.01, 0.55, 0.55, 1);
  will-change: opacity, transform;
}
.c-enter-fadeup.is-view {
  opacity: 1;
  transform: translate(0, 0);
  will-change: auto;
}

.c-enter-bg {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  pointer-events: none;
}

.c-enter-bg__item {
  height: 100%;
  flex: 1;
  background: #fff;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.c-enter-bg__item.is-view {
  transform: translate(0, 101%);
}

.p-thanks {
  padding: 24rem 0 19.5rem;
  background: #f0f0f0;
  color: #232323;
}
@media screen and (max-width: 960px) {
  .p-thanks {
    padding: 27rem 0 17rem;
  }
}

.p-thanks__inner {
  padding: 0 5rem;
}
@media screen and (max-width: 960px) {
  .p-thanks__inner {
    padding: 0 2.5rem;
  }
}

.p-thanks__title {
  margin: 0 0 2.4rem;
  color: #c30d23;
  font-size: 4.8rem;
  line-height: 0.6666666667;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-align: center;
}

.p-thanks__subtitle {
  margin: 0 0 3.4rem;
  color: #c30d23;
  font-size: 2.8rem;
  line-height: 1.9642857143;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-thanks__subtitle {
    font-size: 4rem;
    line-height: 1.5;
  }
}

.p-thanks__text {
  margin: 0 0 7rem;
  font-size: 1.6rem;
  line-height: 2.3125;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-thanks__text {
    margin: 0 0 13rem;
    font-size: 2.8rem;
    line-height: 1.8571428571;
  }
}

.p-thanks__top-page {
  width: 32rem;
  max-width: 100%;
  height: 4.1rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c30d23;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6875;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-thanks__top-page {
    width: 59.5rem;
    height: 8rem;
    font-size: 2.6rem;
  }
}

.p-form {
  padding: 18.6rem 0 21rem;
  background: #f0f0f0;
  color: #232323;
}
@media screen and (max-width: 960px) {
  .p-form {
    padding: 20rem 0 7.5rem;
  }
}

.p-form__inner {
  width: 112rem;
  max-width: 100%;
  padding: 0 8rem;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-form__inner {
    padding: 0 3rem;
  }
}

.p-form__title {
  margin: 0 0 2rem;
  font-size: 7.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-align: center;
}

.p-form__subtitle {
  font-size: 2.2rem;
  line-height: 1.4545454545;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}

.p-form__banner {
  margin: 5rem auto 0;
  width: 80rem;
  max-width: 100%;
}

.p-form__banner__img {
  margin-bottom: 2rem;
}

.p-form__banner__img img {
  display: block;
  width: 100%;
}

.p-form__banner__title {
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.p-form__body {
  padding: 5rem 0 0;
}

.p-form__item-head {
  padding: 1.2rem 0.2rem;
  border-bottom: 1px solid #232323;
}

.p-form__item-head__inner {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.p-form__item-head__title {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0;
  font-weight: 700;
  vertical-align: baseline;
}
@media screen and (max-width: 960px) {
  .p-form__item-head__title {
    font-size: 3rem;
  }
}

.p-form__required {
  transform: translate(0, -0.2rem);
  padding: 0 0.5rem;
  margin: 0 0 0 1rem;
  background-color: #c30d23;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__required {
    padding: 0.5rem 1.5rem;
    transform: scale(0.9);
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

.p-form__item-head__note {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .p-form__item-head__note {
    width: 100%;
    padding: 1rem 0 0;
    flex: none;
    font-size: 2rem;
  }
}

.p-form__item-body {
  padding: 0.8rem 0 4rem;
}
@media screen and (max-width: 960px) {
  .p-form__item-body {
    padding: 1.5rem 0 6.5rem;
  }
}

.p-form__item-body__inner {
  width: 100%;
  max-width: 41.5rem;
  padding: 1rem 0;
  display: flex;
  gap: 1.6rem;
}
.p-form__item-body__inner.-large {
  max-width: 100%;
}
.p-form__item-body__inner.-hide {
  display: none;
}
@media screen and (max-width: 960px) {
  .p-form__item-body__inner {
    max-width: 100%;
    gap: 2rem;
  }
}

.p-form__item__box-label {
  padding: 0 1.5rem;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__item__box-label {
    padding: 1rem 1.5rem;
    font-size: 2.8rem;
  }
}

.p-form__item__box {
  position: relative;
  width: 100%;
}

.p-form__item__box-s {
  position: relative;
  width: calc(50% - 0.8rem);
}
@media screen and (max-width: 960px) {
  .p-form__item__box-s {
    width: calc(50% - 1rem);
  }
}

.p-form__input-text,
.p-form__textarea {
  width: 100%;
  padding: 1.3rem 2.2rem;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #e5e5e5;
  font-size: min(1.6rem, 16px);
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
}
.p-form__input-text:focus,
.p-form__textarea:focus {
  box-shadow: inset 0 0 0 2px #c30d23;
}
.p-form__input-text::placeholder,
.p-form__textarea::placeholder {
  color: #c9c9c9;
}
@media screen and (max-width: 960px) {
  .p-form__input-text,
  .p-form__textarea {
    padding: 2.7rem 3.4rem;
    font-size: 3rem;
  }
}

.p-form__select-label {
  position: relative;
  width: 100%;
  background-color: #fff;
  display: block;
}
.p-form__select-label::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid #c9c9c9;
  border-bottom: 2px solid #c9c9c9;
  transform: rotate(45deg) translate(-50%, 50%);
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-form__select-label::after {
    right: 3.5rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}

.p-form__select {
  width: 100%;
  padding: 1.3rem 2.2rem;
  display: block;
  box-shadow: inset 0 0 0 1px #e5e5e5;
  font-size: min(1.6rem, 16px);
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
}
.p-form__select:focus {
  box-shadow: inset 0 0 0 2px #c30d23;
}
.p-form__select.is-empty {
  color: #c9c9c9;
}
@media screen and (max-width: 960px) {
  .p-form__select {
    padding: 2.7rem 3.4rem;
    font-size: 3rem;
  }
}

.p-form__checkbox-label {
  padding: 0.5rem 0;
  display: flex;
  align-items: baseline;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-form__checkbox-label {
    padding: 1rem 0;
    font-size: 2.8rem;
    letter-spacing: 0;
  }
}

.p-form__checkbox-text {
  flex: 1;
}

.p-form__checkbox {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 2.5rem 0 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #3f3b38;
  vertical-align: baseline;
  transform: translate(0, -0.4rem);
}
.p-form__checkbox::before {
  content: "";
  width: 1.2rem;
  height: 0.6rem;
  display: inline-block;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg) translate(10%, -15%);
}
.p-form__checkbox:checked {
  background-color: #c30d23;
  border-color: #c30d23;
}
@media screen and (max-width: 960px) {
  .p-form__checkbox {
    width: 2.9rem;
    height: 2.9rem;
  }
  .p-form__checkbox::before {
    width: 1.8rem;
    height: 1rem;
  }
}

.p-form__radio-label {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-form__radio-label {
    font-size: 2.8rem;
  }
}

.p-form__radio {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #c9c9c9;
  background-color: #fff;
}
.p-form__radio::before {
  content: "";
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: #c30d23;
  opacity: 0;
}
.p-form__radio:checked {
  border-color: #c30d23;
}
.p-form__radio:checked::before {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .p-form__radio {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.p-form__card-wrapper {
  padding: 2.2rem 0 4.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
}
@media screen and (max-width: 960px) {
  .p-form__card-wrapper {
    gap: 3.4rem;
  }
}

.p-form__card {
  position: relative;
  width: calc(50% - 4rem);
  padding: 2.5rem 2.5rem 4rem;
  background-color: #fff;
  box-shadow: 0.2rem 0.2rem 1.3rem rgba(122, 111, 101, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.p-form__card.is-active {
  background: #c30d23;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .p-form__card {
    width: 100%;
    padding: 4rem 4.5rem 6rem;
    gap: 3rem;
  }
}

.p-form__card-head {
  position: relative;
  z-index: 100;
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
}
@media screen and (max-width: 960px) {
  .p-form__card-head {
    gap: 2rem;
  }
}

.p-form__card-checkbox .p-form__checkbox {
  transition: 0.4s ease;
}

.p-form__card.is-active .p-form__card-checkbox .p-form__checkbox {
  background-color: transparent;
  border: 1px solid #fff;
}

.p-form__card-title {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-form__card-title {
    font-size: 3rem;
    line-height: 1.3333333333;
  }
}

.p-form__card-body {
  padding: 0 3rem;
}

.p-form__card-img {
  position: relative;
  display: block;
}
.p-form__card-img::before {
  content: "";
  padding: 71% 0 0;
  display: block;
}
.p-form__card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-form__card-foot {
  position: absolute;
  inset: 1rem;
  z-index: 10;
  padding: 4rem 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(195, 13, 35, 0.37);
  border: 1px solid #c30d23;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-form__card-foot {
    padding: 6rem 8rem;
    font-size: 2.4rem;
  }
}

.p-form__card.is-active .p-form__card-foot {
  opacity: 1;
}

.p-form__bottom__text {
  margin: 0 0 9.5rem;
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-form__bottom__text {
    font-size: 2.4rem;
  }
}

.p-form__bottom__link {
  text-decoration: underline;
}

.p-form__submit {
  width: 64rem;
  max-width: 100%;
  padding: 3.3rem;
  margin: 0 auto;
  display: block;
  background-color: #c30d23;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.2631578947;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-form__submit {
    padding: 4.2rem 1rem;
    font-size: 2.8rem;
  }
}

.p-form__error {
  padding: 8rem 0 0;
}

.p-form__error__text {
  color: #c30d23;
}
@media screen and (max-width: 960px) {
  .p-form__error__text {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 960px) {
  .p-form .formError {
    left: auto !important;
    right: 0 !important;
  }
}

.p-form .formErrorContent {
  padding: 0.3rem 1.5rem;
  background: #c30d23;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 0;
}
@media screen and (max-width: 960px) {
  .p-form .formErrorContent {
    left: auto;
    right: 0;
    font-size: 2.4rem;
  }
}

.p-form .formErrorArrow {
  display: none;
}

@media screen and (min-width: 961px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .u-pc {
    display: none !important;
  }
}
.u-fc-white {
  color: #fff !important;
}

.u-fc-red {
  color: #c30d23 !important;
}

.u-ff-oldMincho {
  font-family: "Zen Old Mincho", serif !important;
}

.u-ta-center {
  text-align: center !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-left {
  text-align: left !important;
}

@media screen and (min-width: 961px) {
  .u-ta-center-pc {
    text-align: center !important;
  }
  .u-ta-right-pc {
    text-align: right !important;
  }
  .u-ta-left-pc {
    text-align: left !important;
  }
}
@media screen and (max-width: 960px) {
  .u-ta-center-sp {
    text-align: center !important;
  }
  .u-ta-right-sp {
    text-align: right !important;
  }
  .u-ta-left-sp {
    text-align: left !important;
  }
}
.u-w-100 {
  width: 100% !important;
}

.u-pt-3rem {
  padding-top: 3rem !important;
}

@media screen and (max-width: 960px) {
  .u-pr-0-sp {
    padding-right: 0 !important;
  }
  .u-pl-0-sp {
    padding-left: 0 !important;
  }
}
.u-mb-1rem {
  margin-bottom: 1rem !important;
}

.u-mb-2rem {
  margin-bottom: 2rem !important;
}

.u-mb-3rem {
  margin-bottom: 3rem !important;
}

.u-mb-4rem {
  margin-bottom: 4rem !important;
}

.u-mb-5rem {
  margin-bottom: 5rem !important;
}

.u-mb-6rem {
  margin-bottom: 6rem !important;
}

.u-mb-7rem {
  margin-bottom: 7rem !important;
}

.u-mb-8rem {
  margin-bottom: 8rem !important;
}

.u-mb-9rem {
  margin-bottom: 9rem !important;
}

.u-mb-10rem {
  margin-bottom: 10rem !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

@media screen and (min-width: 961px) {
  .u-ml-neg2rem-pc {
    margin-left: -2rem !important;
  }
  .u-mr-neg2rem-pc {
    margin-right: -2rem !important;
  }
  .u-mb-2rem-pc {
    margin-bottom: 2rem !important;
  }
}
@media screen and (max-width: 960px) {
  .u-ml-neg2rem-sp {
    margin-left: -2rem !important;
  }
  .u-mr-neg2rem-sp {
    margin-right: -2rem !important;
  }
  .u-mb-1rem-sp {
    margin-bottom: 1rem !important;
  }
  .u-mb-2rem-sp {
    margin-bottom: 2rem !important;
  }
  .u-mb-3rem-sp {
    margin-bottom: 3rem !important;
  }
  .u-mb-4rem-sp {
    margin-bottom: 4rem !important;
  }
  .u-mb-5rem-sp {
    margin-bottom: 5rem !important;
  }
  .u-mb-8rem-sp {
    margin-bottom: 8rem !important;
  }
  .u-mb-10rem-sp {
    margin-bottom: 10rem !important;
  }
}
.u-bg-white {
  background-color: #fff !important;
}

.u-alignItems-flexStart {
  align-items: flex-start !important;
}

.u-flexDirection-column {
  flex-direction: column !important;
}

@media screen and (min-width: 961px) {
  .justifyContent-center-pc {
    justify-content: center !important;
  }
  .flex-none-pc {
    flex: none !important;
  }
}