@charset "UTF-8";
a {
  color: #6b6b6b;
  text-decoration: none;
}

body {
  font-family: "メイリオ", "sans-serif";
  background: #FFF8F4;
}

img {
  max-width: 100%;
  height: auto;
}

li {
  list-style: none;
}

section {
  padding: 130px 20px;
}

span {
  font-size: 16px;
  letter-spacing: 2px;
  color: #F2A7A3;
  font-weight: bold;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

h2 {
  font-size: clamp(1.5rem, 1.3679577465rem + 0.5633802817vw, 1.875rem);
  margin: 10px 20px;
  color: #92634A;
}

h3 {
  font-size: 18px;
  color: #92634A;
  margin-block: 5px;
}

header {
  position: fixed;
  width: 100%;
  background: #ffffff;
  z-index: 300;
  top: 0;
}
header .pc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding-inline: 40px;
}
header .logo {
  font-size: 20px;
  color: #92634A;
  letter-spacing: 1px;
  font-weight: bold;
}
header nav a {
  margin-left: 30px;
  color: #6b6b6b;
  font-size: 14px;
}
header nav .header-btn {
  background: #F2A7A3;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
}
@media (max-width: 900px) {
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #FFF8F4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: 0.5s;
    z-index: 200;
  }
  header nav a {
    margin: 0;
    font-size: 25px;
    color: #92634A;
  }
}
@media (max-width: 900px) {
  header .hamburger {
    width: 50px;
    height: 50px;
    transition: all 0.5s;
    cursor: pointer;
    background: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 400;
  }
  header .hamburger:hover {
    opacity: 0.7;
  }
  header .hamburger span {
    display: block;
    width: 70%;
    height: 2px;
    background-color: #92634A;
    transition: all 0.5s;
    position: absolute;
    left: 0;
  }
  header .hamburger span:nth-child(1) {
    top: 36%;
  }
  header .hamburger span:nth-child(2) {
    top: 50%;
  }
  header .hamburger span:nth-child(3) {
    top: 66%;
  }
}
header.open .hamburger span:nth-child(1) {
  transform: rotate(-45deg);
  top: 50%;
}
header.open .hamburger span:nth-child(2) {
  opacity: 0;
}
header.open .hamburger span:nth-child(3) {
  transform: rotate(45deg);
  top: 50%;
}
header.open nav {
  right: 0;
}

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  padding: 100px 20px;
}
.fv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
  top: 0;
  left: 0;
}
.fv #slider {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
.fv .fv-text {
  position: absolute;
  top: 40%;
  right: 0;
  left: 0;
  text-align: center;
  z-index: 200;
  color: #92634A;
}
.fv .fv-text .sub-title {
  letter-spacing: 3px;
  font-size: 14px;
  color: #F2A7A3;
  margin-bottom: 6px;
  font-weight: bold;
}
.fv .fv-text h1 {
  font-size: clamp(1.5rem, 0.9718309859rem + 2.2535211268vw, 3rem);
  line-height: 1.5;
  margin-bottom: 30px;
  letter-spacing: 2px;
}
.fv .fv-text .btn {
  display: inline-block;
  background: #92634A;
  color: #E8D5B7;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 2px;
}

.yokohama {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.yokohama img {
  position: relative;
  z-index: 150;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 99%;
     object-position: center 99%;
  display: block;
}

/* =========================
problem
========================= */
.problem {
  text-align: center;
  height: 90vh;
}
@media (max-width: 900px) {
  .problem {
    height: 100%;
  }
}
.problem .problem-question p {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 60px;
}

.problem-point {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateX(50px);
  transition: 0.8s ease;
}
.problem-point.slide-in {
  opacity: 1;
  transform: translateX(0);
}

.point {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 300px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.point .p-title {
  display: flex;
  justify-content: space-between;
}
.point img {
  height: 70px;
}
.point p {
  font-size: 13px;
  line-height: 1.8;
  color: #6b6b6b;
  margin-top: 10px;
}

/* =========================
CONCEPT
========================= */
.background {
  width: 100%;
  height: 90vh;
  background-image: url(../img/background1.webp);
  background-repeat: repeat;
  animation: fall 20s infinite linear;
  background-size: 800px 800px;
}
@media (max-width: 900px) {
  .background {
    height: 100%;
  }
}

@keyframes fall {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 800px 800px;
  }
}
#concept {
  padding: 130px 20px;
}
#concept .inner {
  display: flex;
  gap: 50px;
}
#concept .inner .concept-title h2 {
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  #concept .inner {
    flex-direction: column-reverse;
  }
}
#concept .concept-img {
  width: 45%;
  position: relative;
  aspect-ratio: 4/4;
}
@media (max-width: 900px) {
  #concept .concept-img {
    width: 100%;
  }
}
#concept .concept-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 90;
  animation: fade 30s infinite;
}
#concept .concept-img img:nth-child(1) {
  animation-delay: 0s;
}
#concept .concept-img img:nth-child(2) {
  animation-delay: 10s;
}
#concept .concept-img img:nth-child(3) {
  animation-delay: 20s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#concept .concept-content {
  width: 55%;
}
@media (max-width: 900px) {
  #concept .concept-content {
    width: 100%;
  }
}
#concept .concept-text {
  line-height: 1.8;
  margin-bottom: 30px;
  color: #6b6b6b;
}
#concept .concept-points {
  display: flex;
  gap: 20px;
}
@media (max-width: 900px) {
  #concept .concept-points {
    flex-direction: column;
  }
}
#concept .card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: 50%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 900px) {
  #concept .card {
    width: 100%;
  }
}
#concept .card img {
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}
#concept .card p {
  font-size: 14px;
  color: #6b6b6b;
  text-align: left;
}

