@charset "UTF-8";
@font-face {
  font-family: "Kefa";
  src: url("../font/Kefa.ttc") format("truetype");
}
@media screen and (max-width: 768px) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  color: #3e3a3a;
  position: relative;
  width: 100%;
  font-size: 16px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: "400";
  line-height: 2.8em;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 2.2em;
  }
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.colum {
  display: flex;
}
@media screen and (max-width: 768px) {
  .colum {
    display: block;
  }
}

li {
  list-style: none;
}

h2 {
  font-size: 28px;
  margin-bottom: 100px;
  text-align: center;
  font-family: "Kefa";
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 50px;
  }
}

h3 {
  margin-bottom: 100px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.06em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}
@media screen and (max-width: 768px) {
  h3 {
    margin-bottom: 50px;
  }
}

/*span{
    font-size: 12px;
}*/
.sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

.pc-br {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

.button {
  display: inline-block;
  background-color: #987abd;
  transition: all 0.2s;
}
.button p {
  color: #ffffff;
  padding: 5px 35px 5px 20px;
  position: relative;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.18em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}
.button p::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -4px;
  transform: rotate(45deg);
}

.button:hover {
  background-color: #7d619b;
  transition: all 0.2s;
}

.o-header {
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  left: 0;
  top: 0;
  z-index: 9999;
}
.o-header a {
  color: #3e3a3a;
}
@media screen and (max-width: 768px) {
  .o-header a {
    color: #ffffff;
  }
}
@media screen and (max-width: 768px) {
  .o-header {
    padding: 10px;
  }
}

.o-header-colum {
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .o-header-colum {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
}
.o-header-colum h1 {
  width: 50px;
  height: 50px;
}

.o-header-nav {
  margin-left: 35px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .o-header-nav {
    position: absolute;
    top: -100%;
    right: -100%;
    transition: all 0.5s;
  }
}
.o-header-nav ul {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  letter-spacing: 0.12em;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: "400";
}
.o-header-nav ul li {
  margin-right: 35px;
}
@media screen and (max-width: 768px) {
  .o-header-nav ul li {
    margin-bottom: 15px;
  }
}

.o-header-nav.active {
  padding-top: 50px;
  position: absolute;
  top: 0;
  right: 0;
}
.o-header-nav.active ul {
  display: block;
  text-align: left;
}
.o-header-nav.active ul li {
  margin-right: 35px;
}

.o-header-hamburger__btn {
  display: none;
  position: fixed;
  right: 20px;
  top: 20px;
  color: #3e3a3a;
  z-index: 9999;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .o-header-hamburger__btn {
    display: block;
    top: 10px;
  }
}

.o-header-hamburger__btn.active {
  color: #ffffff;
  z-index: 9999;
}

.o-header-hamburger__colum {
  display: flex;
}
.o-header-hamburger__colum p {
  line-height: 15px;
  margin-top: 15px;
}

.o-header-hamburger__bar {
  width: 30px;
  height: 15px;
  position: relative;
  margin-left: 10px;
  margin-top: 15px;
}
.o-header-hamburger__bar span {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background: #3e3a3a;
  transition: all 0.5s;
}
.o-header-hamburger__bar span:nth-child(1) {
  top: 0;
}
.o-header-hamburger__bar span:nth-child(2) {
  bottom: 0;
  transform: translateY(-50%);
}

.o-header-hamburger__bar.active {
  position: relative;
}
.o-header-hamburger__bar.active span {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background: #ffffff;
}
.o-header-hamburger__bar.active span:nth-child(1) {
  transform: rotate(30deg);
  top: 5px;
}
.o-header-hamburger__bar.active span:nth-child(2) {
  top: 5px;
  transform: translateY(-50%);
  transform: rotate(-30deg);
}

.o-header-nav__bg01 {
  content: "";
  width: 210px;
  height: 320px;
  background-color: #987abd;
  clip-path: polygon(13% 0, 100% 0, 100% 78%, 0 88%);
  position: absolute;
  right: -20px;
  top: -20px;
  z-index: -1;
  display: none;
  opacity: 0.5;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .o-header-nav__bg01 {
    display: block;
  }
}

.o-header-nav__bg02 {
  content: "";
  width: 210px;
  height: 320px;
  background-color: #987abd;
  clip-path: polygon(13% 0, 100% 0, 100% 79%, 6% 97%);
  position: absolute;
  right: -20px;
  top: -20px;
  z-index: -1;
  display: none;
  opacity: 0.5;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .o-header-nav__bg02 {
    display: block;
  }
}

.o-reserve {
  position: fixed;
  top: 30px;
  right: 0;
  z-index: 1;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  cursor: pointer;
  z-index: 9999;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .o-reserve {
    top: auto;
    bottom: 30px;
  }
}
.o-reserve a {
  color: #ffffff;
}

.o-reserve:hover {
  color: #ffffff;
}
.o-reserve:hover .o-reserve-btn__inner {
  padding: 20px 30px 20px 20px;
  transition: all 0.2s;
}

.o-reserve-btn__inner {
  padding: 20px;
  border-radius: 10px 0 0 10px;
  transition: all 0.2s;
  background-color: #987abd;
  color: #ffffff;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .o-reserve-btn__inner {
    font-size: 12px;
    padding: 10px;
  }
}

.o-pagetop {
  position: relative;
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 150px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .o-pagetop {
    position: relative;
    margin: 80px auto 0 auto;
    bottom: 0;
    right: 0;
  }
}
.o-pagetop a {
  border-radius: 50%;
  text-decoration: none;
  line-height: normal;
  color: #3e3a3a;
}
.o-pagetop a:before {
  background-color: #3e3a3a;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 7px;
  width: 12px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 999;
}
.o-pagetop a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 120px;
  margin: auto;
  background-color: #3e3a3a;
}

.o-footer {
  margin-top: 80px;
  background-image: url("../images/footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  position: relative;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .o-footer {
    margin-top: 30px;
  }
}
.o-footer p {
  text-align: center;
  font-size: 14px;
}
.o-footer a {
  color: #ffffff;
}

.footer-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
}

.o-footer__inner {
  position: relative;
  margin: 0 auto;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .o-footer__inner {
    padding-top: 30px;
  }
}
.o-footer__inner nav {
  position: absolute;
  top: 0;
  right: 150px;
  padding-top: 80px;
  font-size: 15px;
  letter-spacing: 0.12em;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: "400";
}
@media screen and (max-width: 768px) {
  .o-footer__inner nav {
    position: static;
    padding-top: 0;
    text-align: center;
    font-size: 12px;
    margin-bottom: 30px;
  }
}

