@charset "UTF-8";

/*-----------------------------
タブレット
@media (min-width: 768px) {}

PC
@media (min-width: 1024px) {}

ワイドPC微調整
@media (min-width: 1280px) {}
------------------------------*/

/****************************************************************************
 	global-header
****************************************************************************/

#global-header {
	width: calc(100% - 1rem);
	height: 55px;
	position: fixed;
	left: .5rem;
	z-index: 1000;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
#global-header .logo {
	width: 140px;
	position: absolute;
	left: 4%;
	top: 8px;
}
#global-header .logo a {
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
#global-header .logo a:hover {
	opacity: .7;
}
@media (min-width:768px){
	#global-header {
		width: calc(100% - 2rem);
		height: 65px;
		left: 1rem;
		border-radius: 0 0 20px 20px;
	}
	#global-header .logo {
		width: 170px;
		left: 3%;
		top: 9px;
	}	
}
@media (min-width:1024px){
	#global-header {
		width: calc(100% - 6rem);
		height: 100px;
		left: 3rem;
	}
	#global-header .logo {
		width: 180px;
		position: absolute;
		left: 2%;
		top: 25px;
	}
}
@media (min-width:1110px){
	#global-header .logo {
		width: 200px;
		top: 23px;
	}
}
@media (min-width:1280px){
	#global-header .logo {
		width: 230px;
		top: 20px;
	}
}
/*スクロールしたら*/
/*
@media (min-width:1000px){
	#global-header.scroll {
		width: 100%;
		height: 90px;
	}
	#global-header.scroll .logo {
		width: 200px;
		position: absolute;
		left: 2%;
		top: 18px;
	}
}*/

/* SP用 menu-wrap-SPTAB
------------------------------*/
/* バーガーメニュー */
#global-header .menu-wrap-SPTAB .hamburger {
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	right: 4%;
	top: 13px;
	border: none;
	background-color: transparent;
	z-index: 10;
}
#global-header .menu-wrap-SPTAB .hamburger__line {
    display: block;
    height: 3px;
    position: absolute;
    top: 12px;
    left: 0;
    width: 32px;
    background-color: #8DCE57;
	border-radius: 10px;
	transition: 0.2s;
}
#global-header .menu-wrap-SPTAB .hamburger__line:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #8DCE57;
	border-radius: 10px;
    transition: inherit;
	top: -10px;
	left: 0;
}
#global-header .menu-wrap-SPTAB .hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #8DCE57;
	border-radius: 10px;
    transition: inherit;
	top: 10px;
	left: 0;
}

#global-header .menu-wrap-SPTAB .hamburger.-active .hamburger__line {
	top: 50%;
	left: 0;
	transform: rotate(45deg);
}
#global-header .menu-wrap-SPTAB .hamburger.-active .hamburger__line:before {
    display: none;
}
#global-header .menu-wrap-SPTAB .hamburger.-active .hamburger__line:after {
    top: 50%;
	left: 0;
    transform: rotate(-90deg);
}

/* バーガーメニュー中身 */
#global-header .menu-wrap-SPTAB .header__nav-area {
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9;
	height: 100vh;
	width: 100%;
	visibility: hidden;
	background-color: #fff;
	transition: 0.2s;
}
#global-header .menu-wrap-SPTAB .header__nav-area.-active {
	right: 0;
	visibility: visible;
}

