@charset "utf-8";
/*==================================================================
	Fonts setting
===================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*==================================================================
	Base setting
===================================================================*/
html {
	font-size: 62.5%;
	overflow-x:hidden;
}
body {
  background: #fff;
  color: #484848;
  font-family: 'Noto Sans JP';
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-x:hidden;
  -webkit-text-size-adjust:none;
  -ms-text-size-adjust:none;
  word-wrap:break-word;
}
body.loaded {
	opacity: 1;
}
@media screen and (min-width: 1201px){
	body { min-width: 1200px; }
	a[href^='tel:'] { pointer-events: none;}
}
@media screen and (max-width: 1200px){
	body {
		font-size: 1.4rem;
	}
}
a { color: #df7697; text-decoration: underline; transition: all ease-in-out 0.4s; }
a:hover { color: #df7697; text-decoration: none; }
.d-in-block { display: inline-block; }
.full { width: 100%; }
.fw500 { font-weight: 500;}
.pink { color: #df7697; }
.blue { color: #73c8f1; }
@media screen and (min-width: 1201px){/* >=1201 screen */
	.sp1200 {
		display: none!important;
	}
}
@media screen and (max-width: 1200px){/* <=1200 screen */
	.pc1200 {
		display: none!important;
	}	
}
@media screen and (min-width: 768px){/* >=768 screen */
	.sp767 {
		display: none!important;
	}
}
@media screen and (max-width: 767px){/* <=767 screen */
	.pc767 {
		display: none!important;
	}	
}

.btn-style {
	background-color: rgba(255, 255, 255, 0.7);
	border: 1px solid;
	border-radius: 30px;
	color: #484848;
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	margin: 0 auto;
	padding: 13px 10px;
	text-decoration: none;
	text-align: center;
	transition: all ease-in-out 0.3s;
	min-width: 300px;
}
.btn-style i {
	font-style: normal;
	font-size: 150%;
	font-weight: normal;
	line-height: 1.5;
	margin-right: 0.5em;
	vertical-align: middle;
	transition: all ease-in-out 0.3s;
}
.btn-style.btn-style-pink {
	border-color: #df7697;
}
.btn-style.btn-style-pink:hover {
	background-color: #df7697;
	color: #fff;
}
.btn-style.btn-style-pink:hover i { color: #fff; }
.btn-style.btn-style-blue {
	border-color: #73c8f1;
}
.btn-style.btn-style-blue:hover {
	background-color: #73c8f1;
	color: #fff;
}
.btn-style.btn-style-blue:hover i { color: #fff; }

@media screen and (max-width: 1200px){
	.btn-style {
		padding: 10px 5px 8px;
		min-width: 240px;
	}
}
@media screen and (max-width: 767px){
	.btn-style {
		font-size: 1.2rem;
		line-height: 1.2;
		padding: 5px 5px 2px;
	}
	.btn-style i {
		font-size: 140%;
		margin-right: 0.25em;
		position: relative;
		top: -2px;
	}
}

.list-floating {
	position: fixed;
	right: 2vw;
	bottom: 2vh;
	z-index: 9;
}
.list-floating .item {
	max-width: 175px;
	position: relative;
	transition: all ease-in-out 0.6s;
	opacity: 0;
	visibility: hidden;
	transform: translateX(100%);
}
.list-floating .item + .item {
	margin-top: 15px;
	transition-delay: 0.15s;
}
.list-floating .item.showed {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}
.list-floating .item .close {
	cursor: pointer;
	display: block;
	max-width: 27px;
	position: absolute;
	right: -6px;
	top: -8px;
}
@media screen and (max-width: 767px){
	.list-floating {
		bottom: 8vh;
	}
	.list-floating .item {
		max-width: 100px;
	}
}

/* fadeInDown */
.fadeInDown { opacity: 0; }
.fadeInDown.on { animation: fadeInDown ease-out 1.2s forwards; }
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*==================================================================
	Header setting
===================================================================*/
#header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 35px 100px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1;
}
#header .logo {
	width: 280px;
}
#header .btns {
	display: flex;
	align-items: center;
	gap: 30px;
}
#header .btn-style {
	min-width: 280px;
}
@media screen and (max-width: 1200px){
	#header {
		padding: 15px 30px;
	}
	#header .logo {
		width: 240px;
	}
	#header .btns {
		gap: 15px;
	}
	#header .btn-style {
		min-width: 220px;
	}
}
@media screen and (max-width: 767px){
	#header {
		flex-direction: column;
		padding: 15px;
		z-index: 11;
	}
	#header .logo {
		width: 230px;
	}
	#header .btns {
		background-color: rgba(255, 255, 255, 0.9);
		display: none!important;
		padding: 8px 15px;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 11;
		justify-content: space-between;
		gap: 5px;
	}
	#header .btn-style {
		min-width: auto;
	}
}