.o-footer__logo {
  width: 170px;
  height: 170px;
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 768px) {
  .o-footer__logo {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
}

.o-access {
  margin-top: 120px;
}

.o-access-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.o-access-logo {
  width: 170px;
  height: 170px;
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 768px) {
  .o-access-logo {
    margin-bottom: 60px;
  }
}

.o-access-colum {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .o-access-colum {
    flex-direction: column;
  }
}

.o-access-map {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .o-access-map {
    margin: 0 20px;
    order: 2;
  }
}

.o-access-text {
  margin-left: 30px;
  width: 50%;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .o-access-text {
    width: 85%;
    margin: 0 auto 40px;
    order: 1;
  }
}
.o-access-text table {
  text-align: left;
  margin-bottom: 60px;
}
.o-access-text table th {
  font-weight: 600;
  padding-bottom: 10px;
  letter-spacing: 0.06em;
}
.o-access-text table td {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 30px;
}
.o-access-text p:nth-child(2) {
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.o-access-text p:last-child {
  margin-top: 25px;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 30px;
}

/*mainvisual*/
.p-top-mainvisual {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.p-top-mainvisual__pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-top-mainvisual__pc {
    display: none;
  }
}

.p-top-mainvisual__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-top-mainvisual__sp {
    display: block;
  }
}

.p-top-mainvisual__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-mainvisual__image {
    top: auto;
    bottom: 0;
  }
}

.p-top-mainvisual__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-top-mainvisual__slide {
    object-position: 50% 80%;
  }
}

.p-top-mainvisual__image:nth-child(1) .p-top-mainvisual__slide {
  animation-delay: -2s;
}

.p-top-mainvisual__image:nth-child(2) .p-top-mainvisual__slide {
  animation-delay: 6s;
}

.p-top-mainvisual__image:nth-child(3) .p-top-mainvisual__slide {
  animation-delay: 14s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  8% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
.p-top-mainvisual__text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  padding-top: 140px;
  font-size: 24px;
  line-height: 2.2em;
  letter-spacing: 0.32rem;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-top-mainvisual__text {
    padding-top: 100px;
    font-size: 16px;
  }
}

.js-target span {
  display: inline-block;
  transition: 1s;
  opacity: 0;
  transform: translateY(-50px);
}
.js-target span.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.p-top-message {
  margin-top: 200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-top-message {
    margin-top: 40px;
  }
}

.p-top-message__inner {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-message__inner {
    display: block;
  }
}

.p-top-message__image {
  width: 80%;
  max-width: 530px;
  height: 320px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-message__image {
    margin: 0 auto;
    width: 60%;
    height: 30%;
    max-height: 320px;
  }
}

.p-top-message__image::before {
  content: "";
  position: absolute;
  z-index: -10;
  top: 200px;
  left: -140px;
  width: 160%;
  height: 280px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .p-top-message__image::before {
    width: 100%;
    height: 80%;
    top: 50%;
    left: -100px;
  }
}

.p-top-message__text {
  width: 40%;
  max-width: 500px;
  margin-left: 130px;
  position: relative;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .p-top-message__text {
    display: none;
  }
}
.p-top-message__text p {
  position: absolute;
  top: 70%;
  left: 30%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  line-height: 2.2em;
  letter-spacing: 0.06em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}
@media screen and (max-width: 768px) {
  .p-top-message__text p {
    transform: none;
  }
}

.js-fadein {
  opacity: 0;
  transition: 0.8s;
}

.js-fadein.on {
  opacity: 1;
}

.js-fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s;
}

.js-fadeup.on {
  opacity: 1;
  transform: translateY(0);
}

.delay-text01 {
  transition-delay: 0.3s;
}

.delay-text02 {
  transition-delay: 0.5s;
}

.delay-text03 {
  transition-delay: 0.8s;
}

.delay-text04 {
  transition-delay: 1.1s;
}

.delay-icon02 {
  transition-delay: 0.3s;
}

.delay-icon03 {
  transition-delay: 0.6s;
}

.delay-icon04 {
  transition-delay: 0.9s;
}

.p-top-intro {
  margin-top: 60px;
  position: relative;
}

.p-top-intro__inner {
  display: flex;
  justify-content: flex-start;
  max-width: 1440px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-intro__inner {
    display: block;
  }
}

.p-top-intro__image {
  width: 60%;
  max-width: 530px;
  height: 320px;
  margin-left: -60px;
}
@media screen and (max-width: 480px) {
  .p-top-intro__image {
    margin-left: 0;
    width: 40%;
    height: 160px;
  }
}

.p-top-message__sptext {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  font-size: 18px;
  line-height: 2.2em;
  letter-spacing: 0.06em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}
@media screen and (max-width: 768px) {
  .p-top-message__sptext {
    margin-right: 40px;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .p-top-message__sptext {
    margin-right: 20px;
  }
}

.p-top-intro__text {
  width: 100%;
  max-width: 600px;
  margin-left: 100px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-top-intro__text {
    margin: 0 auto;
    padding: 20px 40px;
    box-sizing: border-box;
  }
}

.js-scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.js-scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.js-scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.js-scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.js-scroll_bottom {
  transition: 0.8s;
  transform: translateY(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.js-scroll_bottom.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateY(0);
}

.p-top-video {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .p-top-video {
    margin-top: 100px;
  }
}

.p-top-video__inner {
  margin: 0 auto;
}

.p-top-video__content {
  width: 100%;
  height: 70vh;
}
@media screen and (max-width: 768px) {
  .p-top-video__content {
    height: 600px;
  }
}
.p-top-video__content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-person {
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-person {
    margin-top: 150px;
  }
}

.p-top-person__noise {
  width: 100%;
  height: 74%;
  clip-path: polygon(25% 0, 100% 36%, 100% 83%, 0 99%, 0 24%);
  position: absolute;
  bottom: -50%;
  left: -100%;
  opacity: 0;
  opacity: 0;
  transition: bottom 1.5s, left 1.5s, opacity 2s;
}
@media screen and (max-width: 768px) {
  .p-top-person__noise {
    height: 60%;
    /*bottom: -100px;
    clip-path: polygon(0 45%, 100% 38%, 100% 100%, 0% 100%);*/
    clip-path: polygon(0 0, 100% 10%, 100% 91%, 0% 100%);
    height: 80%;
    bottom: 25%;
    left: 0;
  }
}

.p-top-person__noise.is-active {
  bottom: 20%;
  left: 0;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .p-top-person__noise.is-active {
    clip-path: polygon(0 0, 100% 8%, 100% 94%, 0% 100%);
    height: 80%;
    bottom: 25%;
  }
}

.p-top-person__bg {
  width: 100%;
  height: 55%;
  background-color: #fafafa;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  clip-path: polygon(0 55%, 100% 18%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-top-person__bg {
    height: 60%;
    bottom: 0;
    clip-path: polygon(0 35%, 100% 30%, 100% 100%, 0% 100%);
  }
}

.p-top-person__bg02 {
  width: 100%;
  height: 74%;
  background-color: #666666;
  clip-path: polygon(25% 0, 100% 36%, 100% 83%, 0 99%, 0 24%);
  position: absolute;
  bottom: -50%;
  left: -100%;
  opacity: 0;
  opacity: 0;
  transition: bottom 1.5s, left 1.5s, opacity 2s;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top-person__bg02 {
    clip-path: polygon(0 0, 100% 8%, 100% 94%, 0% 100%);
    height: 80%;
    bottom: 25%;
    left: 0;
  }
}

.p-top-person__bg02.is-active {
  bottom: 20%;
  left: 0;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .p-top-person__bg02.is-active {
    bottom: 25%;
    left: 0;
  }
}

.p-top-person__bg03 {
  width: 100%;
  height: 74%;
  background-color: #666666;
  clip-path: polygon(18% 0, 100% 32%, 100% 87%, 0 93%, 0 26%);
  position: absolute;
  bottom: -50%;
  left: -100%;
  opacity: 0;
  transition: bottom 1.3s, left 1.3s, opacity 2s;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .p-top-person__bg03 {
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 98%);
    height: 80%;
    bottom: 25%;
    left: 0;
  }
}

