@charset "UTF-8";

:root {
      --easing: cubic-bezier(0.2, 1, 0.2, 1);
      --transition: 0.7s var(--easing);
      --color-base: #fff;
      --color-base-filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(341deg) brightness(107%) contrast(101%);
      --color-gray: #f1f1f1;
      --color-theme: #000;
      --color-theme-filter: invert(0%) sepia(98%) saturate(7493%) hue-rotate(75deg) brightness(86%) contrast(99%);
      --color-darkblue: #0A509F;
      --color-middleblue1: #6DB9EC;
      --color-middleblue2: #97D0F0;
      --color-lightblue: #DCF4FA;
      --color-accent-darkorange: #E96B16;
      --color-accent-lightorange: #F59C00;
      --color-accent-yellow: #FFF601;
      --color-font-dark: #000000;
      --color-font: #333333;
      --color-font-light: #CCCCCC;
      --color-background: #FFFFFF;

    --font-weight-leight: 300;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --letter-spacing: 0.08rem;
    --line-height-14: 1.4;
    --line-height-18: 1.8;

    --font-family-sans: "Noto Sans JP",hiragino-kaku-gothic-pron,"Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic",yugothic,meiryo,sans-serif;
    --font-family-serif: "Noto Serif JP","游明朝","Yu Mincho",yumincho,"Hiragino Mincho Pro",serif;
	--font-family-en: "Ubuntu", sans-serif;
    
      /* --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
      --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
      --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), inset -0.8rem -0.8rem 1.2rem #fff;
      --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2); */
}

html{
	margin: 0;
	padding: 0;
}
body{
      font-family: var(--font-family-sans);
      font-size: 14px;
      letter-spacing: var(--letter-spacing);
      line-height: var(--line-height-18);
      height: 100%;
      word-break: break-word;
      color: var(--color-font);
      background-color: var(--color-background);
      -webkit-appearance: none;
      overflow-x:hidden;
      position: relative;
}
    
#wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
}

*,
*::before,
*::after {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
}

::-moz-selection {
      color: #fff;
      background: var(--color-theme);
}

::selection {
      color: #fff;
      background: var(--color-theme);
}


.loading {
	  position: fixed;
	  inset: 0;
	  z-index: 30;
	  height: 100svh;
	  background-color: var(--color-darkblue);
}

	.loading__inner {
	  width: 100%;
	  height: inherit;
	  /* display: grid;
	  place-content: center;
	  row-gap: 10px; */
	}

	.logobox,
	.loadingbgbox {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100vh;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	}

	.circle {
	  width: 5px; /* 初期サイズ */
	  height: 5px; /* 初期サイズ */
	  background-color: var(--color-background); /* 円の色 */
	  border-radius: 50%;
	  margin: 0 auto;
	  opacity: 0;
	  /* transform: scale(0); 最初は非表示 */


  /* 円の描画をシャープにする */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  
  /* SVGの場合、拡大時にぼやけを防ぐ */
  /* transform-origin: center;
  will-change: transform; */


	}

	.loading__logo {
	  margin: 0 auto;
	  /* width: min(200px, 100%); */
	  width: 200px;
	  aspect-ratio: 311 / 40;
	  opacity: 0;
	}
	
	#container {
	  min-height: 100svh;
	  z-index: 5;
	}
	
@media all and (max-width: 480px) {
	#container {
	  padding-bottom: 147px;
	}
}

	
	.wrapper {
		width: 100%;
	}
	
	a {text-decoration: none;}

