@charset "UTF-8";
/* CSS Document */

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main{
	display: block;
}

html{
	margin:0;
	padding:0;
	font-size: 62.5%;
}
body{
	margin:0 auto;
	padding:0;
	text-size-adjust: 100%;
}
p{
	line-height: 170%;
}
ul li,ol li{
	list-style: none;
}
/* 打ち消し用 */
li > ul{
	margin-top:0;
}
blockquote, q{
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after{
	content: '';
	content: none;
}
a{
	color:#333;
	text-decoration:none;
	transition: all 0.3s;
}
a:link{
	color:#333;
}
a:visited{
	color:#333;
}
a:hover{
	text-decoration:none;
}
img{
	border: none;
	vertical-align: top;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
*,*::before,*::after{
	box-sizing: border-box;
}

/* iPad背景切れ対策 */
@media screen and (min-width: 767px){
	body{
		min-width: 1200px;
	}
}


/* 表示切替 */
.switch{
	visibility: hidden;
}
.sp{
	display: none;
}

/*
	common
-----------------------------------------------------------------------------------------------*/
:root{
	/* color */
	--mainGr:#0196b4;
	--ltBl:#E6FAFF;
}

/*全体
-----------------------------------------------------------------------------------------------*/
#wrapperArea {
	color:#000;
	font-size: 1.4em;
	position: relative;
	width: 100%;
	padding:0;
	font-weight: 400;
}
#wrapperArea *{
	font-family: 'Noto Sans JP', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}
.ctsArea{
	width: 1140px;
	padding: 45px 0px;
	margin: 0 auto;
}

/*　topWrapper 
-----------------------------------------------------------------------------------------------*/
#topWrapper{
	background: #fff;
	text-align: center;
}
#topWrapper .logo{
	padding: 40px 0 30px 0;
	border-bottom:2px solid var(--mainGr);
}
#topWrapper .titleEntry{
	color: var(--mainGr);
	font-size: 5.0rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}
#topWrapper .mainTxt{
	font-size: 1.6rem;
	line-height: 30px;
	font-weight: 400;
	margin-top:20px;
	letter-spacing: 0.05em;
}

/*
	linkWrapper　ボタン一覧	
-----------------------------------------------------------------------------------------------*/
#linkWrapper{
	background: var(--ltBl);
}
#linkWrapper .btnList{
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	gap: 30px 0;
	width: 700px;
}
#linkWrapper .btnList li{
	text-align: center;
	border-radius: 12px;
}
#linkWrapper .btnList li a{
	display: block;
	padding: 20px;
	color: #fff;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	transition: all 0.3s;
	position: relative;
	border-radius: 12px;
	background:var(--mainGr);
}
#linkWrapper .btnList li a:hover{
	background-color: #28bbce;
}
#linkWrapper .btnList li a::after{
	content: "";
	width: 11px;
	height: 11px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	position: absolute;
	top:50%;
	right: 30px;
	transform: rotate(45deg)translateY(-50%);
	transition: right 0.3s;
}
#linkWrapper .btnList li a:hover::after{
	right: 26px;
}

/*
	#footer　フッター
-----------------------------------------------------------------------------------------------*/
#footer{
	text-align: center;
	font-size: 1.2rem;
	padding: 25px 0;
	color: #000;
}

/*----------------------------------------------------------------------------------------------
	SPここから
-----------------------------------------------------------------------------------------------*/

@media screen and (max-width: 767px){
	body{
		-webkit-text-size-adjust:100%;
	}
	img{
		width:100%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}

	/*全体
	-----------------------------------------------------------------------------------------------*/
	.ctsArea{
		width: 100%;
		max-width: 500px;
		padding: 30px 20px;
	}
	/*　topWrapper 
	-----------------------------------------------------------------------------------------------*/
	#topWrapper .logo{
		padding: 40px 0 30px 0;
		margin: 0 auto;
	}
	#topWrapper .logo img{
		width: 235px;
	}
	#topWrapper .titleEntry{
		font-size: 4.0rem;
	}
	#topWrapper .mainTxt{
		margin-top:10px;
		font-size: 1.4rem;
		line-height: 22px;
	}

	/*
		linkWrapper　ボタン一覧	
	-----------------------------------------------------------------------------------------------*/
	#linkWrapper .btnList{
		width: 100%;
	}
	#linkWrapper .btnList li a{
		height: 84px;
		padding: 15px;
		font-size: 1.6rem;
		font-weight: 700;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#linkWrapper .btnList li a:hover{
		background-color: var(--mainGr);
	}
	#linkWrapper .btnList li a::after{
		right: 20px;
		transition: none;
	}

	/*
		#footer　フッター
	-----------------------------------------------------------------------------------------------*/
	#footer{
		font-size: 1.0rem;
		padding: 15px 0;
	}
}