@charset "UTF-8";
/* foundation */
/*レスポンシブ変数*/
/*幅変数*/
/*色変数*/
/*色変数*/
/*フォント*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

body {
  position: relative;
  color: #565656;
  font-size: 1rem;
  width: 100%;
  counter-reset: number 0;
  font-family: "Jost", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.4s;
  color: #565656;
  cursor: pointer;
}
a:hover {
  opacity: 0.5;
}

input, button, textarea, select {
  cursor: pointer;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

img, source, video, object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

html {
  font-size: 15px;
  line-height: 1.75;
  height: auto;
  scroll-behavior: smooth;
  width: 100%;
  min-width: 1200px;
}
@media screen and ( max-width:1099px) {
  html {
    min-width: auto;
    width: 100dvw;
  }
}

*[id]:target {
  padding-top: 10dvw;
  margin-top: -10dvw;
}
@media screen and (min-width: 1100px) {
  *[id]:target {
    padding-top: 0px;
    margin-top: 0px;
  }
}

::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}

::-webkit-scrollbar-track {
  background-color: #e0e0e0;
}

::-webkit-scrollbar-thumb {
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 100px;
  box-shadow: inset 0 0 650px #929292;
}

p, li,
h1, h2, h3, h4, h5, h6,
a, div, button, input, textarea, table, select {
  font-family: "Jost", sans-serif;
  color: #565656;
}

.mincho-300 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.mincho-400 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.mincho-500 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.mincho-600 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.mincho-700 {
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.kaku-gothic-300 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.kaku-gothic-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.kaku-gothic-500 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.kaku-gothic-600 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.kaku-gothic-700 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-style: normal;
}

:root {
  /* fonts */
  --font-shippori-mincho-b1: "M PLUS Rounded 1c", serif; /* fonts */
  --font-zen-kaku-gothic-new: "Noto Sans JP", sans-serif;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* layout */
/* foundation */
@media screen and (min-width: 1100px) {
  .l-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-right: 15px;
  }
}
@media screen and (min-width: 1320px) {
  .l-content {
    justify-content: center;
    padding-right: 0;
  }
}