.p-top-person__bg03.is-active {
  bottom: 20%;
  left: 0;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .p-top-person__bg03.is-active {
    bottom: 25%;
    left: 0;
  }
}

.p-top-person__inner {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-person__inner {
    display: none;
  }
}

.p-top-person__colum {
  display: flex;
  justify-content: flex-end;
}

.p-top-person__text {
  width: 540px;
  color: #ffffff;
  position: relative;
  margin-right: 100px;
}
.p-top-person__text p {
  text-align: left;
  margin-bottom: 130px;
  font-size: 20px;
}
.p-top-person__text p:nth-child(1) {
  color: #3e3a3a;
}
.p-top-person__text p:nth-child(2) {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.54em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}
.p-top-person__text p:nth-child(2) span {
  display: block;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  margin-top: 15px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: "400";
}
.p-top-person__text table {
  padding-right: 60px;
  padding-bottom: 100px;
}
.p-top-person__text table tr th {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}
.p-top-person__text table tr td {
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
}
.p-top-person__text table tr:first-child th {
  display: inline-block;
  border-bottom: 1px solid #ffffff;
}

.p-top-person__image {
  max-width: 580px;
  height: 700px;
  z-index: 999;
}

.p-top-person__message {
  width: 100%;
  max-width: 700px;
  margin: 100px auto 0 auto;
}

.p-top-person__sp {
  display: none;
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
  position: relative;
}
.p-top-person__sp p:nth-child(1) {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}
.p-top-person__sp p:nth-child(2) {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.06em;
  letter-spacing: 0.54em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
  color: #ffffff;
}
.p-top-person__sp p:nth-child(2) span {
  display: block;
  font-size: 17px;
  letter-spacing: 0.2rem;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: "400";
}
@media screen and (max-width: 768px) {
  .p-top-person__sp {
    display: block;
  }
}
.p-top-person__sp .p-top-person__image {
  max-width: 300px;
  height: 350px;
  margin: 50px 0 40px auto;
  position: relative;
}
.p-top-person__sp .p-top-person__image img {
  border-radius: 0;
}
.p-top-person__sp table {
  width: 90%;
  max-width: 350px;
  padding-right: 60px;
  padding-bottom: 100px;
  margin: 0 auto;
  color: #ffffff;
  line-height: 14px;
}
.p-top-person__sp table thead {
  text-align: left;
}
.p-top-person__sp table thead tr th {
  display: inline-block;
  margin-bottom: 20px;
  border-bottom: 1px solid #ffffff;
  padding: 5px;
}
.p-top-person__sp table tbody tr th {
  padding-right: 30px;
}
.p-top-person__sp table tbody tr td {
  padding-bottom: 10px;
  line-height: 1.4em;
}

.p-top-person__spmessage {
  width: 90%;
  margin: 60px auto 0;
}
.p-top-person__spmessage p:first-child {
  color: #3e3a3a;
  text-align: left;
  margin: 0;
}

.p-top-goal {
  text-align: center;
  position: relative;
}

