@charset "UTF-8";
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 1;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

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

em, strong {
  font-style: normal;
  font-weight: normal;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

input, button, textarea, select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

p {
  font-weight: 500;
}

img {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  max-width: 430px;
  margin: 0 auto;
}

.box {
  border: 1px solid #000;
}

header {
  position: sticky;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 430px;
  z-index: 100;
  background-color: #fff;
  /* 背景を透明に */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-header {
  padding-left: 10px;
}

/* ハンバーガーボタン */
.btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 101;
  /* openクラスがついた時のボタンのスタイル（バツ印） */
}
.btn span {
  display: block;
  position: absolute;
  left: 5px;
  width: 30px;
  height: 3px;
  background-color: #63A0F0;
  transition: 0.3s;
}
.btn span:nth-child(1) {
  top: 10px;
}
.btn span:nth-child(2) {
  top: 19px;
}
.btn span:nth-child(3) {
  top: 28px;
}
.btn.open span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.btn.open span:nth-child(2) {
  opacity: 0;
}
.btn.open span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* ナビゲーション */
nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(100vw);
  width: 100%;
  max-width: 430px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  transition: transform 0.3s;
  padding-top: 80px;
}
nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
nav ul li {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 1rem 0;
}
nav ul li a {
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  display: block;
  padding: 1.5rem 2rem;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
nav ul li a:hover {
  background-color: #63A0F0;
  color: #fff;
}
nav ul li a::after {
  content: ">";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Josefin Sans", sans-serif;
}
nav.open {
  transform: translateX(-50%);
}
nav.open li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
nav.open li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
nav.open li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
nav.open li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
nav.open li:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
nav.open li:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
nav.open li:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.fixed-cta-button {
  position: fixed;
  bottom: 80px;
  right: 0;
  transform: translateY(-50%);
  z-index: 50;
  background-color: #FF8C42;
  color: #fff;
  padding: 20px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 10px 0 0 10px;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  transition: background-color 0.3s;
}

.separate {
  background-color: #EAF0F9;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.separate p {
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  text-align: center;
  line-height: 1.8;
}
.separate p .main-color {
  color: #63A0F0;
}
.separate p .medium {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: -15px;
  display: block;
}
.separate p .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  color: #63A0F0;
}
.separate .img-content {
  padding: 0 20px;
}
.separate .img-content .exsample {
  margin-bottom: 0;
}
.separate .img-content p {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: left;
  margin-bottom: 10px;
}
.separate .img-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.separate .wrapper-free-trial-btn {
  padding: 0 20px;
}
.separate .wrapper-free-trial-btn .free-trial-btn {
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.separate .wrapper-free-trial-btn .free-trial-btn p {
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  text-align: center;
  border-radius: 10px;
}
.separate .wrapper-free-trial-btn .free-trial-btn p .main-color {
  color: #63A0F0;
}

.wrapper-cta {
  background-image: url(../images/abckground/cta-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 250px 0 100px;
}
.wrapper-cta p:nth-child(1),
.wrapper-cta p:nth-child(2) {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FF8C42;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.7;
  box-shadow: 4px 4px 0 #000;
  border-radius: 5px;
}
.wrapper-cta p:nth-child(1) {
  margin-bottom: 5px;
}
.wrapper-cta p:nth-child(4),
.wrapper-cta p:nth-child(5) {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 2rem;
}
.wrapper-cta .cta {
  padding: 0 40px;
  position: relative;
  margin: 10px 0;
}
.wrapper-cta .cta a {
  display: block;
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  background: linear-gradient(to bottom, #ffb37a, #ff8c42, #ff6d1a);
  border: 2px solid #ff6b0f;
  padding: 13.5px 10px;
  position: relative;
  border-radius: 70px;
}
.wrapper-cta .cta a::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.wrapper-cta .cta p {
  position: absolute;
  top: 9%;
  left: 7%;
  font-size: 1.2rem;
  color: #FF8C42;
  background-color: #fff;
  padding: 14.6px 9.8px;
  border-radius: 50px;
  box-shadow: none;
}

.worrie p:nth-child(1) img {
  width: 100%;
  max-width: 430px;
  height: auto;
}
.worrie div img {
  display: block;
  margin: 15px auto;
}
.worrie .solution {
  background-color: #EAF0F9;
  padding: 25px 0;
}
.worrie .solution p img {
  max-width: 100px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.worrie .solution p:nth-child(2) {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
.worrie .solution p:nth-child(2) .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 3rem;
  color: #63A0F0;
}
.worrie .solution .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
  padding: 20px 20px 10px;
}
.worrie .solution .grid .box {
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  padding: 2px 0;
  border: 1px solid #000;
}
.worrie .solution .grid .box:nth-child(1) {
  grid-column: 1/3;
  justify-self: center;
  padding: 2px 10px;
}
.worrie .solution .sol {
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 10px;
}
.worrie .solution .sol2 {
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  padding-top: 10px;
}
.worrie .solution ul {
  margin: 0 auto;
}
.worrie .solution ul li {
  width: 150px;
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  text-align: left;
  margin: 0 auto;
  line-height: 1.5;
  white-space: nowrap;
}

.recomend .training h2 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 40px 20px;
}
.recomend .training p:nth-child(1) img {
  max-width: 430px;
  width: 100%;
  height: auto;
}
.recomend .training .content {
  padding: 25px 0;
  background-color: #EAF0F9;
}
.recomend .training .content p:nth-child(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
  border-bottom: 2px solid #63A0F0;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.recomend .training .content p:nth-child(2) {
  font-weight: 500;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  padding: 10px 20px 0;
}
.recomend .training .content p:nth-child(3) {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 25px 20px;
}
.recomend .training .content p:nth-child(4) {
  padding: 0 20px;
}
.recomend .training .content p:nth-child(4) img {
  max-width: 390px;
  width: 100%;
  height: auto;
}

.voice {
  padding: 40px 20px;
  background-color: #F5F5F5;
}
.voice p:nth-of-type(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #63A0F0;
  width: fit-content;
  margin: 0 auto;
}
.voice h2 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 20px;
}
.voice .voice-slider .voice-slide {
  padding: 10px 0;
  transition: opacity 0.5s ease;
  position: relative;
}
.voice .voice-slider .voice-slide h3 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
  padding: 5px 10px;
  text-transform: lowercase;
  background-color: #fff;
  color: #63A0F0;
  position: absolute;
  top: 3%;
  left: 20%;
  z-index: 99;
}
.voice .voice-slider .voice-slide > p {
  text-align: center;
}
.voice .voice-slider .voice-slide > p img {
  position: absolute;
  top: 0;
  left: 30%;
}
.voice .voice-slider .voice-slide .box {
  margin-top: 40px;
  padding: 100px 20px 20px 20px;
  border-radius: 10px;
}
.voice .voice-slider .voice-slide .box h4 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: left;
  padding-bottom: 10px;
  color: #63A0F0;
}
.voice .voice-slider .voice-slide .box h4 .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 2.4rem;
  color: #63A0F0;
}
.voice .voice-slider .voice-slide .box p {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: justify;
  border-bottom: none;
}

