/*
Theme Name: ikipuro_theme
Theme URI: http://miraie.ikipuro.jp/
Description: 2024年12月2日制作着手のテーマです。
Author: J.Sato
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu
Text Domain: twentyten
*/


@charset "utf-8";

@font-face {
  font-family: "GenJyuuGothicLP";
  src: url("fonts/GenJyuuGothicL-P-Regular_henkan.woff2") format("woff2");
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	variable Settings
   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

:root {
	
	/* Font */
	
	--genjyuu	: 'GenJyuuGothicLP','メイリオ',Meiryo,'ＭＳ Ｐゴシック', serif;
	
	--f-weight-l	: 300;
	--f-weight-r	: 400;
	--f-weight-m	: 600;
	--f-weight-b	: 900;
	
	--f-size-m	: 14px;
	--f-size-n	: 16px;
	--f-size-b	: 30px;
	--f-size-mvs: 50px;
	
	@media screen and (max-width: 800px) {
		--f-size-m	: 1.4vw;
		--f-size-n	: 2vw;
		--f-size-b	: 3vw;
		--f-size-mvs: 5vw;
	}
	@media screen and (max-width: 640px) {
		--f-size-m	: 2vw;
		--f-size-n	: 3vw;
		--f-size-b	: 4vw;
		--f-size-mvs: 6vw;
	}
	
	
	/* color */
	--Yerrow	: #F5BC03;
	--blue		: #03356D;
	--white		: #FBFAF5;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	Common Tag Settings
   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

:root {
	font-family: var(--genjyuu);
	font-feature-settings: "palt";
	font-optical-sizing: auto;
	font-style: normal;
	_zoom: 63%;
}

a {
	color: blue;
	text-decoration: underline;
}

img {
	width: 100%;
	height: auto;
}
	
strong {
	font-weight:normal;
}

section {
	width: 100%;
	position: relative;
	
	.content {
		width: calc(100% - 30px);
		max-width : 1200px;
		margin: 0 auto;
		position: relative;
	}
	h2 {
		font-size: var(--f-size-b);
		font-weight: var(--f-weight-r);
		color : var(--blue);
		text-align: center;
		margin-bottom: 50px;
	}
}

.btn{
	a {
		font-size: 90%;
		color: #fff;
		background: var(--blue);
		border-radius: 9999px;
		position: relative;
		display: flex;
		justify-content: space-around;
		align-items: center;
		margin: 0 auto;
		max-width: 210px;
		padding: 10px 25px;
		line-height: 1.4;
		text-decoration: none;
		text-align: center;
		transition: 0.3s ease-in-out;
	}
	a:hover {
		background: #333;
		color: #FFF;
	}
	a:after {
		content: '→';
		width: 10px;
		height: 10px;
		position: absolute;
		top: 10px;
		right: 20px;
		transition: 0.3s ease-in-out;
	}
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	Header
   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
header{
	
	.content {
		width: calc(100% - 30px);
		max-width : 1200px;
		margin: 0 auto;
		font-weight: var(--f-weight-l);
		
		position: relative;
	}
	
	h1.logo {
		/* 画像の配置 */
		position: absolute;
		left: 50%;
		top : 0;
		transform: translate(-50%, -60px);
		@media screen and (max-width: 1000px) {
			transform: translate(-50%, -40px);
		}
		@media screen and (max-width: 900px) {
			transform: translate(-50%, -50px);
		}
		@media screen and (max-width: 800px) {
			transform: translate(-50%, -60px);
		}
		
		
		/* ロゴの位置 */
		padding-bottom: 15px;
		display: flex;
		justify-content: center;
		align-items: end;
		
		/* Spece Size */
		z-index: 1;
		width: 292px;
		height: 292px;
		@media screen and (max-width: 1200px) {
			width: 24.5vw;
			height: 24.5vw;
		}
			
		@media screen and (max-width:900px) {
			width: 200px;
			height: 200px;
		}
		
		background: #fff;
		border-radius: 50%;
	}
	
	h1.logo img {
		width: 134px;
		@media screen and (max-width: 1200px) {
			width: 11.2vw;
		}	
		@media screen and (max-width:900px) {
			width: 84px;
		}
		height: auto;
	}
	
	nav {
		padding: 60px 0 25px;
		background: #fff;

		.g_nav {
			display: flex;
			z-index: 5;
			flex-wrap : nowrap;
			justify-content: center;
			align-items: stretch;
			position: relative;

			li {
				display: flex;
				justify-content: center;
				align-items: center;

				flex: 1;
				color : var(--blue);
				border-right : solid 1px var(--blue);
			}

			li:nth-child(1) {
				flex: 1.1;
			}

			li:nth-child(3) {
				padding-right: 17vw;
				border-right : none; 
			}
			li: nth-child(4) {
				padding-left:  17vw;
			}

			a {
				font-size: var(--f-size-n);
				display: flex;
				justify-content: center;
				align-items: center;
				width: 100%;
				height: 100%;
				margin: 0 2px;
				text-align: center;
				text-decoration: none !important;
				color : var(--blue) !important;
			}

			a:hover {
				background: var(--white	);
			}

		}
		.app {
			position: absolute;
			right: 0px;
			top: 0px;
			a{
				background: var(--Yerrow) url("images/home/icon_header.svg") no-repeat left 10px center;
				background-size: 10% auto;
				padding: 15px 20px 15px 40px;
				display: inline-block;
				border-bottom-left-radius: 6px;
				border-bottom-right-radius: 6px;
				text-decoration: none;
				color: #fff;
			}
			
		}
	}
	
	.msv_cont{
		width: 100%;
		position: relative;
	}

	.mvs {
		width: calc(100% - 30px);
		max-width : 1200px;
		margin: 0 auto;
		position: relative;
		
		.slide-items {
			width: 100%;
			height: 100%;
		}

		.slide-items img {
			aspect-ratio: 30/ 17;
			object-fit: cover;
		}
		
		h2 {
			position: absolute;
			left: 0%;
			top : 20%;
			transform: translate(-50%, -50%);
			height: 78%;
			z-index: 1000;
			font-size: var(--f-size-mvs);
			font-weight: var(--f-weight-m); 
			color: #fff;
			text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
			transform: scale(0.95, 1);
			line-height: 1.2;
			text-align: center;
			width: 100%;
			
			small{
				display: block;
				transform: scale(1, 1);
				font-size: 60%;
				margin-top: 15px;
			}
			strong {
				font-weight:var(--f-weight-m);
			}
			
		}
	}
}

@keyframes image_anime {
	  20% {
		background-image: url("images/home/img_mvs01.png"); 
	  }
	  30% {
		background-image: url("images/home/img_mvs02.png"); 
	  }
	  60% {
		background-image: url("images/home/img_mvs02.png"); 
	  }
	  70% {
		background-image: url("images/home/img_mvs03.png"); 
	  }
	  90% {
		background-image: url("images/home/img_mvs03.png"); 
	  }
	  100% {
	   	background-image: url("images/home/img_mvs01.png");  
	  }
}



			
@media screen and (max-width:900px) {
	
	.msv_cont{
		padding-top: 90px;
	}
	
	/* -- Navigation Botton Class -- */
		
	.nav_btn {
		position: absolute;
		right: -15px;
		top: 25px;
		transition: opacity 0.3s, transform 0.3s;
		z-index: 10000000;
		-moz-transition: all 0.3s ease-in;
		-webkit-transition: all 0.3s ease-in;
		-o-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in;
	}

	.nav_btn {
		transform: translateX(-40px);
	}

	/* Hamburger Button */

	.menu-trigger {
		position: relative;
		width: 36px;
		height: 33px;
		cursor: pointer;
	}
	.menu-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: var(--blue);
		border-radius: 4px;
	}
	.menu-trigger, .btn-trigger span {
		display: inline-block;
		transition: all .5s;
		box-sizing: border-box;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 0;
		transition: opacity 0.3s, transform 0.3s ease;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 14px;
		width: 36px;
		transform: translateX(0px);
		transition: opacity 0.3s, transform 0.3s ease, width 0.3s ease;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 0;
		transition: opacity 0.3s, transform 0.3s ease;
	}

	.menu-trigger.active span:nth-of-type(1) {
		background-color: #fff;
		-webkit-transform: translateY(14px) rotate(315deg);
		transform: translateY(14px) rotate(315deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
		width: 0;
		transform: translateX(18px);
		transition: opacity 0.3s, transform 0.3s ease, width 0.3s ease;
	}
	.menu-trigger.active span:nth-of-type(3) {
		background-color: #fff;
		-webkit-transform: translateY(-15px) rotate(-315deg);
		transform: translateY(-15px) rotate(-315deg);
	}


	/* -- Manu Background Class -- */

	.circle-bg{
		position: fixed;
		z-index:100000;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background: rgba(136, 171, 230, 0.95);
		transform: scale(0);
		top:calc(50% - 50px);
		left:calc(50% - 50px);
		transition: all 0.6s;
	}

	.circle-bg.circleactive{
	  transform: scale(50);
		z-index:100000;
	}
		
	/* -- Navigation  Class -- */
	nav{
		opacity: 0;
		position: fixed;
		z-index: 1000000; 
		width: 0%;
		height: calc(95vh - 40px)!important;
		overflow-x: hidden;
		overflow-y: auto!important;
		-webkit-overflow-scrolling: touch;

		margin-left: -100vw;
		margin-top: -5vh;
		transition: all 0.3s;
		padding-bottom: 40px;
		
		.app {
			position:static!important;
			margin: 25px auto 60px;
			text-align: center;
			
			a{
				background-size: 30px auto!important;
				background-position: left 30px center!important;
				width: 95%;
				max-width: 600px!important;
				border-radius: 9px!important;
				padding: 30px!important;
			}
			
			a:hover{
				background: var(--blue);
			}
		}
	}
	
	header.panelactive {
		
		/* -- Navigation Panelactive Class -- */
		
		.nav_btn {
			position: fixed;
			right: -15px;
			top: 25px;
			transition: opacity 0.3s, transform 0.3s;
			z-index: 10000000;
			-moz-transition: all 0.3s ease-in;
			-webkit-transition: all 0.3s ease-in;
			-o-transition: all 0.3s ease-in;
			transition: all 0.3s ease-in;
		}
		
		nav {
			opacity: 1;
			background: transparent;
			height: 100vh;
			width: 95%;
			margin-left: 0px;
			top:110px;
		}
		ul {
			flex-direction: column;
		}
		
		ul li {
			border-right: none;
			transition: transform .3s ease-in-out;
			transform: translateX(0vw);
			opacity: 1;
			transition: transform .3s ease-in-out;
			width: calc(100vw - 50px);
			margin: 0 auto 25px;
			padding: 0!important;
			
		}
		
		ul li a {
			width: 600px !important;
			background: #fff;
			width: 100%;
			padding: 15px 30px;
			text-decoration: none !important;
			color : var(--blue) !important;
		}
		
	}
	
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	Main
   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

/*----------------------
  solution
  ----------------------*/

.solution {
	.cover {
		position: absolute;
		top: -240px;
		display: block;
		width: 100%;
		height: 270px;
		background: url("images/home/bg_mvs.png") no-repeat center bottom;
		@media screen and (max-width: 1200px) {
			background-size: 165vw auto;
		}
	}
	
	.content {
		padding: 50px 0 50px;
		@media screen and (max-width: 640px) {
			padding: 50px 0 20px;
		}
		h2 span{
			background: url("images/home/tt_solution.svg") no-repeat center center;
			background-size: contain;
			color: var(--Yerrow);
			display: inline-block;
			padding : 5px 50px;
			margin: 0 auto 0px;
			@media screen and (max-width:640px) {
				padding : 5px 6vw;
			}
		}
		ul {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
			column-gap: 180px;
			row-gap: 10px;
			
			background-image : 	url(images/home/bg_voice_man.svg),
								url(images/home/bg_voice_woman.svg);
			background-repeat: 	no-repeat, no-repeat;
			background-position: bottom left 27%,
								 bottom left 73%;
			background-size: 15% 70%,15% 70%;;
			position: relative;
			@media screen and (max-width: 1200px) {
				column-gap: 13vw;
			}
			@media screen and (max-width: 1000px) {
				background-size: 18% 50%,15% 50%;;
				column-gap: 10vw;
			}
			@media screen and (max-width: 800px) {
				column-gap: 2vw;
				background: none;
			}
			@media screen and (max-width: 640px) {
				align-items:stretch;
				flex-flow: column;
			}
			
			li{
				flex: 1;
				
				font-size: var(--f-size-n);
				color: var(--blue);
				line-height: 1.8;
				
				background: url("images/home/bg_voice01.svg") no-repeat center center;
				background-size: contain;
				
				padding: 45px;
				@media screen and (max-width: 1200px) {
					padding: 3vw;
				}
				@media screen and (max-width: 1000px) {
					padding: 2vw;
				}
				
			}
			
			li:nth-child(2) {
				background: url("images/home/bg_voice02.svg") no-repeat center center;
				background-size:cover;
			}
			
			li:nth-child(3){
				background: url("images/home/bg_voice03.svg") no-repeat center center;
				background-size:cover;
			}
			
			@media screen and (max-width: 640px) {
				li {
					background-size:cover;
					padding: 10vw 10vw;
					width: 70%;
				}
				li:nth-child(2) {
					margin-left: auto;
				}
			}
		}
	}
}

/*----------------------
  News
  ----------------------*/

#news {
	padding: 100px 0 0px;
	
	dl {
		background: var(--white);
		display: table;
		width: 100%;
		padding: 15px;
		border-radius: 6px;
		font-size: var(--f-size-n);
		color: var(--blue);
		
		dt,dd{
			padding: 5px;
			display: table-cell;
		}
		dt{
			width: 20%;
			border-right: solid 1px var(--blue);
			text-align: center;
		}
		dd{
			padding-left: 25px;
		}
	}
}

/*----------------------
  Whats_Miraie
  ----------------------*/

#Whats_Miraie {
	background: var(--white) url("images/home/bg_wave01.png") no-repeat center top;
	background-size: 100% 80px;
	padding: 120px 0 50px;

	.content {
		display: flex;
		column-gap: 80px;
		margin-bottom: 80px;
		
		.txt_area{
			flex: 1;
			@media screen and (max-width: 640px) {
				margin-bottom: 50px;
			}
			
			background-image : 	url("images/home/bg_whats01.png"),
								url("images/home/bg_whats02.png");
			background-repeat: 	no-repeat, no-repeat;
			background-position: top right, bottom left;
			
			h2 {
				background: url("images/home/bg_h2_whats.png") no-repeat top center;
				padding-top: 60px;
			}
			p {
				font-size: var(--f-size-n);
				color: var(--blue);
				text-align: center;
				line-height: 2;
				margin-bottom: 30px;
			}
			
		}
		
		figure {
			flex: 1;
		}
		
		@media screen and (max-width: 800px) {
			column-gap: 10px;
			.txt_area{
				flex: 1.8;
			}
		}
		
		@media screen and (max-width: 640px) {
			display: block;
			.txt_area{
				width: 100%;
			}
			figure {
				width: 100%;
			}
		}
	}
	
	/* ----- merit ----- */
	
	.merit {
		width: calc(100% - 30px);
		max-width : 1200px;
		margin: 0 auto;
		
		position: relative;
		background: #fff;
		border-radius: 27px;
		
		h3 {
			font-family: var(--genjyuu);
			position: absolute;
			left: 50%;
			top : 10%;
			transform: translate(-50%, -100%);
			width: 406px;
			margin: 0 auto;
			
			@media screen and (max-width: 1000px) {
				transform: translate(-50%, -130%);
			}
			@media screen and (max-width: 800px) {
				transform: translate(-50%, -150%);
				width: 50vw;
			}
			@media screen and (max-width: 640px) {
				width: 60vw;
			}
		}
		ol {
			display: flex;
			flex-wrap: wrap;
			padding: 80px 50px 50px;
			column-gap: 50px;
			row-gap: 50px;
				
			@media screen and (max-width: 1000px) {
				padding: 80px 20px 50px;
				column-gap: 30px;
				row-gap: 30px;
			}
			
			li {
				width: calc(50% - 40px);
				height: 100%;
				min-height: 150px;
				background: url("images/home/ico_merit01.svg") no-repeat left center;
				background-size: 150px;
				padding-left: 160px;
				
				@media screen and (max-width: 1000px) {
					width: calc(50% - 15px);
				}
				@media screen and (max-width: 900px) {
					width: 100%;
					min-height; 150px;
				}
				@media screen and (max-width: 640px) {
					background-size: 100px !important;
					padding-left: 120px !important;
				}
				
				span{
					margin-bottom: 15px;
					&.ribbon {
						display: inline-block;
						position: relative;
						height: 40px;
						line-height: 40px;
						text-align: center;
						padding: 0 25px 0 18px;/*文字の左右の余白*/
						font-size: var(--f-size-n);
						background: var(--blue);
						color: #FFF;
						box-sizing: border-box;
					}
					&.ribbon:after {
						position: absolute;
						content: '';
						width: 0px;
						height: 0px;
						z-index: 1;
					}
					&.ribbon:after {
						top: 0;
						right: 0;
						border-width: 20px 10px 20px 0px;
						border-color: transparent #fff transparent transparent;
						border-style: solid;
					}
				}
				
				h4 {
					font-size: calc(var(--f-size-n) + 40%);
					color: var(--blue);
					margin-bottom: 15px;
				}
				p{
					font-size: var(--f-size-n);
					color: var(--blue);
					line-height: 1.6;
				}
				
			}
			li:nth-child(2){background: url("images/home/ico_merit02.svg") no-repeat left center;background-size: 150px;}
			li:nth-child(3){background: url("images/home/ico_merit03.svg") no-repeat left center;background-size: 150px;}
			li:nth-child(4){background: url("images/home/ico_merit04.svg") no-repeat left center;background-size: 150px;}
		}
	}
	
}

/*----------------------
  Course
  ----------------------*/
#Course {
	background: url("images/home/bg_wave02.png") no-repeat center top;
	background-size: 100% 80px;
	padding: 150px 0 50px;
	
	h2 {
		margin-bottom: 60px;
		span {
			padding: 40px 130px 40px 0px;
			background: url("images/home/bg_h2_course.png") no-repeat right center;
			background-size: 115px auto;
		}
	}
	.content {
		.service {
			display: flex;
  			justify-content:space-between;
			column-gap: 20px;
			row-gap: 50px;
				
			.atr {height: 100%;}
			
			@media screen and (max-width: 900px) {
				flex-direction:column;
			}
			
			li{
				width: calc(33% - 20px);
				box-shadow: 0px 0px 10px -5px #000;
				border-radius: 10px;
				padding: 0 25px 25px;
				position: relative;
				
				@media screen and (max-width: 900px) {
					width: 100%;
					.atr {
						display: flex;
						column-gap: 20px;
					}
				}
				
				@media screen and (max-width: 640px) {
					width: 100%;
					.atr {
						display: block;
					}
				}
				
				h3 {
					font-size: calc( var(--f-size-n) + 60% );
					font-weight: var(--f-weight-m);
					color: var(--Yerrow);
					padding: 20px 0px; 
					text-align: center;
					
					.txt{
						display: block;
						text-align: left;
						padding-left: 93px; 
						@media screen and (max-width: 1200px) {
							padding-left: 7vw; 
							text-align: center;
						}
						@media screen and (max-width: 640px) {
							padding-left: 0;
						}
					}
					.icon {
						position: absolute;
						top: 0;
						left: 20px;
						@media screen and (max-width: 1200px) {
							width: 6.3vw;
						}
						@media screen and (max-width: 640px) {
							width: 14vw;
						}
					}
				
				}
				figure {
					margin-bottom: 25px;
				}
				dl{
					color: var(--blue);
					display:flex;
					flex-direction:column;
					height: 100%;
					
					.target{
						border-bottom: solid 1px var(--blue);
						padding-bottom: 25px; 
						margin-bottom: 25px;
						
						dt{
							display: block;
							text-align: center;
							font-weight: var(--f-weight-r);
							font-size: calc( var(--f-size-n) + 25% );
							line-height: 1.4;
							margin-bottom: 15px;
							
						}
						dd{
							font-weight: var(--f-weight-m);
							font-size: var(--f-size-n);
							line-height: 1.6;
							padding: 0 15px;
							height: 100%;
							min-height: 4.5em;
						}
					}
					.details{
						padding-bottom: 25px;
						
						dt{
							font-weight: var(--f-weight-r);
							font-size: var(--f-size-n);
							line-height: 1.4;
							margin-bottom: 15px;
						}
						dd{
							font-weight: var(--f-weight-r);
							font-size: var(--f-size-n);
							line-height: 1.6;
							padding-left: 0.7em;
							text-indent: -0.7em;
							mark{
								font-weight: var(--f-weight-m);
							}
							small {
								display: block;
								padding-left: 0.7em;
							}
						}
						dd:before{
							content: "・ ";
						}
					}
					mark{
						color: var(--blue);
						background: linear-gradient(transparent 70%, #FCF771 30%);
					}
				}
				a {
					text-decoration: none;
					display:flex;
					flex-direction: column;
					height: 100%;
				}
				
				a .btn{
					box-shadow: 0px 0px 10px -5px #000;
					bottom: 0;
					font-size: 100%;
					color: #fff;
					background: var(--Yerrow);
					border-radius: 9999px;
					position: relative;
					display: flex;
					justify-content: space-around;
					align-items: center;
					margin: 0 auto;
					width: 80%;
					padding: 10px 25px;
					line-height: 1.4;
					text-decoration: none;
					text-align: center;
					transition: 0.3s ease-in-out;
				}
				
				a:hover .btn {
					background: var(--blue);
					color: #FFF;
				}
				
				a .btn:after{
					content: '→';
					width: 10px;
					height: 10px;
					position: absolute;
					top: 10px;
					right: 20px;
					transition: 0.3s ease-in-out;
				}
			}
			
			li:hover{
				background: var(--white);
				
				h3 {
					color: var(--blue)!important;
				}
			}
		}
		.notes {
			margin: 30px 0;
			p {
				font-weight: var(--f-weight-r);
				font-size: var(--f-size-m);
				color: var(--blue);
				line-height: 1.6;
				padding-left: 1em;
				text-indent: -1em;
				margin-top : 5px 
			}
			
			p:before {
				content:"※ ";
			}
		}
		.price {
			display: flex;
			justify-content: space-between;
			align-items: center;
			column-gap: 20px;
			@media screen and (max-width: 800px) {
				display: block;
			}
			h3{
				width: calc(15% - 10px);
				font-size: calc( var(--f-size-n) + 60% );
				font-weight: var(--f-weight-m);
				color: var(--blue);
				text-align: center;
				letter-spacing: 0.2em;
				@media screen and (max-width: 900px) {
					letter-spacing: 0em;
				}
				@media screen and (max-width: 800px) {
					display: block;
					width  : 100%;
					margin-bottom: -30px;
					margin-top: 60px;
					letter-spacing: 0.3em;
				}
			}
			
			ul{
				width: calc(85% - 10px);
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				column-gap: 20px;
				row-gap: 20px;
				@media screen and (max-width: 800px) {
					width: calc(100% - 10px);
				}
				
				li {
					width: calc(24% - 10px);
					text-align: center;
					@media screen and (max-width: 800px) {
						width: calc(50% - 10px);
					}
					
					.weight {
						box-shadow: 0px 0px 10px -5px #000;
						bottom: 0;
						font-size: 120%;
						color: #fff;
						background: var(--blue);
						border-radius: 9999px;
						position: relative;
						display: flex;
						justify-content: space-around;
						align-items: center;
						margin: 0 auto;
						width: 130px;
						padding: 10px 25px;
						line-height: 1.4;
						text-decoration: none;
						text-align: center;
						margin: 10px auto 15px
					}
					
					.yen {
						font-size: 120%;
						color: var(--blue);
					}
				}
			}
			
		}
	}
	
}


/*----------------------
  System
  ----------------------*/

#System {
	background: var(--white) url("images/home/bg_wave03.png") no-repeat center top;
	background-size: 100% 80px;
	padding: 120px 0 50px;
	
	h2 {
		margin-bottom: 60px;
		span {
			display: inline-block;
			padding: 40px 130px 40px 0px;
			background: url("images/home/bg_whats01.png") no-repeat right center;
			background-size: 115px auto;
		}
		small {
			margin-top: 20px;
			display: block;
			font-size: 55%;
		}
	}
	
	.content {
		--circle: 270px;
		--c_gap : 5%;
		@media screen and (max-width: 900px) {
			--circle: 220px;
		}
		@media screen and (max-width: 750px) {
			--circle: 190px;
			--c_gap : 3%;
		}
		@media screen and (max-width: 640px) {
			--circle: 230px;
			--c_gap : 3%;
		}
		@media screen and (max-width: 561px) {
			--circle: 180px;
			--c_gap : 3%;
		}
		
		
		ul {
			display:flex;
			flex-wrap: wrap;
			justify-content:center;
			column-gap: var(--c_gap);
			row-gap:  10px;
			
			li{
				display:flex;
				align-items:center;
				flex-direction: column;
				
				@media screen and (max-width: 900px) {
					width: calc(33% - var(--c_gap));
				}
				@media screen and (max-width: 640px) {
					flex:active;
					width: calc(50% - var(--c_gap));
				}
				
				figure {
					display:flex;
					align-items:center;
					justify-content:center;
					flex-direction: column;
					background   : #fff;
					border-radius: 50%;
					width: var(--circle);
					height: var(--circle);
					padding: 50px 40px;

					img {
						display: inline-block;
						margin: 0 auto;
					}
					figcaption{
						display:flex;
						align-items:flex-end;
						height: 100%;
						color    : var(--blue);
						font-size: calc(var(--f-size-n) + 20%);
						text-align: center;
						line-height: 1.4;
						margin-top: 15px;
					}
				}
				p.note{
					display: inline-block;
					color    : var(--blue);
					font-size: calc(var(--f-size-n) - 40%);
					margin-top: 20px;
					padding-left: 1em;
					text-indent: -1em;
				}
				p.note::before{
					content: "※";
				}
			}
			:nth-child(1){
				img {width: 60%;}
			}
			:nth-child(2){
				img {width: 80%;}
			}
			:nth-child(3){
				img {width: 80%;}
			}
		}
	
	}
	
}


/*----------------------
  Flow
  ----------------------*/

#Flow {
	background: url("images/home/bg_wave02.png") no-repeat center top;
	background-size: 100% 80px;
	padding: 180px 0 50px;
	
	h2 {
		margin-bottom: 60px;
		span {
			padding: 40px 100px 15px;
			background: url("images/home/img_h2_flow01.png"),url("images/home/img_h2_flow02.png");
			background-repeat:no-repeat,no-repeat;
			background-position:left center,right center;
			background-size: 115px auto;
		}
	}
	
	.flow_list {
		
		--flow_width : 900px;
		--flow_gap : 20px;
		--circle_padd: 30px;
		--circle_dt  : 25px;
		@media screen and (max-width: 1000px) {
			--flow_width : 90%;
		}
		@media screen and (max-width: 900px) {
			--flow_width : 100%;
		}
		@media screen and (max-width: 750px) {
			--circle_padd: 15px 25px;
			--circle_dt  : 15px;
		}
		
		width: var(--flow_width);
		margin: 0 auto;
		display:flex;
		flex-wrap: wrap;
		align-items:center;
		justify-content: space-between;
		column-gap: var(--flow_gap);
		row-gap:  10px;

		.circle{
			font-size: var(--f-size-n);
			color: var(--blue);
			width: var(--flow_circle);
			height: var(--flow_circle);
			border-radius: 50%;
			aspect-ratio: 1;
			
			flex: 1;
			display:flex;
			flex-wrap: wrap;
			align-items:center;
			justify-content: flex-start;
 			flex-flow: column;
			
			background: var(--white);
			text-align: center;
			padding: var(--circle_padd);
			
			.no {
				font-size: calc( var(--f-size-n) + 70%);
				margin-bottom: var(--circle_dt);
			}
			dl {
				dt{
					font-weight: var(--f-weight-m);
					font-size: calc( var(--f-size-n) + 40%);
					margin-bottom: var(--circle_dt);
					white-space: nowrap;
				}
				
			}
			
		}
		.arrow {
			width: 30px;
		}
			
		@media screen and (max-width: 640px) {
 			flex-flow: column;
			.circle{
				width: 100% !important;
				height: auto !important;
				aspect-ratio: 0;
				border-radius: 9px;
				flex-flow: row;
				column-gap: 25px;
				justify-content:space-around;
				align-items:stretch;
				padding: 15px!important;
				
				.no {
					border-right: solid 2px var(--blue);
					flex: 1;
					padding: 0px 25px;
					margin: 0;
				}
				
				dl {
					flex: 15;
					text-align: left;
				}
				
			}
			.arrow {
				width: 50px;
				padding: 10px;
				transform: rotate(90deg); 
				
			}
		}
		
		
	}
	
}


