@charset "UTF-8";
/* resset css */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body, html{padding:0;margin:0}h1,h2,h3,h4,p,figure,picture,blockquote,ul,li,dl,dd{margin:0}
ul,ol,li{list-style:none}
body{}
h1,h2,h3,h4{text-wrap:balance}
i,s{font-style:normal;text-decoration:none;}
a:not([class]){color:currentColor}
img,figure,picture{display:block;max-width:100%;height:auto;vertical-align:top;margin: auto;}
input,button,textarea,select{font:inherit}
textarea:not([rows]){min-height:10em}:target{scroll-margin-block:5ex}
button{all:unset;display:revert}
table{border-collapse:collapse}
textarea{white-space:revert}

:root {
	/* color */
	--main-color: #4eb9ca; 
	--color: #333; 
	--bg-color: #ddd;
	--border-color: #333;
	--white: #fff;
	--gray: #52575e;
	--black: #333;
	--darkBlue: #1c3f5e;
	--pink: #db3581;
	--yellow: #fcef32;
	
	/* width */
	--maxWidth: 1000px;
	--tbBreak: 768px;
	--spBreak: 560px;
	
	--maxWidthN: 1000;
	--tbBreakN: 768;
	--spBreakN: 560;
}


html {
	scroll-padding-top: 100px;
	scroll-behavior: smooth;
	@media (max-width: 560px) {
		scroll-padding-top: 60px;
	}
}
body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--color);
    font-size: 18px;
    font-feature-settings: "palt" 1;
    letter-spacing: 0.1em;
    @media (max-width: 1000px) {
       font-size: 16px; 
    }
    @media (max-width: 560px) {
       font-size: 13px; 
    }
}

#wrapper {
	/*
	max-width: var(--maxWidth);
	margin-inline: auto;
	padding-left: 20px;
	padding-right: 20px;
	*/
}

#main {
	position: relative;
	text-align: center;
	z-index: 1;
	&::after {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 1000px;
		background-color: var(--white);
		z-index: -1;
		@media (max-width: 560px) {
			display: none;
		}
	}
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    background: var(--white);
    border-bottom: 1px solid var(--bg-color);
    padding-left: 20px;
	padding-right: 20px;
	z-index: 100;
	@media (max-width: 560px) {
		height: 60px;
	}
	.logo {
		@media (max-width: 560px) {
			max-width: 130px; 
		}
	}
	.btn {
		margin: 0;
		a {
			font-size: 16px;
			max-width: 330px;
			padding: 15px 50px;
			border-radius: 30px;
			@media (max-width: 560px) {
				font-size: 13px;
				max-width: 230px;
				padding: 10px 20px;
			}
			i {
				padding-left: 45px;
				@media (max-width: 560px) {
					padding-left: 27px;
				}
				&::after {
					width: 38px;
					height: 33px;
				}
				@media (max-width: 560px) {
					&::after {
						width: 19px;
						height: 17px;
					}
				}
				s {
					@media (max-width: 560px) {
						display: none;
					}
				}
			}
		}
	}
}

#footer {
	background: var(--gray);
	padding: 60px 20px 40px 20px;
	color: var(--white);
	text-align: center;
	font-size: 13px;
	@media (max-width: 560px) {
		padding-top: 40px;
		padding-bottom: 100px;
	}
	a {
		text-decoration: none;
		&:hover {
			text-decoration: underline;
		}
	}
	> div {
		display: flex;
	    justify-content: space-between;
	    flex-direction: row-reverse;
	    max-width: var(--maxWidth);
	    margin-inline: auto;
	    @media (max-width: 768px) {
		    flex-wrap: nowrap;
			flex-direction: column;
		}
		> * {
			@media (max-width: 768px) {
				width: 100%;
			}
		}
	}
	.footerHead {
		text-align: left;
		@media (max-width: 768px) {
			margin-top: 40px;
			text-align: center;
		}
		p {
			&.logo {
				display: inline-block;
				margin-bottom: 30px;
				@media (max-width: 768px) {
					margin-bottom: 10px;
					text-align: center;
				}
			}
			+ p {
				margin-top: 10px;
			}
			a {
				@media (max-width: 1000px) {
					display: block;
				}
				@media (max-width: 768px) {
					display: inline-block;
				}
			}
		}
	}
	.footerNav {
		display: flex;
	    justify-content: space-between;
	    gap: 40px;
	    @media (max-width: 768px) {
			justify-content: center;
		}
		@media (max-width: 560px) {
			flex-direction: column;
			gap: 20px;
		}
		ul {
			@media (max-width: 560px) {
				display: flex;
				justify-content: space-between;
				flex-wrap: wrap;
				gap: 15px;
			}
			> li {
			    text-align: left;
			    @media (max-width: 560px) {
				    width: calc((100% - (15px * 1)) / 2 );
			    }
			    a {
				    
				    line-height: 1.2;
				    @media (max-width: 560px) {
					    font-size: 12px;
				    }
			    }
			    + li {
				    margin-top: 10px;
				    @media (max-width: 560px) {
						margin-top: 0;
				    }
			    }
		    }
		}
	}
	.snsList {
		max-width: var(--maxWidth);
		margin-inline: auto;
		margin-top: 30px;
		text-align: left;
		@media (max-width: 768px) {
			text-align: center;
		}
		li {
			display: inline-block;
			+ li {
				margin-left: 25px;
			}
		}
	}
    .copyright {
	    margin-top: 50px;
	    @media (max-width: 560px) {
			margin-top: 30px;
	    }
	    small {
		    font-size: 11px;
	    }
    }
}

