@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lusitana:wght@400;700&display=swap");

#main a {
  color: #333;
  text-decoration: none;
}

#main {
  padding-top: 140px;
  color: #333;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.05em;
  width: 100%;
}

.course p {
  line-height: 1.5;
}

.title-box {
  background-color: #61b380;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.title-inner h1 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
}

.title-inner p {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.layout-max {
  max-width: 1230px;
  margin: auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.breadcrumbs {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 16px;
  font-size: 12px;
}

.breadcrumbs li {
  margin-bottom: 0;
}

.breadcrumbs li + li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("/images/styleplan/arrow-right.svg") no-repeat center/contain;
}

.breadcrumbs li span {
  padding-left: 4px;
}

.breadcrumbs .home {
  text-decoration: underline;
  color: #4d9668;
}

.breadcrumbs .text-medium {
  font-weight: 500;
}

.intro {
  width: 100%;
}

.intro-inner {
  margin: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.intro-inner .intro-title {
  text-align: center;
}

.intro-inner .intro-title h2 {
  padding-top: 10px;
  color: #4d9668;
  font-weight: 700;
  font-size: 36px;
}

.intro-inner .intro-description {
  padding-top: 60px;
}

.intro-inner .intro-description p {
  text-align: center;
}

.section {
  padding: 80px 0;
}

.section-small {
  padding: 40px 0;
}

/* ヘッダー画像 */
.header-image {
  width: 100%;
  height: 141px;
  object-fit: cover;
}

/* メインタイトルセクション */
.hero-section {
  padding-top: 40px;
  text-align: center;
}

.hero-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.recommend-section {
  max-width: 1200px;
  padding: 60px 0 20px;
  text-align: center;
  margin: auto;
}

.recommend-title {
  margin-bottom: 60px;
}

.recommend-main-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.recommend-main-title .highlight {
  color: #00a67a;
  font-size: 32px;
}

.recommend-box {
  background-color: #f9ffe2;
  border-radius: 20px;
  padding: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recommend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.check-icon {
  width: 22px;
  height: 22px;
  border: 3px solid #00a67a;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
}

.check-icon::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  color: #00a67a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: bold;
}

.recommend-text {
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

/* CTAボタンセクション */
.cta-section {
  padding: 40px 0;
  text-align: center;
}

.cta-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-title::before,
.cta-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #27272a;
  transform: rotate(-30deg);
}

.cta-title::after {
  transform: rotate(30deg);
}

/* コンテンツセクション */
.content-section {
  padding: 80px 15px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title .underline {
  width: 56px;
  height: 4px;
  background-color: #00a67a;
  margin: 0 auto;
}

/* コース紹介レイアウト */
.course-intro {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.course-intro img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.course-intro-content {
  flex: 1;
}

.course-intro-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.course-intro-title .highlight {
  color: #00a67a;
}

.course-intro-text {
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* クラス特長セクション */
.class-features {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.class-feature {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.class-feature img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.class-feature-content {
  flex: 1;
}

.class-feature-title {
  color: #00a67a;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 20px 0;
}

.class-feature-text {
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.class-feature-text .small {
  font-size: 12px;
  line-height: 1.7;
  padding-left: 0;
  display: inline-block;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #d6d3d1;
  margin: 24px 0;
}

/* 魅力セクション */
.attraction-section {
  background-color: #f7fee7;
  padding: 80px 0 20px;
}

.attraction-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.attraction-card {
  background: white;
  border-radius: 10px;
  padding: 28px;
  border: 2px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.attraction-card img {
  width: 100%;
  height: 178px;
  border-radius: 10px;
  object-fit: cover;
}

.attraction-card-title {
  text-align: center;
  color: #00a67a;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.attraction-card-text {
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* クラス概要セクション */
.class-overview {
  padding: 60px 15px 120px;
}

.overview-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  padding-bottom: 8px;
  border-bottom: 2px dotted #00a67a;
}

.overview-title-plus {
  margin-top: 60px;
  margin-bottom: 28px;
}

.overview-image {
  width: 100%;
  height: 119px;
  object-fit: cover;
  margin: 20px 0;
}

.overview-note {
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: 20px;
}

.overview-text {
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 20px 0;
}

.overview-schedule {
  width: 100%;
  height: 87px;
  object-fit: cover;
  margin: 20px 0;
}

.other-courses {
  padding: 120px 0 60px;
}

.course-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.course-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 216px;
}

.course-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.course-item-title {
  text-align: center;
  color: #0284c7;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

.slash {
  display: flex;
  justify-content: center;
}

.slash p {
  position: relative;
  width: fit-content;
  text-align: center;
  font-weight: 500;
}

.slash p::before {
  content: "\\";
  position: absolute;
  left: -20px;
  bottom: 0;
  font-weight: 600;
}

.slash p::after {
  content: "/";
  position: absolute;
  right: -20px;
  bottom: 0;
  font-weight: 600;
}

.cta-buttons {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-buttons .contact-button-wrapper {
  position: relative;
  width: 580px;
  height: 120px;
}

.cta-buttons .contact-button {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-left: 50px;
  height: 120px;
  border-radius: 60px;
  box-shadow: 0px 2px 0px #509d6d;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.05) 49%,
      rgba(0, 0, 0, 0.1) 49%
    ),
    linear-gradient(0deg, rgba(97, 179, 128, 1) 0%, rgba(97, 179, 128, 1) 100%);
}

.cta-buttons .contact-text {
  top: 33px;
  left: 105px;
  text-shadow: 0px 1px 1px #00000033;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 36px;
  text-align: center;
  letter-spacing: 2.52px;
  line-height: 54px;
  white-space: nowrap;
}

.cta-buttons .contact-text::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  position: absolute;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}

.cta-buttons .character-image {
  object-fit: cover;
  width: 36px;
  height: auto;
}

.cta-buttons .trial-button-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 580px;
  height: 120px;
  border-radius: 60px;
  box-shadow: 0px 2px 0px #e0944f;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.05) 49%,
      rgba(0, 0, 0, 0.1) 49%
    ),
    linear-gradient(0deg, rgba(247, 164, 87, 1) 0%, rgba(247, 164, 87, 1) 100%);
}

.cta-buttons .trial-text-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  padding-left: 78px;
}

.cta-buttons .trial-button-wrapper::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  position: absolute;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}

.cta-buttons .trial-text {
  text-shadow: 0px 1px 1px #00000033;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 36px;
  text-align: center;
  letter-spacing: 4.32px;
  line-height: 54px;
  white-space: nowrap;
}

.cta-buttons .trial-subtitle {
  text-shadow: 0px 1px 1px #00000033;
  font-family: "Noto Sans JP-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 22px;
  text-align: center;
  letter-spacing: 2.64px;
  line-height: 33px;
  white-space: nowrap;
}

.course table {
  float: none;
}

.special-programs {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 120px;
}

.special-programs .special-programs-inner {
  max-width: 1000px;
  line-height: 1.6;
}

.special-programs .special-programs-inner .small-text {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 60px;
}

.special-programs .box_link a {
  border: 1px solid #eda06d;
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #eda06d;
  color: #ef5f10 !important;
  font-size: 13px;
}

.special-programs .box_link a span {
  background: url(../img/sprite_ico-sf5b8ff4055.png) no-repeat;
  background-position: 0 -324px;
}

.attraction-section-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.course .btn-link {
  padding-bottom: 40px;
}

.course .btn-link a {
  max-width: 400px;
  width: auto;
  border-radius: 25px;
  background: #eff3f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
  text-decoration: none;
  padding: 13px 30px 13px 20px;
  margin: 40px auto 0;
  position: relative;
}

.course .btn-link a::after {
  content: "\f054";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
}

.course .style_box .box .title_box,
.course .style_box .box .style_column_2 > p {
  font-size: 20px;
}

@media (max-width: 768px) {
  #main {
    padding-top: 80px;
    font-size: 16px;
  }

  .title-box {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .title-inner h2 {
    font-size: 24px;
  }

  .title-inner p {
    font-size: 14px;
  }

  .intro-inner {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .intro-inner .intro-title h2 {
    font-size: 24px;
  }

  .intro-inner .intro-description {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .cta-buttons {
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
    gap: 20px;
  }

  .cta-buttons .contact-button-wrapper,
  .cta-buttons .contact-button,
  .cta-buttons .trial-button-wrapper,
  .cta-buttons .trial-text-container {
    width: 345px;
    height: 70px;
    padding-left: 0;
    justify-content: center;
    gap: 4px;
  }

  .cta-buttons .contact-text,
  .cta-buttons .trial-text {
    font-size: 20px;
  }

  .cta-buttons .character-image {
    width: 22px;
  }

  .recommend-main-title {
    font-size: 18px;
  }

  .recommend-main-title .highlight {
    font-size: 24px;
  }

  .recommend-box {
    background-color: #f9ffe2;
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .recommend-list {
    gap: 8px;
  }

  .recommend-item {
    gap: 12px;
    align-items: flex-start;
  }

  .check-icon {
    width: 16px;
    height: 16px;
    margin-top: 4px;
  }

  .check-icon::after {
    font-size: 12px;
  }

  .attraction-card-title,
  .slash p {
    font-size: 20px;
  }

  .recommend-box {
    border-radius: 0;
  }

  .course-intro,
  .class-feature {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }

  .attraction-cards {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 24px;
  }

  .attraction-card {
    padding: 20px;
    gap: 16px;
  }

  .course-intro-title,
  .class-feature-title {
    font-size: 20px;
    margin-bottom: 12px;
    padding: 0;
  }

  .overview-title {
    font-size: 18px;
  }

  .special-programs .style_box .box {
    width: 100%;
    padding-bottom: 15px;
  }

  .special-programs .style_box .box ~ .box {
    margin-left: 0;
  }

  .special-programs .special-programs-inner .small-text {
    padding: 32px 20px 80px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .recommend-section {
    padding-bottom: 0;
  }

  .cta-section {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .class-features {
    gap: 28px;
  }

  .content-section {
    padding-bottom: 0;
  }

  .class-overview {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .overview-title-plus {
    margin-top: 40px;
  }

  .attraction-section {
    padding: 40px 0;
  }

  .other-courses {
    padding: 80px 0 40px;
  }

  .special-programs .special-programs-inner .small-text {
    margin-top: 0;
  }

  .special-programs .box_link a {
    border: none;
    box-shadow: none;
    background: none;
  }

  .special-programs {
    padding-bottom: 0;
  }

  .hero-section {
    padding: 0;
  }

  .course-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 8px;
    margin-top: 40px;
    padding: 0 10px;
  }

  .course-item {
    width: fit-content;
  }

  .course-item {
    border-right: 1px solid #ccc;
    padding-right: 8px;
  }

  .course-item:last-child {
    border-right: none;
  }

  .recommend-title {
    margin-bottom: 40px;
  }

  .course .style_box .box .title_box,
  .course .style_box .box .style_column_2 > p {
    font-size: 16px;
  }
}
