@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: #5f2397;
  text-decoration: none;
  margin-left: 1rem;
}

body {
  margin: 0;
  font-family: "BIZ UDPGothic", sans-serif;
  color: #5e00a0;
  background-color: #f5f5f5;
  line-height: 1.6;
}

/* bodyに付くやつ */
.no-scroll {
  overflow: hidden;
}

header,
footer {
  background: #f9d1ad;
  padding: 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* =========================
  Header
========================= */
header {
  background: #fdd6ac;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* absoluteのhamburger基準にするなら入れる */
  /* 1440px */
  /* 768px */
}
header .logo {
  font-size: 3rem;
  font-weight: 600;
  margin-left: 3rem;
}
header .main-nav {
  display: flex;
  margin-right: 3rem;
}
header .main-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  font-size: 2rem;
}
header .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
header .main-nav a {
  text-decoration: none;
  color: #5f2397;
  font-size: 1.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
}
header .main-nav a:hover {
  color: #5f2397;
}
@media (max-width: 1440px) {
  header .logo {
    font-size: 2.6rem;
    margin-left: 2rem;
  }
  header .main-nav {
    margin-right: 2rem;
  }
}
@media (max-width: 768px) {
  header .logo {
    font-size: 2rem;
    margin-left: 1rem;
  }
  header .main-nav {
    display: none;
  }
  header .hamburger {
    display: flex;
  }
}

