@charset "UTF-8";

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	Utilities
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.u-center{
	text-align: center;
}
.u-left{
	text-align: left;
}
.u-right{
	text-align: right;
}

@media only screen and (max-width: 768px) {
	.fp-section__heading.u-left{
		text-align: center;
	}
}

/*width
———————————————————————————————————————————————————————————————————*/
.u-w-647{
	max-width: 647px;
	margin: 0 auto;
}
.u-w-880{
	max-width: 880px;
	margin: 0 auto;
}
.u-w-977{
	max-width: 977px;
	margin: 0 auto;
}
.u-w-1000{
	max-width: 1000px;
	margin: 0 auto;
}
.u-w-1080{
	max-width: 1080px;
	margin: 0 auto;
}
.u-w-max{
	max-width: 100%;
	margin: 0 auto;
}

/*flex
———————————————————————————————————————————————————————————————————*/
.u-flex-2{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 32px;
}
.u-flex-2 > *{
	flex: 1;
}
.u-flex-3{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 32px;
}
.u-flex-3 > *{
	flex: 1;
}

@media only screen and (max-width: 768px) {
	.u-flex-2{
		flex-direction: column;
		gap: 24px;
	}
	.u-flex-3{
		flex-direction: column;
		gap: 24px;
	}
}

/*background
———————————————————————————————————————————————————————————————————*/
.u-bg-plaid{
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/bg-plaid.svg);
	background-repeat: repeat;
	background-size: 723.62px 570px;
}
.u-bg-gray{
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/bg-gray.webp);
	background-repeat: repeat;
	background-size: 1602px 1000px;
}
.u-bg-blue{
	background-color: #E5F3FF;
	border-radius: 60px 60px 0 0;
}