.strenghts {
  background-color: #EAF0F9;
  padding: 40px 0;
}
.strenghts p:nth-of-type(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #63A0F0;
  width: fit-content;
}
.strenghts h2 {
  font-weight: 500;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  padding: 10px 0 20px;
}
.strenghts h2 .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 3rem;
  text-transform: capitalize;
}
.strenghts .right,
.strenghts .left {
  margin-bottom: -100px;
}
.strenghts .right .picture img,
.strenghts .left .picture img {
  display: block;
  margin-left: auto;
}
.strenghts .right .strengths,
.strenghts .left .strengths {
  transform: translateY(-130px);
}
.strenghts .right .strengths .number,
.strenghts .left .strengths .number {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  font-size: 5rem;
  font-weight: 300;
  border-bottom: none;
  text-align: left;
  margin: 0;
  padding-left: 40px;
  transform: translateY(10px);
}
.strenghts .right .strengths .number::before,
.strenghts .left .strengths .number::before {
  position: absolute;
  display: block;
  content: "";
  background: #000000;
  height: 1.5px;
  width: 4rem;
  right: -2.5rem;
  bottom: 1.5rem;
  transform: rotate(-45deg);
}
.strenghts .right .strengths h3,
.strenghts .left .strengths h3 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: justify;
  background-color: #fff;
  padding: 20px 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 25px;
}
.strenghts .right .strengths h3 .box,
.strenghts .left .strengths h3 .box {
  padding: 0 5px;
}
.strenghts .right .strengths h3 .box .en,
.strenghts .left .strengths h3 .box .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 2.4rem;
  text-transform: lowercase;
}
.strenghts .right .strengths .box-text,
.strenghts .left .strengths .box-text {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0 40px;
  text-align: justify;
}
.strenghts .left .picture img {
  display: block;
  margin-right: auto;
  margin-left: 0;
}
.strenghts .left .strengths {
  transform: translateY(-130px);
}
.strenghts .left .strengths .number {
  margin-left: auto;
  padding-left: 0;
  transform: translate(-50px, 10px);
}
.strenghts .left .strengths h3 {
  margin-left: auto;
}