/*==================================================================
	Main visual setting
===================================================================*/
@media screen and (max-width: 1023px){
	.main-visual {
		padding-top: 80px;
	}
}
@media screen and (max-width: 767px){
	.main-visual {
		padding-top: 80px;
	}
}

/*==================================================================
	Contents setting
===================================================================*/

.section { padding: 75px 0; }
.section.has-bg { background-color: #f8f1ee;}
.section.has-bg-square { background: url(../imgs/bg_square.jpg) repeat 0 0;}
.container {
	margin: auto;
	max-width: 1200px;
	width: calc(100% - 30px);
}
@media screen and (max-width: 767px){
	.section {
		padding: 50px 0;
	}
}
.ttl-style {
	background-color: #df7697;
	border-radius: 30px;
	color: #fffff1;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0;
	margin: 0 auto;
	max-width: 450px;
	padding: 12px 6px;
	position: relative;
	text-align: center;
}
.ttl-style .ic {
	position: absolute;
	left: 15px;
	top: -15px;
	width: 45px;
}
.ttl-style sup {
	font-size: 60%;
	font-weight: normal;
}
@media screen and (max-width: 767px){
	.ttl-style {
		font-size: 1.9rem;
	}
	.ttl-style .ic {
		width: 30px;
	}
}

.list-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 60px;
}
.list-links i {
	font-style: normal;
}
.list-links .item-link-txt {
	font-weight: 500;
	text-align: center;
	width: 100%;
}
@media screen and (max-width: 767px){
	.list-links {
		margin-top: 30px;
	}
}

.informations {
	text-align: center;
}
.informations .ttl {
	line-height: 1.5;
	margin-bottom: 25px;
}
.informations .ttl .ic {
	display: block;
	margin-bottom: 15px;
}
.informations .ttl .jp {
	display: block;
	font-size: 4.3rem;
	font-weight: 500;
}
.informations .ttl .en {
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
}
.informations .txt {
	font-size: 2rem;
	line-height: 2.5;
}
@media screen and (max-width: 767px){
	.informations .ttl .jp {
		font-size: 2.7rem;
	}
	.informations .ttl .en {
		font-size: 1.3rem;
	}
	.informations .txt {
		font-size: 1.4rem;
		line-height: 2;
	}
}

.introductions .ttl {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 25px;
	font-size: 3.2rem;
	font-weight: 500;
	margin-bottom: 30px;
	text-align: center;
}
.introductions .ttl .num {
	background-color: #df7697;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	height: 60px;
	width: 60px;
}
.introductions .ttl small {
	font-size: 2rem;
	font-weight: normal;
	width: 100%;
}
@media screen and (max-width: 767px){
	.introductions .ttl {
		column-gap: 15px;
		font-size: 1.9rem;
	}
	.introductions .ttl .num {
		font-size: 1.5rem;
		height: 40px;
		width: 40px;
	}
	.introductions .ttl small {
		font-size: 1.2rem;
	}
}

.training {
	background-color: #fff;
	border-radius: 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	padding: 60px;
}
.training .box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 345px;
	text-align: center;
}
.training .box h3 {
	margin-bottom: 15px;
	width: 100%;
}
.training .box .img {
	margin-bottom: 10px;
	padding: 0 35px 0 0;
}
.training .box .txt {
	line-height: 1.3;
	font-weight: 500;
	margin: 0 0 20px;
}
@media screen and (max-width: 1023px){
	.training {
		border-radius: 15px;
		padding: 30px 20px;
	}
	.training .box {
		width: 300px;
	}
}