.p-top-goal__bg01 {
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-top-goal__bg02 {
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  clip-path: polygon(0 19%, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0.69;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-top-goal__bg02 {
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0% 100%);
  }
}

.p-top-goal__bg03 {
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 100% 19%, 100% 100%, 0% 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .p-top-goal__bg03 {
    clip-path: polygon(0 0, 100% 7%, 100% 100%, 0% 100%);
  }
}

.p-top-goal__inner {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 300px;
  width: 85%;
}
@media screen and (max-width: 768px) {
  .p-top-goal__inner {
    padding-top: 100px;
  }
}
.p-top-goal__inner p {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  font-size: 15px;
}
.p-top-goal__inner span {
  display: block;
  border-bottom: none;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
}

.p-top-goal__title {
  margin-bottom: 70px;
}
.p-top-goal__title p {
  border-bottom: 1px solid #3e3a3a;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
  letter-spacing: 0.06em;
}
.p-top-goal__title span {
  text-align: left;
}

.p-top-goal__colum {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  background-image: url("../images/nami.png");
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-top-goal__colum {
    background-image: url("../images/nami02.png");
    display: block;
    width: 100%;
    max-width: 300px;
  }
}

.p-top-goal__content {
  margin: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-top-goal__content {
    width: 70%;
    max-width: 160px;
  }
}
.p-top-goal__content .p-top-goal__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content-left {
    margin-left: 0;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .content-right {
    margin-right: 0;
    margin-left: auto;
    margin-top: -50px;
  }
}

.p-top-goal__headline {
  margin-top: 100px;
  background-image: url("../images/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 200px;
  position: relative;
}
.p-top-goal__headline p {
  width: 100%;
  max-width: 570px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  border-bottom: #3e3a3a 1px solid;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
  letter-spacing: 0.18em;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-top-goal__headline p {
    font-size: 15px;
    margin: 0 auto;
  }
}

.p-top-goal__message {
  margin-top: 60px;
  height: 400px;
  background-image: url("../images/sun.png");
  background-repeat: no-repeat;
  background-position: top;
}
.p-top-goal__message p {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-top-goal__message p {
    padding-top: 90px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-goal__message {
    height: 300px;
  }
}

.p-top-parallax {
  position: relative;
}

.p-top-parallax__inner .p-top-parallax__image {
  width: 100%;
  height: 600px;
  clip-path: polygon(0 0, 100% 22%, 100% 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .p-top-parallax__inner .p-top-parallax__image {
    height: 300px;
  }
}

.p-top-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-top-feature::before {
    height: 30px;
  }
}

.p-top-feature {
  padding: 120px;
  text-align: center;
  background-color: #f2f2f2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-feature {
    padding: 120px 30px 40px;
  }
}

.p-top-feature__inner {
  max-width: 900px;
  margin: 0 auto;
}

.p-top-feature__colum {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top-feature__colum {
    display: block;
  }
}

.p-top-feature__content {
  width: 100%;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  .p-top-feature__content {
    width: 100%;
    margin: 0 auto 70px;
  }
}
.p-top-feature__content p:nth-child(1) {
  font-size: 31px;
  margin-bottom: 15px;
  letter-spacing: 0.06em;
}
.p-top-feature__content p:nth-child(1) span {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  padding-left: 10px;
}
.p-top-feature__content p:nth-child(2) {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  text-align: left;
}

.p-top-review {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-top-review h2 {
  text-align: left;
}
.p-top-review .p-top-review__bg {
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  clip-path: polygon(100% 0, 0 0, 0 80%);
}
@media screen and (max-width: 768px) {
  .p-top-review .p-top-review__bg {
    clip-path: polygon(0 0, 0 25%, 99% 0);
  }
}

.p-top-review__outer {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.p-top-review__wrapper {
  margin: 0 0 0 auto;
  position: relative;
  padding: 100px 50px 200px 50px;
  width: 100%;
  z-index: 999;
  box-sizing: border-box;
}

.p-top-review__noise {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 96%;
  max-width: 2000px;
  height: 98%;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  z-index: 999;
}

.p-top-review__bg03 {
  width: 96%;
  max-width: 2000px;
  height: 98%;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  background-color: #b3b3b3;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.7;
}

.p-top-review__bg02 {
  width: 98%;
  max-width: 2050px;
  height: 103%;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 90%);
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
}

.p-top-review__inner {
  max-width: 1070px;
  margin: 0 auto;
  z-index: 9999;
}

.p-top-review__colum .p-top-review__content .p-top-review__image {
  max-width: 250px;
  height: 250px;
  margin: 0 auto 50px auto;
}
.p-top-review__colum .p-top-review__content .p-top-review__image img {
  border-radius: 50%;
}
.p-top-review__colum .p-top-review__content .p-top-review__text {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
}
.p-top-review__colum .p-top-review__content .p-top-review__text .p-top-review__btn {
  cursor: pointer;
}
.p-top-review__colum .p-top-review__content .p-top-review__text p:nth-child(1) {
  margin-bottom: 20px;
}

.swiper-pagenation-wrap {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  cursor: pointer;
}

.swiper-btn-wrap {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}

.swiper-pagination-circle {
  position: absolute;
  right: 0;
  bottom: -120px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1.5px solid #FFF;
  z-index: -2;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .swiper-pagination-circle {
    width: 40px;
    height: 40px;
  }
}

.p-top-menu {
  margin-top: 120px;
  text-align: center;
}

.p-top-menu__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.p-top-menu__colum {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-top-menu__colum {
    display: block;
  }
}

.p-top-menu__content {
  margin-bottom: 60px;
  padding: 60px 40px;
  border-right: #3e3a3a 1px solid;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .p-top-menu__content {
    width: 80%;
    border-right: none;
    border-bottom: #3e3a3a 1px solid;
    padding: 80px 30px;
    box-sizing: border-box;
    margin: 0 auto;
  }
}
.p-top-menu__content p:nth-child(1) {
  margin-bottom: 60px;
  padding: 0 10px;
  text-align: center;
  display: inline-block;
  border-bottom: #3e3a3a 1px solid;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.p-top-menu__content p {
  text-align: left;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
}

.p-top-menu__content:nth-child(3) p:nth-child(1),
.p-top-menu__content:nth-child(4) p:nth-child(1) {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .p-top-menu__content:nth-child(3) p:nth-child(1),
  .p-top-menu__content:nth-child(4) p:nth-child(1) {
    margin-bottom: 60px;
  }
}

.p-top-menu__content:last-child {
  border: none;
}

.p-top-menu__button {
  display: inline-block;
  background-color: #987abd;
  transition: all 0.2s;
}
.p-top-menu__button p {
  color: #ffffff;
  padding: 5px 35px 5px 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}
.p-top-menu__button p::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -4px;
  transform: rotate(45deg);
}

.p-top-menu__button:hover {
  background-color: #7d619b;
  transition: all 0.2s;
}

.p-top-modal {
  display: none;
  z-index: 8887;
  left: 0;
  top: 0;
  transition: all 1s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
}

.p-top-modal__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100dvh;
  /* これを追加 */
  overscroll-behavior: contain;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: none;
}

/* これを追加 */
.p-top-modal__wrapper::before,
.p-top-modal__wrapper::after {
  content: "";
  width: 1px;
  height: calc(100vh + 1px);
  display: flex;
}

.p-top-modal__wrapper::-webkit-scrollbar {
  display: none;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-top-modal__bg {
  width: 100%;
  height: 100dvh;
  background-color: #f2f2f2;
  opacity: 0.7;
}

.p-top-modal__content {
  width: 80%;
  max-width: 900px;
  height: 50%;
  max-height: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  padding: 60px;
  animation: show 0.6s linear 0s;
}
@media screen and (max-width: 768px) {
  .p-top-modal__content {
    padding: 25px;
    height: 500px;
  }
}

.modal-top {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 999;
}

.p-top-modal__close {
  color: #666666;
  text-decoration: none;
  font-size: 30px;
}

.p-top-modal__close:hover,
.p-top-modal__close:focus {
  text-decoration: none;
  cursor: pointer;
}

.modal-title {
  color: #FFF;
}

.p-top-modal__colum {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-modal__colum {
    flex-direction: column-reverse;
  }
}

.p-top-modal__text {
  overflow-y: scroll;
  line-height: 2.2em;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-top-modal__text {
    width: 90%;
    margin: 0 auto;
    line-height: 1.8em;
    padding-right: 0;
  }
}

.p-top-modal__person {
  margin: auto 30px auto 50px;
}
@media screen and (max-width: 768px) {
  .p-top-modal__person {
    margin: 0 0 25px;
    font-size: 14px;
    line-height: 1.8em;
    letter-spacing: 0.18em;
  }
}
.p-top-modal__person p {
  text-align: center;
}

.p-top-modal__image {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
}
.p-top-modal__image img {
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-top-modal__image {
    width: 130px;
    height: 130px;
  }
}

.p-top-review__btn {
  cursor: pointer;
  margin-top: 30px;
  padding: 5px 20px;
  background-color: #666666;
  display: inline-block;
  color: #ffffff;
  border-radius: 30px;
}

.js-accordion {
  position: relative;
  width: 90%;
  max-width: 950px;
  margin: 100px auto 0 auto;
  scroll-behavior: smooth;
}

.js-text_wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0 20px 20px;
  height: auto;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
}

.js-accordion-text {
  width: 85%;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .js-accordion-text {
    width: 100%;
  }
}

