@charset "UTF-8";
/* CSS Document */
/*文字色*/
.pink{
	color:#EB557C;
}
main{
	padding-bottom: 6rem;
}
@media screen and (min-width: 500px) {
    body {
        background-image: url("../../../img/body_bg.webp");
        background-color: #f1f1f1;
        background-size: 20%;
        background-repeat: repeat;
    }
}
#fv div{
	width: 88%;
	margin: 1.5rem auto;
}
#fv p{
	background: red;
	color: #ffffff;
	padding: 0.5rem;
  font-size: 1.4rem;
	margin-bottom: 0.5rem;
}
#fv p span{
	color: yellow;
}
/* アコーディオン */
.accordion {
  margin-inline: auto;
  margin-top: 30px;
  position: relative;
  width: 95%;
}
.accordion-title {
  color:#EB557C;
  cursor: pointer;
  font-size: 16px;
  padding: 4% 20px;
}
.accordion-title .day {
    width: 28%;
    display: inline-block;
}
.accordion-title .black {
    width: 72%;
    color:#000;
}
.accordion-content {
  max-height: 0;
	overflow: hidden;
  transition: max-height 0.6s ease; 
/*  padding: 20px 10px;*/
}
.accordion-content.open {
  max-height: 2500px;
	padding: 5% 2%;
}
.accordion-content p {
  font-size: 16px;
  line-height: 1.5;
}

/* 矢印 */
.accordion-title {
  position: relative;
	text-align: start;
	font-weight: 600;
}
.accordion-title::after {
  border-right: solid 2px #EB557C;
  border-top: solid 2px #EB557C;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 10px;
}
.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}
.js-accordion-title {
  cursor: pointer;
  position: relative;
  z-index: 10;
  touch-action: manipulation; /* タップ誤作動防止 */
  -webkit-tap-highlight-color: transparent; /* 青いハイライト無効 */
}

/* タイトルの背景色 */
.swiper-day1to3{
	background: #FFF1BF;
}
.swiper-day1to3_inner{
	background: #FFF8E0;
}
.swiper-day4to7{
	background: #C4F2EA;
}
.swiper-day4to7_inner{
	background: #E0F8F4;
}
.swiper-day8to11{
	background: #B8DCFF;
}
.swiper-day8to11_inner{
	background: #DEEFFF;
}
.swiper-day12to21{
	background: #FFD9EB;
}
.swiper-day12to21_inner{
	background: #FFEFF7;
}
.swiper-day22to28{
	background: #FFCEBA;
}
.swiper-day22to28_inner{
	background: #FFEBE3;
}

/* Swiper全体の設定 */
.swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* Swiperのラッパーは縦積み */
.swiper-wrapper {
  display: flex;
  flex-direction: row;
}

.day-swiper {
  width: 100%;
  overflow: visible; /* ← これが大事 */
}
/* スライド個別 */
.swiper-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-shadow: 0 4px 4px rgba(0,0,0,0.2);
	min-width: 240px;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  color: #fff;
    background: #EB557C;
    padding: 1.5%;
    border-radius: 1.5rem;
	font-weight: bold;
}
.swiper-slide.swiper-slide-active {
    margin-right: 0;
}

 .swiper-horizontal .swiper-button-next,
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev {
  margin-left: 0;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 65%);
}
/* 左右の位置調整 */
.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}
.day-block {
    display: flex;
    align-items: center;
		margin-bottom: 2rem;
}

.day-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.day-label {
  flex: 0 0 45px;
  font-weight: bold;
  text-align: left;
  color: #EB557C;
	margin-right: 2%;
	font-size: 1.2rem;
}

.day-slides {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.day-slides .swiper-slide {
  flex: 0 0 220px;
  overflow: hidden;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .2);
}

.day-slides .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.text_area {
  margin: 1rem 0;
}

.lesson_box{
	background: #fff;
	border:1px solid #EB557C;
	padding: 3% 0;
	margin: 0.5rem 0;
}

/*モーダル*/
.modal {
	z-index: 9999 !important;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
	max-width: 500px;
  left: 50%;
  transform: translateX(-50%);
}

.modal .inner {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 10px;
  display: block;
  width: 95%;
  height: 520px;
  border-radius: 5px;
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #333;
  font-size: 1.5rem;
  animation: fadeInAnimation 200ms ease-out;
}
.ribbon {
    top: 24%;
    position: absolute;
}
@media screen and (min-width: 500px) {
  .modal .inner  {
    height: 660px;
  }
}
.modal .inner p{
	margin: 2% 0;
}
.modal .inner small{
	margin-bottom: 3%;
}
.modal .inner .hashtug{
	padding: 3% 5%;
	background: #fff;
	border:solid 1px #000;
	border-radius: 10px;
	margin: -7% 0 0;
	z-index: 20000;
}
@media screen and (min-width: 500px) {
  .modal .inner .hashtug {
    margin: -8% 0 0;
}
}
button:hover{
  opacity: 0.8;
}
@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*モーダル中身の調整*/
.certificate{
	padding: 0 20%;
	margin: 2% 0;
	z-index: 20000;
}
.certificate_flag{
	padding: 0 12%;
	position: relative;
  top: -4rem;
	transform: rotate(-5deg);
}
@media screen and (min-width: 500px) {
  .certificate_flag{
	top: -5rem;
}
}
.questionnaire_btn{
	padding: 0 10%;
}

/*モーダル捩るボタン*/
.modal .modal-close {
  position: absolute;
  top: 45px;
  right: 15px;
  background: #fff;
	padding: 1%;
	border-radius: 3rem;
  border: none;
  font-size: 3rem;
  color: #000;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
}
@media screen and (min-width: 500px) {
  .modal .modal-close{
	top: 80px;
}
	}
.modal .modal-close:hover {
  opacity: 0.7;
}

/*追従ボタン*/
#fixed-btn {
  position: fixed;
	display: flex;
	justify-content: space-around;
    z-index: 100000;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
		color: #fff;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 
ease, visibility 0.3s 
ease;
}
#fixed-btn.active {
    opacity: 1;
    visibility: visible;
}
.btn_video,.btn_live{
	width: 50%;
	padding: 1.5rem 0;
  font-size: 1.4rem;
	font-weight: 600;
}
.btn_video{
	background-image: linear-gradient(90deg, #ed6ab2 0%, #aa62c3);
	width: 50%;
}
.btn_live{
	background-image: linear-gradient(90deg, #2eb7e0 0%, #00a29a);
}
.cta_btn{
	text-decoration: none;
	position: relative;
}
.cta_btn::before,
.cta_btn::after{
	content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -20%;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.cta_btn::before {
  transform: rotate(45deg);
}
.cta_btn::after {
  transform: rotate(-45deg);
}
.btn_fin{
	width: 85%;
	margin: 0 auto;
	display: block;
}