/*----------------------
  Miraie_Future
  ----------------------*/

#Miraie_Future {
	background-image: url(images/home/bg_wave03.png),
						url(images/home/bg_future01.png),
						url(images/home/bg_future02.png),
						linear-gradient(0deg, rgba(14, 244, 255, 0) 0%, rgba(136, 171, 230, 1)77%),
						url(images/home/bg_future03.png);
  	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
	background-position: top center,top 180px right 8%,top 260px left 5%, top center, top center;
	background-size: 100% 80px,337px auto,337px auto, 100% auto, cover;
	padding: 250px 0 50px;
	@media screen and (max-width: 1200px) {
		background-size: 100% 80px,22% auto,22% auto, 100% auto, cover;
	}
	@media screen and (max-width: 1000px) {
		background-position: top center,top 140px right 8%,top 260px left 5%, top center, top center;
		padding: 200px 0 50px;
	}
	@media screen and (max-width: 800px) {
		background-position: top center,top 100px right 8%,top 160px left 5%, top center, top center;
		padding: 180px 0 50px;
	}
	@media screen and (max-width: 640px) {
		background-position: top center,top 100px right 0,top 160px left 0, top center, top center;
		padding: 155px 0 50px;
	}
	min-height: 1000px;
	
	h2 {
		text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
		color: #fff;
		margin-bottom: 25px
	}
	p.leadcopy {
		text-shadow: 0px 0px 3px rgba(0, 0, 0, 1);
		font-size: var(--f-size-n);
		color: #fff;
		line-height: 1.8;
		text-align: center;
		margin-bottom: 60px
	}
	
	.content {
		.contnt_box{
			background: rgb(255,255,255,0.7);
			width: 90%;
			margin: 0 auto 120px;
			border-radius: 50px;
			padding: 50px;
			
			@media screen and (max-width: 640px) {
				width: 100%;
				border-radius: 30px;
				padding: 25px;
			}
			
			h3 {
				font-size: var(--f-size-n);
				color: var(--blue);
				display: flex;
				text-align: center;
				justify-content:center;
				white-space: nowrap;
				margin-bottom: 30px;
				
				span {
					width: 70%;
					height: 1px;
					border-top: dashed 1px var(--blue);
					margin-left: 30px;
					margin-top: 10px;
				}
			}
			.message{
				color: var(--blue);
				display: grid;
				grid-template-columns: 1fr 3fr;
				grid-template-rows: 1fr;
				grid-column-gap: 25px;
				line-height: 1.8;
				margin-bottom: 40px;
				@media screen and (max-width: 640px) {
					display: block;
					p.photo {
						width: 50%;
						margin: 0 auto 30px;
					}
				}
				
				h4 {
					font-size: calc(var(--f-size-n) + 70%);
					line-height: 1.4;
					margin-bottom: 25px;
				}
				p{
					font-size: var(--f-size-n);
					margin-bottom: var(--f-size-n);
				}
				p.name{
					font-size: var(--f-size-n);
					font-weight: var(--f-weight-m);
					margin-bottom: var(--f-size-n);
					text-align: right;
				}
			}
			
			
		}
	}
	
}