/* =========================
  Hero
========================= */
.hero {
  background: #fdd6ac;
  padding: 6rem 1rem;
  text-align: center;
  /* 1440px */
  /* 768px */
}
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin: 0;
}
@media (max-width: 1440px) {
  .hero {
    padding: 5rem 1rem;
  }
  .hero h1 {
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
}

/* =========================
  About Pricing
========================= */
.about-pricing {
  background: #eeeeee;
  padding: 5rem 1rem;
  /* 1440px */
  /* 768px */
}
.about-pricing h2 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
}
.about-pricing p {
  font-size: 2rem;
  margin-left: 25rem;
}
@media (max-width: 1440px) {
  .about-pricing h2 {
    font-size: 3.2rem;
  }
  .about-pricing p {
    margin-left: 20rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-pricing h2 {
    font-size: 2.4rem;
  }
  .about-pricing p {
    margin-left: 7rem;
    font-size: 1rem;
  }
}

/* =========================
  Course Block
========================= */
.course-block {
  background: #ff8900;
  padding: 4rem;
  text-align: center;
  /* 1440px */
  /* 768px */
}
.course-block h2 {
  font-size: 4rem;
  font-weight: 800;
  margin-top: 3rem;
  color: #5f2397;
}
.course-block h2::after {
  content: "";
  display: block;
  height: 6px;
  width: 15vw;
  background: #5f2397;
  margin: 1rem auto 0;
}
.course-block .courses-table {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  overflow: hidden;
  margin: 4vw;
}
.course-block .courses-table .purpose,
.course-block .courses-table .period,
.course-block .courses-table .price,
.course-block .courses-table .detail {
  display: contents;
}
.course-block .courses-table .cell {
  padding: 3rem 2rem;
  border: 4px solid #edeced;
  background: #ff8400;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.course-block .courses-table .cell p {
  margin: 0;
}
.course-block .courses-table .head {
  background: #fbd4b1;
  font-weight: 700;
  font-size: 2.5rem;
  padding: 3rem 0 3rem 0;
  border: 2px solid #edeced;
}
.course-block .courses-table .head:last-child {
  border-right: none;
}
.course-block .courses-table .label {
  background: #ffe2c6;
  font-weight: 700;
  color: #5f2397;
  padding: 2rem 1rem 2rem 1rem;
  font-size: 3rem;
  border: 4px solid #edeced;
}
.course-block .courses-table .value {
  font-size: 2rem;
  font-weight: 400;
}
.course-block .courses-table .detail .value {
  text-align: center;
}
.course-block .courses-table .cell-head,
.course-block .courses-table .head-cell {
  margin: 0;
}
.course-block .courses-table .label-title,
.course-block .courses-table .cell-value {
  padding-top: 0;
}
.course-block .courses-table .purpose p .sp-only {
  display: none;
}
.course-block .courses-table .purpose p .pc-only {
  display: block;
}
@media (max-width: 1440px) {
  .course-block {
    padding: 3rem;
  }
  .course-block h2 {
    font-size: 3.2rem;
  }
  .course-block .courses-table .head {
    font-size: 2.1rem;
  }
  .course-block .courses-table .label {
    font-size: 2.4rem;
  }
  .course-block .courses-table .value {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .course-block {
    padding: 2rem 1rem;
  }
}
.course-block h2 {
  font-size: 2.4rem;
}
.course-block .courses-table .head {
  font-size: 1rem;
}
.course-block .courses-table .label {
  font-size: 2rem;
}
.course-block .courses-table .value {
  font-size: 1rem;
}

/* =========================
  Option
========================= */
.option {
  background: #e8e8e8;
  padding: 5rem 1rem;
  /* 1440px */
  /* 768px */
}
.option h2 {
  font-size: 4rem;
  margin-bottom: 4rem;
  text-align: center;
}
.option h2::after {
  content: "";
  display: block;
  height: 6px;
  width: 15vw;
  background: #5f2397;
  margin: 1rem auto 0;
}
.option h3 {
  margin-bottom: 5rem;
  font-size: 3rem;
  margin-left: 35rem;
}
.option .box {
  display: flex;
  margin-left: 10vw;
  gap: 10vw;
}
.option .box p {
  font-size: 2.5rem;
}
.option .box p strong {
  font-weight: 800;
}
.option .box img {
  width: 100%;
  max-width: 700px;
}
@media (max-width: 1440px) {
  .option h2 {
    font-size: 3.2rem;
  }
  .option h3 {
    margin-left: 25rem;
    font-size: 2.4rem;
  }
  .option .box {
    gap: 6vw;
  }
  .option .box p {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .option {
    padding: 4rem 1rem;
  }
  .option h2 {
    font-size: 2.4rem;
  }
  .option h2::after {
    width: 40vw;
  }
  .option h3 {
    margin-left: 0;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .option .box {
    flex-direction: column;
    margin-left: 0;
    gap: 2rem;
    align-items: center;
  }
  .option .box p {
    font-size: 1.2rem;
  }
  .option .box img {
    max-width: 420px;
  }
}

/* =========================
  Payment
========================= */
.payment {
  background: white;
  padding-top: 4rem;
  padding-bottom: 8rem;
  /* 1440px */
  /* 768px */
}
.payment h2 {
  font-size: 4rem;
  margin-bottom: 6rem;
  text-align: center;
}
.payment h2::after {
  content: "";
  display: block;
  height: 6px;
  width: 15vw;
  background: #5f2397;
  margin: 1rem auto 0;
}
.payment p {
  font-size: 2.5rem;
  margin-left: 45rem;
}
@media (max-width: 1440px) {
  .payment h2 {
    font-size: 3.2rem;
  }
  .payment p {
    margin-left: 32rem;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .payment h2 {
    font-size: 2.4rem;
  }
  .payment h2::after {
    width: 40vw;
  }
  .payment p {
    margin-left: 0;
    text-align: center;
    font-size: 1.4rem;
  }
}

/* =========================
  Contact
========================= */
.contact {
  background: #ff8f1f;
  padding: 5rem 2rem;
  color: #5f2397;
  /* 1440px */
  /* 768px */
}
.contact h2 {
  font-size: 4rem;
  margin-bottom: 3rem;
  display: block;
  text-align: center;
}
.contact h2::after {
  content: "";
  display: block;
  height: 5px;
  width: 12rem;
  background: #5f2397;
  margin: 1rem auto;
}
.contact h3 {
  margin-bottom: 3vw;
  font-size: 3rem;
  text-align: center;
}
.contact h3 .sp-only {
  display: none;
}
.contact p {
  font-size: 2.5rem;
  margin-left: 25rem;
  padding-bottom: 2rem;
}
.contact .btn {
  background: white;
  color: #5f2397;
  padding: 0.75rem 8rem;
  border-radius: 40px;
  display: inline-block;
  margin-top: 2rem;
  font-weight: bold;
  font-size: 2rem;
  margin-left: 42rem;
}
@media (max-width: 1440px) {
  .contact h2 {
    font-size: 3.2rem;
  }
  .contact h3 {
    font-size: 2.4rem;
  }
  .contact p {
    margin-left: 20rem;
    font-size: 2rem;
  }
  .contact .btn {
    margin-left: 0;
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 4rem 1rem;
  }
  .contact h2 {
    font-size: 2.4rem;
  }
  .contact h2::after {
    width: 10rem;
  }
  .contact h3 {
    font-size: 1.8rem;
  }
  .contact h3 .sp-only {
    display: inline;
  }
  .contact p {
    margin-left: 0;
    text-align: center;
    font-size: 1.4rem;
  }
  .contact .btn {
    padding: 0.75rem 4rem;
    font-size: 1.6rem;
  }
}

/* =========================
  Footer
========================= */
footer {
  /* 1440px */
  /* 768px */
}
footer .logo {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 2rem;
}
footer nav {
  font-size: 1.5rem;
}
footer p {
  font-size: 1.5rem;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 1440px) {
  footer .logo {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  footer {
    display: block;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  footer .logo {
    margin-left: 0;
    margin-bottom: 1rem;
  }
  footer nav {
    margin-bottom: 1rem;
  }
  footer nav a {
    margin: 0 0.5rem;
  }
}

/* =========================
  Hamburger / Mobile Menu
========================= */
.hamburger {
  display: none; /* headerの768で出す */
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 50;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #5f2397;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff8f1f;
  background-size: cover;
  background-position: center;
  backdrop-filter: brightness(0.7);
  z-index: 100;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.5s ease;
  /* ✅ ここ重要：mobile-menuに show が付く形 */
}
.mobile-menu.show {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.4s ease forwards;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.mobile-menu li {
  margin: 20px 0;
}
.mobile-menu a {
  font-size: 3rem;
  color: #5f2397;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #5f2397;
}
.mobile-menu .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: #5f2397;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}/*# sourceMappingURL=pricing.css.map */