/* header
----------------------------------------------- */
header {
	position: fixed;
	top:0;
	z-index: 20;
	opacity: 0;
	width: 100%;
	left: 0%;
	height: 55px;
	background-color: var(--color-background);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header h1 {
	padding-left: 2.5%;
	box-sizing: border-box;
	height: 25px;
	aspect-ratio: 311 / 40;
}
header h1 a {
	display: block;
	background-repeat: no-repeat;
	background-position: left top;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	position:relative;
	height: 25px;
	aspect-ratio: 311 / 40;
	background-size: contain;
	margin: 0 auto 0;
	box-sizing: border-box;
	background-image: url(../../images/logo.png);
	transition: background-image .3s;
}

header.headerColorScroll h1 a {
	background-image: url(../../images/logo.png);
	transition: background-image .3s;
}

header ul {
	padding-right: 2.5%;
	box-sizing: border-box;
}
header ul li{ margin-left: 15px; }
header ul li a {display: block;}
/* header ul li a img {
	filter: var(--color-theme-filter);
} */



.btn a{
	background-color: var(--color-accent-darkorange);
	padding: 8px 20px;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
	box-sizing: border-box;
	color: var(--color-accent-yellow);
	font-size: clamp(15px, 3.125vw, 17px);
	border-radius: 100vh;
	font-weight: var(--font-weight-bold);
}

.btn a:hover,
.btn a:active {
	background-color: var(--color-accent-lightorange);
	color: var(--color-background);
	transition: background-color .3s, color .3s;
}


@media all and (max-width: 480px) {
	.btn a{padding: 8px 10px;}
}

@media all and (max-width: 375px) {
	header h1 {height: 20px;}
	header h1 a {height: 20px;}
}

.main {
	position: relative;
}

/* CTA
----------------------------------------------- */
.cta {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0 40px;
	box-sizing: border-box;
	position: relative;
	background-color: var(--color-darkblue);
}

.cta.spv {display: none;}
@media all and (max-width: 480px) {
	.cta.pcv {display: none;}
	.cta.spv {
		position: fixed;
		width: 100%;
		display: block;
		bottom:0;
		left:0;
		z-index: 20;
		padding: 0px 0 20px;
		height: 127px;
		background-color: !important;
		background: none;
	}
	
	.cta.spv .area {display: none;}
}


.ctaIll {
	position: relative;
	z-index: 10;
	width: 140px;
	aspect-ratio: 140 / 158px;
	/* top: 0;
	left:50%;
	margin-left: -20vw; */
}
.ctaIll p {
	position: absolute;
	background-image: url(../../images/bg-fukidashi001.png);
	background-size: contain;
	background-repeat: no-repeat;
	backbround-position: left top;
	aspect-ratio: 250 / 227;
	top:-70px;
	left:100px;
	width: 130px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ctaIll p span {
	display: block;
	text-align: center;
	font-weight: 700;
	line-height: 1.3;
	font-size: clamp(13px, 2.70833333333vw, 16px);
}

.ctaBox {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ctaBtn {position: relative; left: -30px;}

.ctaBtn a {
	background-color: var(--color-accent-darkorange);
	padding: 40px 70px;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
	box-sizing: border-box;
	color: var(--color-accent-yellow);
	font-size: clamp(20px, 4.16666666667vw, 35px);
	border-radius: 10px;
	font-weight: var(--font-weight-bold);
	width: 100%;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.ctaBtn a:hover,
.ctaBtn a:active {
	background-color: var(--color-accent-lightorange);
	color: var(--color-background);
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	margin-top: 2px;
	transition: background-color .3s, color .3s, box-shadow .3s, margin-top .1s;
}

.no705 {display: none;}
@media all and (max-width: 705px) {.no705 {display: block;}}
@media all and (max-width: 610px) {
.ctaIll {
	width: 80px;
}
.ctaIll p {
	width: 120px;
	left:60px;
	top: -80px;
}

.ctaBtn a {
	padding: 40px 30px;
}

.closing .ctaBtn a {
	padding: 40px 10px;
}

.closing .ctaIll p {
	top: -100px;
	left:30px;
}

}


.area{
    width: 100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
   
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 0.05px solid rgba(255,255,255,0.4);
    box-shadow: inset 0 0 20px rgba(10,80,159,0.8);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.closing .circles li{
    animation: animate2 25s linear infinite;
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 35%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
    animation-duration: 45s;
}

.circles li:nth-child(7){
    left: 5%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 10s;
    animation-duration: 35s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 20s;
    animation-duration: 25s;
}

.circles li:nth-child(10){
    left: 90%;
    width: 150px;
    height: 150px;
    animation-delay: 25s;
    animation-duration: 50s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 60vh;
    }

    100%{
        transform: translateY(-500px) rotate(360deg);
        opacity: 0.3;
        border-radius: 100vh;
    }

}

@keyframes animate2 {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 60vh;
    }

    100%{
        transform: translateY(-1000px) rotate(360deg);
        opacity: 0.3;
        border-radius: 100vh;
    }

}



/* footer
----------------------------------------------- */
footer {
	position: relative;
	width: 100%;
	padding: 40px 2.5%;
	box-sizing:  border-box;
	text-align: center;
}
.footerCompany h2 {
	width: 250px;
	aspect-ratio: 311 / 40;
	margin: 0px auto 5px;
	box-sizing: border-box;
}
.footerCompany h2 a {
	display: block;
	width: 250px;
	aspect-ratio: 311 / 40;
}

.footerCompany ul {display: flex; justify-content: center; margin-bottom: 20px;}
.footerCompany ul li {padding: 2px 10px; box-sizing: border-box;}
.footerCompany ul li:nth-of-type(1) {border-right: 1px solid var(--color-font-light); }
.footerCompany ul li a {display: block; color: var(--color-font);}

.footerCompany h2 a:hover,
.footerCompany ul li a:hover {opacity:0.7; filter: alpha(opacity=70); -ms-filter: "alpha( opacity=70 )";}
/* .footerCompany h2 a img,
.footerCompany ul li a img {
	filter: var(--color-base-filter);
} */

/* copyright
----------------------------------------------- */
.copyright {
	font-size: 10px;
	text-align: center;
	padding: 10px 0;
	position: relative;
	box-sizing: border-box;
	color: var(--color-font);
	font-family: var(--font-family-en);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}



/* main */
.container{
    width: 100%;
    height: auto;
    padding: 0px;
}
.box {
	padding: 100px 0;
	position: relative;
}
.boxL {
	padding: 100px 0 100px 2.5%;
	position: relative;
	box-sizing:  border-box;
}
.boxC {
	padding: 100px 2.5%;
	position: relative;
	box-sizing:  border-box;
}
.boxR {
	padding: 100px 0 100px 2.5%;
	position: relative;
	box-sizing:  border-box;
}

.boxN {
	padding: 0px 2.5%;
	position: relative;
	box-sizing:  border-box;
}
@media (max-width: 480px) {
	.box {
		padding: 80px 0;
		position: relative;
	}
	.boxL {
		padding: 80px 0 80px 2.5%;
		position: relative;
		box-sizing:  border-box;
	}
	.boxC {
		padding: 80px 2.5%;
		position: relative;
		box-sizing:  border-box;
	}
	.boxR {
		padding: 80px 0 80px 2.5%;
		position: relative;
		box-sizing:  border-box;
	}

	.boxN {
		padding: 0px 2.5%;
		position: relative;
		box-sizing:  border-box;
	}
}
section {position: relative; box-sizing: border-box;}


.mainvisual__bg {
    bottom: 0;
    height: 168px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1
}

@media (max-width: 575.98px) {
    .mainvisual__bg {
        height:50px
    }
}

.mainvisual__bg .wave1,.mainvisual__bg .wave2 {
    background-position: 0 0;
    background-repeat: repeat-x;
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

@media (max-width: 575.98px) {
    .mainvisual__bg .wave1,.mainvisual__bg .wave2 {
        -webkit-animation:wave_sp linear infinite!important;
        animation: wave_sp linear infinite!important;
        background-size: 374px auto!important
    }
}

.mainvisual__bg .wave1 {
    -webkit-animation: wave linear infinite;
    animation: wave linear infinite;
    -webkit-animation-duration: 12s!important;
    animation-duration: 12s!important;
    background-image: url(../../images/program_bg_1_2x.webp);
    background-size: 1188px auto;
    z-index: 2
}

@media (max-width: 575.98px) {
    .mainvisual__bg .wave1 {
        -webkit-animation-duration:8s!important;
        animation-duration: 8s!important;
        background-image: url(../../images/program_bg_1_sp_2x.webp)
    }
}

.mainvisual__bg .wave2 {
    -webkit-animation: wave_back linear infinite;
    animation: wave_back linear infinite;
    -webkit-animation-duration: 30s!important;
    animation-duration: 30s!important;
    background-image: url(../../images/program_bg_2_2x.webp);
    background-size: 1397px auto
}

@media (max-width: 575.98px) {
    .mainvisual__bg .wave2 {
        -webkit-animation-duration:24s!important;
        animation-duration: 24s!important;
        background-image: url(../../images/program_bg_2_sp_2x.webp)
    }
}

@-webkit-keyframes wave {
    0% {
        background-position: 1188px 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes wave {
    0% {
        background-position: 1188px 0
    }

    to {
        background-position: 0 0
    }
}

@-webkit-keyframes wave_back {
    0% {
        background-position: 1397px 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes wave_back {
    0% {
        background-position: 1397px 0
    }

    to {
        background-position: 0 0
    }
}

@-webkit-keyframes wave_sp {
    0% {
        background-position: 374px 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes wave_sp {
    0% {
        background-position: 374px 0
    }

    to {
        background-position: 0 0
    }
}



/* Ttl */
.mainTtl {
	font-size: clamp(30px, 6.25vw, 50px);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-14);
	color: var(--color-darkblue);
	margin-bottom: 40px;
  /* text-shadow: 3px 3px 0 var(--color-background), -3px 3px 0  var(--color-background), -3px -3px 0  var(--color-background), 3px -3px 0  var(--color-background);
	text-shadow:3px 3px 0 var(--color-middleblue2); */
}

.mainTtl .mainTtlBig{
	display: inline-block;
	font-size: clamp(50px, 10.4166666667vw, 80px);
	/* border-bottom: 10px double #b2d5de; */
}

.mainSubTtl {
	font-size: clamp(20px, 4.16666666667vw, 30px);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-14);
	color: var(--color-darkblue);
}

.subTtl {
	font-size: clamp(20px, 4.16666666667vw, 30px);
	font-weight: 900;
	line-height: var(--line-height-14);
	color: var(--color-darkblue);
	font-feature-settings: "palt";
}

.fukidashi-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    padding: 10px 8px 15px;
}
.fukidashi-01::before {
    content: "";
    width: 40px;
    height: 3px;
    transform: rotate(60deg);
    box-sizing: border-box;
    background-color: var(--color-darkblue);
}
.fukidashi-01::after {
    content: "";
    width: 40px;
    height: 3px;
    transform: rotate(-60deg);
    box-sizing: border-box;
    background-color: var(--color-darkblue);
}

@media all and (max-width: 768px) {
	.fukidashi-01::before {
	    width: 30px;
	    height: 2px;
	}
	.fukidashi-01::after {
	    width: 30px;
	    height: 2px;
	}
}


.re-radial-dot {
    /* background-position: top left 0px;
    background-repeat: repeat-x;
    background-size: 1.0em .3em;
    background-image: radial-gradient(.08em .08em at center center,var(--color-darkblue),var(--color-darkblue) 100%,transparent,transparent);
    padding-top: .05em; */
}
.re-radial-dot span{position: relative;} 
.re-radial-dot span::before {position: absolute; top: -.5em; left: 0; right: 0; margin: auto; content:"・";font-size: clamp(30px, 6.25vw, 50px);} 

.pcno {display: none;}

@media all and (max-width: 480px) {
	.pcno {display: block;}
}

.sectionText {
	font-size: clamp(15px, 3.125vw, 18px);
	font-weight: var(--font-weight-bold);
	text-align: center;
	line-height: var(--line-height-14);
	font-feature-settings: "palt";
}

/* PROBLEM */
.problem {
	position: relative;
	padding-bottom: 180px;
	bopx-sizing: border-box;
	text-align: center;
}

.problem .mainSubTtl {
	position: absolute;
	top:70px;
	left:50%;
	margin-left: -500px;
	transform:rotate(-8deg);
}

@media (max-width: 1067px) {
.problem .mainSubTtl {
	margin-left: -300px;
}
}

@media (max-width: 700px) {
.problem .mainSubTtl {
	font-size: 20px;
	margin-left: -200px;
}
}
@media (max-width: 480px) {
.problem .mainSubTtl {
	margin-top: -20px;
}
}

.problem:before {
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background-color: var(--color-lightblue);
	position: absolute;
	top:120px;
	left: 0;
	right:0;
	margin: auto;
	content:"";
}

.problem .mainTtl {
	margin-bottom: 10px;
}


.problemContents {
	text-align: center;
	position: relative;
	width: 100%;
}

.problemContents figure{
	width: 300px;
	bottom:-25px;
	left: 50%;
	margin-left: -150px;
	position: absolute;
}
.problemContents ul {
	width: 700px;
	height: 500px;
	position: relative;
	top:0;
	margin: 0 auto;
	font-size: 16px;
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-14);
}

.problemContents ul li:nth-of-type(1){
	position: absolute;
	top: 115px;
	left: 10px;
	background-image: url(../../images/fukidashiLT.svg);
	background-repeat: no-repeat;
	background-size:cover;
	aspect-ratio: 701 / 350;
	width: 180px;
	padding-right: 20px;
	box-sizing: border-box;
}

.problemContents ul li:nth-of-type(2){
	position: absolute;
	top: 0px;
	left: 150px;
	background-image: url(../../images/fukidashiMLT.svg);
	background-repeat: no-repeat;
	background-size:cover;
	aspect-ratio: 374 / 426;
	width: 140px;
	padding-top: 35px;
	box-sizing: border-box;
}

.problemContents ul li:nth-of-type(3){
	position: absolute;
	top: 30px;
	left: 300px;
	background-image: url(../../images/fukidashiMRT.svg);
	background-repeat: no-repeat;
	background-size:cover;
	aspect-ratio: 613 / 364;
	width: 160px;
}

.problemContents ul li:nth-of-type(4){
	position: absolute;
	top:80px;
	right: 30px;
	background-image: url(../../images/fukidashiRT.svg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size:cover;
	aspect-ratio: 633 / 390;
	width: 200px;
	padding-left: 20px;
	box-sizing: border-box;
}

.problemContents ul li:nth-of-type(5){
	position: absolute;
	top:220px;
	left: -10px;
	background-image: url(../../images/fukidashiLM.svg);
	background-repeat: no-repeat;
	background-size:cover;
	aspect-ratio: 590 / 331;
	width: 200px;
	padding-top: 30px;
	box-sizing: border-box;
}

.problemContents ul li:nth-of-type(6){
	position: absolute;
	top:200px;
	right: 0px;
	background-image: url(../../images/fukidashiRM.svg);
	background-repeat: no-repeat;
	background-size:cover;
	background-position: center bottom;
	aspect-ratio: 1081 / 350;
	width: 260px;
	padding: 10px 0 0px 20px;
	box-sizing: border-box;
}
.problemContents ul li:nth-of-type(7){
	position: absolute;
	bottom: 40px;
	left: 60px;
	background-image: url(../../images/fukidashiLB.svg);
	background-repeat: no-repeat;
	background-size:cover;
	aspect-ratio: 557 / 388;
	width: 180px;
	padding-top: 30px;
	box-sizing: border-box;
}

.problemContents ul li:nth-of-type(8){
	position: absolute;
	bottom:30px;
	right: 50px;
	background-image: url(../../images/fukidashiRB.svg);
	background-repeat: no-repeat;
	background-size:cover;
	aspect-ratio: 1039 / 752;
	width: 230px;
	padding-left: 45px;
	padding-top: 35px;
	box-sizing:border-box;
}

@media (max-width: 700px) {
	.problem:before {
		width: 100%;
		height: inherit;
		aspect-ratio: 1 / 1;
		border-radius: 50%;
		background-color: var(--color-lightblue);
		position: absolute;
		top:120px;
		left: 0;
		right:0;
		margin: auto;
		content:"";
	}


	.problemContents figure{
		width: 40%;
		bottom:25px;
		left: 50%;
		margin-left: -20%;
		position: absolute;
	}
	.problemContents ul {
		width: 100%;
		height: 500px;
		position: relative;
		top:0;
		margin: 0 auto;
		font-size: 16px;
		font-weight: var(--font-weight-bold);
		line-height: var(--line-height-14);
	}

}

@media (max-width: 675px) {
.problem {
	padding-bottom: 100px;

}

	.problem:before {
		width: 100%;
		width: 320px;
		height: inherit;
		aspect-ratio: 1 / 1;
		border-radius: 50%;
		background-color: var(--color-lightblue);
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right:0;
		margin: auto;
		content:"";
		bottom: 0;
	}
	.problemContents figure{
		width: 40%;
		width: 200px;
		bottom:25px;
		left: 50%;
		margin-left: -100px;
		position: absolute;
	}
	.problemContents ul {
		width: 100%;
		height: 450px;
		position: relative;
		top:0;
		margin: 0 auto;
		font-size: 12px;
		font-weight: var(--font-weight-bold);
		line-height: var(--line-height-14);
	}

	.problemContents ul li:nth-of-type(1){
		position: absolute;
		top: 140px;
		left: 50%;
		margin-left: -140px;
		background-image: url(../../images/fukidashiLT.svg);
		background-repeat: no-repeat;
		background-size:cover;
		aspect-ratio: 701 / 350;
		width: 130px;
		padding-right: 20px;
		box-sizing: border-box;
	}

	.problemContents ul li:nth-of-type(2){
		position: absolute;
		top:220px;
		left: 50%;
		margin-left: -140px;
		background-image: url(../../images/fukidashiMLT.svg);
		background-repeat: no-repeat;
		background-size:cover;
		aspect-ratio: 374 / 426;
		width: 100px;
		padding-top: 20px;
		box-sizing: border-box;
	}

	.problemContents ul li:nth-of-type(3){
		position: absolute;
		top: 200px;
		left: 50%;
		margin-left: 40px;
		background-image: url(../../images/fukidashiMRT.svg);
		background-repeat: no-repeat;
		background-size:cover;
		aspect-ratio: 613 / 364;
		width: 120px;
	}

	.problemContents ul li:nth-of-type(4){
		position: absolute;
		top: 80px;
		right: inherit;
		left: 50%;
		margin-left: 10px;
		background-image: url(../../images/fukidashiRT.svg);
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size:cover;
		aspect-ratio: 633 / 390;
		width: 150px;
		padding-left: 10px;
		box-sizing: border-box;
	}

	.problemContents ul li:nth-of-type(5){
		position: absolute;
		top:50px;
		left: 50%;
		margin-left: -150px;
		background-image: url(../../images/fukidashiLM.svg);
		background-repeat: no-repeat;
		background-size:cover;
		aspect-ratio: 590 / 331;
		width: 150px;
		padding-top: 20px;
		box-sizing: border-box;
	}

	.problemContents ul li:nth-of-type(6){
		position: absolute;
		top: 410px;
		right: inherit;
		left:50%;
		margin-left: -20px;
		background-image: url(../../images/fukidashiRM.svg);
		background-repeat: no-repeat;
		background-size:cover;
		background-position: center bottom;
		aspect-ratio: 1081 / 350;
		width: 180px;
		padding: 10px 0 0px 20px;
		box-sizing: border-box;
	}
	.problemContents ul li:nth-of-type(7){
		position: absolute;
		bottom: 30px;
		left: 50%;
		margin-left: -160px;
		background-image: url(../../images/fukidashiLB.svg);
		background-repeat: no-repeat;
		background-size:cover;
		aspect-ratio: 557 / 388;
		width: 130px;
		padding-top: 20px;
		box-sizing: border-box;
	}

	.problemContents ul li:nth-of-type(8){
		position: absolute;
		bottom:inherit;
		right: inherit;
		top: 280px;
		left: 50%;
		margin-left: 20px;
		background-image: url(../../images/fukidashiRB.svg);
		background-repeat: no-repeat;
		background-size:cover;
		aspect-ratio: 1039 / 752;
		width: 150px;
		padding-left: 25px;
		padding-top: 20px;
		box-sizing:border-box;
	}

}

/* FEATURES */
.features {
	background-color: var(--color-middleblue1);
    padding: 0 1.75rem 230px;
    position: relative;
    z-index: 1
}

.features:before {
    background-image: url(../../images/pho-program-wave-bottom@2x.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    bottom: -2px;
    content: "";
    height: 500px;
    left: 0;
    position: absolute;
    width: 100%
}

@media (max-width: 767.98px) {
    .features:before {
        background-image:url(../../images/pho-program-wave-bottom@2x.webp);
        height: 200px
    }
}
.features .illTtl {
	position: relative;
	text-align: center;
}
.features .mainTtl{
/* color: var(--color-background);
text-shadow: 2px 2px 0 var(--color-darkblue); */
text-shadow: 2px 2px 0 var(--color-background);
-webkit-font-feature-settings: "palt";
font-feature-settings: "palt";
position: relative;
display: inline-block;
}

.features .mainTtl:before{
	position: absolute;
	bottom: 10px;
	left:-80px;
	background-image: url(../../images/ill-cara001.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left top;
	aspect-ratio: 452 / 698;
	content:"";
	width: 80px;
}
.features .mainTtl:after{
	position: absolute;
	bottom: 10px;
	right:-80px;
	background-image: url(../../images/ill-cara002.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left top;
	aspect-ratio: 396 / 674;
	content:"";
	width: 80px;
}

@media (max-width: 1067px) {
    .pcno.no1067 {
        display: block;
    }

	.features .mainTtl:before{
		left:-90px;
	}
	.features .mainTtl:after{
		right:-90px;
	}
}

@media (max-width: 455px) {
	.features .mainTtl:before{
		left: 50%;
		margin-left: -40px;
		width: 50px;
		bottom: inherit;
		top: -80px;
	}
	.features .mainTtl:after{
		right: inherit;
		left: 50%;
		margin-left: 12.5px;
		width: 50px;
		bottom: inherit;
		top: -80px;
	}
}


.kerningC {
	display: inline-block;
	margin-right: -30px;
	position: relative;
}
.kerningT {
	display: inline-block;
	top: -20px;
	margin-left: -20px;
	position: relative;
}
.kerningB {
	display: inline-block;
	margin-right: -20px;
}


.features .sectionText .sectionTextBox{
	display: inline-block;
	font-size: clamp(20px, 4.16666666667vw, 30px);
	font-weight: var(--font-weight-bold);
	text-align: center;
	font-feature-settings: "palt";
	/* background-color: var(--color-darkblue); */
	color: #FFF;
	/* padding: 30px;
	border-radius: 10px; */
	margin-top: 80px;
	margin-bottom: 40px;
}

.features .sectionText .sectionTextBox span {
	display: inline-block;
	font-size: clamp(30px, 6.25vw, 50px);
	text-decoration: 3px underline wavy var(--color-accent-yellow);
    text-underline-offset: 5px;
    color: var(--color-accent-yellow);
}

.featuresBox {
	background-color: var(--color-background);
	border: 20px solid var(--color-middleblue2);
	border-radius: 30px;
	padding: 40px;
	box-sizing: border-box;
	max-width: 1200px;
	margin: 0 auto 20px;
}
.featuresTtl,
.featuresTtl .subTtl {text-align: center;}
.featuresTtl {margin-bottom: 30px;}

.featuresTtl .subTtl span {
	display: inline-block;
	font-size: clamp(27px, 5.625vw, 37px);
	line-height: 1.0;
}

@media (max-width: 900px) {
    .pcno.no900 {
        display: block;
    }

}

.featuresTtl dl {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	font-weight: var(--font-weight-bold);
}
.featuresTtl dt {
	font-size: clamp(13px, 2.70833333333vw, 18px);
	font-family: var(--font-family-en);
	border-bottom: 2px solid var(--color-theme);
	border-right: 1px solid var(--color-theme);
	padding: 2px 10px; box-sizing: border-box;
}
.featuresTtl dd {
	font-size: clamp(13px, 2.70833333333vw, 18px);
	padding: 2px 10px;
	box-sizing: border-box;
	border-bottom: 2px solid var(--color-theme);
}

.featuresTxt {
	line-height: var(--line-height-14);
	font-size: clamp(18px, 3.75vw, 22px);
	text-align: center;
	padding: 15px 30px;
	box-sizing: border-box;
	background-color: var(--color-lightblue);
	border-radius: 10px;
	margin-bottom: 30px;
}

@media (max-width: 480px) {
	.features {
		background-color: var(--color-middleblue1);
	    padding: 100px 0 130px;
	    position: relative;
	    z-index: 1
	}

	.features .sectionText .sectionTextBox{
		font-size: 18px;
	}

	.features .sectionText .sectionTextBox span {
		font-size: 25px;
		text-decoration: 2px underline wavy var(--color-accent-yellow);
	    text-underline-offset: 3px;
	}


	.featuresTxt {
		font-size: 16px;
		padding: 15px;
	}

	.featuresBox {
		background-color: var(--color-background);
		border: 10px solid var(--color-middleblue2);
		border-radius: 30px;
		padding: 20px 10px;
	}
	.featuresTtl .subTtl {font-size: 18px;}

	.featuresTtl .subTtl span {
		font-size: 25px;
	}
}

.featuresList {
	display: flex;
	justify-content: center;
}

	/* .featuresList.min880 {display: block;} */
	.featuresList.max880 {display: none;}

.featuresList li {
	width: calc(100% / 3);
	padding: 10px;
	box-sizing: border-box;
}

.no816 {display: block;}

@media screen and (max-width: 880px) {


	.featuresList {
		max-width: 500px;
		margin: 0 auto;
		flex-wrap: wrap;
	}


	.featuresList.min880 {display: none;}
	.featuresList.max880 {display: block;}

	.featuresList li {
	width: calc(100% / 1);
	}
}

@media screen and (max-width: 816px) {
	.featuresTxt {
		text-align: left;
		text-align: justify;
	}
	.no816 {display: none;}
}

.featuresList li div{
	position: relative;
}

.featuresList li:nth-of-type(2) {margin-top: 50px;}

.featuresBox:nth-of-type(2) .featuresList li:nth-of-type(2) {margin-top: 0px;}

.featuresList figure{
	aspect-ratio: 1 / 1;
	width: 100%;
	border-radius: 50%;
}

.featuresList figure img{border-radius: 50%;}
.featuresList h4 {
	font-size: clamp(16px, 3.33333333333vw, 18px);
	font-weight: var(--font-weight-bold);
	color: var(--color-accent-yellow);
	line-height: 1.0;
}

.featuresList h4 span{
	display: inline-block;
	padding: 8px 20px;
	border-radius: 100vh;
	background-color: var(--color-middleblue1);
	line-height: 1.0;
}

.featuresList h4 span:nth-of-type(2){
	margin-left: 20px;
	margin-top: -5px;
	padding: 5px 20px 10px;
}

.featuresBox:nth-of-type(1) .featuresList li:nth-of-type(1) h4 span:nth-of-type(2){margin-left: 40px;}


.featuresList p {
	font-size: clamp(14px, 2.91666666667vw, 15px);
	font-feature-settings: "palt";
	text-align: justify;
	padding: 15px 10px;
	box-sizing: border-box;
}

.featuresList li:nth-of-type(1) h4{
	position: absolute;
	bottom: 0%;
}
.featuresList li:nth-of-type(2) h4{
	position: absolute;
	top: -5%;
	left: 50%;
	margin-left: -80px;
}

.featuresList li:nth-of-type(3) h4{
	position: absolute;
	bottom: 10%;
	right:0;
}

/* course */
.courseListTtl {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	/* align-items: start; */
}
.courseListTtl h4 {
	background-color: var(--color-darkblue);
	padding: 20px;
	box-sizing: border-box;
	border-radius: 20px 0 0 20px;
	color: var(--color-background);
	font-size: clamp(15px, 3.125vw, 18px);
	font-weight: var(--font-weight-bold);
	width: 200px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.courseListTtl h4 span {display: block;}
.courseListTtl .courseListTxt {
	padding: 20px 20px;
	box-sizing: border-box;
	color: var(--color-darkblue);
	font-size: clamp(15px, 3.125vw, 18px);
	font-weight: var(--font-weight-bold);
}
.courseList li {margin-bottom: 10px;}

.courseListBox {
	width: calc(100% - 200px);
	background-color: var(--color-background);
	border-radius: 0px 20px 20px 0px;
}

@media screen and (max-width: 658px) {
.courseListTtl {
	flex-wrap: wrap;
}
.courseListTtl h4 {width: 100%; border-radius: 20px 20px 0 0px;}
.courseListBox {width: 100%; border-radius: 0px 0px 20px 20px;}
}

.progressbar {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  width: calc(100% - 40px);
  margin: 20px auto;
  background: var(--color-lightblue);
  border-radius: 10px;
}
.progressbar .item {
    position: relative;
    width: calc(100% / 3);
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 7px 20px;
    box-sizing: border-box;
    line-height: 1.5;
    /* background: var(--color-lightblue); */
    display: flex;
    align-items: start;
}
.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
    position: absolute;
    z-index: 2;
	content: '';
	top: 0;
	bottom:0;
	right: -10px;
	margin: auto;
	width: 40px;
	height: 4px;
	border-radius: 9999px;
	background-color: var(--color-darkblue);
	transform-origin: calc(100% - 2px) 50%;
}

.progressbar .item:not(:last-child)::before {transform: rotate(62.5deg);}
.progressbar .item:not(:last-child)::after {transform: rotate(-62.5deg);}

.progressbar .item dl {
	display: flex;
	flex-direction: column;
}


.progressbar .item dd {
	flex-grow: 1;
}

.progressbar .item dt {
	font-size: clamp(16px, 3.33333333333vw, 17px);
	font-weight: var(--font-weight-bold);
	color: var(--color-background);
	line-height: 1.0;
	display: inline-block;
	padding: 8px 20px;
	margin-bottom: 5px;
	border-radius: 100vh;
	background-color: var(--color-middleblue2);
}

.progressbar .item dt span.classtext{
	display: inline-block;
	font-size: clamp(11px, 2.29166666667vw, 12px);
}

.progressbar .item dt span.leveltext{
	display: inline-block;
	font-size: clamp(11px, 2.29166666667vw, 11px);
	padding: 2px 5px;
	line-height: 1.0;
	box-sizing: border-box;
	font-weight: var(--font-weight-medium);
	background-color: var(--color-background);
}

.progressbar .item:nth-of-type(2) dt {
	background-color: var(--color-middleblue1);
}
.progressbar .item:nth-of-type(3) dt {
	background-color: var(--color-darkblue);
}

.progressbar .item:nth-of-type(1) dt span.leveltext{
	color: var(--color-middleblue2);
}
.progressbar .item:nth-of-type(2) dt span.leveltext{
	color: var(--color-middleblue1);
}
.progressbar .item:nth-of-type(3) dt span.leveltext{
	color: var(--color-darkblue);
}

.progressbar .item p {
	font-feature-settings: "palt";
	text-align: justify;
	padding: 0 10px;
	box-sizing: border-box;
	min-height: 65px;
}

.progressbar .item figure {width: 100px; aspect-ratio: 273 / 266; margin: 0 auto;}
.progressbar .item:nth-of-type(3) figure {width: 70px; margin-top: 30px;}

.no1105 {display: none;}
.no985 {display: none;}
@media screen and (max-width: 1105px) {
.no1105 {display: block;}

}

@media screen and (max-width: 985px) {
.no985 {display: block;}
	.progressbar {
	  display: flex;
	  justify-content: space-between;
	  flex-wrap: wrap;
	  width: calc(100% - 40px);
	  margin: 0 auto 10px;
	}
	.progressbar .item {
	    width: 100%;
	    flex-wrap: wrap;
		position: relative;
	    padding: 20px 20px 20px 20px;
	}

	.progressbar .item dl {
	  display: flex;
	  flex-direction: inherit;
	  align-items: center;
	  width: 100%;
	}

	.progressbar .item dd {
		flex-grow: 0;
		display: flex;
		align-items: center;
		width: calc(100% - 90px);
	}

	.progressbar .item dt {
		display: inline-block;
		width: 90px;
		aspect-ratio: 1/1;
		border-radius: 50%;
		padding: 18px 0 0;
	}

.progressbar .item dt span.leveltext{
	font-size: clamp(10px, 2.08333333333vw, 11px);
	padding: 2px 2px;
	margin-top: 5px;
}

	.progressbar .item:not(:last-child)::before,
	.progressbar .item:not(:last-child)::after {
		top: inherit;
		bottom:-10px;
		left: 0;
		right: 0;
		width: 4px;
		height: 40px;
		transform-origin: 50% calc(100% - 2px);
	}

	.progressbar .item dd p {
		min-height: auto;
		width: calc(100% - 70px);
	}
	.progressbar .item figure {width: 70px;}
	.progressbar .item:nth-of-type(3) figure {width: 70px; margin-top: 0px;}
}


@media screen and (max-width: 767px) {
	.progressbar .item {
	    padding: 10px;
	}
}

/* voice */
.voice .mainTtl {text-align: left; padding-left: 2.5%; box-sizing: border-box;}
.voice .mainTtl .re-radial-dot {text-align: center;}

.illVoice {width: 90px; aspect-ratio: 344 / 190; display: inline-block;}



.voiceImg {
	position: absolute;
	top:0;
	right:0;
	height: 600px;
}

.voiceImg figure{
	position: relative;
	height: 600px;
	aspect-ratio: 1918 / 993;
}

.voiceComment {
	position: absolute;
	top:-200px;
	right:2.5%;
	width: 340px;
}

.voiceComment div {
	position: relative;
	aspect-ratio: 1/1;
	padding: 30px 20px;
	background-color: var(--color-middleblue2);
	border-radius: 50%;
	text-align: center;
}
.voiceComment div:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -40px;
  border: 15px solid transparent;
  border-top: 15px solid var(--color-middleblue2);
  z-index: 5;
}

.voiceComment p{
	font-size: clamp(15px, 3.125vw, 16px);
	font-weight: var(--font-weight-bold);
	color: var(--color-background);
	line-height: var(--line-height-14);
}

.voiceComment h3{
	font-size: clamp(18px, 3.75vw, 22px);
	font-weight: var(--font-weight-bold);
	color: var(--color-darkblue);
	margin-bottom: 20px;
}


.voiceComment h3 .sectionTextBox span {
	display: inline-block;
	font-size: clamp(20px, 4.16666666667vw, 25px);
	text-decoration: 3px underline wavy var(--color-accent-yellow);
    text-underline-offset: 5px;
    color: var(--color-accent-yellow);
}


.voiceBox {
	position: relative;
}

.voiceList {
	
	position: relative;
	top:0;
	left:2.5%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 55%;
}

.voiceList li {width: 100%;}

.voiceListBox {
	background-color: var(--color-background);
	border: 10px solid var(--color-middleblue1);
	padding: 20px 15px;
	border-radius: 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}

.voiceListBox div{
	width: 25%;
	max-width: 150px;
	
}

.voiceListBox dl{
	width: 75%;
	max-width: calc(100% - 150px);
	padding-left: 10px;
	box-sizing: border-box;
}

.voiceListBox div figure{
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: #FFF;
	position: relative;
	margin: 0 auto;
	background-color: var(--color-lightblue);
}

.voiceListBox div figure img{border-radius: 50%; position: absolute; bottom: 0;}
.voiceListBox div p {text-align: center;line-height: var(--line-height-14); font-size: 12px;}


.voiceListBox dt{
	font-size: clamp(16px, 3.33333333333vw, 18px);
	font-weight: var(--font-weight-bold);
	color: var(--color-darkblue);
	margin-bottom: 10px;
	line-height: var(--line-height-14);
}

.voiceListBox dd p{
	font-size: clamp(14px, 2.91666666667vw, 15px);
	font-feature-settings: "palt";
	text-align: justify;
	padding: 15px 0;
	box-sizing: border-box;
}
.bk {display: none}

@media all and (max-width: 1085px) {
	.bk {display: block}
}

@media screen and (max-width: 950px) {
	.voiceListBox {
	padding: 20px 5px;
	}
}

@media screen and (max-width: 825px) {
	.voiceListBox {
	padding: 20px 0px;
	}
}

@media screen and (max-width: 760px) {
	.voiceListBox {
	flex-wrap: wrap;
	padding: 20px;
	max-width: 300px;
	}
	.voiceListBox div{
	width: 100%;
	max-width: 100%;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	}
	.voiceListBox div figure {width: 50px;}
	.voiceListBox div figure img{border-radius: 50%; position: absolute; bottom: 0;}
	.voiceListBox div p {width: calc(100% - 50px); padding-left: 5px; box-sizing: border-box; text-align: left;line-height: var(--line-height-14);}

	.voiceListBox dl{
		width: 100%;
		max-width: 100%;
		padding-left: 0px;
		box-sizing: border-box;
	}

	.voiceListBox dd p{
		padding: 0;
		font-size: 13px;
	}

	.voiceImg {
		position: absolute;
		top:0;
		right: -100px;
		height: 600px;
	}

	.voiceComment {
		position: absolute;
		top:-140px;
		right: 85px;
		width: 300px;
	}
	.voiceComment div {
		padding: 40px 20px;
	}

	.voiceComment div:before {
	  content: "";
	  position: absolute;
	  bottom: -10px;
	  left: 50%;
	  margin-left: -40px;
	  border: 15px solid transparent;
	  border-top: 15px solid var(--color-middleblue2);
	  z-index: 5;
	  transform: rotate(90deg);
	}

	.voiceComment p{
		font-size: 14px;
	}

	.voiceComment h3{
		font-size:18px;
		margin-bottom: 20px;
		line-height: var(--line-height-14);
	}


	.voiceComment h3 .sectionTextBox span {
		font-size: 20px;
		text-decoration: 2px underline wavy var(--color-accent-yellow);
	    text-underline-offset: 3px;
	}


}
@media screen and (max-width: 576px) {
	.voiceListBox {
	flex-wrap: wrap;
	padding: 13px;
	max-width: 220px;
	}
}


@media screen and (max-width: 492px) {
	.voiceBox {
		height: 1200px;
	}

	.voiceImg {
		position: absolute;
		top:inherit;
		bottom:0;
		right:0;
		height: 600px;
	}
	.voiceList {
		width: 95%;
	}
	.voiceListBox {
	flex-wrap: wrap;
	padding: 13px;
	max-width: 100%;
	}

}
@media screen and (max-width: 430px) {
	.voiceComment {
		position: absolute;
		top:-140px;
		right: 5%;
		width: 300px;
	}

	.voiceImg {
		right: -70px;
	}

}


/* faq */
.faq .box {
	padding-bottom: 0;
	/* padding-top: 0; */
}
.faq .mainTtl,
.faq .mainSubTtl {text-align: center;}
.no387 {display: none;}
@media all and (max-width: 387px) {
.no387 {display: block;}
}
.mobileWrap {
	/* width: 430px; */
	width: 40%;
	min-width: 320px;
	/* aspect-ratio: 9 / 20; */
	background-color: #000;
	/* border-left: 2px solid #aaa;
	border-right: 2px solid #aaa;
	border-top: 2px solid #aaa;
	border-radius: 40px 40px 0 0;
	padding: 20px 20px 0px 20px; */
	border: 2px solid #aaa;
	border-radius: 40px;
	padding: 20px;
	box-sziing: border-box;
	margin: 0 auto 40px;
}

.mobileContents {background-color: #7a9ccc; /* border-radius: 30px 30px 0 0; */ border-radius: 30px; width: 100%; height: 100%; position: relative;}
.mobileParts {position: relative; height: 120px;}
.mobileParts01,
.mobileParts02,
.mobileParts03,
.mobileParts04 {position: absolute; top:0;}


.mobileParts01 {position: absolute; top: 10px; left: 50%; margin-left: -67.5px; width: 135px;}
.mobileParts02 {position: absolute; top: 20px; right: 10px; width: 48px;}
.mobileParts03 {position: absolute; top: 60px; left: 20px; width: 12px;}
.mobileParts04 {position: absolute; top: 60px; right: 20px; width: 97px;}
.mobileTxt {padding: 5px 5px 50px 5px; box-sizing: border-box; position: relative;}

@media all and (max-width: 980px) {
.mobileWrap {width: 60%;}
}


@media all and (max-width: 768px) {
.mobileWrap {width: 80%;}
}

@media all and (max-width: 430px) {
.mobileWrap {width: 94%;}
.mobileParts01 {margin-left: -25%; width: 50%;}
.mobileParts02 {width: 15%;}
.mobileParts03 {width: 3%;}
.mobileParts04 {width: 30%;}
}

.mobileTxt dl{
	display: flex;
}
.mobileTxt dt{
	width: 50px;
}

.mobileTxt dt figure{
	width: 100%;
	aspect-ratio: 1/1;
}

.mobileTxt dd{
	width: calc(100% - 50px);
}

.mobileTxt li:nth-of-type(2n+1) {width: 80%; position: relative; margin-bottom: 10px;}
.mobileTxt li:nth-of-type(2n) {width: 70%; position: relative; left: 30%; margin-bottom: 10px;}


.mobileTxt li:nth-of-type(2n+1) p{padding-left: 15px; box-sizing: border-box;}
.mobileTxt li:nth-of-type(2n) p{padding-right: 15px; box-sizing: border-box;}

.mobileTxt li:nth-of-type(2n+1) p span{
	position: relative;
	display: inline-block;
	background-color: #FFF;
	border-radius: 12px;
	padding: 20px;
	box-sizing: border-box;
	line-height: var(--line-height-14);
	text-align: justify;
  	text-align-last: left;
}

.mobileTxt li:nth-of-type(2n) p span{
	position: relative;
	display: inline-block;
	background-color: #60e252;
	border-radius: 12px;
	padding: 20px 15px 20px 20px;
	box-sizing: border-box;
	line-height: var(--line-height-14);
	text-align: justify;
  	text-align-last: left;
}


.mobileTxt li p span::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  top: 5px;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.mobileTxt li p span::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  top: 15px;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.mobileTxt li:nth-of-type(2n+1) p span::before {
  left: -10px;
  border-left: 15px solid #fff;
  border-top: 15px solid transparent;
}
.mobileTxt li:nth-of-type(2n+1) p span::after {
  left: -15px;
  border-left: 10px solid #7a9ccc;
  border-top: 10px solid transparent;
}

.mobileTxt li:nth-of-type(2n) p span::before {
  left: auto;
  right: -10px;
  border-left: 15px solid transparent;
  border-top: 15px solid #60e252;
}
.mobileTxt li:nth-of-type(2n) p span::after {
  left: auto;
  right: -15px;
  border-left: 10px solid transparent;
  border-top: 10px solid #7a9ccc;
}

/* closing */
.closing {background-color: var(--color-darkblue);}
.closing .mainTtl {color: var(--color-background); text-align: center;}


.closing .sectionText .sectionTextBox{
	display: inline-block;
	font-size: clamp(20px, 4.16666666667vw, 30px);
	font-weight: var(--font-weight-bold);
	text-align: center;
	font-feature-settings: "palt";
	/* background-color: var(--color-darkblue); */
	color: #FFF;
	/* padding: 30px;
	border-radius: 10px; */
	margin-top: 80px;
	margin-bottom: 40px;
}

.closing .sectionText .sectionTextBox span {
	display: inline-block;
	font-size: clamp(30px, 6.25vw, 50px);
	text-decoration: 3px underline wavy var(--color-accent-yellow);
    text-underline-offset: 5px;
    color: var(--color-accent-yellow);
}

@media all and (max-width: 480px) {
	.closing .sectionText .sectionTextBox{
	font-size: 18px;
	}

	.closing .sectionText .sectionTextBox span {
		font-size: 25px;
		text-decoration: 2px underline wavy var(--color-accent-yellow);
	    text-underline-offset: 3px;
	}
}

.closingSubTtl {position: relative;}
.closing .mainSubTtl {
	position: absolute;
	top: 50px;
	left:50%;
	margin-left: -300px;
	transform:rotate(-8deg);
	color: var(--color-background);
}

.closing .fukidashi-01::before {
    content: "";
    width: 40px;
    height: 3px;
    transform: rotate(60deg);
    box-sizing: border-box;
    background-color: var(--color-background);
}
.closing .fukidashi-01::after {
    content: "";
    width: 40px;
    height: 3px;
    transform: rotate(-60deg);
    box-sizing: border-box;
    background-color: var(--color-background);
}

@media (max-width: 1067px) {
.closing .mainSubTtl {
	margin-left: -280px;
}
}

@media (max-width: 700px) {
.closing .mainSubTtl {
	font-size: 20px;
	margin-left: -180px;
}
}




.tokuten {
	display: flex;
	justify-content: center;
	align-items: center;
}
.tokuten li {
	padding: 20px;
	box-sizing: border-box;
	position: relative;
}

.tokuten li:nth-of-type(2) {
	font-size: clamp(20px, 4.16666666667vw, 30px);
	color: var(--color-background);
	padding: 20px 0px;
	font-weight: 900;
}

.tokutenImg {
	position: absolute;
	width: 200px;
	top: -70px;
	right: -50px;
}

@media all and (max-width: 850px) {
	.tokuten {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	.tokuten li {width: 100%; max-width: 580px; text-align: center;}
	.tokuten li:nth-of-type(2) {padding: 0px;}
	.tokutenImg {
		position: absolute;
		width: 200px;
		top: -70px;
		right: -10px;
	}
}
@media all and (max-width: 580px) {
	.tokutenImg {
		position: absolute;
		width: 150px;
		top: -60px;
		right: -10px;
	}
}


.tokuten dl {position: relative;}

.tokuten dt {
position: absolute;
top:-20px;
left:-20px;
}


.tokuten dd p{
	background-color: var(--color-background);
	border: 10px solid var(--color-middleblue2);
	padding: 10px 30px 20px;
	box-sizing: border-box;
	border-radius: 20px;
	font-family: "Kaisei Opti", serif;
	font-size: clamp(16px, 3.33333333333vw, 18px);
	text-align: center;
	font-weight: 900;
	min-width: 300px;
	color: var(--color-darkblue);
	line-height: ver(--line-height-14);
}

.tokuten dd p span{
	display: inline-block;
}
.tokuten dd p span.tokutenBig{
	font-size: clamp(20px, 4.16666666667vw, 30px);
}

.tokuten dd p span.tokutenMiddle{
	font-size: clamp(18px, 3.75vw, 22px);
}

.tokuten dd p span.tokutenSmall{
	font-size: clamp(14px, 2.91666666667vw, 15px);
	font-family: var(--font-family-sans);
	font-weight: var(--font-weight-medium);
	color: var(--color-font);
}

.caption {text-align: center; font-size: 11px; color: var(--color-background);}


.fukidashi3{
  position: relative;
  padding: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  color: var(--color-background);
  font-size: clamp(14px, 2.91666666667vw, 15px);
  background-color: var(--color-accent-darkorange);
  display: block;
  font-family: "Kaisei Opti", serif;
  line-height: 1.0;
  font-weight: 900;
}
.fukidashi3::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: 2px;
  bottom: 2px;
  border-right: 20px solid var(--color-accent-darkorange);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(-65deg);
}

.fukidashi3 span.tokutenBig{
	font-size: clamp(18px, 3.75vw, 22px);
}


/* school */
.school {
	background-color: var(--color-background);
	border: 10px solid var(--color-middleblue2);
	padding: 30px;
	box-sizing: border-box;
	border-radius: 20px;
	margin-bottom: 100px;
}



.school .subTtl {text-align: center;}
.schoolTxt {
text-align: center;
font-size: clamp(16px, 3.33333333333vw, 18px);
margin-bottom: 20px;
}
.schoolBtn {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.schoolBtn li{ width: calc(100% / 4); padding: 10px 10px; box-sizing: border-box;}

.othercourse {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px dashed var(--color-gray);
}


.othercourse .schoolBtn li{ width: calc(100% / 2); padding: 10px 10px; box-sizing: border-box;}

.schoolBtn a {
	background-color: var(--color-background);
	display: block;
	padding: 20px 10px 20px 4px;
	box-sizing: border-box;
	border-radius: 100vh;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
	display: flex;
	align-items:center;
	height: 88px;
}

.othercourse .schoolBtn a {
	border-radius: 8px;
	padding: 20px 15px 20px 4px;
}


@media all and (max-width: 1080px) {
.schoolBtn li{ width: calc(100% / 3); padding: 8px;}
}
@media all and (max-width: 820px) {
.schoolBtn li{ width: calc(100% / 2); padding: 5px;}
.othercourse .schoolBtn li{ width: calc(100% / 1); padding: 5px; box-sizing: border-box;}
}
@media all and (max-width: 550px) {
.schoolBtn li{ width: calc(100% / 1); padding: 5px;}
}

.schoolBtn a:hover,
.schoolBtn a:active {
	background-color: var(--color-accent-yellow);
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	transition: background-color .3s, box-shadow .3s, margin-top .1s;
}

.schoolBtn a figure{
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.schoolBtn a figure img{
	border-radius: 50%;
}

.othercourse .schoolBtn a figure{
	width: auto;
	height: 80px;
	aspect-ratio: 340 / 250;
	border-radius: 8px;
}

.othercourse .schoolBtn a figure img{
	border-radius: 8px;
}


.othercourseBtn{
	position: relative;
}
.othercourseBtn::before,
.othercourseBtn::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
	margin: auto;
	content: "";
	vertical-align: middle;
}


.othercourseBtn::before{
	width: 25px;
	height: 25px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--color-accent-darkorange);
}

.othercourseBtn::after{
	right: 15px;
	width: 9px;
	height: 9px;
	border-radius: 1px;
	border-top: 2px solid var(--color-background);
	border-right: 2px solid var(--color-background);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.othercbBr {display: none;}


@media all and (max-width: 550px) {

	.othercourseBtn::before,
	.othercourseBtn::after{
		right: 5px;
	}

	.othercourseBtn::before{
		width: 15px;
		height: 15px;
	}

	.othercourseBtn::after{
		right: 10px;
		width: 6px;
		height: 6px;
	}
}

.schoolBtn a dl {padding-left: 10px; box-sizing: border-box;}
.schoolBtn a dt {
	font-weight: var(--font-weight-bold);
	color: var(--color-middleblue1);
	display: block;
	line-height: var(--line-height-14);
}

.schoolBtn a dd {
	font-weight: var(--font-weight-bold);
	color: var(--color-font);
	font-size: clamp(16px, 3.33333333333vw, 18px);
	display: block;
	line-height: var(--line-height-14);
}
.othercourse .schoolBtn a dt {
	color: var(--color-font);
}
.othercourse .schoolBtn a dd {
	color: var(--color-accent-darkorange);
	line-height: 1.2;
}

.othercourse .schoolBtn a dd span {
	font-size: 14px;
}


@media all and (max-width: 439px) {
	.othercourse .schoolBtn a figure{
		width: 80px;
		height: 80px;
		aspect-ratio: 1 / 1;
		border-radius: 8px;
	}
	.othercourse .schoolBtn a dl {padding-left: 5px;}
	.othercourse .schoolBtn a dt {font-size: 13px;}
}

@media all and (max-width: 390px) {
	.othercbBr {display: block;}
}

.closing .ctaBtn {line-height: 1.2;}

.ctaBtn .fukidashi-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    padding: 10px 8px 15px;
    font-size: clamp(18px, 3.75vw, 22px);
    color: var(--color-background);
}
.ctaBtn .fukidashi-01::before {
    content: "";
    width: 40px;
    height: 3px;
    transform: rotate(60deg);
    box-sizing: border-box;
    background-color: var(--color-background);
}
.ctaBtn .fukidashi-01::after {
    content: "";
    width: 40px;
    height: 3px;
    transform: rotate(-60deg);
    box-sizing: border-box;
    background-color: var(--color-background);
}



/* section img */
.mv__wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problemContents img,
.featuresList img,
.course img,
.progressbar .item img,
.voice img,
.mobileWrap img,
.school img,
.closing img,
footer img,
.ctaIll img,
.illVoice img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.no480 {display: none;}
@media all and (max-width: 480px) {
	.no480 {display: block;}
}






/* FIRST VIEW + gsap + jquery
---------------------------------------------------------------- */
.mv__wrapper{
    width: 100%;
    height: 100svh;
    padding: 0;
    /* pointer-events: none; */
}

.firstview {
    width: 100%;
    height: calc(100svh - 55px);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    top: 55px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.fv {
	position: relative;
	height: 100svh;
	width: 100%;
	aspect-ratio: 2560 / 1501;
	margin: -55px auto 0;
}

.fvDetail {
	position: absolute;
	top: 55px;
	height: calc(100svh - 55px);
	/* min-height: 600px; */
	width: 100%;
	margin: 0 auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.fvDetailBox {
	position: relative;
	/* height: calc(100svh - 55px); */
	width: 100%;
	aspect-ratio: 1920 / 1080;
}


.kv,
.kv1,
.kv2,
.authory,
.catchcopy,
.subcopy {display: block;}

.kv {
	position: relative;
	left:0;
	top:0;
	height: 100%;
	width: 100%;
}
.kv1 {
	position: absolute;
	top: 0;
	width: 100%;
}
.kv2 {
	position: absolute;
	bottom: -10px;
	width: 100%;
}
.authory,
.catchcopy {
	position: absolute;
	top:0%;
	width: 100%;
}
.subcopy {
	position: absolute;
	bottom:2%;
	width: 100%;
}

/* .kv img {
	position: absolute;
    width: 100%;
    object-fit: cover;
} */
.kv1 img,
.kv2 img,
.catchcopy img,
.authory img {
	position: relative;
    width: 100%;
    object-fit: cover;
}



.kv1 img,
.kv2 img,
.catchcopy img,
.authory img {aspect-ratio: 1920 / 1080;}


@media (min-aspect-ratio: 16/9) {
	.fvDetailBox {height: 90vh; width: auto;}

}


@media only screen and (max-device-width: 1024px) and (orientation:portrait) {
	.fvDetailBox {
		width: 100%;
		height: auto;
		top: -55px;
		aspect-ratio: 1280 / 1690;
	}

	.kv1 img,
	.kv2 img,
	.authory img,
	.catchcopy img {aspect-ratio: 1280 / 1690; }

}

@media only screen and (max-device-width: 480px) and (orientation:portrait) {
.mv__wrapper{
    background-color: var(--color-darkblue);
}

.firstview {
    height: calc(100svh - 195px);
    background-color: var(--color-background);
}

.fvDetail {
	height: calc(100svh - 195px);
}
}

.sliderBtn {
  width: 100%;
  position: absolute;
  bottom:0;
  left:0;
  padding: 10px 0;
}
.sliderBtn div,
.sliderBtn4 div {padding: 0 10px; box-sizing: border-box;}
.sliderBtn a,
.sliderBtn4 a{ color: var(--color-main);}


.sliderBtn4 {
  width: 100%;
  padding: 30px 0;
}


.bgItemBox .swiper {
  padding: 13vw 0;
}

.bgItemBox .swiper-slide {
  opacity: .7; /* 左右のスライドを薄くする */
  transform: scale(1); /* 左右のスライドを小さくする */
  transition: .7s; /* ゆっくり小さくさせる */
  aspect-ratio: 1400 / 748;
  position: relative;
  border-radius: 10px;
  /* box-shadow: 0px 0 1.5px rgba(0,0,0,0.2); */
}

.bgItemBox .swiper-slide img {
  height: auto;
  width: 100%;
  aspect-ratio: 1400 / 748;
  line-height:0;
  border-radius: 10px;
  box-shadow: 0px 0 2px rgba(0,0,0,0.4);
}

.bgItemBox .swiper-slide:after {
  width: 100%;
  aspect-ratio: 1400 / 748;
  position: absolute;
  left:0;
  top:0;
  background-color: rgba(0,0,0,0.3);
  border-radius: 10px;
  content:"";
}

.bgItemBox .swiper-slide-active {
  opacity: 1; /* 中央のスライドは薄くしない */
  transform: scale(2.3); /* 中央のスライドは小さくしない */
  z-index: 1000; /* 中央のスライドを一番上にする */
  aspect-ratio: 1400 / 748;
  /* box-shadow: 0px 0 2px rgba(0,0,0,0.4); */
}


.bgItemBox .swiper-slide.swiper-slide-active:after  {
  background-color: rgba(0,0,0,0);
}

@media all and (max-width: 767px) {
	.bgItemBox .swiper {
	  padding: 3vw 0;
	  width: 94%;
	  margin: 0 auto;
	}

	.bgItemBox .swiper-slide,
	.bgItemBox .swiper-slide img,
	.bgItemBox .swiper-slide:after {
	  border-radius: 10px;
	}

	.bgItemBox .swiper-slide-active {
	  opacity: 1; /* 中央のスライドは薄くしない */
	  transform: scale(1.0); /* 中央のスライドは小さくしない */
	  z-index: 1000; /* 中央のスライドを一番上にする */
	  aspect-ratio: 1400 / 748;
	  /* box-shadow: 0px 0 2px rgba(0,0,0,0.4); */
	}
}

/* pageTop
----------------------------------------------- */
#pageTop {
	position: fixed;
	bottom: 2.5%;
	right: 2.5%;
	width: 30px;
	height: 30px;
	z-index: 30;
	text-align: center;
	line-height: 1.1;
	display: none;
}
#pageTop a{
	position: relative;
	width: 30px;
	height: 30px;
	display: block;
	box-sizing: border-box;
	border-radius: 50%;
	padding-top: 8px;
	background-color: var(--color-middleblue2);
	font-family: "Roboto", sans-serif;
}


.arrow {
  position: relative;
  display: inline-block;
  width: 2px;
  height: 15px;
  margin: 0 9.5px;
  border-radius: 9999px;
  background-color: var(--color-darkblue);
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 9px;
  border-radius: 9999px;
  background-color: var(--color-darkblue);
  transform-origin: 50% 1px;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

.loading2 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--bs-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s linear;
}



/* FONT
------------------------------------------------------- */
.zenK-G {font-family: "Zen Kaku Gothic New", sans-serif;}
.zenO-M {font-family: "Zen Old Mincho", serif;}
.zenM-G {font-family: "Zen Maru Gothic", sans-serif;}
.kaisei {font-family: "Kaisei Opti", serif; }

    

/* アニメーション
--------------------------------------------------------- */


.animation{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 2.5s;
}
.animation1{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.8s;
}
.animation2{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

.animation3{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 2.0s;
}


.keyframe0{
  animation-name: anim_po;
  position: absolute;
}
​
@keyframes anim_po {
  0% {
    top: 0px;
  }
  100% {
    top: 5px;
  }
}

.keyframe1{
  animation-name: anim_v;
}

@keyframes anim_v {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 5px);
  }
}

.keyframe1-1{
  animation-name: anim_v2;
}

@keyframes anim_v2 {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 8px);
  }
}


.keyframe2{
  animation-name: anim_h;
}
​
@keyframes anim_h {
  0% {
    transform: translate(0px, 0);
  }
  100% {
    transform: translate(30px, 0);
  }
}

.keyframe3{
  animation-name: anim_s;
  transform: rotate(2deg);
  animation-duration: 5s;
}


@keyframes anim_s {
  50% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}

.keyframe5{
  animation-name: anim_sc;
  transform: scale(0.95,0.95);
}

@keyframes anim_sc {
  100% {
    transform: scale(1,1);
  }
}

.keyframe6 {
  animation-name: poyopoyo;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}

/* hamburger-------------------------------------------------------------
.hamburger {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 100vmax;
    background-color: var(--color-theme);
    cursor: pointer;
}
.hamburger::before, .hamburger::after, .hamburger .hamburgerLine {
    position: absolute;
    display: block;
    width: 50%;
    height: 1px;
    border-radius: 100vmax;
    background-color: white;
}
.hamburger::before, .hamburger::after {
    content: "";
}
.hamburger::before {
    transform: translateY(-8px);
}
.hamburger::after {
    transform: translateY(8px);
}
.hamburger[aria-expanded="true"] .hamburgerLine {
    opacity: 0;
}
.hamburger[aria-expanded="true"]::before {
    transform: rotate(30deg);
}
.hamburger[aria-expanded="true"]::after {
    transform: rotate(-30deg);
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.nav[aria-hidden="true"] {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
.nav[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    width: 100%;
    height: 100%;
    background: var(--color-theme);
    color: white;
    font-size: max(16px, 1vw);
	font-weight: 500;
	letter-spacing: 0.2em;
}
.menu li {
    list-style: none;
}
.menu li a{
    color: #FFF;
}
---------------------------------------------------------------- */



@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0) rotate(0);;
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0) rotate(10deg);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0) rotate(0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0) rotate(10deg);
  }
}

.star {
	animation: flashing 4s infinite;
}
@keyframes flashing {
	0% {
		opacity: 1;
	}
	90% {
		opacity: 0.3;
	}
	100% {
		opacity: 1;
	}
}

.pcno {display: none;}
.spno {display: block;}
@media all and (max-width: 428px) {
	.pcno {display: block;}
	.spno {display: none;}

}