a {
    outline: none;
    transition: .4s;
    word-break:  break-word;
    &:hover {
	    opacity: .8;
	}
}

.btn {
	text-align: center;
	* + & {
		margin-top: 60px;
	}
	a {
		display: block;
		font-size: 28px;
		font-weight: bold;
		text-decoration: none;
		background: var(--darkBlue);
		color: var(--white);
		padding: 30px 50px;
		max-width: 600px;
		margin-inline: auto;
		border-radius: 50px;
		@media (max-width: 560px) {
			font-size: 18px;
			padding: 13px 10px;
			max-width: 440px;
		}
		i {
			position: relative;
			display: inline-block;
			padding-left: 80px;
			@media (max-width: 560px) {
				padding-left: 40px;
			}
			&::after {
				position: absolute;
				content: "";
				display: block;
				top: 0;
				bottom: 0;
				left: 0;
				margin: auto;
				width: 60px;
				height: 50px;
				background-repeat: no-repeat;
				background-position: 50% 50%;
				background-size: contain;
			}
			@media (max-width: 560px) {
				&::after {
					width: 30px;
					height: 25px;
				}
			}	
		}
	}
	&.apply {
		a {
			background: var(--pink);
			i::after {
				background-image: url("../common/img/icon_free01.svg");
			}
		}
	}
	&.area {
		a {
			i::after {
				background-image: url("../common/img/icon_area01.svg");
			}
		}
		&.white {
			a {
				i::after {
					background-image: url("../common/img/icon_area02.svg");
				}
			}
		}
	}
	&.white {
		a {
			color: var(--darkBlue);
			background: var(--white);
		}
	}
}

.head {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 80px;
	word-break: auto-phrase;
	@media (max-width: 560px) {
		font-size: 26px;
		margin-bottom: 40px;
	}
}

.subHead {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 20px;
	@media (max-width: 560px) {
		font-size: 18px;
		margin-bottom: 15px;
	}
}


.indent {
	text-align: left;
	li {
		padding-left: 1em;
		text-indent: -1em;
	}
}


.tbOnly {
	display: none;
	@media (max-width: 768px) {
		display: block;
	}
}

.spOnly {
	display: none;
	@media (max-width: 560px) {
		display: block;
	}
}

.spNone {
	display: block;
	@media (max-width: 560px) {
		display: none;
	}
}


/* ------------------------- */
/*   LP    */
/* ------------------------- */
#main {
	position: relative;
	padding-top: 100px;
	@media (max-width: 560px) {
		padding-top: 60px;
	}
}

#hero {
	.img {
		img {
		    width: 100%;
		}
	}
}

.campaign {
	background: var(--yellow);
	padding: 40px 20px;
	@media (max-width: 560px) {
	    flex-wrap: wrap;
	    padding: 20px 20px;
    }
	> * {
		/*max-width: var(--maxWidth);*/
		margin-inline: auto;
	}
	.campaignList {
		display: flex;
	    justify-content: space-between;
	    gap: 30px;
	    @media (max-width: 560px) {
		    flex-wrap: wrap;
		    gap: 10px;
	    }
	    > li {
		    width: 100%;
		    display: flex;
			flex-direction: column;
			flex-grow: 1;
		    dl {
			    display: flex;
				flex-direction: column;
				flex-grow: 1;
			    dt {
					background: var(--gray);
					color: var(--white);
					font-weight: bold;
					padding: 5px 10px;
					@media (max-width: 560px) {
						padding: 2px 10px;
					}
				}  
				dd {
					background: var(--white);
					padding: 10px 10px 20px 10px;
					flex-grow: 1;
					display: flex;
					flex-direction: column;
					align-items: center;
					@media (max-width: 560px) {
						padding: 3px 10px 7px 10px;
					}
					div {
						margin: auto;
						> * + * {
							margin-top: 7px;
							@media (max-width: 560px) {
								margin-top: 0;
							}
						}
					}
					p {
						font-size: 20px;
						font-size: clamp(14px, calc((20 / var(--maxWidthN)) * 100vw) , 20px);
						&.indent {
							
							font-size: 16px;
							font-size: clamp(12px, calc((16 / var(--maxWidthN)) * 100vw) , 16px);
							@media (max-width: 560px) {
								text-align: left;
							}
						}
					}
					.bold {
						font-size: 24px;
						font-size: clamp(16px, calc((24 / var(--maxWidthN)) * 100vw) , 24px);
						font-weight: bold;
						line-height: 1;
						color: var(--gray);
						
						> * {
							vertical-align: middle;
						}
						i {
							display: inline-block;
							line-height: 1.2;
							padding-top: 10px;
							
						}
						b {
							font-size: 74px;
							font-size: clamp(44px, calc((74 / var(--maxWidthN)) * 100vw) , 74px);
							font-family: "Oswald", "Noto Sans JP", sans-serif;
							font-weight: 500;
							margin-left: 10px;
							@media (max-width: 560px) {
								margin-left: 5px;
							}
							&.jp {
								line-height: 1;
								font-size: 60px;
								font-size: clamp(30px, calc((60 / var(--maxWidthN)) * 100vw) , 60px);
								padding: 0;
								font-weight: bold;
							}
						}
						span {
							margin-left: 7px;
							vertical-align: bottom;
							line-height: 1.5;
						}
					}
					
					ul {
						text-align: center;
						li {
							display: inline-block;
							+ li {
								margin-left: 20px;
							}
						}
					}
				}
		    }
	    }
	}
	.indent {
		margin-top: 20px;
		font-size: 16px;
        padding: 0px 30px;
		@media (max-width: 560px) {
		    margin-top: 10px;
		    font-size: 10px;
            padding: 0px 10px;
	    }
	}
	.btn.apply {
		margin-top: 30px;
		@media (max-width: 560px) {
		    margin-top: 15px;
	    }
	}
}
.campaign #flow {
    .subHead {
        margin-top: 0px;
        margin-bottom: 30px;
    }
    .indent {
		margin-top: 10px;
		font-size: 13px;
		@media (max-width: 560px) {
		    margin-top: 5px;
		    font-size: 10px;
	    }
	}
    .flowList {
        display: flex;
        align-items: stretch;
        gap: 80px;
        @media (max-width: 560px) {
            gap: 40px 20px;
            flex-wrap: wrap;
        }
    }
    & li {
        figure {
            border: none !important;
        }
    }
}

section#flow .indent {
    margin-top: 10px;
    font-size: 13px;
}
@media (max-width: 560px) {
    section#flow .indent {
        margin-top: 5px;
        font-size: 10px;
    }
}

.anchorNav {
	background: var(--white);
	padding: 35px 20px;
	@media (max-width: 560px) {
	    padding: 20px 20px;
    }
	ul {
		display: flex;
	    justify-content: space-between;
	    align-items: center;
	    display: grid;
	    grid-template-columns: 1fr 1fr 1fr 1fr;
	    gap: 25px;
	    max-width: var(--maxWidth);
		margin-inline: auto;
		@media (max-width: 768px) {
			grid-template-columns: 1fr 1fr;
			gap: 15px;
		}
	}
    li {
		width: 100%;
		display: grid;
		grid-row: span 1;
		grid-template-rows: subgrid;
		gap: 0;
		a {
			position: relative;
			display: block;
			display: grid;
			place-items: center;
			height: 100%;
			text-decoration: none;
			color: var(--white);
			font-weight: bold;
			background: var(--gray);
			padding: 10px 40px 10px 20px;
			line-height: 1.3;
			word-break: auto-phrase;
			@media (max-width: 768px) {
				br {display: none;}
			}
			@media (max-width: 540px) {
				br {display: block;}
				font-size: 14px;
				padding-right: 30px;
				padding-left: 15px;
			}
			&::after {
				position: absolute;
				content: "";
				top: -8px;
				bottom: 0;
				right: 17px;
				margin: auto;
				width: 15px;
				height: 15px;
				border-right: 3px solid var(--white);
				border-bottom: 3px solid var(--white);
				rotate: 45deg;
				z-index: 1;
			}
			@media (max-width: 560px) {
				&::after {
					right: 10px;
					width: 10px;
					height: 10px;
					border-width: 2px;
				}
			}
		}
	}
}



section {
	position: relative;
    overflow: hidden;
	z-index: 1;
	padding:160px 20px 120px 20px;
	@media (max-width: 768px) {
		padding-top: 100px;
		padding-bottom: 80px;
	}
	@media (max-width: 560px) {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	> div {
		max-width: var(--maxWidth);
		margin-inline: auto;
		
	}
	&:not(#about) {
		background: var(--white);
	}
}


/* fadein */
.fadeIn {
	position: relative;
	top: 50px;
	transition: 1.75s;
	transition-delay: .5s;
	opacity: 0;
	&.visible {
		top: 0;
		opacity: 1;
	}
}
		
#about {
	padding-top: 130px;
	padding-bottom: 130px;
	color: var(--white);
	@media (max-width: 560px) {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	&::after {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: radial-gradient(rgba(0,0,0,.6) 10%, transparent 90%);
		background-color: rgba(0,0,0,.5);
		background-position: 0 0;
		background-size: 4px 4px;
		z-index: 1;
	}
	div > * {
		position: relative;
		z-index: 2;
	}
	.message {
		font-size: 30px;
		font-size: clamp(20px, calc((30 / var(--maxWidthN)) * 100vw) , 30px);
		line-height: 1.8;
		word-break: auto-phrase;
	}
	.readCopy {
		margin-top: 50px;
		font-family: "Oswald", "Noto Sans JP", sans-serif;
		font-size: 65px;
		font-size: clamp(45px, calc((65 / var(--maxWidthN)) * 100vw) , 65px);
		font-weight: 500;
		word-break: auto-phrase;
		line-height: 1.2;
		@media (max-width: 560px) {
		   margin-top: 30px;
	    }
	}
	#thumb_video {
		margin-top: 40px;
		margin-bottom: 130px;
		width: 600px;
		border: 3px solid var(--white);
		max-width: 100%;
		@media (max-width: 560px) {
			margin-top: 30px;
			margin-bottom: 60px;
		}
	}
	.reasonList {
		li {
			display: flex;
		    justify-content: center;
		    gap: 100px;
		    max-width: var(--maxWidth);
		    @media (max-width: 1000px) {
		       gap: 30px;
		    }
		    @media (max-width: 560px) {
			   flex-wrap: wrap;
		       gap: 15px;
		    }
		    &:nth-child(even){
				flex-direction: row-reverse;
				@media (max-width: 560px) {
				   gap: 30px;
			    }
				figure {
					margin-left: -200px;
					margin-right: auto;
					@media (max-width: 560px) {
						margin-left: -20px;
					}
				}
		    }
		    + li {
			    margin-top: 120px;
			    @media (max-width: 560px) {
			       margin-top: 60px;
			    }  
		    }
		    div {
				width: 440px;
				@media (max-width: 560px) {
			       width: auto;
			    }
				> * {
					text-align: left;
				}
			}
			.number {
				font-weight: bold;
				font-size: 30px;
				font-size: clamp(20px, calc((30 / var(--maxWidthN)) * 100vw) , 30px);
				margin-bottom: 10px;
				i {
					display: inline-block;
					font-family: "Oswald", "Noto Sans JP", sans-serif;
					font-size: 90px;
					font-size: clamp(50px, calc((90 / var(--maxWidthN)) * 100vw) , 90px);
					font-weight: 500;
					margin-left: 10px;
					line-height: 1;
				}
			}
			.subHead {
				font-size: 46px;
				font-size: clamp(24px, calc((46 / var(--maxWidthN)) * 100vw) , 46px);
				font-weight: bold;
				line-height: 1.2;
				margin-bottom: 15px;
				@media (max-width: 560px) {
				   
			    }
			}
			.text {
				font-size: 20px;
				line-height: 1.7;
				font-size: clamp(16px, calc((20 / var(--maxWidthN)) * 100vw) , 20px);
			}
			figure {
				margin-top: 70px;
				margin-right: -200px;
				@media (max-width: 560px) {
					margin-top: 0;
					margin-right: -20px;
				}
			}
		}
	}
}
.bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    video {
	    min-width: 100%;
	    min-height: 100%;
	    position: absolute;
	    display: block;
	    top: 50%;
	    left: 50%;
	    transform: translate(-50%, -50%);
	}
	&.scrolled {
		display: none;
	}
}

#worry {
	padding-bottom: 0;
	.worryList {
		position: relative;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin-inline: auto;
		gap: 30px;
		padding-bottom: 60px;
		@media (max-width: 1000px) {
			gap: 0 20px;
			padding-left: 40px;
			padding-right: 40px;
		}
		@media (max-width: 560px) {
			padding-left: 0;
			padding-right: 0;
			padding-bottom: 20px;
		}
		li {
			background: url("../img/bg_worry01.svg") no-repeat 50% 50%;
			color: var(--white);
			font-size: 20px;
			font-weight: bold;
			padding: 64px 24px;
			background-size: contain;
			@media (max-width: 768px) {
				font-size: calc((18 / var(--tbBreak)) * 100vw);
				padding: 54px 14px;
			}
			@media (max-width: 560px) {
				padding: 44px 13px;
			}
			&:last-child {
				@media (max-width: 560px) {
					width: 100%;
				}
			}
		}
		&::before,
		&::after {
			position: absolute;
			content: "";
			display: block;
			top: -20px;
			left: -60px;
			width: 200px;
			aspect-ratio: 200 / 284;
			background: url("../img/ch_worry01.svg") no-repeat 50% 50%;
			background-size: contain;
			z-index: -1;
		}
		@media (max-width: 1000px) {
			&::before,&::after {
				left: -60px;
				top: auto;
				bottom: -10px;
				width: 180px;
			}
		}
		&::after {
			background-image: url("../img/ch_worry02.svg");
			left: auto;
			right: -60px;
		}
		@media (max-width: 1000px) {
			&::after {
				right: -60px;
			}
		}
		@media (max-width: 768px) {
			
		}
		@media (max-width: 560px) {
			&::after {
				width: 120px;
				right: -35px;
			    bottom: -10px;
			}
			&::before {
				width: 120px;
				left: -35px;
			    bottom: -10px;
			}
		}
	}
	.bg {
		position: relative;
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		padding:100px 20px 0 20px;
		background: var(--main-color);
		color: var(--white);
		@media (max-width: 560px) {
			padding-top: 60px;
		}
		&::before {
			position: absolute;
			content: "";
			display: block;
			top: -1px;
			left: 0;
			right: 0;
			margin: auto;
			background: var(--white);
			height: 50px;
			width: 106px;
			clip-path: polygon(0 0, 100% 0, 50% 100%);
			
		}
		@media (max-width: 560px) {
			&::before {
				height: 30px;
				width: 66px;
			}
		}
		.head {
			color: var(--yellow);
		}
		.ido {
			display: inline-block;
			margin-top: 20px;
			@media (max-width: 560px) {
				max-width: 300px;
				margin-top: 10px;
			}
		}
	}
	.solutionList {
		display: flex;
		justify-content: center;
		gap: 10px;
		max-width: var(--maxWidth);
		margin-inline: auto;
		@media (max-width: 560px) {
			gap: 5px;
			margin-inline: -10px;
		}
		li {
			width: calc((100% - (10px * 2)) / 3 );
			word-break: auto-phrase;
			@media (max-width: 560px) {
				width: calc((100% - (5px * 2)) / 3 );
			}
			* + * {
				margin-top: 10px;
			}
			h3 {
				font-weight: normal;
				@media (max-width: 560px) {
					font-size: 13px;
				}
				b {
					font-weight: bold;
				}
			}
			figure {
				img {
					@media (max-width: 765px) {
						object-fit: cover;
						aspect-ratio: 1 / 1;
					}
					@media (max-width: 560px) {
						aspect-ratio: 3 / 4;
					}
				}
			}
		}
	}
}

#plan {
	.planList {
		display: grid;
		grid-template-columns: auto auto auto;
		gap: 35px;
		@media (max-width: 1000px) {
			gap: 20px;
		}
		@media (max-width: 560px) {
			grid-template-columns: auto auto;
			gap: 7px;
		}
		li {
			display: grid;
			grid-row: span 3;
			grid-template-rows: subgrid;
			gap: 0;
			background: #fbf7ec;
			padding: 35px 20px 20px 20px;
			@media (max-width: 1000px) {
				padding: 25px 15px 10px 15px;
			}
			@media (max-width: 560px) {
				padding-top: 15px;
				padding-bottom: 5px;
			}
			> * {
				
			}
			.subHead {
				display: grid;
				place-items: center;
				@media (max-width: 560px) {
					font-size: 15px;
					margin-inline: -10px;
					margin-bottom: 7px;
				}
			}
			p {
				text-align: left;
			}
			figure {
				img {
					@media (max-width: 560px) {
						max-width: 100px;
					}
				}
			}
		}
	}
	.indent.ex {
		margin-top: 15px;
		font-size: 14px;
		font-size: clamp(10px, calc((14 / var(--maxWidthN)) * 100vw) , 14px);
	}
}

#flow {
	.head {
		+ p {
		    margin-top: -60px;
			margin-bottom: 80px;
			word-break: auto-phrase;
			@media (max-width: 560px) {
				margin-top: -30px;
				margin-bottom: 30px;	
			}
		}
	}
	.subHead {
		margin-top: 60px;
		margin-bottom: 60px;
		@media (max-width: 560px) {
			margin-top: 40px;
			margin-bottom: 30px;
		}
	}
	.flowList {
		display: flex;
		align-items: stretch;
		gap: 45px;
		@media (max-width: 560px) {
			gap: 40px 20px;
			flex-wrap: wrap;
		}
		li {
			position: relative;
			width: calc((100% - (45px * 3)) / 4 );
			counter-increment: count;
			@media (max-width: 560px) {
				width: calc((100% - (20px * 1)) / 2 );
			}
			&::after {
				position: absolute;
				display: block;
				content: counter(count);
				top: -20px;
				left: -10px;
				color: var(--white);
				font-family: "Oswald", "Noto Sans JP", sans-serif;
				font-weight: 500;
				font-size: 28px;
				line-height: 40px;
				width: 40px;
				height: 40px;
				border-radius: 50%;
				background: var(--pink);
			}
			@media (max-width: 560px) {
				&::after {
					font-size: 20px;
					line-height: 30px;
					width: 30px;
					height: 30px;
				}
			}
			figure {
				border: 1px solid var(--bg-color);				
				img {
					width: 100%;
					@media (max-width: 560px) {
						object-fit: cover;
						object-position: 50% 0;
						aspect-ratio: 1 / 1;
					}
				}
			}
			p {
				text-align: left;
				margin-top: 15px;
				@media (max-width: 560px) {
					margin-top: 7px;
					font-size: 13px;
				}
			}
		}
		&.column02 {
			li {
				width: calc((100% - (45px * 1)) / 2 );
				@media (max-width: 560px) {
					width: calc((100% - (20px * 1)) / 2 );
				}
			}
		}
	}
}

#voice {
	padding-bottom: 60px;
	@media (max-width: 560px) {
		padding-bottom: 30px;
	}
	.voiceList {
		li {
			display: flex;
			align-items: center;
			gap: 40px;
			@media (max-width: 560px) {
				gap: 25px;
			}
			+ li {
				margin-top: 30px;
				@media (max-width: 560px) {
					margin-top: 20px;
				}
			}
			div {
				position: relative;
				border: 1px solid var(--gray);
				border-radius: 13px;
				padding: 20px 30px;
				@media (max-width: 560px) {
					padding: 10px 15px;
				}
				&::before {
					position: absolute;
					content: "";
					display: block;
					top: 0;
					bottom: 0;
					left: -26px;
					margin: auto;
					background: var(--gray);
					height: 26px;
					width: 26px;
					clip-path: polygon(100% 0, 0 50%, 100% 100%);
					z-index: 1;
				}
				&::after {
					position: absolute;
					content: "";
					display: block;
					top: 0;
					bottom: 0;
					left: -24px;
					margin: auto;
					background: var(--white);
					height: 24px;
					width: 24px;
					clip-path: polygon(100% 0, 0 50%, 100% 100%);
					z-index: 2;
				}
				@media (max-width: 560px) {
					&::before {
						left: -18px;
						height: 18px;
						width: 18px;
					}
					&::after {
						left: -16px;
						height: 16px;
						width: 16px;
					}
				}
				> * {
					text-align: left;
				}
			}
			&:nth-child(even) {
				flex-direction: row-reverse;
				div {
					&::before {
						left: auto;
						right: -26px;
						clip-path: polygon(0 0, 0% 100%, 100% 50%);
					}
					&::after {
						left: auto;
						right: -24px;
						clip-path: polygon(0 0, 0% 100%, 100% 50%);
						z-index: 2;
					}
				}
			}
			@media (max-width: 560px) {
				&:nth-child(even) {
					div {
						&::before {
							left: auto;
							right: -18px;
						}
						&::after {
							left: auto;
							right: -16px;
						}
					}
				}
			}
			figure {
				min-width: 140px;
				@media (max-width: 560px) {
					min-width: 80px;
				}
			}
			.subHead {
				font-size: 20px;
				margin-bottom: 10px;
				@media (max-width: 560px) {
					font-size: 16px;
					margin-bottom: 7px;
				}
			}
		}
	}
}

#place {
	> div {
		background: url("../img/il_map01.svg") no-repeat 50% 50%;
		background-size: 554px 404px;
		@media (max-width: 560px) {
			background-size: 350px 300px;
		}
	}
	p {
		font-size: 20px;
		margin-bottom: 140px;
		@media (max-width: 560px) {
			font-size: 14px;
			margin-bottom: 100px;
		}
		&.bold {
			font-weight: bold;
			font-size: 28px;
			margin-bottom: 70px;
			@media (max-width: 560px) {
				font-size: 20px;
				margin-bottom: 40px;
			}
		}
		&.btn {
			margin-bottom: 0;
		}
	}
}

.floatBtn {
	position: fixed;
	bottom: -200px;
	right: 20px;
	z-index: 10;
	transition: .4s;
	@media (max-width: 560px) {
		width: 100%;
		right: auto;
		left: 0;
	}
	&.scrolled {
		bottom: 20px;
		@media (max-width: 560px) {
			bottom: 0;
		}
	}
	
	a {
		display: block;
		position: relative;
		width: 180px;
		height: 180px;
		@media (max-width: 560px) {
			width: 100%;
			height: auto;
		}
		&:hover {
			opacity: 1;
			
		}
	}
}

/*-----------------------
フォールキャンペーンLP（25/9/1〜10/15）
-----------------------*/
/*.campaign {
    background: #e1c4b6;
	padding: 0px 0px;
    @media (max-width: 560px) {
	    flex-wrap: wrap;
	    padding: 10px 20px 20px;
    }
}*/
.campaign {
    .indent {
        margin-top: 20px;
        font-size: 16px;
        @media (max-width: 560px) {
            margin-top: 0px;
            font-size: 10px;
            padding: 10px 20px;
        }
    }
}
.campaign {
    .btn.apply {
        padding: 0px 30px 60px;
        @media (max-width: 560px) {
            padding-bottom: 30px;
        }
    }
}
.btn {
    &.apply {
        a {
            background: #fa5a64;/*#d2666d*/
        }
    }
}
.btn {
    &.apply {
        &.main { 
            a {
                background: #fa5a64;
            }
        }
    }
}
.btn {
    &.apply {
        &.sub { 
            a {
                background: #fff133;
                color: #535860;
            }
        }
    }
}
.btn {
    &.apply {
        &.main { 
            & a {
                i::after {
                    background-image: url(../common/img/icon_free03.png);
                }
            }
        }
    }
}
.btn {
    &.apply {
        &.sub { 
            & a {
                i::after {
                    background-image: url(../common/img/icon_free02.svg);
                }
            }
        }
    }
}
/*-----------------------
『気軽に!3回体験チケット』キャンペーンLP[3ticket]（26/3/1〜3/24）
-----------------------*/
/*.campaign {
    background: #F2E0E4;
    padding: 10px 30px;
    @media (max-width: 560px) {
	    padding: 10px 20px;
    }
}*/
.campaign .w730 {
    margin-inline: auto;
    max-width: 730px;
}
.campaign section {
    padding: 40px 40px 60px;
    @media (max-width: 768px) {
			padding: 20px 20px 30px;
		}
}
.campaign h2 {
    text-align: center;
    margin-bottom: 20px;
}
/*.campaign {
    .indent {
        padding: 0px 0px;
        @media (max-width: 560px) {
            margin-top: 0px;
            font-size: 10px;
            padding: 10px 0px;
        }
    }
}*/

/* faq */
.faqList {
	border-bottom: 2px solid #a5a5a5;
	> div {
		counter-increment: count;
		border-top: 2px solid #a5a5a5;
		&.open {
			dt {
				&::after {
					rotate: -45deg;
				}
			}
			dd {
				visibility: visible;
				opacity: 1;
				height: auto;
				padding-top: 20px;
				padding-bottom: 20px;
			}
		}
	}
	dt,dd {
		position: relative;
		transition: .3s;
		/*padding-inline: 76px;*/
        padding-inline: 65px;
        text-align: justify;
		background: var(--white);
        @media (max-width: 768px) {
            padding-left: 46px;
            padding-right: 30px;
		}
		&::before {
			position: absolute;
			display: block;
			top: 14px;
			left: 0;
			width: 36px;
			height: 36px;
			text-align: center;
			line-height: 36px;
			margin: auto;
			border-radius: 50%;
			font-weight: 600;
			letter-spacing: 0;
		}
		@media (max-width: 768px) {
			&::before {
				top: 12px;
			}
		}
	}
	dt {
		padding-top: 20px;
		padding-bottom: 20px;
		cursor: pointer;
		pointer-events: all;
		&::before {
			content: "Q" counter(count);
			background: #eee;
		}
		&::after {
			position: absolute;
			content: "";
			display: block;
			top: 0;
			bottom: 0;
			right: 25px;
			width: 8px;
			height: 8px;
			margin: auto;
			border-top: 1.5px solid var(--color);
			border-right: 1.5px solid var(--color);
			rotate: 135deg;
			transition: .3s;
		}
		@media (max-width: 768px) {
			&::after {
				right: 10px;
			}
		}
	}
	dd {
		visibility: hidden;
		opacity: 0; 
		height: 0;
		@media (max-width: 768px) {
			padding-right: 0;
		}
		&::before {
			content: "A" counter(count);
			background: var(--gray);
			color: var(--white);
		}
	}
}
/* faq / table */
.news__detail__box__content__post{
    margin-top: 20px;
    text-align: center;
}

/*テーブル*/
.news__detail__box__content__post table{
    margin-inline: auto;
    max-width: 700px;
    font-size: 0.75em;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 20px;
    background-color: #fbfaf6;
}
.news__detail__box__content__post table tr{
}
.news__detail__box__content__post table tr th{
    width: 20%;
    text-align: center;
    padding: 10px;
    background: #535860;
    color:#fff;
    border: solid 1px #cccccc;
    vertical-align:middle;
    font-weight: 500;
    @media (max-width: 768px) {
			padding: 5px;
		}
}
.news__detail__box__content__post table tr td{
    padding: 5px;
    border: solid 1px #cccccc;
    color: #52575e;
    @media (max-width: 768px) {
			padding: 3px;
		}
}
.news__detail__box__content__post table.advance tr th{
    background: #fbcfbf;
    color: #52575e;
}
.news__detail__box__content__post table.general tr th{
    background: #f2e0e4;
    color: #52575e;
}
.news__detail__box__content__post table.senkou tr th{
    /* background: #dabbaf; */
    color: white;
}

.news__detail__box__content__post table.blue tr th{
    background: blue;
}

.news__detail__box__content__post table.green tr th{
    background: #00a381;
}

.news__detail__box__content__post table.gray tr th{
    background: #535860;
}

.news__detail__box__content__post table.advance tr td,
.news__detail__box__content__post table.general tr td,
.news__detail__box__content__post table.senkou tr td{
    width: 80%;
}
/*-----------------------
スプリングキャンペーンLP（26/4/15〜5/22）
-----------------------*/
.campaign {
    background: #eeeeef;
    padding: 0px 0px;
    @media (max-width: 560px) {
	    padding: 0px 0px;
    }
}