.show_more {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 30px;
  padding-top: 70px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

.open .show_more {
  background: transparent;
}

.show_more:before {
  content: "続きを読む ▼";
  font-size: 12px;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all 0.5s;
}

.active .show_more:before {
  content: "閉じる ▲";
  cursor: pointer;
}

.accordion-headline {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.p-top-hexagon01__inner,
.p-top-hexagon04__inner {
  max-width: 1040px;
  background-color: #f2f2f2;
  position: relative;
}

.p-top-hexagon01::before,
.p-top-hexagon05::before {
  width: 100%;
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: #f2f2f2;
  content: "";
  top: -60px;
  right: 0;
  left: 0;
  margin: 0 auto;
  clip-path: polygon(8% 40%, 95% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-top-hexagon01::before,
  .p-top-hexagon05::before {
    height: 35px;
    top: -35px;
  }
}

.p-top-hexagon01::after,
.p-top-hexagon05::after {
  width: 100%;
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: #f2f2f2;
  content: "";
  bottom: -60px;
  right: 0;
  left: 0;
  margin: 0 auto;
  clip-path: polygon(0 0, 100% 0, 96% 55%, 4% 100%);
}
@media screen and (max-width: 768px) {
  .p-top-hexagon01::after,
  .p-top-hexagon05::after {
    height: 35px;
    bottom: -35px;
  }
}

.p-top-hexagon01__button {
  background: rgb(242, 242, 242);
  background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 0.6041010154) 50%, rgb(242, 242, 242) 100%);
}

.p-top-hexagon02__wrapper {
  margin-top: 0;
  background-color: #fafafa;
  padding: 100px 0 130px;
}
@media screen and (max-width: 768px) {
  .p-top-hexagon02__wrapper {
    margin-top: 0;
  }
}

.p-top-hexagon02__inner,
.p-top-hexagon03__inner {
  background-color: #ffffff;
  position: relative;
}

.p-top-hexagon02::before,
.p-top-hexagon03::before {
  width: 100%;
  position: absolute;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  content: "";
  top: -70px;
  right: 0;
  left: 0;
  margin: 0 auto;
  clip-path: polygon(8% 40%, 95% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-top-hexagon02::before,
  .p-top-hexagon03::before {
    height: 35px;
    top: -35px;
  }
}

.p-top-hexagon02::after,
.p-top-hexagon03::after {
  width: 100%;
  position: absolute;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  content: "";
  bottom: -70px;
  right: 0;
  left: 0;
  margin: 0 auto;
  clip-path: polygon(0 0, 100% 0, 96% 55%, 4% 100%);
}
@media screen and (max-width: 768px) {
  .p-top-hexagon02::after,
  .p-top-hexagon03::after {
    height: 35px;
    bottom: -35px;
  }
}

.p-top-hexagon02__button,
.p-top-hexagon03__button {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgb(255, 255, 255) 100%);
}

.p-top-hexagon03__wrapper {
  margin-top: 0;
  position: relative;
  padding: 100px 0 130px;
}
@media screen and (max-width: 768px) {
  .p-top-hexagon03__wrapper {
    margin-top: 0;
  }
}

.p-top-hexagon03__mostbg {
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.69;
}

.p-top-hexagon03__mostbg02 {
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: -1;
}

.p-top-hexagon03__mostbg03 {
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}

.p-top-hexagon05 {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .p-top-hexagon05 {
    margin-top: 100px;
  }
}

.p-about-top {
  padding-top: 180px;
}
@media screen and (max-width: 768px) {
  .p-about-top {
    padding-top: 100px;
  }
}

.p-about-top__inner {
  max-width: 1440px;
  position: relative;
  margin: 0 auto;
}

.p-about-top__colum {
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about-top__colum {
    display: flex;
    flex-direction: column;
  }
}

.p-about-top__image {
  max-width: 800px;
  height: 470px;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-about-top__image {
    order: 2;
  }
}
.p-about-top__image img {
  filter: grayscale(100%);
  transition: 0.8s ease-in-out;
}

.p-about-top__image.on img {
  filter: grayscale(0);
  transform: scale(1.1);
}

.p-about-top__text {
  max-width: 410px;
  background-color: #ffffff;
  margin-left: -80px;
  padding: 45px;
  max-height: 260px;
  box-sizing: border-box;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-about-top__text {
    order: 1;
    margin: 0 auto 50px;
    padding: 0;
    text-align: center;
  }
}

.p-about-detail {
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about-detail {
    margin-top: 100px;
  }
}

.p-about-detail__inner {
  max-width: 1440px;
  margin: 0 auto 0 auto;
  position: relative;
}
.p-about-detail__inner h3 {
  text-align: left;
  max-width: 1070px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .p-about-detail__inner h3 {
    text-align: center;
  }
}

.p-about-detail__bg {
  width: 100%;
  height: 130%;
  clip-path: polygon(0 10%, 94% 0, 100% 75%, 0 96%);
  position: absolute;
  bottom: -50%;
  left: -100%;
  background-color: #f2f2f2;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .p-about-detail__bg {
    clip-path: polygon(0 0, 73% 0, 91% 70%, 0 75%);
  }
}

.p-about-detail__bg.is-active {
  bottom: -100px;
  left: 0;
  transition: all 1s;
}

.p-about-detail__bg2 {
  width: 100%;
  height: 130%;
  clip-path: polygon(0 4%, 98% 3%, 100% 75%, 0 100%);
  position: absolute;
  bottom: -50%;
  left: -100%;
  background-color: #f2f2f2;
  opacity: 0.5;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .p-about-detail__bg2 {
    clip-path: polygon(0 0, 79% 2%, 111% 69%, 0 78%);
  }
}

.p-about-detail__bg2.is-active {
  bottom: -100px;
  left: 0;
  transition: all 1s;
}