/* foundation */
/*ヘッダー*/
.l-header {
  top: 0;
  left: 0;
  z-index: 100;
  position: sticky;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  width: 100%;
  height: 20dvw;
  background-color: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.0705882353);
}
@media screen and (min-width: 1100px) {
  .l-header {
    opacity: 0;
    height: 75px;
    position: fixed;
    top: 0;
    right: 0;
    left: initial;
  }
}
@media screen and (min-width: 1100px) {
  .l-header {
    display: none;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 4dvw 0 6vw;
}
@media screen and (min-width: 1100px) {
  .l-header__inner {
    padding: 10px 0 10px;
    margin: 0 10px;
  }
}
.l-header__inner .l-header__logo {
  display: flex;
  align-items: center;
}
.l-header__inner .l-header__logo img {
  width: 55dvw;
}
@media screen and (min-width: 1100px) {
  .l-header__inner .l-header__logo img {
    display: none;
  }
}
.l-header p {
  text-wrap: nowrap;
  color: #000;
  font-weight: 600;
  line-height: 1;
  font-size: 3.2dvw;
  border-left: solid 1px #565656;
  padding-left: 3dvw;
}
.l-header p img {
  width: 24dvw;
  min-width: 82px;
  margin-left: -1dvw;
}
.l-header__menu {
  z-index: 101;
  pointer-events: none;
  margin-bottom: -2dvw;
}
@media screen and (min-width: 1100px) {
  .l-header__menu {
    margin-bottom: -6px;
  }
}
.l-header__menuIcon {
  pointer-events: initial;
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(clamp(40px, 15dvw, 200px));
  height: min(clamp(40px, 14dvw, 200px));
  border-radius: 50%;
  transition: transform 0.5s;
}
@media screen and (min-width: 1100px) {
  .l-header__menuIcon {
    width: 40px;
    height: 40px;
  }
}
.l-header__menuIcon:hover {
  opacity: 1;
}
.l-header__menuIcon--dot01, .l-header__menuIcon--dot02, .l-header__menuIcon--dot03 {
  transition: 0.5s;
  position: absolute;
  width: 60%;
  height: 2px;
  left: 50%;
  background-color: #5282EE;
  border-radius: 2px;
  transform: translateY(-50%) translateX(-50%);
}
.l-header__menuIcon--dot01 {
  top: 20%;
}
.l-header__menuIcon--dot02 {
  top: 40%;
  left: 55%;
  width: 50%;
}
.l-header__menuIcon--dot03 {
  top: 60%;
  left: 60%;
  width: 40%;
}
.l-header__menu .c-header__open {
  transform: rotate(0deg);
}
.l-header__menu .c-header__open div:nth-child(1) {
  top: 40%;
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
.l-header__menu .c-header__open div:nth-child(2) {
  opacity: 0;
}
.l-header__menu .c-header__open div:nth-child(3) {
  top: 40%;
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  left: 50%;
  width: 60%;
}
.l-header__banner {
  background-color: #58577a;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1dvw;
}
@media screen and (min-width: 1100px) {
  .l-header__banner {
    padding: 5px;
  }
}
.l-header__banner--schedule {
  color: #ffffff;
  font-size: 2.8dvw;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-right: 12px;
  font-family: "Noto Sans JP", sans-serif;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 0px 1% 1px;
  line-height: 1.7;
}
@media screen and (min-width: 1100px) {
  .l-header__banner--schedule {
    font-size: 14px;
  }
}
.l-header__banner--head {
  color: #ffffff;
  font-size: 4.5dvw;
  letter-spacing: 3px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 1100px) {
  .l-header__banner--head {
    font-size: 22.5px;
  }
}

/*ハンバーガー*/
.p-navlist {
  z-index: 81;
  position: fixed;
  top: 70px;
  width: 488px;
  height: auto;
  transition: 0.5s;
  transform: translateY(-150%);
}
@media screen and ( max-width:1099px) {
  .p-navlist {
    top: 19dvw;
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .p-navlist {
    width: 500px;
  }
}
.p-navlist.c-header__open02 {
  transform: translateY(0%);
}
.p-navlist .c-navlist {
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 8% 5%;
  background-color: #FCFCFC;
  height: 100%;
  width: 100%;
  position: relative;
  color: #FCFCFC;
  text-align: left;
  font-size: 18px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.0705882353);
}
.p-navlist .c-navlist::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 100px;
  box-shadow: none;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.p-navlist .c-navlist::-webkit-scrollbar {
  width: 5px;
}
.p-navlist .c-navlist::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
}
.p-navlist .c-navlist ul {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--color-gray);
  gap: 3dvw;
}
@media screen and (min-width: 1100px) {
  .p-navlist .c-navlist ul {
    gap: 10px;
  }
}
.p-navlist .c-navlist ul li {
  position: relative;
  font-size: 5dvw;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  font-weight: 500;
  width: 100%;
  border-bottom: solid 1px #d1d1d1;
  padding-bottom: 5dvw;
}
@media screen and (min-width: 1100px) {
  .p-navlist .c-navlist ul li {
    font-size: 17.5px;
  }
}
.p-navlist .c-navlist ul li:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 0;
}
.p-navlist .c-navlist ul li a {
  font-family: "Jost", sans-serif;
}
.p-navlist .c-navlist ul li a small {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  position: relative;
  font-size: 0.6em;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  font-weight: 400;
  line-height: 1;
}

/* foundation */
.l-footer {
  background-color: #252424;
}
.l-footer__contact {
  width: 100%;
  text-align: center;
  padding: 9dvw 0px 6dvw;
}
@media screen and (min-width: 1100px) {
  .l-footer__contact {
    padding: 45px 0px 30px;
  }
}
.l-footer__contact a {
  width: 100%;
  display: block;
}
.l-footer__contact a .l-footer__logo {
  width: 60%;
  margin: 0 auto;
}
.l-footer__detail {
  text-align: center;
}
.l-footer__detail h4 {
  font-size: clamp(10px, 5vmin, 100px);
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin: 3dvw 0 3dvw;
  line-height: 1.2;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .l-footer__detail h4 {
    font-size: 25.15px;
    margin: 15.09px 0 15.09px;
  }
}
.l-footer__detail table {
  margin: 0 auto 9dvw;
  text-align: left;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #3e2928;
}
@media screen and (min-width: 1100px) {
  .l-footer__detail table {
    margin: 0 auto 45px;
  }
}
.l-footer__detail table tr {
  font-weight: 300;
  color: #fff;
  text-wrap: nowrap;
  font-size: clamp(10px, 4dvw, 100px);
  height: 10dvw;
}
@media screen and (min-width: 1100px) {
  .l-footer__detail table tr {
    font-size: 16px;
    height: 50px;
  }
}
.l-footer__detail table tr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #454545;
}
.l-footer__detail table tr th {
  font-weight: 300;
}
.l-footer__detail table tr td {
  padding-left: 3dvw;
}
@media screen and (min-width: 1100px) {
  .l-footer__detail table tr td {
    padding-left: 15px;
  }
}
.l-footer__copyright {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 5dvw;
  font-size: clamp(10px, 3.5vmin, 100px);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1100px) {
  .l-footer__copyright {
    font-size: 15px;
    padding: 25px;
  }
}

