@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;
}

.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;
}

.main-color {
  color: #3c96d3;
}

.baseline {
  box-shadow: inset 0 -0.2em 0 #ebcd00;
}

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

/* ハンバーガーボタン */
.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: #FF7A00;
  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: #3c96d3;
  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: #FF7A00;
  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;
}
.fixed-cta-button:hover {
  background-color: rgb(40.5020920502, 123.3472803347, 179.4979079498);
}

.campaign-wrapper {
  padding: 30px 20px;
  background-color: #FF7A00;
}
.campaign-wrapper .campaign {
  text-align: center;
}
.campaign-wrapper .campaign h2 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 4rem;
  color: #fff;
  line-height: 1;
}
.campaign-wrapper .campaign h2 .en {
  font-size: 5rem;
  color: #fff;
}

.sec5 {
  margin-bottom: 25px;
  text-align: center;
}
.sec5 h2 {
  background-color: #3c96d3;
  padding-top: 25px;
}
.sec5 .content-box {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #3c96d3;
}
.sec5 p {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  background-image: url(../images/banner/background/sec5-back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 20px 20px;
  background-color: #3c96d3;
}

.separate {
  background-color: #e6f0f7;
  padding: 25px 0;
  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.5;
}
.separate p .main-color {
  color: #3c96d3;
}
.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: #3c96d3;
}
.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: #3c96d3;
}

.wrapper-cta {
  background-image: url(../images/banner/background/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: #000;
  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(2) {
  line-height: 1;
  padding: 10px 20px;
  margin-top: 10px;
}
.wrapper-cta p:nth-child(1) {
  margin-bottom: 5px;
}
.wrapper-cta p:nth-child(4) {
  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 p:nth-child(4) .ac-color {
  color: #3c96d3;
  text-shadow: 2px 2px 3px #fff;
}
.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;
  font-size: 1.8rem;
  color: #fff;
  background: linear-gradient(to bottom, #ffb37a, #ff8c42, #ff6d1a);
  border: 2px solid #ff6b0f;
  padding: 13.5px 10px;
  position: relative;
  border-radius: 100px;
}
.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: -5%;
  left: 6%;
  font-size: 1.2rem;
  color: #FF7A00;
  background-color: #fff;
  padding: 14.6px 9.8px;
  border-radius: 50px;
  box-shadow: none;
  line-height: 1.7;
}

.worrie p:nth-child(1) img {
  width: 100%;
  max-width: 430px;
  height: auto;
  margin-bottom: 10px;
}

.choose {
  padding: 25px 0;
  text-align: center;
}
.choose h2 {
  padding: 10px 0 0;
  font-weight: 500;
  font-size: 3rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  line-height: 1.3;
}
.choose h2 .big {
  color: #FF7A00;
  font-size: 3.5rem;
}
.choose h2 .big .big2 {
  font-size: 4rem;
}
.choose h2 .big .big2 .en {
  font-size: 5rem;
  color: #FF7A00;
}
.choose .choose-box {
  padding: 20px;
  position: relative;
  background-color: #fff;
}
.choose .choose-box h3 {
  background-color: #3c96d3;
  border-radius: 5px 5px 0 0;
  padding: 5px 0;
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
}
.choose .choose-box .number2 {
  position: absolute;
  top: -1%;
  left: 1%;
  font-size: 2rem;
  padding: 10px 16px;
  background-color: #FF7A00;
  color: #fff;
  border-radius: 50px;
}
.choose .choose-box .content {
  background-color: #e6f0f7;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.choose .choose-box .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;
}
.choose .choose-box .content .first {
  padding-top: 20px;
}
.choose .choose-box .content .second {
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  color: #3c96d3;
  font-size: 2rem;
}
.choose .solustion-box {
  padding: 0 20px;
}
.choose .solustion-box p {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  color: #3c96d3;
}
.choose .solustion-box p .ac-color {
  font-size: 3rem;
  color: #FF7A00;
}

.features {
  padding: 20px;
  background: linear-gradient(to bottom, #35a9e9 -100%, #007ec3 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features h2 {
  padding-bottom: 20px;
}
.features section {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}
.features section p {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
}
.features section .second {
  margin-bottom: 20px;
}
.features section .trans {
  margin-top: 20px;
  transform: translateY(5px);
}
.features .sec2 {
  padding: 20px 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features .sec2 .box2 {
  padding: 0 20px;
}
.features .sec2 .box3 {
  padding: 0 10px;
}

.price {
  padding: 40px 20px;
  background-color: #e6f0f7;
}
.price 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 #3c96d3;
}
.price 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;
}
.price p:nth-of-type(2) {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
.price .price-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.access {
  background-color: #e6f0f7;
  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 #3c96d3;
}
.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;
}
.access .about .slider .slick-slide,
.access .shop .slider .slick-slide,
.access .car-park .slider .slick-slide {
  transition: all 0.3s ease-in-out;
  transform: scale(0.8);
  opacity: 0.5;
}
.access .about .slider .slick-center,
.access .shop .slider .slick-center,
.access .car-park .slider .slick-center {
  transform: scale(1);
  opacity: 1;
}
.access .about .slider .slick-dots,
.access .shop .slider .slick-dots,
.access .car-park .slider .slick-dots {
  bottom: -40px;
}
.access .about .slider .slick-dots li button:before,
.access .shop .slider .slick-dots li button:before,
.access .car-park .slider .slick-dots li button:before {
  font-size: 12px;
  color: #3c96d3;
}
.access .about h3,
.access .shop h3,
.access .car-park h3 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: #3c96d3;
  color: #fff;
  padding: 10px;
  margin: 15px 0;
}
.access .about address,
.access .shop address,
.access .car-park address {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
}
.access .about address .en,
.access .shop address .en,
.access .car-park address .en {
  font-size: 2rem;
}
.access .about p,
.access .shop p,
.access .car-park p {
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  border-bottom: none;
  padding: 0 20px 10px;
}
.access .about dl dd,
.access .about dl dt,
.access .shop dl dd,
.access .shop dl dt,
.access .car-park dl dd,
.access .car-park dl dt {
  font-weight: 500;
  font-size: 2.4rem;
  color: #000;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 2rem;
}
.access .about dl dd .en,
.access .about dl dt .en,
.access .shop dl dd .en,
.access .shop dl dt .en,
.access .car-park dl dd .en,
.access .car-park dl dt .en {
  font-size: 2rem;
}
.access .about dl dd,
.access .shop dl dd,
.access .car-park dl dd {
  padding: 5px 0;
  margin-bottom: 10px;
  color: #fff;
  background-color: #3c96d3;
}
.access .about .attention,
.access .shop .attention,
.access .car-park .attention {
  margin-top: 10px;
}
.access .car-park {
  margin-top: 50px;
}

.wrapper-iframe {
  padding: 15px;
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  height: 1900px;
}
.wrapper-iframe iframe {
  width: 100%;
  border-radius: 8px;
  border: none;
  height: 1900px;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.logo {
  text-align: center;
}

.last-message {
  font-weight: 500;
  font-size: 2rem;
  color: #000;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  padding: 20px 0;
}
.last-message span {
  color: #00B900;
}/*# sourceMappingURL=style.css.map */