.p-about-detail__colum {
  justify-content: end;
  max-width: 1080px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .p-about-detail__colum {
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-about-detail__image {
  max-width: 470px;
  height: 650px;
  filter: grayscale(1);
}
@media screen and (max-width: 768px) {
  .p-about-detail__image {
    width: 85%;
    max-width: 300px;
    height: 330px;
    margin: 0 auto 45px;
  }
}

.p-about-detail__text {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .p-about-detail__text {
    margin: 0 auto;
  }
}
.p-about-detail__text h5 {
  margin-bottom: 40px;
}
.p-about-detail__text p {
  margin-bottom: 40px;
  letter-spacing: 0.06em;
}
.p-about-detail__text p span {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  margin-left: 40%;
  display: flex;
  align-items: center;
  /* 垂直中心 */
}
.p-about-detail__text p span::before {
  border-top: 1.5px solid;
  content: "";
  width: 2em;
  /* 線の長さ */
  margin-right: 1em;
  /* 文字の右隣 */
}
.p-about-detail__text p:last-child {
  margin-right: 40px;
  max-width: 525px;
}
@media screen and (max-width: 768px) {
  .p-about-detail__text p:last-child {
    margin-right: 0;
  }
}

.p-about-detail__headline {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-about-detail__headline {
    display: none;
  }
}

.p-about-detail__spheadline {
  width: 80%;
  margin: 0 auto;
  font-weight: 600;
  display: none;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .p-about-detail__spheadline {
    display: block;
  }
}
.p-about-detail__spheadline span {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  /* 垂直中心 */
}
.p-about-detail__spheadline span::before {
  border-top: 1.5px solid;
  content: "";
  width: 2em;
  /* 線の長さ */
  margin-right: 1em;
  /* 文字の右隣 */
}

.p-about-detail__btmimage {
  width: 230px;
  height: 150px;
  position: absolute;
  bottom: -100px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-about-detail__btmimage {
    position: relative;
    left: 0;
    bottom: 0;
  }
}

.accordion-image {
  width: 30%;
  float: left;
  margin-right: 30px;
}
@media screen and (max-width: 480px) {
  .accordion-image {
    width: 50%;
  }
}

figcaption {
  line-height: 10px;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  font-size: 13px;
}

.accordion-image02 {
  width: 30%;
  margin-left: 30px;
  margin-top: 20px;
  float: right;
}
@media screen and (max-width: 480px) {
  .accordion-image02 {
    width: 50%;
  }
}

.p-about-feature {
  margin-top: 150px;
}

.p-about-feature__inner {
  width: 80%;
  max-width: 590px;
  margin: 0 auto;
}
.p-about-feature__inner p {
  margin-bottom: 40px;
  padding: 0 10px 30px;
  border-bottom: 1px solid #3e3a3a;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  line-height: 2.2em;
}
.p-about-feature__inner p:last-child {
  border-bottom: none;
}

.p-about-comparison {
  color: #ffffff;
  position: relative;
}

.p-about-comparison__noise {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-about-comparison__noise {
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0% 100%);
  }
}

.p-about-comparison__bg {
  width: 100%;
  height: 100%;
  background-color: #666666;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-about-comparison__bg {
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  }
}

.p-about-comparison__bg02 {
  width: 100%;
  height: 100%;
  background-color: #666666;
  clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-about-comparison__bg02 {
    clip-path: polygon(0 0, 100% 2%, 100% 100%, 0% 100%);
  }
}

.p-about-comparison__bg03 {
  width: 100%;
  height: 100%;
  background-color: #666666;
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-about-comparison__bg03 {
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0% 100%);
  }
}

.p-about-comparison__inner {
  width: 80%;
  max-width: 930px;
  margin: 0 auto;
  padding: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about-comparison__inner {
    padding: 80px 0 0;
  }
}
.p-about-comparison__inner p {
  text-align: center;
  margin-bottom: 40px;
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  .p-about-comparison__inner p {
    text-align: left;
    line-height: 2.2em;
  }
}
.p-about-comparison__inner p:last-child {
  text-align: left;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  margin-bottom: 0;
  padding-bottom: 40px;
}

.p-about-comparison__colum {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-about-comparison__colum {
    display: none;
  }
}
.p-about-comparison__colum .p-about-comparison__content {
  max-width: 410px;
  text-align: center;
  width: 50%;
}
.p-about-comparison__colum .p-about-comparison__content p:nth-child(1) {
  display: inline-block;
  border-bottom: 1px solid #ffffff;
  line-height: normal;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}

.p-about-comparison__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-about-comparison__sp {
    display: block;
    padding-bottom: 40px;
  }
}
.p-about-comparison__sp details {
  margin-bottom: 20px;
}
.p-about-comparison__sp summary {
  border-bottom: 1px solid #FFF;
}

.p-about-parallax {
  position: relative;
}

.p-about-parallax__image {
  width: 100%;
  height: 600px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 74%);
}

.p-about-parallax__bg {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 20px;
  left: 0;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 74%);
}

.p-about-parallax__bg02 {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e6e6e6;
  opacity: 0.5;
  z-index: -1;
}

.p-about-parallax__bg03 {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e6e6e6;
  opacity: 0.5;
  z-index: -1;
}

.p-about-effect {
  position: relative;
  line-height: 2.8em;
}

.p-about-effect__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .p-about-effect__inner {
    padding: 0;
  }
}
.p-about-effect__inner h3 {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-about-effect__inner h3 {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-about-effect__inner p {
    padding: 0;
    width: 80%;
    margin: 0 auto;
    line-height: 2.2em;
  }
}

.p-about-effect__bg {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 100% 0, 98% 97%, 0 93%);
  opacity: 0.5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-about-effect__bg {
    height: 110%;
  }
}

.p-about-effect__bg02 {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e6e6e6;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  opacity: 0.5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-about-effect__bg02 {
    height: 107%;
  }
}