/* object */
/* foundation */
.p-partsContact {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 84dvw;
}
@media screen and (min-width: 1100px) {
  .p-partsContact {
    max-width: 480px;
    width: 84%;
  }
}
.p-partsContact p {
  margin-bottom: 5dvw;
  text-align: center;
  font-size: 5dvw;
  color: #B71799;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}
@media screen and (min-width: 1100px) {
  .p-partsContact p {
    font-size: 25px;
    margin-bottom: 15px;
  }
}
.p-partsContact p::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #B71799;
  transform: rotate(-15deg);
  left: 2%;
  top: 5%;
}
.p-partsContact p::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #B71799;
  transform: rotate(15deg);
  right: 2%;
  top: 5%;
}
.p-partsContact a {
  width: 100%;
  display: block;
}
.p-partsContact a img {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .p-partsContact.u-fv {
    max-width: 350px;
  }
}
@media screen and (min-width: 1320px) {
  .p-partsContact.u-fv {
    max-width: 480px;
    width: 100%;
  }
}
.p-partsContact.u-fv p {
  margin-bottom: 1dvw;
  color: #fff;
  font-size: 2.2dvw;
  font-weight: 600;
}
@media screen and (min-width: 1100px) {
  .p-partsContact.u-fv p {
    font-size: clamp(16px, 1.7dvw, 20px);
  }
}
@media screen and (min-width: 1320px) {
  .p-partsContact.u-fv p {
    font-size: 1.15dvw;
  }
}
.p-partsContact.u-fv p::before {
  background-color: #fff;
}
.p-partsContact.u-fv p::after {
  background-color: #fff;
}

.js-text span {
  opacity: 0;
  animation: fade-in 0 0.5s forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* foundation */
/*スライダーのためのcss*/
.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
  content: "";
  position: absolute;
}
.swiper-container .swiper-button-next::before {
  top: 50%;
  border-radius: 50%;
  left: -3dvw;
  background-color: rgb(174, 118, 139);
  transform: translateY(-50%);
  width: 23dvw;
  height: 23dvw;
  opacity: 0.4;
}
@media screen and (min-width: 1100px) {
  .swiper-container .swiper-button-next::before {
    left: -15px;
    width: 115px;
    height: 115px;
  }
}
.swiper-container .swiper-button-next::after {
  top: 50%;
  right: 20%;
  border-top: 6dvw solid transparent;
  border-left: 3dvw solid #fff;
  border-bottom: 6dvw solid transparent;
  transform: translateY(-50%);
}
@media screen and (min-width: 1100px) {
  .swiper-container .swiper-button-next::after {
    border-top: 30px solid transparent;
    border-left: 15px solid #fff;
    border-bottom: 30px solid transparent;
  }
}
.swiper-container .swiper-button-prev::before {
  top: 50%;
  border-radius: 50%;
  right: -3dvw;
  background-color: rgb(174, 118, 139);
  transform: translateY(-50%);
  width: 23dvw;
  height: 23dvw;
  opacity: 0.4;
}
@media screen and (min-width: 1100px) {
  .swiper-container .swiper-button-prev::before {
    right: -15px;
    width: 115px;
    height: 115px;
  }
}
.swiper-container .swiper-button-prev::after {
  top: 50%;
  left: 20%;
  border-top: 6dvw solid transparent;
  border-right: 3dvw solid #fff;
  border-bottom: 6dvw solid transparent;
  transform: translateY(-50%);
}
@media screen and (min-width: 1100px) {
  .swiper-container .swiper-button-prev::after {
    border-top: 30px solid transparent;
    border-right: 15px solid #fff;
    border-bottom: 30px solid transparent;
  }
}
.swiper-container .swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.1 0.5s opacity;
  transform: translateX(-50%);
  z-index: 10;
  left: 50%;
  display: flex;
  gap: 3dvw;
  bottom: 11dvw;
}
@media screen and (min-width: 1100px) {
  .swiper-container .swiper-pagination {
    gap: 15px;
    bottom: 55px;
  }
}
.swiper-container .swiper-pagination-bullet {
  cursor: pointer;
  width: 2.5dvw;
  height: 2.5dvw;
  background-color: #fff;
  border: solid 1px #6c6777;
  border-radius: 50%;
  opacity: 0.3;
}
@media screen and (min-width: 1100px) {
  .swiper-container .swiper-pagination-bullet {
    width: 12.5px;
    height: 12.5px;
  }
}
.swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #6c6777;
  opacity: 1;
}