.list-training .item {
	background-color: #fff;
	border-radius: 30px;
	max-width: 1080px;
	margin-left: auto;
	min-height: 300px;
	padding: 40px 40px 40px 60px;
	position: relative;
}
.list-training .item + .item {
	margin-top: 50px;
}
.list-training .item .ttl-wrap {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	z-index: 1;
}
.list-training .item h3 {
	margin: 0;
	width: 50%;
}
.list-training .item .ttl-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 1.4rem;
	font-weight: 500;
}
.list-training .item .ttl-list .lbl {
	background-color: #df7697;
	border-radius: 12px;
	color: #fffff1;
	display: inline-block;
	margin-right: 15px;
	text-align: center;
	width: 75px;
}
.list-training .item .img {
	max-width: 240px;
	width: calc(240 / 1080 * 100%);
	position: absolute;
	left: 0;
	top: 30px;
	transform: translateX(-50%);
}
.list-training .item .txt {
	line-height: 2.2;
	padding: 30px 0 0 90px;
}
@media screen and (max-width: 1200px){
	.list-training .item {
		max-width: 900px;
	}
}
@media screen and (max-width: 1023px){
	.list-training .item {
		padding: 40px;
	}
	.list-training .item .img {
		margin: 30px auto 0;
		position: static;
		transform: none;
	}
	.list-training .item .ttl-wrap {
		display: block;
	}
	.list-training .item h3 {
		margin: 0 auto;
		width: 100%;
	}
	.list-training .item .ttl-list {
		margin: 30px auto 0;
		max-width: 450px;
	}
	.list-training .item .txt {
		line-height: 2;
		padding-left: 0;
	}
}
@media screen and (max-width: 767px){
	.list-training .item {
		border-radius: 15px;
		padding: 20px;
	}
	.list-training .item .img {
		max-width: 120px;
		width: auto;
	}
}

.points .ttl {
	margin-bottom: 60px;
	text-align: center;
}
@media screen and (max-width: 767px){
	.points .ttl img {
		width: 85%;
	}
}
.list-points-01 {
	display: flex;
	flex-wrap: wrap;
	column-gap: 6px;
	row-gap: 30px;
}
.list-points-01 .item {
	width: calc(100% / 4 - 6px * 3 / 4);
}
@media screen and (max-width: 767px){
	.list-points-01 .item {
		width: calc(100% / 2 - 6px * 3 / 4);
	}
}

.list-points-02 {
	display: flex;
	flex-wrap: wrap;
	column-gap: 60px;
	row-gap: 60px;
}
.list-points-02 .item {
	width: calc(100% / 3 - 60px * 2 / 3);
}
@media screen and (max-width: 767px){
	.list-points-02 {
		gap: 15px;
	}
	.list-points-02 .item {
		width: calc(100% / 2 - 15px * 1 / 2);
	}
}

.access-maps {
	text-align: center;
}
.access-maps h3 {
	max-width: 560px;
}
.access-maps .img {
	margin-bottom: 50px;
}
.access-maps .btn {
	display: flex;
	justify-content: center;
	margin-bottom: 35px;
}

.tab-list {
	border-bottom: 1px solid transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 100px 0 35px;
}
.tab-list.color-blue {
	border-color: #73c8f1;
}
.tab-list.color-pink {
	border-color: #e28793;
}
.tab-link {
	background-color: #fff;
	border: 1px solid transparent;
	border-bottom: none;
	border-radius: 30px 30px 0 0;
	cursor: pointer;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.6;
	padding: 10px;
	text-align: center;
	width: 315px;
}
.tab-link.active {
	pointer-events: none;
}
.tab-list.color-blue .tab-link {
	border-color: #73c8f1;
}
.tab-list.color-blue .tab-link.active {
	background-color: #73c8f1;
}
.tab-list.color-pink .tab-link {
	border-color: #e28793;
}
.tab-list.color-pink .tab-link.active {
	background-color: #e28793;
	color: #fff;
}
.tab-box { display: none;}
.tab-box:first-child { display: block;}

@media screen and (max-width: 767px){
	.tab-list {
		margin-top: 50px;
	}
	.tab-link {
		border-radius: 15px 15px 0 0;
		font-size: 1.5rem;
		line-height: 1.3;
		padding: 5px;
		width: 45%;
	}
}

.list-gallery {
	margin-top: 60px;
}
.list-gallery .item {
	padding: 0 13px;
}
.list-gallery .slick-dots {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin-top: 45px;
	text-align: center;
	width: 100%;
}
.list-gallery .slick-dots button {
	border-radius: 3px;
	border: none;
	margin: 0;
	padding: 0;
	width: 6px;
	height: 6px;
	text-indent: -999em;
}
.list-gallery .slick-dots .slick-active button {
	background-color: #403f3f;
}
@media screen and (max-width: 767px){
	.gallery {
		padding: 0 15px;
	}
	.list-gallery .item {
		padding: 0 5px;
	}
	.list-gallery {
		margin-top: 30px;
	}
	.list-gallery .slick-dots {
		margin-top: 15px;
		gap: 10px;
	}
}