.p-about-effect__detail {
  background-color: #f2f2f2;
  padding: 0 80px;
  margin: 130px 0;
}
@media screen and (max-width: 768px) {
  .p-about-effect__detail {
    padding: 35px 30px 50px;
    margin: 130px 20px;
  }
}
.p-about-effect__detail table {
  width: 90%;
  line-height: normal;
  border-bottom: 1px solid #e6e6e6;
  margin: 0 auto;
  border-collapse: separate;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .p-about-effect__detail table {
    padding: 40px 0;
  }
}
.p-about-effect__detail table th {
  width: 250px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-about-effect__detail table th {
    width: 100%;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-about-effect__detail table tr:first-of-type th {
    margin-bottom: 30px;
  }
}
.p-about-effect__detail table td {
  padding-left: 1em;
  text-indent: -1em;
  width: 70%;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .p-about-effect__detail table td {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-about-effect__detail table:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

.p-about-feelings {
  margin: 200px 0;
}

.p-about-feelings__inner {
  text-align: center;
}

.serif {
  text-align: center;
  font-size: 18px;
  line-height: 2.2em;
  letter-spacing: 0.06em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}

.serif:before,
.serif::after {
  position: relative;
  display: inline-block;
  content: "";
  background: #3e3a3a;
  width: 1px;
  height: 30px;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}

.serif::before {
  transform: rotate(-25deg);
}

.serif::after {
  transform: rotate(25deg);
}

.p-about-feelings__image {
  width: 220px;
  height: 220px;
  margin: 0 auto;
}
.p-about-feelings__image img {
  border-radius: 50%;
}

.p-about-feelings__colum {
  justify-content: center;
  max-width: 1000px;
  margin: 90px auto;
}
@media screen and (max-width: 768px) {
  .p-about-feelings__colum {
    display: none;
  }
}

.p-about-feelings__item {
  width: 50%;
}
.p-about-feelings__item p {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  margin-bottom: 0;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: "400";
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}
.p-about-feelings__item p:nth-child(1) {
  font-weight: 300 !important;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  margin-bottom: 0;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: "400";
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-about-feelings__item {
    width: 100%;
    margin: 0 auto;
  }
}

.p-about-feelings__item:last-child {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .p-about-feelings__item:last-child {
    text-align: left;
    margin: 0 auto;
  }
}

.about-accordion {
  position: relative;
  max-width: 950px;
  margin: 100px auto 0 auto;
  padding: 0 0 30px;
  height: auto;
  display: none;
}
@media screen and (max-width: 768px) {
  .about-accordion {
    margin: 0 30px 30px;
    display: block;
  }
}

.about-accordion.active {
  position: relative;
  max-width: 900px;
  margin: 100px auto 0 auto;
  padding: 0 100px 60px 100px;
}

.about-accordion-btn {
  color: #3e3a3a;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  bottom: -10px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  transition: all 0.2s;
  z-index: 1;
}

.about-accordion-btn::after {
  content: "続きを読む ▼";
  font-size: 10px;
  letter-spacing: 0.18em;
}

.about-accordion-text {
  overflow: hidden;
  position: relative;
  width: 90%;
  max-width: 700px;
  padding: 55px 30px 30px 30px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about-accordion-text {
    padding: 55px 0 30px 0;
  }
}

.about-accordion-text.is-hide {
  height: 115px;
}
@media screen and (max-width: 768px) {
  .about-accordion-text.is-hide {
    height: 200px;
  }
}

.about-accordion-text::before {
  bottom: 0;
  left: 0;
  content: "";
  height: 60px;
  position: absolute;
  width: 100%;
}

.about-accordion-btn.is-show {
  bottom: 30px;
}

.about-accordion-btn.is-show::after {
  content: "閉じる ▲";
}

.about-accordion-btn.is-show + .about-accordion-text::before {
  display: none;
}

.p-about-message .colum {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-about-message .colum {
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-about-message__image {
  max-width: 370px;
  height: 570px;
  margin: 40px auto;
  filter: grayscale(1);
}

.p-about-message__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px;
  border-top: 1px solid #ffffff;
  border-top: 1px solid #3e3a3a;
}
@media screen and (max-width: 768px) {
  .p-about-message__inner {
    padding: 80px 30px;
  }
}

.p-about-message__text {
  margin-right: 40px;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-about-message__text {
    width: 100%;
    margin: 0 auto;
  }
}

.p-about-message__spheadline {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-about-message__spheadline {
    display: block;
  }
}

.p-about-message__headline {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-about-message__headline {
    display: none;
  }
}

.p-menu-content {
  padding-top: 144px;
  padding-bottom: 200px;
  position: relative;
}

.p-menu-content__noise {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.p-menu-content__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(250, 250, 250) 15%, rgb(242, 242, 242) 32%, rgb(231, 231, 231) 45%, rgb(221, 221, 221) 55%, rgb(208, 208, 208) 63%, rgb(187, 187, 187) 77%, rgb(179, 179, 179) 91%, rgb(134, 134, 134) 100%);
  z-index: -2;
}

.p-menu-content__inner {
  width: 90%;
  max-width: 1040px;
  margin: 0 auto 0;
  background-color: #ffffff;
  padding: 80px 100px 0 100px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-menu-content__inner {
    padding: 60px 20px 0;
  }
}
.p-menu-content__inner h4 {
  text-align: center;
  font-size: 30px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
  letter-spacing: 0.36em;
}
@media screen and (max-width: 768px) {
  .p-menu-content__inner h4 {
    font-size: 24px;
    letter-spacing: 0.06em;
  }
}

.p-menu-content__cap {
  max-width: 1040px;
  margin: 0 auto 140px;
  text-align: right;
  width: 90%;
}

.p-menu-content__cap:nth-of-type(2) {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .p-menu-content__title {
    text-align: center;
  }
}
.p-menu-content__title span {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: "400";
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .p-menu-content__title span {
    margin-left: 0;
  }
}

.p-menu-course__title {
  font-size: 18px;
  line-height: 2.2em;
  letter-spacing: 0.06em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
  border-bottom: 1px solid #3e3a3a;
  display: inline-block;
  line-height: 23px;
}
@media screen and (max-width: 768px) {
  .p-menu-course__title {
    text-align: center;
  }
}

.p-menu-course__nami {
  position: absolute;
  top: 0;
  right: 0;
}

.p-menu-content__item {
  padding-bottom: 80px;
  border-bottom: 1px dashed #999999;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-menu-content__item {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.p-menu-content__item:last-child {
  border-bottom: none;
}

.p-menu-content__colum {
  justify-content: space-between;
}
.p-menu-content__colum p {
  max-width: 500px;
  margin: 0 auto;
}
.p-menu-content__colum table {
  text-align: left;
  width: 32%;
  max-width: 270px;
}
.p-menu-content__colum table thead {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
}
.p-menu-content__colum table tbody {
  color: #808080;
}
.p-menu-content__colum table tbody th {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
  vertical-align: middle;
}
.p-menu-content__colum table tbody td {
  padding-left: 20px;
  vertical-align: middle;
  font-size: 18px;
  line-height: 2.2em;
  letter-spacing: 0.06em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}
.p-menu-content__colum table tbody td span {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-menu-content__colum table {
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-menu-content__colum table thead {
    display: none;
  }
}

.supplement {
  background-color: #f2f2f2;
  display: inline-block;
  padding: 6px;
  line-height: normal;
  margin: 20px 0;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .supplement {
    margin: 20px 0 0;
  }
}

.p-menu-content__text {
  max-width: 560px;
  margin-right: 40px;
}
.p-menu-content__text p:first-of-type {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  color: #808080;
}
@media screen and (max-width: 768px) {
  .p-menu-content__text {
    margin-right: auto;
    margin-left: auto;
  }
}

.p-menu-course__colum {
  max-width: 850px;
  justify-content: space-between;
}
.p-menu-course__colum table {
  height: 40px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .p-menu-course__colum table {
    margin: 40px auto 0;
  }
}
.p-menu-course__colum table th {
  text-align: left;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}
.p-menu-course__colum table td {
  color: #808080;
  font-size: 18px;
  line-height: 2.2em;
  letter-spacing: 0.06em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
  padding-bottom: 40px;
}
.p-menu-course__colum table td p {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: "400";
}
.p-menu-course__colum table td span {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-menu-course__colum table thead {
    display: none;
  }
}

.p-menu-parallax {
  position: relative;
}

.p-menu-parallax__image {
  filter: grayscale(1);
  width: 100%;
  height: 600px;
  clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 67%);
}
.p-menu-parallax__image img {
  object-position: 70% 20%;
}

.p-menu-flow {
  margin: 100px 0;
  box-sizing: border-box;
}

.p-menu-flow__inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  height: auto;
}
.p-menu-flow__inner h4 {
  text-align: center;
  font-size: 26px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}

.flow-step {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  position: relative;
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .flow-step {
    display: block;
  }
}
.flow-step li {
  max-width: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow-step li {
    display: block;
    margin: 0 auto 100px;
  }
}
.flow-step li dl {
  width: 100%;
  max-width: 134px;
  height: 134px;
  position: relative;
  text-align: center;
  background-color: #f2f2f2;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.flow-step li dl dt {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 15px;
  letter-spacing: 0.06em;
}
.flow-step li dl dd:first-of-type {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 35px;
}
.flow-step li dl dd {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  line-height: normal;
}
.flow-step li p {
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.18em;
  width: 100%;
  position: relative;
  line-height: normal;
}
.flow-step li::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 55px;
  right: -70px;
  border-top: 1px solid #3e3a3a;
  border-right: 1px solid #3e3a3a;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .flow-step li::before {
    top: auto;
    bottom: -30px;
    right: 46%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: rotate(135deg);
  }
}
.flow-step li:nth-child(3):before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 55px;
  right: -71px;
  border-top: 1px solid #3e3a3a;
  border-right: 1px solid #3e3a3a;
  transform: rotate(135deg);
}
@media screen and (max-width: 768px) {
  .flow-step li:nth-child(3):before {
    top: auto;
    bottom: -30px;
    right: 46%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: rotate(135deg);
  }
}