/* foundation */
.p-lpContent {
  background-color: #FFFFFF;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
}
.p-lpContent::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 1100px) {
  .p-lpContent {
    overflow-x: hidden;
    width: 500px;
    min-width: 500px;
    position: relative;
    overflow: auto;
  }
}
@media screen and (min-width: 1320px) {
  .p-lpContent {
    overflow-x: hidden;
  }
}
.p-lpContent img {
  width: 100%;
}
.p-lpContent .p-dummy__fv {
  height: 200px;
  display: none;
}
@media screen and ( max-width:1099px) {
  .p-lpContent .p-dummy__fv {
    display: none;
  }
}
@media screen and (min-width: 1320px) {
  .p-lpContent .p-dummy__fv {
    display: block;
    display: none;
  }
}
@media screen and ( max-width:1099px) {
  .p-lpContent .p-dummy__fvGd {
    display: none;
  }
}
.p-lpContent #sec01 .p-partsContact {
  position: absolute;
  bottom: 13dvw;
}
@media screen and (min-width: 1100px) {
  .p-lpContent #sec01 .p-partsContact {
    bottom: 65px;
  }
}
.p-lpContent #sec02 .p-partsContact {
  position: absolute;
  bottom: 13dvw;
}
@media screen and (min-width: 1100px) {
  .p-lpContent #sec02 .p-partsContact {
    bottom: 65px;
  }
}
.p-lpContent #sec03 .p-partsContact {
  position: absolute;
  padding: 5dvw 0 10dvw;
  bottom: 0;
}
@media screen and (min-width: 1100px) {
  .p-lpContent #sec03 .p-partsContact {
    padding: 25px 0 50px;
    bottom: 0;
  }
}
.p-lpContent #sec03 .p-partsContact > img {
  padding: 5dvw 0 5dvw;
}
@media screen and (min-width: 1100px) {
  .p-lpContent #sec03 .p-partsContact > img {
    padding: 25px 0;
  }
}
.p-lpContent #sec04 .p-partsContact {
  padding: 5dvw 0 10dvw;
}
@media screen and (min-width: 1100px) {
  .p-lpContent #sec04 .p-partsContact {
    padding: 25px 0 50px;
  }
}
.p-lpContent #sec04 .p-partsContact > img {
  padding: 5dvw 0 5dvw;
}
@media screen and (min-width: 1100px) {
  .p-lpContent #sec04 .p-partsContact > img {
    padding: 25px 0;
  }
}
.p-lpContent .p-faq {
  background-color: #F6E1E6;
}
.p-lpContent .p-faq .p-partsContact {
  margin: 11dvw auto;
  margin: 55px auto;
}
.p-lpContent .p-faq__head {
  text-align: center;
  padding: 2dvw 0 1dvw;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__head {
    margin: 0 auto;
    padding: 10px 0 5px;
  }
}
.p-lpContent .p-faq__head h2 {
  font-size: clamp(10px, 9vmin, 100px);
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  padding: 0dvw 0 1dvw;
  line-height: 1.2;
  color: #3e2928;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__head h2 {
    margin-bottom: 10px;
    font-size: 40px;
    padding: 0dvw 0 5px;
  }
}
.p-lpContent .p-faq__head__detail {
  font-weight: 900;
  text-align: center;
  font-size: clamp(10px, 4vmin, 100px);
  margin: 4dvw;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__head__detail {
    font-size: 15px;
  }
}
.p-lpContent .p-faq__head__detail strong {
  font-size: 1.3em;
}
.p-lpContent .p-faq__head__detail small {
  font-size: 0.9em;
  line-height: 3;
}
.p-lpContent .p-faq__list {
  width: 90%;
  margin: auto;
  padding: 3dvw 0 11dvw;
  gap: 4dvw;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__list {
    padding: 15px 0 50px;
    gap: 20px;
  }
}
.p-lpContent .p-faq__list--title {
  background-color: #5181ED;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4dvw 15% 4dvw 14%;
  border-bottom: solid 1px #c9c9c9;
  font-size: clamp(10px, 4.5vmin, 100px);
  letter-spacing: 0.05em;
  line-height: 1.22;
  cursor: pointer;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__list--title {
    font-size: 22.5px;
    padding: 20px 15% 20px 14%;
  }
}
.p-lpContent .p-faq__list--title::before {
  content: "";
  background-image: url("/assets/img/common/Q.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  width: 5dvw;
  height: 5dvw;
  position: absolute;
  top: 5dvw;
  left: 4dvw;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__list--title::before {
    width: 25px;
    height: 25px;
    top: 25px;
    left: 20px;
  }
}
.p-lpContent .p-faq__list--title i {
  position: absolute;
  width: 5dvw;
  height: 5dvw;
  bottom: 6dvw;
  right: 4dvw;
  background-color: #FFFFFF;
  border-radius: 0.5dvw;
  transition: 0.5s;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__list--title i {
    width: 25px;
    height: 25px;
    bottom: 30px;
    right: 20px;
    border-radius: 2.5px;
  }
}
.p-lpContent .p-faq__list--title i::before {
  content: "";
  background-color: #2E3192;
  height: 0.5dvw;
  width: 3dvw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
  transition: 0.5s;
  border-radius: 0.5dvw;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__list--title i::before {
    width: 2.5px;
    height: 15px;
    border-radius: 2.5px;
  }
}
.p-lpContent .p-faq__list--title i::after {
  content: "";
  background-color: #2E3192;
  height: 0.5dvw;
  width: 3dvw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transition: 0.5s;
  border-radius: 0.5dvw;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__list--title i::after {
    width: 2.5px;
    height: 15px;
    border-radius: 2.5px;
  }
}
.p-lpContent .p-faq__list--title.open i::before {
  transform: translateX(-50%) translateY(-50%) rotate(360deg);
}
.p-lpContent .p-faq__list--title.open i::after {
  transform: translateX(-50%) translateY(-50%) rotate(360deg);
}
.p-lpContent .p-faq__list--title h4 {
  color: #FFFFFF;
  font-weight: 600;
}
.p-lpContent .p-faq__list--detail {
  display: none;
  background-color: #FFFFFF;
}
.p-lpContent .p-faq__list--detail p {
  font-size: clamp(10px, 3.4vmin, 100px);
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 600;
  padding: 4dvw 3% 4dvw 14%;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__list--detail p {
    font-size: 17px;
    padding: 20px 3% 20px 14%;
  }
}
.p-lpContent .p-faq__list--detail p::before {
  content: "";
  background-image: url("/assets/img/common/A.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  width: 5dvw;
  height: 5dvw;
  position: absolute;
  top: 5dvw;
  left: 4dvw;
}
@media screen and (min-width: 1100px) {
  .p-lpContent .p-faq__list--detail p::before {
    width: 25px;
    height: 25px;
    top: 25px;
    left: 20px;
  }
}

/* foundation */
body {
  width: 100dvw;
  position: relative;
  height: 100dvh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  overflow-x: hidden;
}
@media screen and (min-width: 1100px) {
  body {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1320px) {
  body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}

.p-pcLeft {
  display: none;
}
.p-pcRight {
  display: none;
}
@media screen and (min-width: 1100px) {
  .p-pcLeft {
    position: fixed;
    min-width: 380px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 17px;
    text-align: left;
    display: flex;
    height: 40dvh;
    right: 0;
    width: calc(100dvw - 500px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .p-pcLeft {
    margin-top: 8vh;
    padding: 0 10%;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1320px) {
  .p-pcLeft {
    margin-top: 48vh;
    padding: 0 3%;
  }
}
@media screen and (min-width: 1100px) {
  .p-pcLeft__inner {
    padding: 0px 13.6px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-pcLeft__inner img {
    width: 15dvw;
    margin-left: -2%;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1320px) {
  .p-pcLeft__inner img {
    width: 65%;
    margin-left: -6%;
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 1100px) {
  .p-pcLeft__head {
    font-weight: 500;
    width: 100%;
    position: relative;
    letter-spacing: 0.1em;
    line-height: 130%;
    font-family: var(--font-shippori-mincho-b1);
    color: #404040;
    text-align: center;
    display: inline-block;
  }
}
@media screen and (min-width: 1100px) and (min-width: 1100px) {
  .p-pcLeft__head {
    font-size: clamp(24px, 2.5dvw, 800px);
  }
}
@media screen and (min-width: 1100px) and (min-width: 1320px) {
  .p-pcLeft__head {
    font-size: clamp(24px, 2dvw, 800px);
  }
}
@media screen and (min-width: 1100px) {
  .p-pcLeft__head strong {
    font-size: 1.2em;
    letter-spacing: -2px;
    font-weight: 600;
  }
  .p-pcLeft__head span {
    font-size: 1.1em;
  }
  .p-pcRight {
    position: fixed;
    right: 0;
    width: calc(100dvw - 500px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100dvh;
    padding: 0 10%;
  }
  .p-pcRight .p-pcNav__inner {
    width: 100%;
    margin-top: 24dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .p-pcRight .p-pcNav__logo {
    margin-bottom: 5dvh;
  }
  .p-pcRight .p-pcNav__logo svg {
    width: 18dvw;
    height: 100%;
    fill: #FFF;
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.4));
  }
  .p-pcRight .p-pcNav__logo p {
    margin-top: 2px;
    color: #FCFCFC;
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.4));
  }
  .p-pcRight ul {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 60px;
  }
  .p-pcRight ul li {
    position: relative;
    font-size: 22px;
    letter-spacing: 0.02em;
    text-align: left;
    font-weight: 300;
    width: 100%;
    text-wrap: nowrap;
    font-family: "Jost", sans-serif;
  }
  .p-pcRight ul li small {
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    font-size: 0.7em;
    letter-spacing: 0.02em;
    text-align: left;
    font-weight: 300;
    line-height: 0.6;
    margin-left: -7px;
  }
  .p-pcRight ul li a {
    color: #FCFCFC;
    text-shadow: 2px 2px 8px rgba(37, 42, 113, 0.43);
  }
  .p-pcRight ul li a::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0%;
    background-color: #FCFCFC;
    bottom: 0;
    left: 0;
    transition: 0.5s;
  }
  .p-pcRight ul li .now::after {
    width: 100%;
  }
  .p-pcBg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .p-pcBg__img01 {
    position: fixed;
    background-size: cover;
    pointer-events: none;
  }
  .p-pcBg__img01 {
    background-image: url(../img/pc/BG_base.webp);
    background-size: cover;
    opacity: 0.98;
    background-blend-mode: overlay;
    mix-blend-mode: overlay;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
}
@media screen and (min-width: 1320px) {
  .p-pcLeft {
    width: calc(50dvw - 258px);
    left: 0;
    right: initial;
  }
  .p-pcRight {
    width: calc(50dvw - 265px);
    padding: 6%;
    align-items: center;
  }
  .p-pcRight .p-pcNav__inner {
    margin-top: initial;
  }
}

/* foundation */
.u-spView {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-spView {
    display: block;
  }
}

.u-tabView {
  display: none;
}
@media screen and ( max-width:1099px) {
  .u-tabView {
    display: block;
  }
}

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

.u-pconlyView {
  display: none;
}
@media screen and (min-width: 1100px) {
  .u-pconlyView {
    display: block;
  }
}

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

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

.u-pc2noView {
  display: block;
}
@media screen and (min-width: 1320px) {
  .u-pc2noView {
    display: none;
  }
}

/* foundation */
.u-marBtm__10 {
  margin-bottom: 10px;
}
@media screen and ( max-width:1099px) {
  .u-marBtm__10 {
    margin-bottom: 5px;
  }
}

.u-marBtm__20 {
  margin-bottom: 20px;
}
@media screen and ( max-width:1099px) {
  .u-marBtm__20 {
    margin-bottom: 10px;
  }
}

.u-marBtm__40 {
  margin-bottom: 40px;
}
@media screen and ( max-width:1099px) {
  .u-marBtm__40 {
    margin-bottom: 20px;
  }
}

.u-marBtm__56 {
  margin-bottom: 60px;
}
@media screen and ( max-width:1099px) {
  .u-marBtm__56 {
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=style.css.map */