.plan_top{
  margin-bottom: 50px;
}

.plan_ttl{
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
}

.plan_ttl span{
  font-size: 1.6rem;
  font-weight: 400;
}

.scene-desc{
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 50px;
}

.plan_scene_img-main {
  width: 100%;
  margin-bottom: 50px;
}

.plan_scene_img-main img{
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

@media (max-width: 768px) {
  .plan_ttl{
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
  }

  .plan_ttl span{
    font-size: 1.4rem;
    font-weight: 400;
  }

  .scene-desc{
    text-align: left;
  }
}

/* プラン詳細 */
.course_tab_wrapper{
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 12px;
}

.course_tabs{
  display: flex;
}

.course_tab{
  width: 50%;
  font-size: 2rem;
  padding: 8px 24px;
  background: #eee;
  border: none;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  font-weight: bold;
}

.course_tab.active{
  background: #F3B02B;
  color: #fff;
}

.course_content{
  display: none;
  padding: 50px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.course_content.active {
  display: block;
}

.course_content .img_wrapper{
  width: 100%;
}

.course_content .img_wrapper img{
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.course_content h3{
  font-size:  1.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.course_content h3 span{
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .course_tab{
    font-size: 1.4rem;
  }
  
  .course_content{
    padding: 25px 15px;
  }
	
  .course_content .img_wrapper{
	 margin: 0 auto 20px;
   }
}

.plan_includes{
  background: #EEEEEE;
  border-radius: 5px;
  margin: 30px 0;
  padding: 25px;
}

.plan_includes p{
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.includes_list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.includes_list .includes_item{
  width: 45%;
  max-width: 140px;
}

.includes_list .includes_item p{
  margin-bottom: 0;
}

.includes_list .includes_item img{
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .plan_includes{
    padding: 15px 10px;
  }
  
  .includes_list .includes_item{
    max-width: 110px;
  }

  .includes_list .includes_item p{
    font-size: 1.2rem;
  }
}

.plan_plus .flex_wrapper{
  justify-content: space-between;
  margin-bottom: 30px;
}

.plan_plus .flex_wrapper p span{
  font-size: 1.4rem;
}

.plan_plus .flex_wrapper .left{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 45%;
  box-shadow: 0 0 0 4px #61BB7C inset;
  border-radius: 5px;
  padding: 15px 10px;
  text-align: center;
}

.plan_plus .flex_wrapper .right{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 45%;
  box-shadow: 0 0 0 4px #23B2BA inset;
  border-radius: 5px;
  padding: 15px 10px;
  text-align: center;
}

.plan_plus_ttl{
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.plan_more a{
  display: inline-block;
  color: #23B2BA;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
  border-bottom: 1px solid #23B2BA;
  letter-spacing: 0.1em;
  margin-top: 5px;
  padding: 2px 10px 2px 0;
  transition: color .2s;
}

.plan_more .arrow {
  margin-left: 4px;
}

.plan_more a:hover {
  color: #F3B02B;
  border-color: #F3B02B;
}

.plan_option{
  background: #eee;
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 15px;
}

.plan_option p{
  font-size: 1.8rem;
  text-align: center;
}

.plan_note{
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .plan_plus .flex_wrapper{
    flex-direction: column;
    margin-bottom: 15px;
  }
	
  .plan_plus_ttl{
    font-size: 1.6rem;
  }

  .plan_plus .flex_wrapper .left,
  .plan_plus .flex_wrapper .right{
    width: 100%;
    padding: 15px 0;
    margin-bottom: 15px;
  }
	
  .plan_option p{
    font-size: 1.6rem;
    text-align: center;
  }

  .plan_plus .flex_wrapper{
    align-items: center;
  }
}

.plan_wrapper{
  margin-top: 70px;
}

/* Swiper用（Swiper.js本体のCSSも必須！） */
.swiper3 {
  width: 100%;
  margin: 0 auto;
}

.swiper3 .swiper-wrapper{
  align-items: center;
}

.swiper3 .swiper-slide {
  display: flex;
  justify-content: center;
  /* スライド間の余白はJSのspaceBetweenで調整 */
}

/* プランカード */
.plan_card {
  width: 100%;
  position: relative;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  transition: box-shadow .2s, transform .2s;
}

.plan_card.recommend {
  border: none;
  box-shadow: 0 0 0 6px #F3B02A inset;
  z-index: 2;
}

.plan_card_badge--inline {
  display: inline-block;
  background: #F3B02A;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 4px 18px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  margin-top: 0;
}

.plan_card_header {
  text-align: center;
  margin-bottom: 10px;
}

.plan_card_title_ja {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.plan_card_img{
  width: 95%;
  margin: 0 auto;
}

.plan_card_img img{
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.plan_card_desc {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: normal;
}

.plan_card_price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 4px;
}
.plan_card_price span {
  font-size: 1.2rem;
}

.plan_card_cut {
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 14px;
}

.plan_card_total_label {
  color: #a48c5d;
  margin-bottom: 0;
  font-size: 1.4rem;
  margin-top: 8px;
  margin-bottom: 8px;
  font-weight: 500;
}

.plan_card_total {
  width: 95%;	
  font-size: 1.6rem;
  font-weight: bold;
  color: #C18B33;
  background: #fff6d4;
  border-radius: 6px;
  margin: 4px 0 10px 0;
  padding: 8px 0;
  text-align: center;
}

.plan_card_total span {
  font-size: 1.2rem;
}

.swiper3 .swiper-button-next,
.swiper3 .swiper-button-prev {
  color: #EE781D;
  top: 55%;
  transform: translateY(-50%);
}
.swiper3 .swiper-button-next{
  right: 0;
}

.swiper3 .swiper-button-prev{
  left: 0;
}

@media (min-width: 768px) {
  .swiper3 .swiper-button-next,
  .swiper3 .swiper-button-prev{
    display: none;
  }
}

@media (max-width: 768px) {
  .plan_card {
    min-width: 220px;
    max-width: 80vw;
    padding: 20px 12px 18px 12px;
  }

  .plan_card_title_ja{
    font-size: 1.5rem;
  }

  .plan_card_desc{
    font-size: 1.3rem;
  }
}

/* 追加 */

@media (min-width: 768px) {
	.plan_base_top{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.plan_base_top .img_wrapper{
		width: 48%;
	}

	.plan_base_top .right{
		width: 48%;
	}
}