#global-header .menu-wrap-SPTAB .navi-wrap {
	padding: 5rem 5rem 0 5rem;
}
#global-header .menu-wrap-SPTAB .navi-wrap .list-item {
	list-style-type: none;
	/*margin-top: 1rem;*/
	border-bottom: 1px dashed #9D8E88;
}
#global-header .menu-wrap-SPTAB .navi-wrap .list-link {
	display: block;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.8;
	letter-spacing: 2px;
	color: #6E564B;
	text-decoration: none;
	padding: 1rem .5rem;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-maru {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	justify-content: center;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-maru-link {
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 100px;
	background-color: #FCF7EF;
	/*margin-right: 1rem;*/
	text-align: center;
	font-weight: 700;
	font-size: .9rem;
	text-decoration: none;
	position: relative;
	padding-top: 43px;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-maru-link:before {
	position: absolute;
	left: 50%;
	top: 12px;
	transform: translate(-50%, 0);
	display: block;
	content:"";
	width: 34px;
	height: 34px;
	background: url("../img/common/hd_btn_arrow.svg") no-repeat 0 0;
	background-size: cover;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-maru-link.access:before {
	background: url("../img/common/header_icon_access.svg") no-repeat 0 0;
	background-size: cover;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-maru-link.recruit:before {
	background: url("../img/common/header_icon_recruit.svg") no-repeat 0 0;
	background-size: cover;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-contact {
	margin-top: 2rem;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-contact-link {
	position: relative;
	display: block;
	width: 100%;
	max-width: 14rem;
	padding: 14px 3px;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.4;
	letter-spacing: 0px;
	margin-left: auto;
	margin-right: auto;
	background-color: #8DCE57;
	color: #FFF;
}
@media (min-width:768px){
	#global-header .menu-wrap-SPTAB .hamburger {
		right: 3%;
		top: 17px;
	}
	#global-header .menu-wrap-SPTAB .header__nav-area {
		width: 40%;
	}
	#global-header .menu-wrap-SPTAB .navi-wrap {
		padding: 5rem 3rem 0 3rem;
	}
}
@media (min-width:1024px){
	#global-header .menu-wrap-SPTAB {
		display: none;
	}
}

/* PC用 menu-wrap-PC
------------------------------*/
#global-header .menu-wrap-PC {
	display: none;
}
@media (min-width:1024px){
	#global-header .menu-wrap-PC {
		display: block;
	}
	#global-header .menu-wrap-PC .navi-wrap {
		position: absolute;
		right: 2%;
		top: 18px;
		display: flex;
		align-items: center;
	}
	#global-header .menu-wrap-PC .list {
		list-style-type: none;
		display: flex;
		gap: .8rem;
	}
	#global-header .menu-wrap-PC .list-link {
		font-weight: 700;
		font-size: .85rem;
		letter-spacing: 0;
		color: #6E564B;
		text-decoration: none;
		transition: 0.25s ease-in-out;
		-moz-transition: 0.25s ease-in-out;
		-webkit-transition: 0.25s ease-in-out;
		-o-transition: 0.25s eease-in-out;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link:hover {
		color: #8DCE57;
	}
	
	#global-header .menu-wrap-PC .navi-wrap .btn-maru {
		display: flex;
		gap: .3rem;
		margin-left: .5rem;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-maru-link {
		display: block;
		width: 66px;
		height: 66px;
		border-radius: 100px;
		background-color: #FCF7EF;
		text-align: center;
		font-weight: 900;
		font-size: .65rem;
		text-decoration: none;
		position: relative;
		padding-top: 34px;
		transition: 0.25s ease-in-out;
		-moz-transition: 0.25s ease-in-out;
		-webkit-transition: 0.25s ease-in-out;
		-o-transition: 0.25s eease-in-out;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-maru-link:hover {
		opacity: .8;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-maru-link:before {
		position: absolute;
		left: 50%;
		top: 10px;
		transform: translate(-50%, 0);
		display: block;
		content:"";
		width: 26px;
		height: 26px;
		background: url("../img/common/hd_btn_arrow.svg") no-repeat 0 0;
		background-size: cover;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-maru-link.access:before {
		background: url("../img/common/header_icon_access.svg") no-repeat 0 0;
		background-size: cover;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-maru-link.recruit:before {
		background: url("../img/common/header_icon_recruit.svg") no-repeat 0 0;
		background-size: cover;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-contact-link {
		position: relative;
		display: block;
		width: 100%;
		max-width: 14rem;
		padding: 12px 13px;
		border-radius: 50px;
		text-align: center;
		text-decoration: none;
		font-weight: 700;
		font-size: .85rem;
		line-height: 1.4;
		letter-spacing: 0px;
		margin-left: .3rem;
		background-color: #8DCE57;
		color: #FFF;
		transition: 0.25s ease-in-out;
		-moz-transition: 0.25s ease-in-out;
		-webkit-transition: 0.25s ease-in-out;
		-o-transition: 0.25s eease-in-out;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-contact-link:hover {
		opacity: .8;
	}
}
@media (min-width:1110px){
	#global-header .menu-wrap-PC .list {
		gap: 1rem;
	}
	#global-header .menu-wrap-PC .list-link {
		font-size: .9rem;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-maru {
		margin-left: 1rem;
		gap: .4rem;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-contact-link {
		margin-left: .5rem;
	}
}
@media (min-width:1280px){
	#global-header .menu-wrap-PC .list {
		gap: 1.3rem;
	}
	#global-header .menu-wrap-PC .list-link {
		font-size: .95rem;
	}
}


/****************************************************************************
 	main
****************************************************************************/
/*
#main-wrap {
	position: relative;
	padding-top: 52px;
}
@media (min-width:768px){
	#main-wrap {
		padding-top: 60px;
	}
}
@media (min-width:1000px){
	#main-wrap {
		padding-top: 120px;
	}
}*/

/****************************************************************************
 	共通：ページ下部 ボタンエリア
****************************************************************************/
.c-ft-btn-sec {
	padding: 2rem 0;
	border-top: 10px solid #FFF;
	background-color: #FCF7EF;
    background-image:
         repeating-linear-gradient(-45deg,#FDFBF7, #FDFBF7 10px,transparent 0, transparent 20px);
	position: relative;
}
.c-ft-btn-sec:after {
	display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: url("../img/common/ft_btn_bg_btm.webp") no-repeat center / 100% 100%;
    width: 100%;
    height: .4rem;
    z-index: 1;
}
.c-ft-btn-sec .list {
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.c-ft-btn-sec .list-link {
	display: block;
	text-decoration: none;
	width: 100%;
	aspect-ratio: 1 / 1;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
.c-ft-btn-sec .list-link:hover {
	opacity: .8;
}
.c-ft-btn-sec .list-link .circle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #fff;
	text-align: center;
	border-width: 13px;
	border-style: solid;
}
.c-ft-btn-sec .list-link img {
	width: 2.4rem;
	margin-top: 1.3rem;
}
.c-ft-btn-sec .list-link .ttl {
	font-weight: 900;
	font-size: 1rem;
	line-height: 1.5;
	color: #8DCE57;
	margin-top: .3rem;
}
.c-ft-btn-sec .list-link .copy {
	font-size: .8rem;
	line-height: 1.4;
	margin-top: .3rem;
}
/*カラー設定*/
.c-ft-btn-sec .list-link.life .circle {
	border-color: #E4F2F7;
}
.c-ft-btn-sec .list-link.program .circle {
	border-color: #FFE7E5;
}
.c-ft-btn-sec .list-link.guidance .circle {
	border-color: #FFF1D6;
}
.c-ft-btn-sec .list-link.access .circle {
	border-color: #EAF5CB;
}
@media (min-width:768px){
	.c-ft-btn-sec {
		padding: 2.5rem 0;
		background-image:
			 repeating-linear-gradient(-45deg,#FDFBF7, #FDFBF7 15px,transparent 0, transparent 30px);
	}
	.c-ft-btn-sec:after {
		height: .6rem;
	}
	.c-ft-btn-sec .list {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.3rem;
	}
	
}
@media (min-width:900px){
	.c-ft-btn-sec .list {
		gap: 1.3rem;
	}
	.c-ft-btn-sec .list-link img {
		width: 3rem;
		margin-top: 1.5rem;
	}
	.c-ft-btn-sec .list-link .ttl {
		font-size: 1.1rem;
		margin-top: .5rem;
	}
	.c-ft-btn-sec .list-link .copy {
		font-size: .75rem;
		margin-top: .5rem;
	}
}
@media (min-width:1024px){
	.c-ft-btn-sec {
		padding: 2.5rem 0;
		background-image:
			 repeating-linear-gradient(-45deg,#FDFBF7, #FDFBF7 15px,transparent 0, transparent 30px);
	}
	.c-ft-btn-sec:after {
		height: .6rem;
	}
	.c-ft-btn-sec .m-inner {
		max-width: 1100px;
		margin: 0 auto;
		padding: 0 3rem;
	}
}
@media (min-width:1280px){
	.c-ft-btn-sec .m-inner {
		width: 1100px;
		margin: 0 auto;
		padding: 0 3rem;
	}
}


/****************************************************************************
 	共通：ページ下部 お問い合わせエリア
****************************************************************************/
.c-ft-cont-sec {
	background-color: #FFF4D0;
	padding: 2rem 0 5rem 0;
}
.c-ft-cont-sec .m-ttl-L {
	margin-bottom: 2rem;
}
.c-ft-cont-sec .box {
	background-color: #fff;
	border-radius: 40px;
	margin-top: .5rem;
	padding: 1.5rem 1rem;
	text-align: center;
}
.c-ft-cont-sec .tel .num {
	position: relative;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	letter-spacing: 2px;
	color: #8DCE57;
	font-size: 2.4rem;
	padding-left: 30px;
}
.c-ft-cont-sec .tel .num:before {
	position: absolute;
	left: 0;
	top: 57%;
	transform: translate(0, -50%);
	display: block;
	content:"";
	width: 26px;
	height: 26px;
	background: url("../img/common/icon_tel_green.svg") no-repeat 0 0;
	background-size: cover;
}
.c-ft-cont-sec .tel .text {
	font-size: .85rem;
}
.c-ft-cont-sec .form {
	margin-top: 1rem;
}
.c-ft-cont-sec .form .btn {
	position: relative;
	display: block;
	width: 100%;
	max-width: 17rem;
	padding: 16px 8px 16px 3px;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.4;
	letter-spacing: 0px;
	margin-left: auto;
	margin-right: auto;
	background-color: #8DCE57;
	color: #fff;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s eease-in-out;
}
.c-ft-cont-sec .form .btn:after {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
	display: block;
	content:"";
	width: 14px;
	height: 14px;
	background: url("../img/common/arrow_white.svg") no-repeat 0 0;
	background-size: cover;
}
.c-ft-cont-sec .form .btn:hover {
	opacity: .7;
}
@media (min-width:768px){
	.c-ft-cont-sec {
		padding: 3rem 0 6rem 0;
	}
	.c-ft-cont-sec .box {
		width: 90%;
		max-width: 800px;
		margin: 1rem auto 0 auto;
		border-radius: 50px;
		padding: 2rem 2.5rem;
		text-align: center;
		display: grid;
		grid-template-columns: 22rem 1fr;
		gap: 1rem;
	}
	.c-ft-cont-sec .tel .num {
		font-size: 2.8rem;
		padding-left: 40px;
	}
	.c-ft-cont-sec .tel .num:before {
		top: 57%;
		transform: translate(0, -50%);
		width: 34px;
		height: 34px;
	}
	.c-ft-cont-sec .tel .text {
		font-size: .9rem;
		text-align: center;
	}
	.c-ft-cont-sec .form {
		margin-top: .5rem;
		text-align: right;
	}
	.c-ft-cont-sec .form .btn {
		max-width: 100%;
		padding: 18px 8px 18px 3px;
		font-size: 1.1rem;
	}
}
@media (min-width:1024px){
	.c-ft-cont-sec {
		padding: 3rem 0 8rem 0;
	}
}


/****************************************************************************
 	footer
****************************************************************************/
#global-footer {
	position: relative;
	background-color: #8DCE57;
	border-radius: 40px 40px 0 0;
	padding: 2.5rem 0 0 0;
	margin-top: -3rem;
	color: #fff;
}
#global-footer .m-inner {
	position: relative;
	padding-bottom: 7rem;
}
#global-footer .m-inner:before {
	position: absolute;
	right: 50%;
	bottom: 0;
	transform: translate(50%, 0);
	display: block;
	content:"";
	width: 16rem;
	height: 16rem;
	background: url("../img/common/ft_illust.webp") no-repeat 0 0;
	background-size: cover;
}
#global-footer .note {
	text-align: center;
}
#global-footer .note .logo {
	margin-bottom: 1.5rem;
}
#global-footer .note .logo img {
	width: 60%;
	max-width: 250px;
}
#global-footer .note .text {
	font-size: 1rem;
	line-height: 1.5;
	letter-spacing: 1px;
}
#global-footer .note .text.add {
	display: inline;
}
#global-footer .note .btn-map {
	display: inline-block;
    width: 1.7rem;
}
#global-footer .note .btn-map:hover {
	opacity: .8;
}
#global-footer .navi {
	padding: 2rem 2rem;
}
#global-footer .navi .list {
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
#global-footer .navi .list-item {
	text-align: left;
	line-height: 1;
}
#global-footer .navi .list-link {
	font-size: 1rem;
	color: #fff;
	text-decoration: underline;
	position: relative;
}
#global-footer .navi .list-link.blank:after {
	position: absolute;
	right: -18px;
	top: 2px;
	display: block;
	content:"";
	width: 15px;
	height: 15px;
	background: url("../img/common/ft_icon_window.svg") no-repeat 0 0;
	background-size: cover;
}
#global-footer .navi .list-link:hover {
	text-decoration: none;
}
#global-footer .cr {
	color: #E8F5DD;
	font-size: .7rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: 1px;
	padding: 0 0;
}
@media (min-width:768px){
	#global-footer {
		border-radius: 60px 60px 0 0;
		padding: 3rem 1rem 0 1rem;
		margin-top: -3rem;
	}
	#global-footer .m-inner {
		padding-bottom: 3rem;
	}
	#global-footer .m-inner:before {
		position: absolute;
		right: 0;
		bottom: 0;
		transform: translate(0, 0);
		width: 16rem;
		height: 16rem;
	}
	#global-footer .wrap {
		display: grid;
		grid-template-columns: 20rem 1fr;
		gap: 2rem;
	}
	#global-footer .note {
		text-align: left;
	}
	#global-footer .note .logo {
		margin-bottom: 1.5rem;
	}
	#global-footer .note .logo img {
		width: 100%;
		max-width: 250px;
	}
	#global-footer .note .text {
		font-size: .9rem;
		line-height: 1.5;
		letter-spacing: 1px;
	}
	#global-footer .note .btn-map {
		width: 1.6rem;
	}
	#global-footer .navi {
		padding: 2rem 0 0 0;
	}
	#global-footer .navi .list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
	#global-footer .navi .list-item {
		line-height: 1.4;
	}
	#global-footer .navi .list-link {
		font-size: 1rem;
		text-decoration: none;
	}
	#global-footer .navi .list-link:hover {
		text-decoration: underline;
	}
	#global-footer .cr {
		margin-top: 3rem;
		font-size: .7rem;
		letter-spacing: 1px;
	}
}
@media (min-width:1024px){
	#global-footer {
		border-radius: 80px 80px 0 0;
		padding: 4rem 0 0 0;
		margin-top: -5rem;
	}
	#global-footer .m-inner {
		padding-bottom: 3rem;
	}
	#global-footer .m-inner:before {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 18rem;
		height: 18rem;
	}
	#global-footer .wrap {
		display: grid;
		grid-template-columns: 19rem 1fr;
		gap: 2rem;
	}
	#global-footer .note .logo {
		margin-bottom: 1.5rem;
	}
	#global-footer .note .logo img {
		width: 100%;
		max-width: 290px;
	}
	#global-footer .note .text {
		font-size: .95rem;
		line-height: 1.5;
		letter-spacing: 1px;
	}
	#global-footer .navi {
		padding: 2rem 0 0 0;
	}
	#global-footer .navi .list {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 1rem;
	}
	#global-footer .navi .list-item {
		line-height: 1.2;
	}
	#global-footer .navi .list-link {
		font-size: .9rem;
	}
	#global-footer .cr {
		margin-top: 3rem;
		font-size: .8rem;
	}
}
@media (min-width: 1280px) {
	#global-footer .wrap {
		gap: 4rem;
	}
	#global-footer .navi .list-link {
		font-size: 1rem;
	}
}


/****************************************************************************
 	pagetop
****************************************************************************/
#pagetop {
	position: fixed;
	z-index: 100;
	bottom: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	background-color: #6E564B;
	border-radius: 50%;
	cursor: pointer;
}
#pagetop:after {
	content: "";
	position: absolute;
	top: 18px;
	left: 50%;
	margin-left: -3px;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
} 
@media (min-width:1150px){
	#pagetop {
		bottom: 30px;
		right: 30px;
		width: 60px;
		height: 60px;
	}
	#pagetop:after {
		top: 25px;
	}
}

	