.wrapper-about-us {
  background-image: url(../images/abckground/about-us-background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 40px 0;
}
.wrapper-about-us .wrapper {
  padding: 0 20px;
}
.wrapper-about-us .wrapper .about-us {
  background-color: #fff;
  padding: 25px 20px;
}
.wrapper-about-us .wrapper .about-us p:nth-of-type(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #63A0F0;
  width: fit-content;
}
.wrapper-about-us .wrapper .about-us h2 {
  font-weight: 500;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  padding: 10px 0 20px;
}
.wrapper-about-us .wrapper .about-us h2 .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 3rem;
  text-transform: capitalize;
}
.wrapper-about-us .wrapper .about-us .box-text {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
}
.wrapper-about-us .wrapper .about-us .box-text .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
}
.wrapper-about-us .wrapper .about-us .box-text .maincolor {
  color: #63A0F0;
}
.wrapper-about-us .wrapper .about-us ul {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: left;
  list-style: none;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wrapper-about-us .wrapper .about-us ul li {
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  width: calc(100% - 100px);
  margin: 0 auto;
}
.wrapper-about-us .wrapper .about-us ul li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wrapper-about-us .wrapper .about-us ul li .underline {
  text-decoration-line: underline;
  text-decoration-color: #63A0F0;
  text-decoration-thickness: 2px;
}
.wrapper-about-us .wrapper .about-us p img {
  width: 100%;
  max-width: 20px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.wrapper-about-us .wrapper .about-us .box-text {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 2;
}
.wrapper-about-us .wrapper .about-us .box-text .box {
  padding: 0 5px;
}

.point {
  background-color: #fff;
  padding: 40px 20px;
}
.point p:nth-of-type(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #63A0F0;
}
.point h2 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 20px;
}
.point h2 .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}
.point .point-box {
  margin-bottom: 15px;
}
.point .point-box .flex {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 10px;
}
.point .point-box .flex .number-text {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 8.5rem;
  color: #EAF0F9;
  border-bottom: none;
  margin: 0 0 0 10px;
}
.point .point-box .flex .number-text::before {
  font-size: 20px;
  position: absolute;
  content: "point";
  color: #63A0F0;
  font-family: "Josefin Sans", sans-serif;
  font-style: normal;
  letter-spacing: 0.12em;
  top: 35%;
  left: 0;
  margin: auto;
}
.point .point-box .flex h3 {
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  text-align: left;
}
.point .point-box .flex h3 .box-color {
  background-color: #63A0F0;
  color: #fff;
  padding: 0 5px;
  line-height: 1.7;
}
.point .point-box .img-content {
  position: relative;
}
.point .point-box .img-content img {
  border-radius: 10px;
}
.point .point-box .main-text h4 {
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  background-color: #fff;
  box-shadow: 4px 4px 0 #000;
  margin-right: auto;
  padding: 5px;
  position: absolute;
  top: 86%;
  left: 0;
  letter-spacing: 0.15em;
}
.point .point-box .main-text h4 .main-color {
  color: #63A0F0;
}
.point .point-box .main-text h4:nth-of-type(2) {
  top: 106%;
  left: 0;
}
.point .point-box .text-bottom {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 70px;
  text-align: justify;
  border-bottom: none;
}
.point .point-box .text-bottom .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
}

.price {
  text-align: center;
}