/* -----------------------------
	pagetop
--------------------------------- */

.pagetop {
	font-family: var(--garamond);
    font-weight: bold;
    font-size: 150%;
	
	position: absolute;
	transition: .3s ease-out;
	z-index: 1000;
    right: 5px;
	bottom: -400px;
    height: 50px;
    text-decoration: none;
    transform: rotate(90deg);
    line-height: 1.5rem;
    color: var(--d-black);
    padding: 0 0 0 35px;
    border-top: solid 1px;
}

.pagetop::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}

.pagetop.is-active {
	bottom: 30px;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
	footer
   ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

footer {
	.content{
		width: calc(100% - 30px);
		max-width : 1200px;
		margin: 0 auto;
		font-weight: var(--f-weight-l);
		position: relative;
	}
	
	.logo {
		/* 画像の配置 */
		position: absolute;
		left: 50%;
		top : 0;
		transform: translate(-50%, -100px);
		
		/* ロゴの位置 */
		padding-bottom: 15px;
		display: flex;
		justify-content: center;
		align-items:flex-start;
		
		/* Spece Size */
		z-index: 1;
		width: 270px;
		height: 270px;
		/*
		@media screen and (max-width: 1200px) {
			width: 24.5vw;
			height: 24.5vw;
		}
		*/
		
		background: #fff;
		border-radius: 50%;
	}
	
	.logo img {
		width: 134px;
		margin-top: 25px;
		height: auto;
	}
	
	.f_box{
		display: flex;
		justify-content: space-between;
		position: relative;
		z-index: 5;
		padding: 30px 0 30px;
		font-weight: var(--f-weight-r);
		font-size: var(--f-size-n);
		color: var(--blue);
		
		address{
			h2 {
				font-size: calc(var(--f-size-n) + 40%);
			}
			dl div {
				display: flex;
				margin-top: 15px;
				dt {
					font-weight: normal;
					margin-right: 1em;
				}
			}
		}
		small{
			margin-top: auto;
		}
		
		@media screen and (max-width: 640px) {
			display: block;
			width: 100%;
			padding: 150px 0 50px;
			address{
				text-align: center;
				dl div {
					justify-content:center;
				}
			}
			small{
				display: block;
				margin-top: 50px;
				text-align: center;
			}
		}
		
	}
	
}