.line02 {
  margin: 0 0 0 auto;
}
.line02 li:nth-child(3):before {
  display: none;
}
@media screen and (max-width: 768px) {
  .line02 {
    padding-top: 0;
  }
}

.p-menu-course__inner {
  max-width: 1040px;
  width: 90%;
  margin: 60px auto 80px;
  position: relative;
  text-align: center;
}
.p-menu-course__inner p {
  margin-top: 100px;
  text-align: left;
}

.p-menu-hexagon02__image {
  justify-content: center;
  margin: 40px 0 130px;
}
@media screen and (max-width: 768px) {
  .p-menu-hexagon02__image {
    margin: 40px 0 80px;
  }
}

.p-menu-button__wrapper {
  text-align: center;
}
.p-menu-button__wrapper p {
  margin-top: 0;
}

.p-menu-hexagon02__tea {
  width: 250px;
  margin: 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-menu-hexagon02__tea {
    margin: 0 auto;
  }
}
.p-menu-hexagon02__tea img {
  object-fit: contain;
}

.p-menu-message {
  margin-top: 200px;
}

.p-menu-message__inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.p-menu-message__image {
  max-width: 470px;
  height: 700px;
  z-index: -1;
  filter: grayscale(1);
}
@media screen and (max-width: 768px) {
  .p-menu-message__image {
    position: relative;
    max-width: none;
  }
}

.p-menu-message__text {
  text-align: center;
  position: relative;
}

.p-menu-message__text01 {
  background-color: #f2f2f2;
  max-width: 600px;
  padding: 100px 130px 100px 30px;
  box-sizing: border-box;
  margin-top: 10%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-menu-message__text01 {
    width: 90%;
    margin: -90px auto 0;
    padding: 40px 30px 40px;
  }
}

.p-top-menu__button {
  margin-top: 60px;
  text-align: center;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .p-top-menu__button {
    margin-top: 40px;
  }
}

.p-menu-cancel {
  margin: 130px 0;
}

.p-menu-cancel__inner {
  width: 80%;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  height: auto;
}
.p-menu-cancel__inner h4 {
  margin-bottom: 60px;
  text-align: center;
  font-size: 26px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
}
@media screen and (max-width: 768px) {
  .p-menu-cancel__inner h4 {
    font-size: 24px;
    letter-spacing: 0.06em;
  }
}

.p-menu-cancel__item {
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0;
}

form {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 100px;
}

.p-reserve-inner {
  background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 0.2) 8%, rgba(242, 242, 242, 0.5) 17%, rgb(242, 242, 242) 35%, rgb(242, 242, 242) 65%, rgba(242, 242, 242, 0.5) 83%, rgba(242, 242, 242, 0.2) 92%, rgba(242, 242, 242, 0) 100%);
  text-align: center;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-reserve-inner table {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
  }
}
.p-reserve-inner table th {
  text-align: left;
  width: 200px;
  margin-bottom: 40px;
  vertical-align: top;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .p-reserve-inner table th {
    width: 100%;
    display: block;
  }
}
.p-reserve-inner table th span {
  font-size: 12px;
}
.p-reserve-inner table th span a {
  text-decoration: underline;
  color: #3e3a3a;
}
.p-reserve-inner table td {
  max-width: 400px;
  height: 50px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-reserve-inner table td {
    max-width: none;
    width: 100%;
    display: block;
  }
}
.p-reserve-inner table td input,
.p-reserve-inner table td select {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #f2f2f2;
  border-radius: 0;
}
.p-reserve-inner table td input:focus,
.p-reserve-inner table td select:focus,
.p-reserve-inner table td textarea:focus {
  outline: solid 2px #987abd;
}
.p-reserve-inner table td textarea {
  width: 100%;
  height: 200px;
  box-sizing: border-box;
  border: 1px solid #f2f2f2;
  resize: none;
}
.p-reserve-inner table tr:nth-child(6) {
  text-align: left;
}
.p-reserve-inner table tr:nth-child(6) input {
  max-width: 15px;
  height: 15px;
  box-sizing: border-box;
  accent-color: #987abd;
}
.p-reserve-inner table tr:nth-child(6) input:focus {
  outline: none;
}

.p-reserve-inner__text {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .submit-btn {
    padding-top: 200px;
  }
}
.submit-btn input {
  border: 0px;
  width: 100px;
  height: 55px;
  background: url(../images/submit-btn.svg) left top no-repeat;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: "400";
  border-radius: 0;
  cursor: pointer;
}

.input-date {
  -webkit-appearance: none;
  text-align: left;
  background-color: #ffffff;
  color: #3e3a3a;
  font-size: 15px;
}

.select-menu {
  background-color: #ffffff;
  color: #3e3a3a;
  font-size: 15px;
}

input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}

.date {
  display: flex;
  justify-content: space-between;
}
.date li:first-child {
  padding-right: 20px;
}

.date-list {
  width: 50%;
  height: 50px;
}

.p-thanks {
  width: 100%;
  text-align: center;
  padding-top: 100px;
}
.p-thanks h2 {
  margin-bottom: 40px;
}

.p-thanks-inner {
  background: linear-gradient(180deg, rgba(242, 242, 242, 0) 0%, rgba(242, 242, 242, 0.2) 8%, rgba(242, 242, 242, 0.5) 17%, rgb(242, 242, 242) 35%, rgb(242, 242, 242) 65%, rgba(242, 242, 242, 0.5) 83%, rgba(242, 242, 242, 0.2) 92%, rgba(242, 242, 242, 0) 100%);
  padding: 100px 0;
}

.p-thanks-inner__text {
  width: 80%;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */