@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 #1c1313;
}

.en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.main-color {
  color: #b8193f;
}

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

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;
}
.btn span {
  display: block;
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: #b8193f;
  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クラスがついた時のボタンのスタイル（バツ印） */
}
.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: #1c1313;
  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: #b8193f;
  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;
}

.btn-fixd {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.btn-fixd .line-fixd {
  padding: 20px 10px;
  border-radius: 10px 0 0 10px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  transition: background-color 0.3s;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-transform: uppercase;
  background-color: #06c755;
  color: #fff;
}

.campaign {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  padding: 40px 0;
  text-align: center;
  background-color: #fdefef;
}
.campaign p:nth-of-type(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-transform: lowercase;
  border-bottom: 2px solid #b8193f;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 2px;
}
.campaign h2 {
  font-weight: 500;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  color: #b8193f;
  text-shadow: 2px 2px 5px rgb(255, 255, 255);
  font-weight: 700;
}
.campaign h2 .en {
  font-size: 4rem;
  color: #b8193f;
}
.campaign .campaign-img {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.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: #fdefef;
  padding: 40px 0;
}
.worrie .solution p img {
  display: block;
  padding: 20px 0;
  max-width: 120px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.worrie .solution .worries-text {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
.worrie .solution p:nth-child(3) {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
.worrie .solution p:nth-child(3) .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  color: #b8193f;
}
.worrie .solution .method {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}
.worrie .solution .sol {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  padding: 0 20px 10px;
}
.worrie .solution .sol2 {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  padding: 0 20px;
  line-height: 1.7;
}
.worrie .solution .sol2 .main-color {
  font-size: 2.4rem;
}
.worrie .solution .sig {
  padding: 0 20px;
}
.worrie .solution .sol3 {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  padding-top: 20px;
}

.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: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #b8193f;
  width: fit-content;
  margin: 0 auto;
}
.voice h2 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  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: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 5px 10px;
  text-transform: lowercase;
  background-color: #fff;
  color: #b8193f;
  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: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: left;
  padding-bottom: 10px;
  color: #b8193f;
}
.voice .voice-slider .voice-slide .box h4 .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 2.4rem;
  color: #b8193f;
}
.voice .voice-slider .voice-slide .box p {
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: justify;
  border-bottom: none;
}

.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: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #b8193f;
}
.point h2 {
  font-weight: 500;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 20px;
}
.point h2 .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.point .point-box {
  margin-bottom: 50px;
}
.point .point-box .flex {
  display: flex;
  justify-content: center;
  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: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 8.5rem;
  color: #ffeaea;
  border-bottom: none;
  margin: 0 0 0 10px;
}
.point .point-box .flex .number-text::before {
  font-size: 20px;
  position: absolute;
  content: "point";
  color: #b8193f;
  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: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  text-align: left;
}
.point .point-box .flex h3 .box-color {
  background-color: #b8193f;
  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: #1c1313;
  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: #b8193f;
}
.point .point-box .main-text h4:nth-of-type(2) {
  top: 106%;
  left: 0;
}
.point .point-box .text-bottom,
.point .point-box .text-bottom2,
.point .point-box .text-bottom3 {
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  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;
  line-height: 1.7;
}
.point .point-box .text-bottom .en,
.point .point-box .text-bottom2 .en,
.point .point-box .text-bottom3 .en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.point .point-box .text-bottom2 {
  margin-top: 10px;
}
.point .point-box .text-bottom3 {
  margin-top: 5px;
}
.point .point-box ul li {
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: justify;
}

.separate {
  padding: 40px 0;
  background-color: #b8193f;
  text-align: center;
}
.separate h2 {
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.7;
  padding: 0 20px;
}
.separate h2 .en {
  color: #fff;
  font-size: 1.6rem;
}
.separate h2 .big {
  font-size: 3rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 5px;
}
.separate .sen img {
  opacity: 0.9;
}
.separate .attention-text {
  padding: 20px;
}
.separate .attention-text p {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  color: #ffe600;
}
.separate .left-sepa,
.separate .right-sepa {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.separate .left-sepa h3,
.separate .right-sepa h3 {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  padding: 5px 10px;
  transform: translateY(-30px);
  box-shadow: 4px 4px 0 #000;
}
.separate .left-sepa .main-color,
.separate .right-sepa .main-color {
  color: #b8193f;
}
.separate .bottom-sepa {
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0 20px;
}
.separate .right-sepa h3 {
  margin-left: auto;
  text-align: right;
  margin-right: 0;
  box-shadow: -4px 4px 0 #000;
}

.problem {
  padding: 40px 20px 20px;
  background-color: #fff;
  text-align: center;
}
.problem p:nth-of-type(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #b8193f;
}
.problem h2 {
  font-weight: 500;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
}
.problem .pro-box {
  position: relative;
  padding-top: 20px;
}
.problem .pro-box h3 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: #b8193f;
  color: #fff;
  padding: 10px;
  border-radius: 10px 10px 0 0;
}
.problem .pro-box .number-text,
.problem .pro-box .number-text2 {
  position: absolute;
  top: 1%;
  left: 0;
  font-size: 3rem;
  color: #fff;
  background-color: #e95d2b;
  padding: 9px 15px 1px;
  border-bottom: none;
  border-radius: 50%;
}
.problem .pro-box .number-text2 {
  padding: 9px 11.9px 1px;
}
.problem .pro-box .box-con {
  padding: 0 20px 20px 20px;
  background-color: #fdefef;
}
.problem .pro-box .box-con .tit2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 15px 0;
  line-height: 2;
  border-bottom: none;
}
.problem .pro-box .box-con .tit2 span {
  font-size: 2.4rem;
  font-weight: 700;
  color: #e95d2b;
  display: inline-block;
  margin-top: 2px;
  line-height: 1.3;
}
.problem .pro-box .box-con div {
  padding-bottom: 5px;
}
.problem .pro-box .box-con .thatwhy {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 5px;
  line-height: 1.7;
}
.problem .pro-box .box-con .thatwhy .big {
  font-size: 2.4rem;
  color: #e95d2b;
}
.problem .pro-box .box-con .arrow {
  margin: 20px 0;
}
.problem .pro-box .box-con .sol {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  line-height: 1.7;
  padding-bottom: 5px;
}
.problem .pro-box .box-con .sol .big {
  font-size: 2.4rem;
  color: #e95d2b;
  font-weight: 700;
}
.problem .pro-box .box-con .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.problem .pro-box .box-con .grid .item {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
}

.problem-sol {
  background-color: #fff;
  text-align: center;
  padding-bottom: 40px;
}
.problem-sol .sol-main {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  line-height: 2;
  margin-bottom: 10px;
}
.problem-sol .sol-main .big {
  font-size: 3rem;
  color: #e95d2b;
  font-weight: 700;
}
.problem-sol .position {
  position: relative;
  margin-top: 80px;
}
.problem-sol .position .bottom-text {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  width: 250px;
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.7;
  margin-top: 10px;
}
.problem-sol .position .bottom-text .maincolor {
  color: #b8193f;
}
.problem-sol .position .bottom-text .back {
  display: inline-block;
  font-size: 3rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #e95d2b;
  color: #fff;
  padding: 5px 10px;
  margin-top: 5px;
}
.problem-sol .strengths {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  line-height: 1.7;
  margin: 15px 0 10px 0;
}
.problem-sol .strengths .en {
  font-size: 2rem;
}
.problem-sol .strengths .back {
  font-size: 3rem;
  color: #fff;
  background-image: url(../images/banner/hukidashi.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 5px 10px 20px;
  width: 310px;
  margin: 0 auto;
  display: inline-block;
}
.problem-sol .strengths-content {
  background-image: url(../images/banner/background/sol-ba.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 20px 20px 0 20px;
}
.problem-sol .strengths-content p {
  text-align: left;
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 2;
  text-shadow: 0 0 6px rgb(255, 255, 255), 0 0 12px rgb(255, 255, 255), 0 0 18px rgb(255, 255, 255);
}
.problem-sol .strengths-content p .back {
  text-shadow: none;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  color: #fff;
  background-color: #b8193f;
  padding: 5px;
}
.problem-sol .strengths-content p .big {
  font-size: 3rem;
  color: #b8193f;
  line-height: 1.3;
  display: inline-block;
  font-weight: 700;
  text-shadow: 0 0 6px rgb(255, 255, 255), 0 0 12px rgb(255, 255, 255), 0 0 18px rgb(255, 255, 255);
}

.flow {
  position: relative;
}
.flow .rotate {
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #b8193f;
  box-shadow: 4px 4px 0 #ffe600;
  transform: rotate(-3deg);
  padding: 5px 10px;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: -1%;
  left: 0;
}
.flow h2 {
  font-weight: 500;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #ff9270 0%, #e95d2b 100%);
  font-weight: 700;
  padding: 20px 0;
  line-height: 1.3;
}
.flow h2 .small {
  font-size: 2rem;
  font-weight: 500;
}
.flow .flow-content {
  text-align: center;
}
.flow .flow-content p:nth-of-type(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #b8193f;
  margin-top: 20px;
}
.flow .flow-content h3 {
  font-weight: 500;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 20px;
}
.flow .flow-content .sub {
  background-color: #fdefef;
}
.flow .flow-content .flow-info {
  padding: 30px 20px;
}
.flow .flow-content .flow-info h4 {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 10px;
  color: #b8193f;
  font-weight: 600;
  margin: 0 auto 15px;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #b8193f;
}
.flow .flow-content .flow-info .felx-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.flow .flow-content .flow-info .felx-flow p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  text-align: justify;
  line-height: 1.3;
  margin-top: 0;
  flex-basis: 200px;
  border-bottom: none;
}

.access {
  background-color: #fdefef;
  padding: 40px 20px;
}
.access p:nth-of-type(1) {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #b8193f;
}
.access h2 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  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 {
  background-color: #fff;
}
.access .about .slider .slick-slide,
.access .shop .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 {
  transform: scale(1);
  opacity: 1;
}
.access .about .slider .slick-dots,
.access .shop .slider .slick-dots {
  bottom: -40px;
}
.access .about .slider .slick-dots li button:before,
.access .shop .slider .slick-dots li button:before {
  font-size: 12px;
  color: #b8193f;
}
.access .about h3,
.access .shop h3 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: #b8193f;
  color: #fff;
  padding: 10px;
  margin: 15px 0;
}
.access .about address,
.access .shop address {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  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 {
  font-size: 2rem;
}
.access .about .access-flex,
.access .shop .access-flex {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
.access .about .access-flex p,
.access .shop .access-flex p {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  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;
  border-bottom: none;
}
.access .about .access-flex p .en,
.access .shop .access-flex p .en {
  font-size: 2rem;
}
.access .about iframe,
.access .shop iframe {
  width: 100%;
  height: 350px;
  padding: 20px;
}

.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: #1c1313;
  text-align: justify;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-transform: lowercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid #b8193f;
}
.faq-info h2 {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  padding-top: 10px;
}
.faq-info h3 {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  padding: 50px 20px 0;
  color: #b8193f;
}
.faq-info .faq .details {
  border-bottom: 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: #1c1313;
  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: #b8193f;
  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: #b8193f;
  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: #1c1313;
  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: #1c1313;
  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: #e95d2b;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
}
.faq-info .faq .details .details-content ul li {
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 20px;
  text-align: justify;
}
.faq-info .faq .details .details-content dl {
  padding-left: 30px;
}
.faq-info .faq .details .details-content dl dt,
.faq-info .faq .details .details-content dl dd {
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: justify;
}
.faq-info .faq .details .details-content dl .flex-faq {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.faq-info .faq .details .details-content dl .flex-faq dt,
.faq-info .faq .details .details-content dl .flex-faq dd {
  font-weight: 500;
  font-size: 1.6rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.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;
}

.logo {
  text-align: center;
}

.cta {
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}
.cta p {
  font-weight: 500;
  font-size: 2rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.3;
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
}
.cta .text-cta {
  margin: 10px 0;
}
.cta .invite {
  font-weight: 700;
  background-image: url(../images/banner/hukidashi2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 7px 10px 20px 10px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.cta .flex-cta {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0;
  border: 1px solid #e95d2b;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  padding: 0 20px;
}
.cta .flex-cta p {
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  color: #1c1313;
  font-weight: 700;
}
.cta .flex-cta .count {
  font-size: 5rem;
  color: #e95d2b;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}
.cta a {
  display: inline-block;
  background: linear-gradient(to bottom, #ff6832, rgb(225, 63, 6));
  padding: 5px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-weight: 500;
  font-size: 2.4rem;
  color: #1c1313;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.3;
  transition: all 0.3s ease;
  margin-top: 10px;
  border: 3px solid #ee3e00;
}
.cta a .ac {
  color: #ffe600;
}
.cta a .en {
  color: #fff;
}
.cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.cta a::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 12' fill='%23e95d2b'><path d='m0 0 8 6-8 6z'/></svg>");
  background-size: 8px 12px;
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: middle;
  transform: translate(15px, -20px);
}

.logo {
  text-align: center;
  padding: 20px 0;
}/*# sourceMappingURL=style.css.map */