.access {
  background-color: #EAF0F9;
  padding: 40px 20px;
}
.access p:nth-of-type(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #63A0F0;
}
.access h2 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 20px;
}
.access > p:nth-of-type(2) img {
  display: block;
  margin: 0 auto 20px;
}
.access h3 {
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  background-color: #63A0F0;
  color: #fff;
  padding: 10px;
  margin: 30px 0 15px;
}
.access .details {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
}
.access .details .details-summary {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 15px;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.access .details .details-summary::-webkit-details-marker {
  display: none;
}
.access .details .details-summary .btn2 {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.access .details .details-summary .btn2::before, .access .details .details-summary .btn2::after {
  content: "";
  position: absolute;
  background-color: #63A0F0;
  transition: transform 0.3s ease;
}
.access .details .details-summary .btn2::before {
  width: 16px;
  height: 2px;
  top: 9px;
  left: 2px;
}
.access .details .details-summary .btn2::after {
  width: 2px;
  height: 16px;
  top: 2px;
  left: 9px;
}
.access .details .details-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 20px;
  background-color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 2;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.5s ease-out;
}
.access .details .details-content address,
.access .details .details-content p {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.access .details .details-content address {
  font-style: normal;
  margin-bottom: 15px;
}
.access .details .details-content p {
  margin-bottom: 10px;
  border-bottom: none;
}
.access .details .details-content .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
}
.access .details .details-content iframe {
  width: 100%;
  height: 300px;
  margin-top: 15px;
  margin-bottom: 20px;
}
.access .details[open] .details-summary .btn2::after {
  transform: rotate(90deg);
}
.access .details[open] .details-content {
  max-height: 9999px;
  opacity: 1;
  padding: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-info {
  background-color: #f9f9f9;
  padding: 40px 20px;
}
.faq-info p:nth-of-type(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #63A0F0;
}
.faq-info h2 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 20px;
}
.faq-info .faq .details {
  border-bottom: 1px solid #e0e0e0;
}
.faq-info .faq .details:first-of-type {
  border-top: 1px solid #e0e0e0;
}
.faq-info .faq .details .details-summary {
  padding: 25px 50px 25px 40px;
  cursor: pointer;
  position: relative;
  list-style: none;
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: justify;
}
.faq-info .faq .details .details-summary::-webkit-details-marker {
  display: none;
}
.faq-info .faq .details .details-summary > span {
  text-align: left;
}
.faq-info .faq .details .details-summary::before {
  content: "Q";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 700;
  color: #63A0F0;
  font-family: "Josefin Sans", sans-serif;
}
.faq-info .faq .details .details-summary::after {
  content: "+";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
  color: #63A0F0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out;
}
.faq-info .faq .details .details-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out;
  padding: 0 40px;
  background-color: #fff;
}
.faq-info .faq .details .details-content p {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 10px 0 20px 30px;
  text-align: justify;
  line-height: 1.8;
  color: #333;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border-bottom: none;
  text-transform: capitalize;
}
.faq-info .faq .details .details-content p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 18px;
  font-size: 2rem;
  font-weight: 700;
  color: #FF8C42;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
}
.faq-info .faq .details[open] .details-summary {
  background-color: #f0f8ff;
}
.faq-info .faq .details[open] .details-summary::after {
  font-family: "Zen Kaku Gothic New", sans-serif;
  content: "-";
  transform: translateY(-50%);
  font-size: 5rem;
  font-weight: 100;
  top: 45px;
}
.faq-info .faq .details[open] .details-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 10px;
  padding-bottom: 10px;
}

.cta {
  padding: 40px 20px;
}
.cta h2 {
  font-weight: 500;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
}

.logo {
  text-align: center;
}

/* --- 予約CTA --- */
.cta-shop {
  padding: 40px 20px;
  background-color: #f7f7f7;
  text-align: center;
}
.cta-shop h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.cta-shop .shop-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 350px;
  margin: 0 auto;
}
.cta-shop .shop-cta .name a {
  display: block;
  padding: 18px 15px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.cta-shop .shop-cta .name a::after {
  content: "▶";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.8;
}
.cta-shop .shop-cta .name a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.cta-shop .shop-ayase {
  background: linear-gradient(135deg, #63A0F0, #4b89d1);
}
.cta-shop .shop-morishita {
  background: linear-gradient(135deg, #5895e0, #427cb9);
}
.cta-shop .shop-tama {
  background: linear-gradient(135deg, #4f8ade, #396ca1);
}/*# sourceMappingURL=style.css.map */