@media only screen and (max-width: 768px) {
	.u-bg-blue{
		border-radius: 32px 32px 0 0;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section{
	padding: 100px 0;
	color: #222;
}

@media only screen and (max-width: 1128px) {
	.fp-section{
		padding: 64px 24px;
	}
}
@media only screen and (max-width: 768px) {
	.fp-section{
		padding: 48px 20px;
	}
}

/*heading
———————————————————————————————————————————————————————————————————*/
.fp-section__heading{
	padding-bottom: 48px;
}
.fp-section__heading p{
	position: relative;
	display: inline-block;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	padding-left: 14px;
	margin-bottom: 16px;
}
.fp-section__heading p::before{
	content: "";
    width: 6px;
    height: 6px;
	background: #0085FF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.fp-section__heading h2{
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
}
.fp-section__heading--large h2{
	font-size: 44px;
}

@media only screen and (max-width: 1128px) {
	.fp-section__heading h2{
		font-size: 28px;
	}
	.fp-section__heading--large h2{
		font-size: 32px;
	}
}
@media only screen and (max-width: 768px) {
	.fp-section__heading{
		padding-bottom: 40px;
	}
	.fp-section__heading h2{
		font-size: 26px;
	}
	.fp-section__heading--large h2{
		font-size: 32px;
	}
}

/*text-box
———————————————————————————————————————————————————————————————————*/
.fp-section__text-box p{
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 24px;
}
.fp-section__text-box p:last-of-type{
	margin-bottom: 0;
}
.fp-section__text-box p span{
	font-weight: 700;
	background:linear-gradient(transparent 50%, #FEEC00 50%);
}
.fp-section__text-attention{
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
	.fp-section__text-box p{
		font-size: 14px;
	}
}

/*button
———————————————————————————————————————————————————————————————————*/
.fp-section__button{
	display: block;
	width: fit-content;
}
.fp-section__button--right{
	margin-left: auto;
}
.fp-section__button--center{
	margin: 0 auto;
}
.fp-section__button > div{
	display: flex;
	align-items: center;
}
.fp-section__button > div > span{
	color: #0085FF;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	border-bottom: 1px solid #0085FF;
	margin-right: 16px;
}
.fp-section__button > div > img{
	width: 24px;
}

@media only screen and (max-width: 768px) {
	.fp-section__button > div > span{
		font-size: 16px;
		margin-right: 12px;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-top
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-top{
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/top-bg.webp);
	background-size: cover;
	background-position: center;
	margin-top: 144px;
	padding: 48px;
}
.fp-top__inner{
	position: relative;
}
.fp-top__title{
	margin-bottom: 24px;
}
.fp-top__title > h1{
	display: none;
}
.fp-top__title > img{
	width: 412.46px;
}
.fp-top__points{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 16px;
	margin-bottom: 16px;
}
.fp-top__point{
	display: flex;
    flex-direction: column;
	background: #fff;
	border-radius: 5px 30px 5px 30px;
	width: 156px;
	padding: 16px;
}
.fp-top__point--1 > img{
	width: 88.53px;
	margin: auto auto 8px;
}
.fp-top__point--2 > img{
	width: 66.19px;
	margin: auto auto 8px;
}
.fp-top__point--3 > img{
	width: 104.75px;
	margin: auto auto 8px;
}
.fp-top__point > p{
	font-size: 12px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	margin: auto;
}
.fp-top__description{
	color: #fff;
	font-size: 10px;
	line-height: 1.4;
}
.fp-top__attention{
	position: absolute;
    top: 0;
	right: 0;
}
.fp-top__attention > img{
	width: 180px;
}

@media only screen and (max-width: 1128px) {
	.fp-top{
		padding: 48px 24px;
	}
}
@media only screen and (max-width: 768px) {
	.fp-top{
		background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/top-bg-sp.webp);
		margin-top: 110px;
		padding: 220px 20px 48px;
	}
	.fp-top__title{
		margin-bottom: 40px;
	}
	.fp-top__title > img{
		width: 94.029850746%;
	}
	.fp-top__points{
		gap: 12px;
		margin-bottom: 16px;
	}
	.fp-top__point{
		flex: 1;
		border-radius: 4px 24px 4px 24px;
		padding: 10px 0;
	}
	.fp-top__point--1 > img{
		width: 69.62%;
	}
	.fp-top__point--2 > img{
		width: 52.06%;
	}
	.fp-top__point--3 > img{
		width: 82.38%;
		margin: auto auto 8px;
	}
	.fp-top__point > p{
		font-size: 9px;
	}
	.fp-top__attention{
		position: absolute;
		top: -200px;
		right: -8px;
	}
	.fp-top__attention > img{
		width: 124px;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-cta
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-cta{
	background: linear-gradient(135deg, #92d3e8 0%, #0085ff 100%);
	padding: 24px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.fp-cta > p{
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.04em;
}
.fp-cta > p span{
	color: #FEEC00;
	font-weight: 700;
}
.fp-cta > a{
	display: block;
    width: 335px;
}

@media only screen and (max-width: 1128px) {
	.fp-cta{
		padding: 24px;
		flex-direction: column;
		gap: 16px;
	}
}
@media only screen and (max-width: 768px) {
	.fp-cta{
		padding: 24px 20px;
	}
	.fp-cta > p{
		font-size: 20px;
		text-align: center;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--about
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section--about{
	position: relative;
}
.fp-section--about::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/about-bg-left.webp);
	width: 293px;
	height: 394px;
	background-size: contain;
}
.fp-section--about::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/about-bg-right.webp);
	width: 413px;
	height: 537.01px;
	background-size: contain;
}
.fp-section--about .fp-section__text{
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 24px;
}
.fp-section--about .fp-section__text span{
	color: #0085FF;
	font-weight: 700;
}
.fp-section--about .fp-section__text-attention{
	text-align: center;
}
.fp-section__about-gallery{
	display: none;
}

@media only screen and (max-width: 1128px) {
	.fp-section--about::before{
		content: none;
	}
	.fp-section--about::after{
		content: none;
	}
	.fp-section__about-gallery{
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		gap: 16px;
		margin-top: 40px;
	}
	.fp-section__about-gallery > *{
		flex: 1;
	}
}
@media only screen and (max-width: 768px) {
	.fp-section--about .fp-section__text{
		font-size: 16px;
		text-align: left;
	}
	.fp-section--about .fp-section__text br{
		display: none;
	}
	.fp-section--about .fp-section__text-attention{
		text-align: left;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--places
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section--places{
	position: relative;
	padding-top: 100px;
	padding-bottom: 280px;
}
.fp-section--places::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/places-bg-center.svg);
	width: 900px;
	height: 529.13px;
	background-size: contain;
	z-index: -1;
}
.fp-section__places-bottom{
	position: absolute;
	bottom: -140px;
	left: 0;
	width: 100%;
	z-index: 1;
	pointer-events: none;
}
.fp-section--places .fp-section__text-box{
	margin-bottom: 48px;
}
.fp-section__places-card{
	position: relative;
	background: #fff;
	border: 2px solid #222;
	border-radius: 20px;
	padding: 28px 24px 56px 24px;
}
.fp-section__places-card > h3{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
	margin-bottom: 32px;
}
.fp-section__places-card > div{
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 12px;
}
.fp-section__places-card > div a{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	border: 2px solid;
	border-radius: 50px;
	padding: 8px;
}
.fp-section__places-card > div a.fp-section__places-card-text--niseko{
	border-color: #FFD522;
}
.fp-section__places-card > div a.fp-section__places-card-text--okinawa{
	border-color: #36B906;
}
.fp-section__places-card > div a.fp-section__places-card-text--cebu{
	border-color: #0085FF;
}
.fp-section__places-card > div a.fp-section__places-card-text--malta{
	border-color: #FB625D;
}
.fp-section__places-card > div a.fp-section__places-card-text--shioziri{
	border-color: #BA7EFF;
}
.fp-section__places-card > div a.fp-section__places-card-text--tokushima{
	border-color: #31C1BC;
}
.fp-section__places-card--large > div a{
	width: 200px;
}
.fp-section__places-card--small > div a{
	width: 132px;
}
.fp-section__places-card-attention{
	position: absolute;
	bottom: 12px;
	right: 12px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
	z-index: 2;
}

@media only screen and (max-width: 1128px) {
	.fp-section--places{
		position: relative;
		padding-top: 64px;
		padding-bottom: 64px;
	}
	.fp-section--places::before{
		width: 100%;
	}
	.fp-section__places-bottom{
		bottom: -100px;
	}
}
@media only screen and (max-width: 768px) {
	.fp-section__places-bottom{
		bottom: -40px;
	}
	.fp-section__places-card--large > div a{
		width: calc(50% - 6px);
	}
	.fp-section__places-card--small > div a{
		width: calc(50% - 6px);
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--why
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section--why{
	position: relative;
	padding-top: 200px;
	padding-bottom: 100px;
}
.fp-section__why-card h3{
	color: #0085FF;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	width: 88%;
	margin-top: -28px;
	margin-bottom: 16px;
}
.fp-section__why-card p{
	font-weight: 500;
	line-height: 1.6;
}

@media only screen and (max-width: 1128px) {
	.fp-section--why{
		padding-top: 120px;
		padding-bottom: 64px;
	}
	.fp-section__why-card br{
		display: none;
	}
}
@media only screen and (max-width: 768px) {
	.fp-section--why{
		padding-top: 48px;
		padding-bottom: 48px;
	}
	.fp-section__why-card br{
		display: none;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--programs
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section__programs-cards{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
	margin-bottom: 100px;
}
.fp-section__programs-card{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.fp-section__programs-title{
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	padding: 12px 0;
	width: 100%;
	border-radius: 20px 20px 0 0;
}
.fp-section__programs-card--niseko .fp-section__programs-title{
	background: #FFD522;
}
.fp-section__programs-card--okinawa .fp-section__programs-title{
	background: #36B906;
}
.fp-section__programs-card--cebu .fp-section__programs-title{
	background: #0085FF;
}
.fp-section__programs-card--malta .fp-section__programs-title{
	background: #FF5132;
}
.fp-section__programs-body{
	display: flex;
    flex-direction: column;
    flex: 1;
	padding: 24px;
	border: 2px solid #222;
	border-top: none;
	border-radius: 0 0 20px 20px;
}
.fp-section__programs-body > img{
	margin-bottom: 20px;
}
.fp-section__programs-description{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 20px;
}
.fp-section__programs-tags{
	margin-bottom: 20px;
}
.fp-section__programs-tag{
	display: inline-block;
	color: #0085FF;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	padding: 5px 16px;
	border: 1px solid #0085FF;
	border-radius: 4px;
	margin-bottom: 10px;
}
.fp-section__programs-tag:last-of-type{
	margin-bottom: 0;
}
.fp-section__programs-subject{
	margin-top: auto;
	margin-bottom: 20px;
}
.fp-section__programs-subject-label{
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 4px;
}
.fp-section__programs-subject-text{
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}
.fp-section__programs-price{
	margin-bottom: 20px;
}
.fp-section__programs-price-label{
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 4px;
}
.fp-section__programs-price-box{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.fp-section__programs-period{
	display: inline-block;
	color: #0085FF;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	padding: 5px 16px;
	border: 1px solid #0085FF;
	border-radius: 4px;
	margin-right: 16px;
}
.fp-section__programs-amount{
	display: inline-block;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 48px;
}
.fp-section__programs-unit{
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	line-height: 48px;
}
.fp-section__programs-button{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #222;
	border-radius: 8px;
	padding: 16px;
}
.fp-section__programs-button > span{
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	margin-right: 20px;
}
.fp-section__programs-button > img{
	width: 30px;
}
.fp-section__programs-card--niseko .fp-section__programs-button{
	background: linear-gradient(135deg, #ffdd4d 0%, #f49c10 100%);
}
.fp-section__programs-card--okinawa .fp-section__programs-button{
	background: linear-gradient(135deg, #36b906 0%, #31c1bc 100%);
}
.fp-section__programs-card--cebu .fp-section__programs-button{
	background: linear-gradient(135deg, #92d3e8 0%, #0085ff 100%);
}
.fp-section__programs-card--malta .fp-section__programs-button{
	background: linear-gradient(135deg, #FD9987 0%, #FA383C 100%);
}
.fp-section__programs-line{
	position: relative;
	border: 2px solid #222;
	border-radius: 20px;
}
.fp-section__programs-line::before{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/programs-line-bg.svg);
	width: 133px;
	height: 158px;
	background-size: contain;
}
.fp-section__programs-line > h3{
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	padding: 8px 0;
	width: 100%;
	background: #06C755;
	border-radius: 18px 18px 0 0;
	margin-bottom: 24px;
}
.fp-section__programs-line > p{
	margin-bottom: 24px;
}
.fp-section__programs-line > a{
	display: inline-block;
	width: 420px;
	margin: 0 auto 24px;
}

@media only screen and (max-width: 1128px) {
	.fp-section__programs-title{
		font-size: 20px;
	}
	.fp-section__programs-description{
		font-size: 20px;
	}
	.fp-section__programs-description br{
		display: none;
	}
	.fp-section__programs-tag{
		font-size: 16px;
	}
	.fp-section__programs-subject-text{
		font-size: 16px;
	}
	.fp-section__programs-button > span{
		font-size: 16px;
	}
	.fp-section__programs-line > h3{
		font-size: 20px;
	}
}
@media only screen and (max-width: 768px) {
	.fp-section__programs-cards{
		display: flex;
		flex-direction: column;
		gap: 40px;
		margin-bottom: 64px;
	}
	.fp-section__programs-body{
		padding: 16px;
	}
	.fp-section__programs-body > img{
		margin-bottom: 16px;
	}
	.fp-section__programs-description{
		font-size: 18px;
		margin-bottom: 16px;
	}
	.fp-section__programs-tags{
		margin-bottom: 16px;
	}
	.fp-section__programs-tag{
		font-size: 14px;
	}
	.fp-section__programs-subject{
		margin-bottom: 16px;
	}
	.fp-section__programs-subject-label{
		font-size: 12px;
	}
	.fp-section__programs-subject-text{
		font-size: 16px;
	}
	.fp-section__programs-price{
		margin-bottom: 16px;
	}
	.fp-section__programs-price-label{
		font-size: 12px;
	}
	.fp-section__programs-unit{
		display: inline-block;
		font-size: 24px;
		font-weight: 700;
		line-height: 48px;
	}
	.fp-section__programs-button > span{
		font-size: 18px;
	}
	.fp-section__programs-button > img{
		width: 24px;
	}
	.fp-section__programs-line::before{
		content: none
	}
	.fp-section__programs-line > h3{
		font-size: 16px;
	}
	.fp-section__programs-line > p{
		width: calc(100% - 32px);
		margin: 0 auto 16px;
	}
	.fp-section__programs-line > a{
		width: calc(100% - 32px);
		margin: 0 auto 16px;
	}
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--price
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section__price-text{
	margin-bottom: 48px;
}
.fp-section__price-detail > img{
	margin-bottom: 12px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--campaign
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section--campaign{
	background: #FF9393;
	padding: 48px 24px;
}
.fp-section__campaign-title{
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 24px;
}

@media only screen and (max-width: 768px) {
	.fp-section--campaign{
		padding: 24px 20px;
	}
	.fp-section__campaign-title{
		font-size: 18px;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--working
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section--working .fp-section__text-box{
	margin-bottom: 40px;
}
.fp-section__working-cards{
	margin-bottom: 40px;
}
.fp-section__working-card{
	position: relative;
	display: flex;
    flex-direction: column;
	background: #fff;
	border: 2px solid #222;
	border-radius: 20px;
	padding: 20px;
}
.fp-section__working-card > h3{
	position: relative;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	margin-top: auto;
	margin-bottom: 24px;
	z-index: 1;
}
.fp-section__working-card > h3 span{
	font-size: 18px;
	font-weight: 500;
}
.fp-section__working-card > p{
	margin-top: auto;
	margin-bottom: 20px;
	z-index: 1;
}
.fp-section__working-card--1::before{
	content: "";
	display: block;
	position: absolute;
	top: 16px;
	right: 24px;
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/working-bg-1.svg);
	width: 70px;
	height: 109px;
	background-size: contain;
}
.fp-section__working-card--2::before{
	content: "";
	display: block;
	position: absolute;
	top: 16px;
	right: 24px;
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/working-bg-2.svg);
	width: 109px;
	height: 109px;
	background-size: contain;
}
.fp-section__working-card--3::before{
	content: "";
	display: block;
	position: absolute;
	top: 16px;
	right: 24px;
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/working-bg-3.svg);
	width: 109px;
	height: 109px;
	background-size: contain;
}
.fp-section__working-content{
	background: #E5F3FF;
	border-radius: 20px;
	padding: 40px;
}
.fp-section__working-content > h3{
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-align: center;
	margin-bottom: 24px;
}
.fp-section__working-content > div{
	width: fit-content;
	margin: 0 auto;
}
.fp-section__working-content > div p{
	position: relative;
	padding-left: 22px;
	margin-bottom: 12px;
}
.fp-section__working-content > div p:last-of-type{
	margin-bottom: 0;
}
.fp-section__working-content > div p::before{
	content: "";
    width: 10px;
    height: 10px;
	background: #0085FF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

@media only screen and (max-width: 768px) {
	.fp-section__working-card > h3{
		font-size: 20px;
		text-align: left;
	}
	.fp-section__working-card > h3 span{
		font-size: 16px;
	}
	.fp-section__working-content{
		padding: 20px;
	}
	.fp-section__working-content > h3{
		font-size: 20px;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--gallery
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section--gallery{
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
}
.fp-section__gallery{
	display: flex;
	align-items: center;
	overflow: hidden;
}
.fp-section__gallery div{
	display: flex;
	-webkit-animation: slider__left 20s linear infinite;
	animation: slider__left 20s linear infinite;
	animation-duration: 40s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: normal;
	animation-fill-mode: none;
	animation-play-state: running;
	animation-name: slider__left;
}
.fp-section__gallery div img{
	width: 288px;
    height: auto;
	margin-right: 16px;
}
@keyframes slider__left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

@media only screen and (max-width: 768px) {
	.fp-section__gallery div img{
		width: 164px;
		margin-right: 8px;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--cta
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section--cta{
	position: relative;
	background: linear-gradient(135deg, #92d3e8 0%, #0085ff 100%);
	padding: 48px 24px;
}
.fp-section--cta > *{
	position: relative;
	z-index: 1;
}
.fp-section--cta > h3{
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.04em;
	margin-bottom: 32px;
}
.fp-section--cta > h3 span{
	color: #FEEC00;
	font-weight: 700;
}
.fp-section__cta-btn{
	display: block;
    width: 420px;
    margin: 0 auto 24px;
}
.fp-section__cta-text{
	display: block;
	width: fit-content;
	margin: 0 auto;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	border-bottom: 1px solid #fff;
}
.fp-section__cta-bottom{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}

@media only screen and (max-width: 768px) {
	.fp-section--cta{
		padding: 24px 20px;
	}
	.fp-section--cta > h3{
		font-size: 20px;
		margin-bottom: 16px;
	}
	.fp-section__cta-btn{
		width: 100%;
	}
	.fp-section__cta-bottom{
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 0;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--support
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section--support .fp-section__text-box{
	margin-bottom: 40px;
}
.fp-section__support-cards{
	margin-bottom: 40px;
}
.fp-section__support-card > img{
	width: 200px;
	margin: 0 auto 20px;
}
.fp-section__support-card > div > h3{
	color: #0085FF;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 16px;
}

@media only screen and (max-width: 768px) {
	.fp-section__support-card{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 16px;
	}
	.fp-section__support-card > img{
		width: 80px;
		margin: 0;
	}
	.fp-section__support-card > div{
		text-align: left;
	}
	.fp-section__support-card > div > h3{
		font-size: 18px;
		margin-bottom: 8px;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--interview
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section__heading--interview{
	background: #fff;
	border: 2px solid #222222;
	border-bottom: none;
	border-radius: 120px 120px 0 0;
	padding-top: 80px;
}
.fp-section__inner--interview{
	background: #fff;
	border-left: 2px solid #222222;
	border-right: 2px solid #222222;
}
.fp-section--interview .fp-section__text-box{
	margin-bottom: 48px;
}
.fp-section__interview-cards{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
	margin-bottom: 48px;
}
.fp-section__interview-card{
	position: relative;
	display: flex;
    flex-direction: column;
	background: #fff;
	border: 2px solid #222;
	border-radius: 20px;
	padding: 20px;
}
.fp-section__interview-card-header{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 24px;
}
.fp-section__interview-card-image{
	width: 112px;
	margin-right: 32px;
}
.fp-section__interview-card-name{
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
}
.fp-section__interview-card-meta{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 4px;
}
.fp-section__interview-card-meta:last-of-type{
	margin-bottom: 0;
}
.fp-section__interview-card-meta > p:nth-of-type(1){
	width: 72px;
	margin-right: 8px;
}
.fp-section__interview-card-meta > p{
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.06em;
}
.fp-section__interview-card-description{
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 20px;
}
.fp-section__interview-card-links{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 40px;
	margin-top: auto;
}
.fp-section__interview-card-links > a{
    display: block;
    width: fit-content;
	color: #0085FF;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	border-bottom: 1px solid #0085FF;;
}
.fp-section__interview-links{
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 48px;
}

@media only screen and (max-width: 1128px) {
	.fp-section__heading--interview{
		background: none;
		border: none;
		border-radius: 0;
		padding-top: 0;
	}
	.fp-section__inner--interview{
		background: none;
		border: none;
	}
	.fp-section__interview-card-links{
		flex-direction: column;
		gap: 16px;
	}
	.fp-section__interview-bottom{
		display: none;
	}
}
@media only screen and (max-width: 768px) {
	.fp-section__interview-cards{
		display: flex;
		flex-direction: column;
		gap: 24px;
	}
	.fp-section__interview-card-image{
		margin-right: 16px;
	}
	.fp-section__interview-card-name{
		font-size: 16px;
	}
	.fp-section__interview-card-meta > p{
		font-size: 12px;
	}
	.fp-section__interview-card-links{
		gap: 20px;
	}
	.fp-section__interview-links{
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.fp-section__interview-links .fp-section__button{
		margin: 0 auto;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--news
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section__news-cards{
	margin-bottom: 48px;
}
.fp-section__news-card{
	position: relative;
	display: block;
	border-bottom: 1px solid #727272;
	padding-right: 24px;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.fp-section__news-card::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	background-image: url(/wordpress/wp-content/themes/u-gaku__theme/images/front-page/btn-arrow-2.svg);
	width: 24px;
	height: 24px;
	background-size: contain;
}
.fp-section__news-card > div{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.fp-section__news-card > div > p:nth-of-type(1){
	font-weight: 500;
	line-height: 1.6;
	margin-right: 16px;
}
.fp-section__news-card > div > p:nth-of-type(2){
	color: #0085FF;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	border: 1px solid #0085FF;
	border-radius: 4px;
	padding: 5px 12px;
}
.fp-section__news-card > h3{
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}

@media only screen and (max-width: 768px) {
	.fp-section__news-card > div > p:nth-of-type(1){
		font-size: 12px;
	}
	.fp-section__news-card > div > p:nth-of-type(2){
		font-size: 12px;
	}
	.fp-section__news-card > h3{
		font-size: 16px;
	}
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--camp
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section--camp .fp-section__heading span{
	color: #FC9B23;
	font-weight: 700;
}
.fp-section--camp .fp-section__text-box{
	margin-bottom: 48px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	fp-section--faq
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fp-section__faq-item {
	margin-bottom: 24px;
}
.fp-section__faq-question {
	position: relative;
	cursor: pointer;
	display: flex;
	width: 100%;
	padding: 10px 20px;
	background: #fff;
	border: 2px solid #222222;
	border-radius: 2px;
	box-shadow: 2px 2px 0px #727272;
}
.fp-section__faq-question img:nth-of-type(1) {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}
.fp-section__faq-question img:nth-of-type(2) {
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 20px;
	height: 20px;
}
.fp-section__faq-question p {
	font-size: 12px;
	font-weight: 700;
	margin: auto 20px auto 0;
}
.fp-section__faq-answer {
	display: none;
	padding: 20px 0 0 20px;
}
.open .fp-section__faq-answer {
	display: flex;
}
.fp-section__faq-answer img {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}
.fp-section__faq-answer p {
	font-size: 12px;
	font-weight: 700;
	line-height: 2;
}