@charset "UTF-8";

:root {
  --main: #66cc00;
  --sub: #309915;
  --bg-op: rgba(48, 153, 21, .25);
  --blk: #2f3940;
}

.fa-solid,
.fa-regular {
  padding-right: .5rem;
}


.fa-solid,
.fa-regular {
  padding-right: .5rem;
}

#content {
  color: var(--blk);
}

.fa-bars {
  display: none;
}

.course_title h1 {
  display: none;
}

.wrap {
  width: 100%;
}

.wrap_inner {
  padding: 50px 0;
}

.wrap_inner h2 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--main);
}

.wrap_inner p {
  font-weight: normal;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--blk);
}

.wrap_inner li {
  margin-bottom: .75rem;
}

.wrap_inner small {
  font-weight: normal;
  margin-bottom: .75rem;
}

.intro_upbar {
  border-top: 2px solid var(--main);
  padding-top: .5rem;
}

.intro_zbtn {
  display: inline-block;
  padding: 5px 10px 3px;
  margin-right: 1rem;
  background-color: var(--main);
  color: #fff;
  font-weight: bold;
}

/*-----------------------------------
specialHero*/
.specialHero {
  text-align: center;
  background-color: var(--bg-op);
}

/*-----------------------------------
headline*/
.headline {
  position: relative;
  display: inline-block;
}

.headline:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 4px;
  background: var(--main);
  transition: all 0.5s;
}

.headline.isActive:after {
  width: 100%;
}

.catch-price {
  font-weight: normal;
}

.catch-price-cnt {
  font-weight: bold;
  font-size: 1.8rem;
  color: red;
}

/*-----------------------------------
notice*/
.notice {
  background-color: var(--bg-op);
}

#content .wrap.notice {
  width: 100%;
}

.notice li {
  display: block;
  margin-bottom: 1rem;
}

/*-----------------------------------
pltn_cv_btn*/
.pltn_cv_btn {
  width: 350px;
  margin: 2rem auto;
  font-weight: bold;
  margin-bottom: 3rem;
}

.pltn_cv_btn a,
.pltn_cv_btn span {
  display: block;
  box-sizing: border-box;
  padding: 7px 0 5px;
  width: 100%;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.5s 0s ease;
  text-align: center;
  border-radius: 100px;
  background: var(--main);
  border: 2px solid var(--main);
}

.pltn_cv_btn a:link,
.pltn_cv_btn a:visited {
  color: #fff;
}

.pltn_cv_btn a:hover,
.pltn_cv_btn a:active {
  background-color: #fff;
  color: var(--sub);
  text-decoration: none;
  border: 2px solid var(--main);
}

.fa-up-right-from-square {
  font-size: 1.4rem;
  padding-left: 10px;
}

.caution {
  text-align: center;
  color: var(--blk);
}

@media screen and (min-width:769px) {
  .cv_btn_flex {
    display: flex;
    justify-content: space-between;
  }
}

/*-----------------------------------
sample*/

@media screen and (min-width:769px) {

  .wrap_inner {
    width: 920px;
    margin: 0 auto 30px;
  }
}

@media screen and (max-width:768px) {
  #header .nav h1 {
    display: none;
  }

  .wrap_inner {
    margin: 0 auto;
    width: 90%;
  }
}

/* modal内コンテンツ */
.plan-section {
  margin-bottom: 30px;
}

.plan-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid #66cc00;
}

.plan-subtitle {
  font-weight: bold;
  margin-bottom: 8px;
  color: #6c0;
  font-size: 1.6rem;
  ;
}

.plan-sampleBox {
  box-sizing: border-box;
  border-left: 12px solid var(--main);
  padding-left: 24px;
}

.plan-text {
  margin-bottom: 32px;
}

.plan-list {
  margin-bottom: 16px;
}

.plan-listItem {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.plan-list.point {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.point .plan-listItem {
  box-sizing: border-box;
  width: 20%;
  min-width: 150px;
  padding: 10px;
  margin: 0 0 16px;
  border-radius: 10px;
  list-style-type: none;
  border: 1px dotted var(--bg-op);
}

.point .plan-listItem .fa-solid {
  font-size: 5rem;
  color: #D1D61D;
  display: flex;
  justify-content: space-around;
  padding: 5px 0 0 0;
  width: 100%;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  font-size: 1.6rem;
}

.plan-table th {
  background: #f8f8f8;
  padding: 12px 15px;
  text-align: left;
  font-weight: bold;
  color: #666;
  width: 25%;
  border-bottom: 2px solid #e0e0e0;
}

.plan-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  text-align: left;
}

.price-highlight {
  font-size: 1.6rem;
  font-weight: bold;
  color: #66cc00;
}

/* CTAボタン */
a.cta-button {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background: #66cc00;
  color: white;
  padding: 18px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  position: relative;
}

.cta-button:hover {
  background: #5bb800;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 204, 0, 0.3);
}

.cta-button::after {
  content: '›';
  position: absolute;
  right: 20px;
  font-size: 20px;
  top: 15px;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f0f0;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: #666;
}

.close-button:hover {
  background: #e0e0e0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {

  .modal-course-image {
    width: 30%;
  }

  .modal-course-title {
    font-size: 1.8rem;
  }

  .modal-course-subtitle {
    font-size: 14px;
  }

  .modal-content {
    margin: 0;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-description {
    font-size: 1.4rwm;
  }

  .plan-table {
    font-size: 14px;
  }

  .plan-table th,
  .plan-table td {
    padding: 6px;
  }

  .plan-table th {
    box-sizing: border-box;
    width: 12%;
  }

  .plan-table td {
    box-sizing: border-box;
    width: 22%;
  }

  .price-highlight {
    font-size: 1rem;
    ;
  }

  .cta-button {
    box-sizing: border-box;
    font-size: 18px;
    padding: 16px 25px;
  }

  .cta-button::after {
    top: 15px;
  }
}