@charset "UTF-8";


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

#global-header {
	width: 100%;
	height: 52px;
	position: fixed;
	z-index: 1000;
	background-color: #fff;
}
#global-header .logo {
	width: 150px;
	position: absolute;
	left: 4%;
	top: 13px;
}
#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:1160px){
	#global-header {
		width: 100%;
		height: 90px;
	}
	#global-header .logo {
		width: 240px;
		position: absolute;
		left: 3%;
		top: 19px;
	}
}

/* SP用 menu-wrap-SPTAB
------------------------------*/
/* バーガーメニュー */
#global-header .menu-wrap-SPTAB .hamburger {
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	right: 4%;
	top: 5px;
	border: none;
	background-color: transparent;
	z-index: 10;
}
#global-header .menu-wrap-SPTAB .hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 12px;
    left: 0;
    width: 32px;
    background-color: #85C6EF;
	transition: 0.2s;
}
#global-header .menu-wrap-SPTAB .hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #85C6EF;
    transition: inherit;
	top: 15px;
	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: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:#f2f5f6;
	transition: 0.2s;
}
#global-header .menu-wrap-SPTAB .header__nav-area.-active {
	right: 0;
	visibility: visible;
}

#global-header .menu-wrap-SPTAB .navi-wrap {
	padding: 5em 2em 0 5em;
}
#global-header .menu-wrap-SPTAB .navi-wrap .list-item {
	list-style-type: none;
	margin-top: 2em;
}
#global-header .menu-wrap-SPTAB .navi-wrap .list-link {
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 2px;
	color: #656B72;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-wrap {
	margin-top: 3em;
	/*display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;*/
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-wrap .btn-instagram {
	position: relative;
	display: block;
	width: 55px;
	height: 55px;
	background-color: #ACC1CE;
	border-radius: 50px;
	padding: 11px 0 0 0;
	text-align: center;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-wrap .btn-instagram img {
	width: 60%;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-wrap .btn-line {
	position: relative;
	display: block;
	width: 270px;
	padding: 16px 8px 16px 3px;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	font-weight: 500;
	font-size: 17px;
	line-height: 1.4;
	letter-spacing: 0px;
	margin-left: 0;
	margin-top: 1.5em;
	background-color: #08C656;
	color: #fff;
}
#global-header .menu-wrap-SPTAB .navi-wrap .btn-wrap .btn-line:before {
	position: absolute;
	right: 15px;
	top: 23px;
	display: block;
	content:"";
	width: 12px;
	height: 12px;
	background: url("../img/common/icon_arrow_blank.svg") no-repeat 0 0;
	background-size: cover;
}
@media (min-width:768px){
	#global-header .menu-wrap-SPTAB .header__nav-area {
		width: 50%;
	}
}
@media (min-width:1160px){
	#global-header .menu-wrap-SPTAB {
		display: none;
	}
}

/* PC用 menu-wrap-PC
------------------------------*/
#global-header .menu-wrap-PC {
	display: none;
}
@media (min-width:1160px){
	#global-header .menu-wrap-PC {
		display: block;
	}
	#global-header .menu-wrap-PC .navi-wrap {
		position: relative;
	}
	#global-header .menu-wrap-PC .navi-wrap .list {
		position: absolute;
		right: 280px;
		top: 25px;
		list-style-type: none;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-item {
		margin: 0 15px;
	}
	#global-header .menu-wrap-PC .navi-wrap .list-link {
		font-weight: 600;
		font-size: 16px;
		letter-spacing: 0px;
		color: #656B72;
		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: #70C1F4;
	}
	
	#global-header .menu-wrap-PC .navi-wrap .btn-wrap {
		position: absolute;
		top: 19px;
		right: 1%;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-wrap .btn-instagram {
		position: relative;
		display: block;
		width: 44px;
		height: 44px;
		background-color: #ACC1CE;
		border-radius: 50px;
		padding: 11px 0 0 0;
		text-align: center;
		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-wrap .btn-instagram:hover {
		opacity: .8;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-wrap .btn-instagram img {
		width: 50%;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-wrap .btn-line {
		position: relative;
		display: block;
		width: 210px;
		padding: 10px 7px 10px 3px;
		border-radius: 50px;
		text-align: center;
		text-decoration: none;
		font-weight: 500;
		font-size: 14px;
		line-height: 1.4;
		letter-spacing: 0;
		margin-left: 8px;
		background-color: #08C656;
		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-wrap .btn-line:hover {
		opacity: .8;
	}
	#global-header .menu-wrap-PC .navi-wrap .btn-wrap .btn-line:before {
		position: absolute;
		right: 10px;
		top: 16px;
		display: block;
		content:"";
		width: 9px;
		height: 9px;
		background: url("../img/common/icon_arrow_blank.svg") no-repeat 0 0;
		background-size: cover;
	}
}


/****************************************************************************
 	main
****************************************************************************/
#main-wrap {
	padding-top: 52px;
}
@media (min-width:1160px){
	#main-wrap {
		padding-top: 90px;
	}
}

