@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=M+PLUS+1p&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho&display=swap');

html{
	font-size: 10px;
}
body {
    font-size: 1rem;
    color: #000;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
	margin: 0;
	padding: 0;
}
img{
	width: 100%;
}
ul{
	list-style: none;
}
figure {
	margin: 0px;
}
a{
	text-decoration: none;
	color: #333;
	display: block;
}
p{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
.contents {
    position: relative;
    overflow: hidden;
    background-repeat: repeat-y;
    background-size: contain;
    background: #E5E4E6;
    z-index: 2;
}
.contents .main_vi{
	background: linear-gradient(white, #E5E4E6);
	position: relative;
}
/*メインビジュアルアニメーション*/
.reveal {
	display: inline-block;
    animation: revealFromLeft 1s ease-out forwards;
    clip-path: inset(0 100% 0 0); /* 初期状態：右全部隠す */
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 80%);
	max-width: 179px;
	animation-delay: 0s;
}
@keyframes revealFromLeft {
	to {
		clip-path: inset(0 0 0 0); /* 最終状態：全て見える */
	}
}
.vi_txt2.reveal {
	display: inline-block;
    animation: revealFromLeft2 0.5s ease-out forwards;
    clip-path: inset(0 100% 0 0); /* 初期状態：右全部隠す */
	position: absolute;
	top: auto;
	bottom: 50%;
    left: 0;
    transform: translate(9%, 130%);
	max-width: 219px;
	z-index: 1;
	animation-delay: 1s;
}
@keyframes revealFromLeft2 {
	to {
		clip-path: inset(0 0 0 0); /* 最終状態：全て見える */
	}
}
.diagonal-reveal {
  	width: 100%;
  	opacity: 0;
  	animation: fadeIn 3s ease-out forwards;
	animation-delay: 2s;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/*.vi_il1 {
  	position: absolute;
  	top: 0;
  	left: 0;
  	max-width: 113px;
  	transform: translate(30%, 55%);
  	opacity: 0;
  	animation: slideUpAnim 1s ease forwards;
	animation-delay: 3s;
}
@keyframes slideUpAnim {
  from {
	  opacity: 0;
	  transform: translate(30%, 75%);
  }
  to {
	  opacity: 1;
	  transform: translate(30%, 55%);
  }
}*/
.vi_il1 {
  position: absolute;
  top: 0%;
  left: 18%;
  max-width: 113px;
  opacity: 0;
  transform: translate(-50%, 40%);
  animation: slideUpAnim 1s ease forwards;
  animation-delay: 3s;
}

@keyframes slideUpAnim {
  from {
    opacity: 0;
    top: 5%; /* アニメーションで上に移動する */
  }
  to {
    opacity: 1;
    top: 0%;
  }
}

/*.vi_il2 {
  	position: absolute;
  	bottom: 0;
  	right: 0;
  	max-width: 221px;
  	transform: translate(0%, -33%);
  	opacity: 0;
  	animation: slideUpAnim2 1s ease forwards;
	animation-delay: 3s;
}

@keyframes slideUpAnim2 {
  from {
	  opacity: 0;
	  transform: translate(0%, 3%);
  }
  to {
	  opacity: 1;
	  transform: translate(0%, -13%);
  }
}*/
.vi_il2 {
  position: absolute;
  bottom: 13%;
  right: 0;
  max-width: 221px;
  opacity: 0;
  transform: translateY(0);
  animation: slideUpAnim2 1s ease forwards;
  animation-delay: 3s;
}

@keyframes slideUpAnim2 {
  from {
    opacity: 0;
    bottom: 3%;
  }
  to {
    opacity: 1;
    bottom: 13%;
  }
}

/*.vi_il3 {
  	position: absolute;
  	bottom: 0;
  	left: 0;
  	max-width: 193px;
  	transform: translate(10%, -33%);
  	opacity: 0;
  	animation: slideUpAnim3 1s ease forwards;
	animation-delay: 3s;
	z-index: 2;
}

@keyframes slideUpAnim3 {
  from {
	  opacity: 0;
	  transform: translate(10%, -13%);
  }
  to {
	  opacity: 1;
	  transform: translate(10%, -33%);
  }
}*/
.vi_il3 {
  position: absolute;
  bottom: 0%;
  left: 4%;
  max-width: 193px;
  opacity: 0;
  transform: translate(0, -15%); /* 初期化 */
  animation: slideUpAnim3 1s ease forwards;
  animation-delay: 3s;
  z-index: 2;
}

@keyframes slideUpAnim3 {
  from {
    opacity: 0;
    bottom: -5%; /* 下から出てくる */
  }
  to {
    opacity: 1;
    bottom: 4%;
  }
}

.contents .cnt .cnt_btn{
	width: 98%;
	margin-bottom: 64px;
}
.contents .cnt .cnt_btn a{
	background: #000;
	color: #fff;
	box-shadow: 10px 10px 0px #DB79FF;
	padding: 25px 25px;
	text-align: center;
	margin-bottom: 32px;
}
.contents .cnt .cnt_btn a.open_c{
	box-shadow: 10px 10px 0px #DB79FF;
}
.contents .cnt .cnt_btn a.line{
	box-shadow: 10px 10px 0px #3BD14D;
}
.contents .cnt .cnt_btn a.materials{
	box-shadow: 10px 10px 0px #009DFF;
	margin-bottom: 0px;
}
.contents .cnt .cnt_btn a p{
	font-size: clamp(1.8rem, 1vw + 0.5rem, 1.8rem);
	line-height: 1;
	font-weight: bold;
	position: relative;
}
.contents .cnt .cnt_btn a p::after{
	content: "";
	width: 22px;
	height: 7px;
	background: url("../img/common/arrow.png");
	background-size: 100%;
	position: absolute;
	top:50%;
	right: 0;
	transform: translate(0,-50%);
}


/*cnt1*/
.contents .cnt1{
	padding: 20px 24px;
	background: url("../img/common/bg1.png");
	background-size: cover;
	background-position: center;
}
.contents .cnt1 .cnt1_img{
	margin: 32px 0px 82px;
}
.contents .cnt1 .cnt1_copy{
	position: relative;
}
.contents .cnt1 .cnt1_copy::after{
	content: "";
	width: 4px;
	height: 28px;
	background: url("../img/common/dot.png");
	background-size: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,44px);
}
.contents .cnt1 .cnt1_copy p{
	text-align: center;
	font-size: 1.6rem;
	line-height: 34px;
}
.contents .cnt1 .cnt1_copy p:first-child{
	font-size: 2.2rem;
	line-height: 34px;
	font-weight: bold;
	margin-bottom: 24px;
}

/*cnt2*/
.contents .cnt2{
	padding-top: 25px;
}
.contents .cnt2 .cnt2_cnt{
	background-image: url("../img/common/bg2.png");
	background-color: #fff;
	background-size: 100%;
	background-position: top;
	margin-top: -67px;
	padding-bottom: 60px;
}
.contents .cnt2 .cnt2_cnt .cnt2_ttl{
	margin-top: -90px;
	margin-bottom: 20px;
}
.contents .cnt2 .cnt2_cnt .cnt2_copy{
	padding-bottom: 24px;
}
.contents .cnt2 .cnt2_cnt .cnt2_copy p{
	text-align: center;
	font-size: 1.6rem;
	line-height: 32px;
}
.contents .cnt2 .cnt2_cnt .cnt2_copy p:first-child{
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 34px;
	margin-bottom: 24px;
}
.contents .cnt2 .cnt2_cnt .cnt2_img{
	padding: 0px 24px;
}
.contents .cnt2 .cnt2_cnt .cnt2_img .img{
	padding-bottom: 24px;
}
.contents .cnt2 .cnt2_cnt .cnt2_img .img p{
	margin-top: 16px;
	font-size: 1.8rem;
	line-height: 30px;
	font-weight: bold;
}

/*cnt3*/
.contents .cnt3{
	padding: 79px 0px;
	background: url("../img/common/bg3.png");
	background-size: cover;
	background-position: center;
}
.contents .cnt3 .cnt3_copy p{
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 34px;
	text-align: center;
	margin-top: 16px;
	margin-bottom: 35px;
}
/*スライド*/
.slide_swiper {
  	width: 100%;
  	overflow: hidden;
	padding-bottom: 30px;
}
.swiper-wrapper {
  	display: flex;
}
.swiper-slide {
  	flex-shrink: 0;
  	max-width: 85%;
  	border-radius: 10px;
  	overflow: hidden;
}
.swiper-slide img {
  	width: 100%;
  	display: block;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
	display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-pagination-bullet{
	width: 10px;
	height: 10px;
}
.swiper-pagination-bullet-active{
	background: #DB79FF;
	width: 12px;
	height: 12px;
}

.contents .cnt3_1 .slick-slide {
  	background: rgba(255,255,255,0.5);
  	border: solid 1px #fff;
  	border-radius: 24px;
	height: 450px;
}

.contents .cnt3_1 .slick-slide .slide_txt {
  	padding: 16px 27px 28px;
}

.contents .cnt3_1 .slick-slide .slide_txt p {
  	font-size: 1.5rem;
  	line-height: 24px;
}
.contents .cnt3_1 .slick-slide .slide_txt .teacher p.name {
  	font-size: 1.8rem;
  	font-weight: bold;
  	line-height: 32px;
  	margin: 16px 0 0;
}
.contents .cnt3_1 .slick-slide .slide_txt .teacher p.name span {
  	font-size: 1.5rem;
}
.contents .cnt3_1 .slick-slide .slide_txt .teacher p {
  	font-size: 1.2rem;
  	line-height: 20px;
}
.contents .cnt3_1 .slick-slide .slide_txt .teacher p:last-child {
  	margin-top: 8px;
}
.your-slider,.your-slider2,.your-slider3 {
  	margin-left: 20px;
}
.your-slider .slick-list,.your-slider2 .slick-list,.your-slider3 .slick-list {
  	/*overflow: visible;*/
  	padding-right: 60px; /* 次のスライドが見える分 */
}
.your-slider .slick-slide,.your-slider2 .slick-slide,.your-slider3 .slick-slide {
  	margin-right: 20px;   /* スライド間の余白 */
}
.your-slider .slick-slide > div,.your-slider2 .slick-slide > div,.your-slider3 .slick-slide > div {
}
.slick-dots{
	bottom: auto;
}
.slick-dots-container .slick-dots li button ,.slick-dots-container2 .slick-dots li button,.slick-dots-container3 .slick-dots li button  {
  	width: 10px;
  	height: 10px;
  	border-radius: 50%;
  	background: #ccc;  /* アクティブじゃない色 */
  	padding: 0;
  	transition: all 0.3s ease;
  	border: none;
}
.slick-dots-container .slick-dots li.slick-active button,.slick-dots-container2 .slick-dots li.slick-active button,.slick-dots-container3 .slick-dots li.slick-active button {
  	width: 12px;
  	height: 12px;
  	background: #DB79FF;  /* アクティブの色 */
}
.slick-dots li button:before{
	display: none;
}

.contents .cnt3 .cnt3_2{
	padding: 84px 0px;
}
.contents .cnt3 .cnt3_2 .cnt3_ttl{
	padding: 0px 24px;
}
.contents .cnt3 .cnt3_2 .cnt3_ttl2{
	max-width: 316px;
	margin: 0 auto 32px;
}
.contents .cnt3 .cnt3_2 .cnt3_ttl img:first-child{
	margin-bottom: 28px;
}
.contents .cnt3 .cnt3_2 .slide_swiper{
}
.contents .cnt3 .cnt3_2 .swiper-slide{
	background: none;
	border: none;
	height: auto;
}
.contents .cnt3 .cnt3_3{
	padding: 0px 0px 80px;
}
.contents .cnt3 .cnt3_3 .your-slider3{
	margin-top: 16px;
}
.contents .cnt3 .cnt3_3 .slick-slide{
	padding: 24px;
	max-width: 286px;
	background: rgba(255,255,255,0.5);
  	border: solid 1px #fff;
	border-radius: 14px;
	position: relative;
	height: 400px;
}
.contents .cnt3_3 .slick-slide .slide_txt p {
  	font-size: 1.5rem;
  	line-height: 24px;
}
.contents .cnt3_3 .slick-slide .slide_txt .teacher p.name {
  	font-size: 1.8rem;
  	font-weight: bold;
  	line-height: 32px;
  	margin: 16px 0 0;
}
.contents .cnt3_3 .slick-slide .slide_txt .teacher p.name span {
  	font-size: 1.5rem;
}
.contents .cnt3_3 .slick-slide .slide_txt .teacher p {
  	font-size: 1.2rem;
  	line-height: 20px;
}
.contents .cnt3_3 .slick-slide .slide_txt .teacher p:last-child {
  	margin-top: 8px;
}
.contents .cnt3 .cnt3_3 .slick-track > div::after{
	content: "";
	width: 142px;
	height: 116px;
	background: url("../img/contents/slide3_img3.png");
	background-size: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
}
.contents .cnt3 .cnt3_3 .slick-track .slide3::after{
	background: url("../img/contents/slide3_img4.png");
	background-size: 100%;
}
.contents .cnt3 .cnt3_4{
	padding: 0px 24px;
}
.contents .cnt3 .cnt3_4 .cnt3_ttl{
	margin-bottom: 16px;
	max-width: 270px;
	margin: 0 auto 16px;
}
.contents .cnt3 .cnt3_4 .cnt_btn{
	margin-bottom: 0px;
}

/*cnt4*/
.cnt4{
	background-color: #fff;
	padding: 101px 24px 80px;
	background-image: url("../img/common/bg4.png");
	background-position: center;
	background-size: 100%;
}
.cnt4 .cnt4_ttl{
	margin-bottom: 16px;
}
.contents .cnt4 .cnt4_copy p{
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 34px;
	text-align: center;
	margin-bottom: 24px;
}
.contents .cnt4 .cnt4_copy2{
	margin:16px 0px 24px;
}
.contents .cnt4 .cnt4_copy2 p{
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 32px;
	text-align: center;
}
.contents .cnt4 .cnt4_copy2 p span{
	color: #DB79FF;
}
.contents .cnt4 .column{
	display: flex;
	flex-wrap:wrap;
	gap:10px;
}
.contents .cnt4 .column .col{
	width: calc(100%/2 - 5px);
}
.contents .cnt4 .column .col img{
	box-shadow: 0px 0px 15px #E6E6E6;
    border-radius: 100px;
}

/*cnt5*/
.cnt5{
	padding: 101px 24px 80px;
	position: relative;
}
.cnt5::before{
	content: "";
	width: 152px;
	height: 150px;
	background: url("../img/common/bg5_t.png");
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.cnt5::after{
	content: "";
	width: 100%;
	height: 117px;
	background: url("../img/common/bg5_b.png");
	background-size: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.cnt5 .cnt5_ttl{
	margin-bottom: 16px;
}
.contents .cnt5 .cnt5_copy p{
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 34px;
	text-align: center;
	margin-bottom: 24px;
}
.contents .cnt5 .qa .qa_cnt{
	background: rgba(255,255,255,0.5);
  	border: solid 1px #fff;
	border-radius: 14px;
	padding: 16px 18px;
	margin-bottom: 16px;
}
.contents .cnt5 .qa .qa_cnt:last-child{
	margin-bottom: 0px;
}
.contents .cnt5 .qa .qa_cnt .q{
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}
.contents .cnt5 .qa .qa_cnt .q::after{
	content: "";
	width: 16px;
	height: 11px;
	background: url("../img/contents/qa_arrow.png");
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	transition: 0.3s;
}
.contents .cnt5 .qa .qa_cnt .q.open::after {
	transform: translate(0, -50%) rotate(180deg);
}
.contents .cnt5 .qa .qa_cnt .q .q_icon{
	max-width: 38px;
}
.contents .cnt5 .qa .qa_cnt .q .q_txt{
	padding: 0px 16px;
}
.contents .cnt5 .qa .qa_cnt .q .q_txt p{
	font-size: 1.6rem;
	line-height: 28px;
	font-weight: 500;
}
.contents .cnt5 .qa .qa_cnt .a{
	padding-top: 16px;
	margin-top: 16px;
	border-top: solid 1px #B9B9B9;
	display: none;
}
.contents .cnt5 .qa .qa_cnt .a .a_ttl{
	display: flex;
	position: relative;
	align-items: center;
	margin-bottom: 8px;
}
.contents .cnt5 .qa .qa_cnt .a .a_ttl .a_icon{
	max-width: 38px;
}
.contents .cnt5 .qa .qa_cnt .a .a_ttl .a_ttl_txt{
	padding-left: 16px;
}
.contents .cnt5 .qa .qa_cnt .a .a_ttl .a_ttl_txt p{
	font-size: 1.6rem;
	line-height: 28px;
	font-weight: 500;
}
.contents .cnt5 .qa .qa_cnt .a .a_txt p{
	font-size: 1.4rem;
	line-height: 24px;
}

/*cnt7*/
.contents .cnt7{
	padding: 79px 24px;
	background-color: #fff;
	background-image: url("../img/common/bg6.png");
	background-size: 100%;
	background-position: center;
}
.contents .cnt7 .cnt_btn{
	margin-bottom: 0px;
}

/*footer*/
.footer{
	background: #000000;
	padding: 80px 24px 16px;
	color: #fff;
}
.footer .map{
	margin-bottom: 24px;
}
.footer .map iframe{
	width: 100%;
	height: 376px;
}
.footer .footer_txt .sub_name{
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}
.footer .footer_txt .sub_name p{
	font-size: 1.6rem;
	line-height: 20px;
}
.footer .footer_txt .sub_name p:first-child{
	font-size: 1.2rem;
	padding-right: 5px;
	line-height: 20px;
}
.footer .footer_txt p.name{
	font-size: 24px;
	font-weight: bold;
	line-height: 20px;
	margin-bottom: 16px;
}
.footer .footer_txt .address{
	font-size: 1.4rem;
	line-height: 24px;
	margin-bottom: 16px;
}
.footer .footer_txt .tel{
	font-size: 1.4rem;
	line-height: 24px;
	margin-bottom: 32px;
}
.footer .footer_txt .tel .tel_no{
	display: flex;
	align-items: center;
	margin-top: 8px;
}
.footer .footer_txt .tel .tel_no img{
	max-width: 32px;
	margin-right: 8px;
}
.footer .footer_txt .tel .tel_no p{
	color: #fff;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 32px;
}
.contents .footer .cnt_btn{
	margin-bottom: 32px;
}
.contents .footer .cnt_btn a{
	background: #fff;
	color: #000;
}
.contents .footer .cnt_btn a p::after{
	content: "";
	background: url("../img/common/f_arrow.png");
	background-size: 100%;
}
.footer p.copyright{
	margin-top: 32px;
	font-size: 1.2rem;
	line-height: 20px;
}
.open_fixd{
	display: none;
}
.fadein {
  	opacity: 0;
  	transform: translateY(30px);
  	transition: all 0.6s ease;
}

.fadein.show {
 	opacity: 1;
  	transform: translateY(0);
}
@media screen and (min-width: 1200px) {
	.header{
		display: none;
	}
}
@media screen and (min-width: 1024px) {
	a:hover{
		opacity: 0.8;
	}
	.contents{
		position: relative;
	}
}
@media screen and (min-width: 769px) {
	.Fixed{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: repeat;
        background-size: cover;
		background-position: center;
        background-image: url("../img/common/bg_pc.png");
    }
	.Fixed__title{
        position: absolute;
		top: 10px;
        left: 2vw;
        max-width: 280px;
        mix-blend-mode: multiply;
    }
	.Fixed__nav {
		position: absolute;
		left: 2vw;
		transform: none;
		mix-blend-mode: multiply;
	}
	.Fixed__nav ul li{
		font-size: clamp(1.2rem, 1vw + 0.5rem, 2.4rem);
		position: relative;
		padding-left: 30px;
	}
	.Fixed__nav ul li p{
		margin: 3vh 0px;
	}
	.Fixed__nav ul li a:hover{
		opacity: 0.8;
	}
	.Fixed__nav ul li::before{
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0,-50%);
		width: 12px;
		height: 13px;
		background: url("../img/common/nav_arrow.png");
		background-size: 100%;
		font-size: clamp(1rem, 1vw + 0.5rem, 1.8rem);
	}
	.Fixed__bnr{
        position: absolute;
        bottom: 0;
        right: 0;
        max-width: 340px;
        z-index: 2;
        transform: translate(-2vw, -4vh);
        z-index: 2;
    }
	.Fixed__bnr .column{
		display: flex;
		flex-wrap: wrap;
		gap:10px;
		justify-content: space-between;
		margin-bottom: 20px;
	}
	.Fixed__bnr .column .col{
		width: calc(100% / 3 - 10px);
	}
	.Fixed__bnr .column .col img{
		width: 100%;
	}
	.Fixed__bnr .bnr2{
		max-width: 510px;
	}
	.Fixed__bnr .bnr2 img{
		width: 100%;
	}
	
    .contents {
        width:430px;
        margin: auto;
        -webkit-box-shadow: 0 0 10px 3px rgba(171, 135, 68, 0.5);
        box-shadow: 0 0 10px 3px rgba(171, 135, 68, 0.5);
    }
}

/*1200*/
@media screen and (max-width: 1200px) {
	.Fixed__title,.Fixed__nav,.Fixed__bnr{
		display: none;
	}
	.header{
		background: #fff;
		position: fixed;
		display: block;
		width: 430px;
		z-index: 10;
	}
	.header .head{
		position: relative;
		padding: 12px 24px;
	}
	.header .head .logo{
		max-width: 216px;
	}
	.header .head .logo a{
		display: block;
	}
	.header .head .btn{
		background: #000;
	  	position: absolute;
		top: 0;
		right: 0;
		width: 76px;
		height: 78px;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 10px;
		z-index: 1001;
	}
	.header .head .btn span {
	  	display: block;
	  	width: 40px;
	  	height: 2px;
	  	background: #fff;
	  	transition: 0.4s;
		transform-origin: center; /* 追加 */
	}
	nav{
		position: fixed; /* ← スクロール追従のためにfixedを使う */
  		top: 78px;
  		left: 50%;
  		transform: translateX(100%) translateX(-50%);
  		width: 430px;
  		height: 692px;
  		background: url("../img/common/nav_bg.png") no-repeat center top;
  		background-size: cover;
  		opacity: 0;
  		pointer-events: none;
  		transition: transform 0.4s ease, opacity 0.4s ease;
  		z-index: 1000;
	}
	nav .anc_btn{
		margin-bottom: 32px;
		padding: 36px 24px 0px;
	}
	nav .anc_btn a{
		display: block;
	}
	nav .anc_btn p{
		font-size: 1.8rem;
		line-height: 1;
		margin: 0;
		padding: 20px 0px 20px 30px;
		border-bottom: solid 1px #E2D0E8;
		position: relative;
		font-weight: 400;
	}
	nav .anc_btn p::before{
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0,-50%);
		width: 12px;
		height: 13px;
		background: url("../img/common/nav_arrow.png");
		background-size: 100%;;
	}
	nav .bnr{
		padding: 0px 24px;
	}
	nav .bnr .column{
		display: flex;
		flex-wrap: wrap;
		gap:16px;
		margin-bottom: 16px;
	}
	nav .bnr .column .col{
		width: calc(100%/3 - 11px);
	}
	/* メニュー表示状態 */
	.contents nav.open {
		transform: translateX(0) translateX(-50%);
  		opacity: 1;
  		pointer-events: auto;
	}

	/* X型変形 */
	.btn.active span:nth-child(1) {
		transform: rotate(25deg) translate(6px,12px);
	}

	.btn.active span:nth-child(2) {
		opacity: 0;
	}

	.btn.active span:nth-child(3) {
		transform: rotate(-25deg)  translate(5px,-9px);
	}
	
	.contents .main_vi{
		margin-top: 78px;
	}
	.contents .open_fixd{
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translate(-50%,0);
		transition: 0.3s;
		max-width: 430px;
		display: block;
		z-index: 3;
	}
	.contents .open_fixd.hide {
	  opacity: 0;
	  visibility: hidden;
	  pointer-events: none;
	}
}

/*ipad mini*/
@media screen and (max-width: 768px) {
    .PC{
        display: none !important;
    }
	.header{
		width: 100%;
	}
	nav{
		width: 100%;
		height: 100vh;
	}
	.contents .open_fixd{
		max-width: auto;
		width: 100%;
	}
	
	.reveal{
		max-width: 300px;
	}
	.vi_txt2.reveal{
		max-width: 350px;
	}
	.vi_il1{
		max-width: 250px;
	}
	.vi_il2{
		max-width: 370px;
	}
	.vi_il3{
		max-width: 320px;
	}
	
	.contents .cnt3_1 .slick-slide{
		height: 630px;
	}
	.contents .cnt3 .cnt3_3 .slick-slide{
		max-width: 618px;
		height: 720px;
	}
}
@media (max-width: 767px) {
  /*.vi_il1 {
	  max-width: 25vw;
	  transform: translate(20%, 60%);
  }
  .vi_il2 {
	  max-width: 30vw;
	  transform: translate(0%, -20%);
  }
  .vi_il3 {
	  max-width: 28vw;
	  transform: translate(5%, -33%);
	  
  }*/
}
@media screen and (max-width: 430px) {
	.reveal{
		max-width: 179px;
	}
	.vi_txt2.reveal{
		max-width: 219px;
	}
	.vi_il1{
		max-width: 113px;
		/*transform: translate(10%, 50%);
		animation: slideUpAnim_sp 1s ease forwards;
	  	animation-delay: 3s;*/
	}
	.vi_il2{
		max-width: 221px;
		/*animation: slideUpAnim2_sp 1s ease forwards;
		animation-delay: 3s;*/
	}
	.vi_il3{
		max-width: 193px;
		/*animation: slideUpAnim4 1s ease forwards;
	  	animation-delay: 3s;*/
	}
	.contents .cnt3_1 .slick-slide{
		height: 450px;
	}
	.contents .cnt3 .cnt3_2 .slick-slide{
		height: 100%;
	}
	.contents .cnt3 .cnt3_3 .slick-slide{
		max-width: 286px;
		height: 400px;
	}
}
/*@keyframes slideUpAnim4 {
	from {
		opacity: 0;
		transform: translate(10%, -13%);
	}
	to {
		opacity: 1;
		transform: translate(10%, -33%);
	}
}*/
@media screen and (max-width: 414px) {
	.vi_il3{
		max-width: 163px;
	}
}
@media screen and (max-width: 390px) {
	/*.vi_il3{
		max-width: 193px;
	}*/
}
@media screen and (max-width: 375px) {
	.vi_il1{
		max-width: 113px;
		/*transform: translate(10%, 50%);
		animation: slideUpAnim_sp 1s ease forwards;
	  	animation-delay: 3s;*/
	}
	.vi_il2{
		max-width: 190px;
	}
	.vi_il3{
		max-width: 153px;
		/*transform: translate(5%, -42%);
		animation: slideUpAnim3_sp 1s ease forwards;
	  	animation-delay: 3s;*/
	}
	.contents .cnt3_1 .slick-slide{
		height: 450px;
	}
	.contents .cnt3 .cnt3_2 .slick-slide{
		height: 100%;
	}
	.contents .cnt3 .cnt3_3 .slick-slide{
		max-width: 286px;
		height: 400px;
	}
}
/*@keyframes slideUpAnim_sp {
	from {
		opacity: 0;
		transform: translate(10%, 70%);
	}
	to {
		opacity: 1;
		transform: translate(10%, 50%);
	}
}
@keyframes slideUpAnim2_sp {
	from {
		opacity: 0;
		transform: translate(5%, -3%); 
	}
	to {
		opacity: 1;
		transform: translate(5%, -13%);
	}
}
@keyframes slideUpAnim3_sp {
	from {
		opacity: 0;
		transform: translate(5%, 3%);
	}
	to {
		opacity: 1;
		transform: translate(5%, -13%);
	}
}
@keyframes slideUpAnim3_sp414 {
	from {
		opacity: 0;
		transform: translate(10%, -5%);
	}
	to {
		opacity: 1;
		transform: translate(10%, -25%);
	}
}
@keyframes slideUpAnim3_sp390 {
	from {
		opacity: 0;
		transform: translate(10%, -5%);
	}
	to {
		opacity: 1;
		transform: translate(10%, -15%);
	}
}*/