.list-voices {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}
.list-voices .item {
	border: 1px solid #e28793;
	border-radius: 30px;
	padding: 32px 24px 42px;
	position: relative;
	width: calc(100% / 4 - 30px * 3 / 4);
}
.list-voices .item:after {
	background: url(../imgs/icon_conner.jpg) no-repeat right bottom;
	content: "";
	display: block;
	height: 40px;
	width: 40px;
	position: absolute;
	right: -1px;
	bottom: -1px;
}
.list-voices .item .ttl {
	display: block;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 50px;
	text-align: center;
}
.list-voices .item .img {
	margin: 0 auto 40px;
}
@media screen and (max-width: 1023px){
	.list-voices .item {
		padding: 14px 9px 34px;
	}
	.list-voices .item .ttl {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 767px){
	.list-voices {
		gap: 15px;
		margin-top: 30px;
	}
	.list-voices .item {
		border-radius: 15px;
		width: calc(100% / 2 - 15px * 1 / 2);
	}
	.list-voices .item:after {
		height: 30px;
		width: 30px;
	}
	.list-voices .item .ttl {
		font-size: 1.6rem;
		margin-bottom: 25px;
	}
	.list-voices .item .img {
		margin-bottom: 20px;
	}
}

.charts .txt {
	font-size: 2rem;
	line-height: 2.4;
	margin-top: 25px;
	text-align: center;
}
.list-charts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-top: 50px;
}
.list-charts .item {
	width: calc(100% / 2 - 15px);
}
@media screen and (max-width: 767px){
	.section.has-bg-square {
		background-size: 14px 11.5px;
	}
	.charts .txt {
		font-size: 1.6rem;
		line-height: 2;
	}
	.list-charts {
		margin-top: 25px;
	}
	.list-charts .item {
		width: 100%;
	}
}

.steps h4 {
	font-size: 4rem;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 50px;
	text-align: center;
}
.steps h4 strong {
	font-size: calc(110 / 40 * 100%);
	line-height: 1;
}
.list-steps {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
}
.list-steps .item {
	background-color: #df7697;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	line-height: 1.35;
	padding: 20px 10px;
	position: relative;
	text-align: center;
	width: calc(100% / 4 - 16px * 3 / 4);
}
.list-steps .item:not(:last-child):after {
	background: url(../imgs/icon_arrow.png) no-repeat 0 0 / cover;
	content: "";
	display: block;
	height: 43px;
	width: 43px;
	margin-right: -8px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
	z-index: 11;
}
.list-steps .item small {
	font-size: 1.3rem;
	margin-top: 4px;
}
@media screen and (max-width: 1200px){
	.list-steps .item {
		font-size: 1.6rem;
	}
	.list-steps .item small {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 767px){
	.steps h4 {
		font-size: 2rem;
		margin-bottom: 25px;
	}
	.list-steps {
		flex-wrap: wrap;
	}
	.list-steps .item {
		width: 100%;
	}
	.list-steps .item:not(:last-child):after {
		height: 30px;
		width: 30px;
		margin-right: 0;
		margin-left: -12px;
		top: 100%;
		left: 50%;
		transform: rotate(90deg) translateX(-8px);
	}
}

.e-center {
	background-color: #fff;
	border-radius: 30px;
	margin-top: 30px;
	padding: 20px 30px 30px 230px;
	position: relative;
}
.e-center .img {
	position: absolute;
	left: 5px;
	top: -35px;
	width: 185px;
}
.e-center h5 {
	font-size: 2.8rem;
	font-weight: 500;
	margin-bottom: 10px;
}
.e-center .flex-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}
.e-center .flex-box .txt {
	line-height: 1.5;
	width: 62%;
}
@media screen and (max-width: 1023px){
	.e-center .flex-box {
		flex-direction: column;
	}
	.e-center .flex-box .txt {
		width: 100%;
	}
	.e-center .flex-box a {
		margin-left: 0;
	}
}
@media screen and (max-width: 767px){
	.e-center {
		border-radius: 15px;
		padding: 20px 15px 20px;
	}
	.e-center h5 {
		font-size: 2rem;
	}
	.e-center .flex-box .txt {
		margin-bottom: 15px;
		padding-right: 90px;
	}
	.e-center .img {
		left: auto;
		right: 5px;
		top: -25px;
		width: 90px;
	}
	.e-center .flex-box {
		display: block;
	}
	.e-center .flex-box a {
		max-width: 230px;
		min-width: auto;
	}
}

/*==================================================================
	Footer setting
===================================================================*/
#footer {
	background-color: #f8f1ee;
	padding: 200px 0 20px;
}
.copyright {
	font-weight: 300;
	font-size: 1.4rem;
	letter-spacing: 0;
	text-align: center;
}
@media screen and (max-width: 1023px){
	#footer {
		padding: 0 0 60px;
	}
}
@media screen and (max-width: 767px){
	.copyright {
		font-size: 1.1rem;
	}
}