/****************************************************************************
 	footer
****************************************************************************/
#global-footer {
	background: url("../img/common/bg_curve_ft.png")no-repeat top left #DEE9ED;
	background-size: 100%;
	padding: 3em 0;
}
#global-footer .ft-contact .list {
	list-style-type: none;
}
#global-footer .ft-contact .list-item {
	background-color: #fff;
	border-radius: 20px;
	padding: 1em 1em;
	margin-bottom: 1em;
}
#global-footer .ft-contact .list-item .title {
	text-align: center;
	font-size: 1.1em;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: .3em;
}
#global-footer .ft-contact .list-item .tel {
	text-align: center;
}
#global-footer .ft-contact .list-item .tel .m-tel {
	color: #8FBCD8;
	font-weight: 900;
	font-size: 2.4em;
	line-height: 1;
	position: relative;
	padding-left: 32px;
}
#global-footer .ft-contact .list-item .tel .m-tel:before {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -10px;
	display: block;
	content:"";
	width: 25px;
	height: 25px;
	background: url("../img/common/icon_tel_blue.svg") no-repeat 0 0;
	background-size: cover;
}
#global-footer .ft-contact .list-item .btn .btn-line {
	position: relative;
	display: block;
	width: 230px;
	padding: 15px 3px;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 1px;
	margin-left: auto;
	margin-right: auto;
	background-color: #08C656;
	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-footer .ft-contact .list-item .btn .btn-line:hover {
	opacity: .8;
}
#global-footer .ft-contact .list-item .btn .btn-line:before {
	position: absolute;
	right: 10px;
	top: 20px;
	display: block;
	content:"";
	width: 12px;
	height: 12px;
	background: url("../img/common/icon_arrow_blank.svg") no-repeat 0 0;
	background-size: cover;
}
#global-footer .ft-menu {
	margin-top: 1.5em;
}
#global-footer .ft-menu .list {
	list-style-type: none;
}
#global-footer .ft-menu .list-item {
	text-align: center;
	margin-bottom: 1em;
}
#global-footer .ft-menu .list-link {
	color: #656B72;
	font-weight: 700;
	font-size: 1.05em;
}
#global-footer .ft-menu .list-link:hover {
	opacity: .8;
}
#global-footer .ft-menu .btn-instagram {
	position: relative;
	display: block;
	width: 55px;
	height: 55px;
	background-color: #ACC1CE;
	border-radius: 50px;
	padding: 11px 0 0 0;
	text-align: center;
	margin: 0 auto;
	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-footer .ft-menu .btn-instagram:hover {
	opacity: .8;
}
#global-footer .ft-menu .btn-instagram img {
	width: 60%;
}
#global-footer .pp {
	text-align: center;
}
#global-footer .pp a {
	color: #656B72;
	font-weight: 400;
	font-size: .85em;
}
#global-footer .pp a:hover {
	opacity: .8;
}
#global-footer .cr {
	text-align: center;
	color: #B8C7D1;
	font-size: .7em;
	letter-spacing: 2px;
	margin-top: 2em;
}
@media (min-width:768px){
	#global-footer {
		padding: 3.5em 0;
	}
	#global-footer .ft-contact .list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#global-footer .ft-contact .list-item {
		width: 48%;
		border-radius: 20px;
		padding: 1em 1em;
		margin-bottom: 0;
	}
	#global-footer .ft-menu {
		margin-top: 1.5em;
	}
	#global-footer .ft-menu .list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
	#global-footer .ft-menu .list-item {
		text-align: center;
		margin: 0 10px;
	}
	#global-footer .ft-menu .list-link {
		font-size: .85em;
	}
	#global-footer .cr {
		font-size: .6em;
		letter-spacing: 2px;
		margin-top: 2em;
	}
}
@media (min-width:1000px){
	#global-footer {
		padding: 4em 0;
	}
	#global-footer .ft-contact .list-item {
		width: 48%;
		border-radius: 30px;
		padding: 1.5em 1em;
	}
	#global-footer .ft-contact .list-item .title {
		font-size: 1.2em;
		margin-bottom: .3em;
	}
	#global-footer .ft-contact .list-item .tel .m-tel {
		font-size: 2.8em;
		padding-left: 40px;
	}
	#global-footer .ft-contact .list-item .tel .m-tel:before {
		margin-top: -10px;
		width: 30px;
		height: 30px;
	}
	#global-footer .ft-contact .list-item .btn .btn-line {
		width: 270px;
		padding: 18px 3px;
		font-size: 18px;
		letter-spacing: 1px;
		
	}
	#global-footer .ft-contact .list-item .btn .btn-line:hover {
		opacity: .8;
	}
	#global-footer .ft-contact .list-item .btn .btn-line:before {
		position: absolute;
		right: 13px;
		top: 25px;
		width: 12px;
		height: 12px;
	}
	#global-footer .ft-menu {
		margin-top: 1.5em;
	}
	#global-footer .ft-menu .list-item {
		text-align: center;
		margin: 0 25px;
	}
	#global-footer .ft-menu .list-link {
		font-size: .9em;
	}
	#global-footer .pp a {
		font-size: .85em;
	}
	#global-footer .cr {
		font-size: .7em;
		letter-spacing: 2px;
		margin-top: 3em;
	}
}



/****************************************************************************
 	pagetop
****************************************************************************/
#pagetop {
	position: fixed;
	z-index: 100;
	bottom: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	background-color: #656B72;
	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:1200px){
	#pagetop {
		bottom: 30px;
		right: 30px;
		width: 60px;
		height: 60px;
	}
	#pagetop:after {
		top: 25px;
	}
}

	