/* =========================
Trial
========================= */
.trial {
  text-align: center;
  height: 60vh;
}
.trial .inner p {
  color: #92634A;
  margin-bottom: 30px;
  line-height: 1.8;
}
.trial .cta-btn {
  display: inline-block;
  background: #F2A7A3;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.trial .cta-btn:hover {
  transform: translateY(-3px);
}
.trial .note {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  color: #92634A;
}

/* =========================
Instagram
========================= */
#instagram {
  text-align: center;
}
#instagram .insta-title {
  margin-bottom: 40px;
}
#instagram .insta-title h2 {
  font-size: 26px;
  color: #92634A;
}
#instagram .insta-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

/* =========================
ACCESS
========================= */
#access {
  background: #FFF8F4;
  margin-top: 80px;
}
#access .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media (max-width: 900px) {
  #access .inner {
    flex-direction: column;
  }
}
#access .inner .access-info {
  width: 40%;
}
@media (max-width: 900px) {
  #access .inner .access-info {
    width: 100%;
    text-align: center;
  }
}
#access .inner .access-info .pics {
  text-align: right;
}
#access .inner .access-info .pics img {
  width: 70px;
}
#access .inner .access-info h2 {
  padding-bottom: 40px;
}
#access .inner .access-item {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 900px) {
  #access .inner .access-item {
    justify-content: center;
  }
}
#access .inner .access-item {
  gap: 15px;
}
#access .inner img {
  width: 20px;
}
#access .inner h4 {
  color: #92634A;
  font-size: 16px;
}
#access .inner p {
  font-size: 14px;
  color: #6b6b6b;
  margin-block: 5px 40px;
}
#access .inner .access-map {
  width: 60%;
}
#access .inner .access-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}

/* =========================
FLOW
========================= */
#flow {
  margin-top: 50px;
  text-align: center;
  background: #FFF8F4;
}
#flow p {
  color: #78716C;
}
#flow .flow-list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}
@media (max-width: 900px) {
  #flow .flow-list {
    flex-direction: column;
  }
}
#flow .flow-list::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: #F2A7A3;
}
@media (max-width: 900px) {
  #flow .flow-list::before {
    display: none;
  }
}
#flow .flow-list .flow-item {
  width: 22%;
  position: relative;
}
@media (max-width: 900px) {
  #flow .flow-list .flow-item {
    width: 100%;
    margin-bottom: 18px;
  }
}
#flow .flow-list .flow-number {
  font-size: 20px;
  font-weight: bold;
  width: 80px;
  height: 80px;
  border: 1px solid #F2A7A3;
  border-radius: 50%;
  line-height: 80px;
  margin: 0 auto 20px;
  color: #F2A7A3;
  background: #ffffff;
}

/* =========================
PRICE
========================= */
#price {
  text-align: center;
  background: #FFF8F4;
}
#price p {
  color: #78716C;
}
#price .price-main {
  font-size: 24px;
  font-weight: bold;
  padding-right: 10px;
  color: #92634A;
}
#price .price-main span {
  font-size: 14px;
  font-weight: normal;
  color: #78716C;
}
#price .price-old {
  text-decoration: line-through;
  color: #78716C;
  font-size: 14px;
  text-align: left;
  padding-left: 25px;
  margin-top: 20px;
}
#price .price-trial {
  max-width: 800px;
  border: 2px solid #F2A7A3;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 20px 30px;
}
#price .price-trial .trial-left {
  text-align: left;
}
#price .price-trial .trial-left h3 {
  font-size: 20px;
  color: #F2A7A3;
}
#price .price-trial .trial-right {
  position: relative;
  text-align: right;
}
#price .price-trial .recommend {
  position: absolute;
  top: -22px;
  right: -32px;
  width: 200px;
  background: #F2A7A3;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
  text-align: center;
}
#price .price-list {
  max-width: 800px;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 30px auto 0;
}
@media (max-width: 900px) {
  #price .price-list {
    flex-direction: column;
  }
}
#price .price-card {
  text-align: left;
  flex: 1;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #F2A7A3;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
#price .price-card h3 {
  font-size: 20px;
}
#price .note {
  margin-top: 40px;
}

footer {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
}
footer h4 {
  font-size: 16px;
  letter-spacing: 2px;
  color: #92634A;
}
footer a {
  font-size: 12px;
}
footer small {
  font-size: 11px;
}/*# sourceMappingURL=style.css.map */