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

/**
 * Noto Sans CJK JP: https://www.google.com/get/noto/#sans-jpan
 * Noto Sans JP: https://fonts.google.com/earlyaccess#Noto+Sans+JP
 */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 100;
  src: local("Noto Sans CJK JP Thin"),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.woff2) format('woff2'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.woff) format('woff'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  src: local("Noto Sans CJK JP Light"),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.woff2) format('woff2'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.woff) format('woff'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP Regular"),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans CJK JP Medium"),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff2) format('woff2'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff) format('woff'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff2) format('woff2'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff) format('woff'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: local("Noto Sans CJK JP Black"),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.woff2) format('woff2'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.woff) format('woff'),
       url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.otf) format('opentype');
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
*:focus {
	outline: none;
}
html, body {
	margin: 0;
	padding: 0;
	color: inherit;
	font-size: 16px;
	font-family: 'Noto Sans JP','メイリオ', Meiryo, sans-serif;
	font-weight: 400;
	-webkit-text-size-adjust: 100%; /*スマホ横の時、文字サイズを変更させない*/
	/* font-feature-settings: "palt"; */
	background: #fff;
}
a {
	color: inherit;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
	text-decoration: none;
}
a.disabled {
	display: block;
	pointer-events: none;
	opacity: 0.3;
}
img {
	/* display: block; */
	width: 100%;
}
sup {
	font-size: 12px;
	vertical-align: super;
}
#wrap {
	position: relative;
	min-width: 1000px;
	overflow: hidden;
}
.clearfix:after {
    content:" ";
    display:block;
    clear:both;
}
.only_pc {
	display: block !important;
}
.only_sp {
	display: none !important;
}

@media (max-width: 768px) {
	#wrap {
		min-width: auto;
	}
	.only_pc {
		display: none !important;
	}
	.only_sp {
		display: block !important;
	}
}

/*----------
 mv
----------*/
#mv {
	width: 100%;
	height: 660px;
	background: url(../../img/overview/mv_bg.jpg) no-repeat center / cover;
}
#mv .inner {
	position: relative;
	width: 1000px;
	margin: auto;
}
#mv .ttl {
	position: absolute;
	top: 150px;
	left: 25px;
	width: 349px;
}

@media (max-width: 768px) {
	#mv {
		height: 330px;
		background: url(../../img/overview/mv_bg.jpg) no-repeat right 20% center / cover;
	}
	#mv .inner {
		width: 100%;
	}
	#mv .ttl {
		top: 125px;
		right: 25px;
		width: 175px;
	}
}

/*----------
 notice
----------*/
#notice p {
	font-size: 16px;
    font-weight: 700;
	color: #494340;
	text-align: center;
	line-height: 1.2;
}
#notice p a {
	display: block;
	width: 100%;
	padding: 20px 30px;
	background-color: #fcf70a;
	color: #494340;
	text-decoration: none;
	box-sizing: border-box;
}
#notice p a:hover {
	opacity: 0.7;
}

@media (max-width: 768px) {
	#notice p a {
		padding: 20px 25px;
	}
}

/*----------
 cts
----------*/
#cts {
	width: 1000px;
	padding-bottom: 50px;
	margin: 0 auto;
	color: #353535;
}
.inner {
	padding-top: 50px;
}
#sougou,
#recommendation,
#general,
#center,
#technical,
#english,
#fee {
	scroll-margin-top: 135px;
}
.mt0 {
	margin-top: 0 !important;
}
/*-- hr --*/
.hr {
	width: 100%;
	height: 1px;
	background-color: #f4f4f4;
	margin-bottom: 20px;
}

/*-- ttl --*/
.ttlA {
	position: relative;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
	color: #707070;
	padding-left: 20px;
	margin-top: 60px;
}
.ttlA:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
}
#sougou .ttlA:before {
	background-color: #2A92D0;
}
#recommendation .ttlA:before {
	background-color: #F58229;
}
#general .ttlA:before {
	background-color: #49B857;
}
#center .ttlA:before {
	background-color: #49B857;
}
#technical .ttlA:before {
	background-color: #2E3092;
}
#english .ttlA:before {
	background-color: #ABBD91;
}
#fee .ttlA:before {
	background-color: #ABBD91;
}
.ttlB {
	position: relative;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
	padding: 10px 30px;
	margin-top: 20px;
}
.dark_pink .ttlB {
	background-color: #ca5577;
}
.dark_blue .ttlB {
	background-color: #3A5CA4;
}
.light_green .ttlB {
	background-color: #4AB7A1;
}
.light_blue .ttlB {
	background-color: #2A92D0;
}
.orange .ttlB {
	background-color: #F58229;
}
.green .ttlB {
	background-color: #49B857;
}
.indigo .ttlB {
	background-color: #2E3092;
}
.ttlC {
	position: relative;
	color: #707070;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	padding-bottom: 10px;
	margin-top: 20px;
}
.ttlC:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
}
.dark_pink .ttlC:before {
	background-color: #ca5577;
}
.dark_blue .ttlC:before {
	background-color: #3A5CA4;
}
.light_green .ttlC:before {
	background-color: #4AB7A1;
}
.light_blue .ttlC:before {
	background-color: #2A92D0;
}
.orange .ttlC:before {
	background-color: #F58229;
}
.green .ttlC:before {
	background-color: #4AB7A1;
}
.orange .ttlC:before {
	background-color: #F58229;
}
.green .ttlC:before {
	background-color: #49B857;
}
.indigo .ttlC:before {
	background-color: #2E3092;
}
.ttlD {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.2;
	margin-top: 20px;
}
.dark_pink .ttlD {
	color: #fff;
}
.dark_blue .ttlD {
	color: #3A5CA4;
}
.light_blue .ttlD {
	color: #2A92D0;
}
.gray .ttlD {
	color: #ABBD91;
}
.ttlE {
	position: relative;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.2;
	padding-left: 26px;
	margin-top: 20px;
}
.ttlE:before {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
}
.gray .ttlE:before {
	background-color: #ABBD91;
}
.dark_pink .ttlD {
	color: #ca5577;
}
.dark_blue .ttlD {
	color: #3A5CA4;
}
.light_green .ttlD {
	color: #4AB7A1;
}
.light_blue .ttlD {
	color: #2A92D0;
}
.orange .ttlD {
	color: #F58229;
}
.green .ttlD {
	color: #49B857;
}
.indigo .ttlD {
	color: #2E3092;
}

/*-- txt --*/
.txt {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 20px;
}
.txt b {
	font-weight: bold;
}
.txtC {
	text-align: center;
}
.txt.indent01 {
	text-indent: -12.5em;
	padding-left: 12.5em;
}
.txt.indent02 {
	text-indent: -10em;
	padding-left: 10em;
}
.txt.indent03 {
	text-indent: -12.5em;
	padding-left: 12.5em;
}
.txt.indent04 {
	text-indent: -4em;
	padding-left: 4em;
}
.txt.indent05 {
	text-indent: -12.5em;
	padding-left: 12.5em;
}
.txt.indent06 {
	text-indent: -4em;
	padding-left: 4em;
}
.txt .pl {
	display: block;
	text-indent: 0;
	padding-left: 1em;
}
.small {
	font-size: 80%;
}
.dark_pink .date {
	color: #ca5577;
}
.dark_blue .date {
	color: #3A5CA4;
}
.light_green .date {
	color: #4AB7A1;
}
.light_blue .date {
	color: #2A92D0;
}
.orange .date {
	color: #F58229;
}
.green .date {
	color: #49B857;
}
.indigo .date {
	color: #2E3092;
}

/*-- a --*/
a {
	color: #fb769c;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a.link:after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../../img/top/icon_link.png) no-repeat center / cover;
	margin-left: 5px;
}
a.pdf:after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 16px;
	background: url(../../img/top/icon_pdf.png) no-repeat center / cover;
	margin-left: 5px;
}

/*-- img --*/
.img {
	width: 100%;
	margin-bottom: 20px;
}
.img a {
	display: block;
	width: 100%;
	transition: opacity 0.3s;
}
.img a:hover {
	opacity: 0.7;
}
.img img {
	display: block;
	width: 100%;
}

/*-- list --*/
.list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.list li {
	font-size: 16px;
	text-indent: -1em;
	line-height: 1.5;
	padding-left: 1em;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	#sougou,
	#recommendation,
	#general,
	#center,
	#technical,
	#english,
	#fee {
		scroll-margin-top: 55px;
	}
	#cts {
		width: 96%;
	}
	.inner {
		padding-top: 30px;
	}
	.dark_pink,
	.dark_blue,
	.light_green,
	.light_blue,
	.orange,
	.green,
	.indigo,
	.gray {
		padding: 0 10px 10px;
	}
	/*-- hr --*/
	.hr {
		margin-bottom: 10px;
	}
	
	/*-- ttl --*/
	.ttlA {
		font-size: 20px;
		margin-top: 40px;
		margin-bottom: 10px;
		padding-left: 15px;
	}
	.ttlA.mt0 {
		margin-top: 0;
	}
	.ttlB {
		font-size: 16px;
		padding: 10px 15px;
		margin-top: 15px;
		margin-bottom: 10px;
	}
	.mt {
		margin-top: 20px;
	}
	.ttlC {
		font-size: 14px;
		margin-top: 15px;
		margin-bottom: 10px;
	}
	.ttlD {
		font-size: 14px;
		margin-top: 15px;
	}
	.ttlE {
		font-size: 14px;
		margin-top: 15px;
		padding-left: 22px;
	}
	.ttlE:before {
		width: 14px;
		height: 14px;
	}
	
	/*-- txt --*/
	.txt {
		font-size: 14px;
		margin-top: 15px;
		margin-bottom: 10px;
	}
	.txt.indent01,
	.txt.indent02,
	.txt.indent03,
	.txt.indent04,
	.txt.indent05,
	.txt.indent06 {
		text-indent: 0;
		padding-left: 0;
	}
	
	/*-- img --*/
	.img {
		margin-bottom: 10px;
	}
	
	.page_top {
		width: 100%;
		max-width: 240px;
		height: auto;
		min-height: 40px;
		margin: 20px auto 0;
		font-size: 14px;
		padding: 10px 30px 10px 10px;
	}
}

/*-- box --*/
.box {
	padding: 20px;
	margin-top: 20px;
}
.gray .box {
	background-color: #E3E8D9;
}
.box .ttlD {
	color: #7FA05E;
}

/*----------
 menu
----------*/
#menu .menu_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
#menu .menu_list li {
	width: 235px;
	height: 60px;
}
#menu .menu_list li a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #fb769c;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	transition: opacity 0.3s;
}
/* 下への字矢印 */
#menu .menu_list li a:before {
	content: "";
	display: block;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #fff;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(90deg);
}
#menu .menu_list li a:hover {
	opacity: 0.7;
}
.link_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}
.link_list li {
	width: calc(50% - 10px);
	height: 60px;
}
.link_list li a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	border-radius: 5px;
	transition: color 0.3s, background-color 0.3s;
}
#menu .link_list li a {
	color: #2896C3;
	border: 2px solid #2896C3;
	height: 40px;
}
.dark_pink .link_list li a {
	color: #fff;
	background-color: #ca5577;
}
.dark_blue .link_list li a {
	color: #fff;
	background-color: #3A5CA4;
}
.light_green .link_list li a {
	color: #fff;
	background-color: #4AB7A1;
}
.light_blue .link_list li a {
	color: #fff;
	background-color: #2A92D0;
}
.orange .link_list li a {
	color: #fff;
	background-color: #F58229;
}
.green .link_list li a {
	color: #fff;
	background-color: #49B857;
}
.indigo .link_list li a {
	color: #fff;
	background-color: #2E3092;
}
.gray .link_list li a {
	color: #fff;
	background-color: #ABBD91;
}
.link_list li a:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid transparent;
}
#menu .link_list li a:after {
	border-left: 5px solid #2896C3;
}
.dark_pink .link_list li a:after {
	border-left: 5px solid #fff;
}
.dark_blue .link_list li a:after {
	border-left: 5px solid #fff;
}
.light_green .link_list li a:after {
	border-left: 5px solid #fff;
}
.light_blue .link_list li a:after {
	border-left: 5px solid #fff;
}
.orange .link_list li a:after {
	border-left: 5px solid #fff;
}
.green .link_list li a:after {
	border-left: 5px solid #fff;
}
.indigo .link_list li a:after {
	border-left: 5px solid #fff;
}
.gray .link_list li a:after {
	border-left: 5px solid #fff;
}
#menu .link_list li a:hover {
	color: #fff;
	background-color: #2896C3;
}
.dark_pink .link_list li a:hover {
	color: #ca5577;
	border: 2px solid #ca5577;
	background-color: #fff;
}
.dark_blue .link_list li a:hover {
	color: #3A5CA4;
	border: 2px solid #3A5CA4;
	background-color: #fff;
}
.light_green .link_list li a:hover {
	color: #4AB7A1;
	border: 2px solid #4AB7A1;
	background-color: #fff;
}
.light_blue .link_list li a:hover {
	color: #2A92D0;
	border: 2px solid #2A92D0;
	background-color: #fff;
}
.orange .link_list li a:hover {
	color: #F58229;
	border: 2px solid #F58229;
	background-color: #fff;
}
.green .link_list li a:hover {
	color: #49B857;
	border: 2px solid #49B857;
	background-color: #fff;
}
.indigo .link_list li a:hover {
	color: #2E3092;
	border: 2px solid #2E3092;
	background-color: #fff;
}
.gray .link_list li a:hover {
	color: #ABBD91;
	border: 2px solid #ABBD91;
	background-color: #fff;
}
#menu .link_list li a:hover:after {
	border-left: 5px solid #fff;
}
.dark_pink .link_list li a:hover:after {
	border-left: 5px solid #ca5577;
}
.dark_blue .link_list li a:hover:after {
	border-left: 5px solid #3A5CA4;
}
.light_green .link_list li a:hover:after {
	border-left: 5px solid #4AB7A1;
}
.light_blue .link_list li a:hover:after {
	border-left: 5px solid #2A92D0;
}
.orange .link_list li a:hover:after {
	border-left: 5px solid #F58229;
}
.green .link_list li a:hover:after {
	border-left: 5px solid #49B857;
}
.indigo .link_list li a:hover:after {
	border-left: 5px solid #2E3092;
}
.gray .link_list li a:hover:after {
	border-left: 5px solid #ABBD91;
}

@media (max-width: 768px) {
	#menu .inner {
		padding-top: 30px;
	}
	#menu .menu_list {
		margin: 0;
		padding: 0;
		gap: 10px;
	}
	#menu .menu_list li {
		width: 100%;
		height: auto;
		min-height: 100%;
		margin: auto;
	}
	#menu .menu_list li a {
		font-size: 14px;
		padding: 12px 30px 12px 10px;
	}
	#menu .link_list {
		flex-direction: column;
		gap: 10px;
		margin-top: 15px;
	}
	#menu .link_list li {
		width: 100%;
		height: auto;
	}
	#menu .link_list li a {
		font-size: 14px;
		height: auto;
		padding: 6px 30px 6px 10px;
	}
	.link_list {
		flex-direction: column;
		gap: 10px;
		margin-top: 15px;
	}
	.link_list li {
		width: 100%;
		height: auto;
	}
	.link_list li a {
		font-size: 14px;
		padding: 12px 30px 12px 10px;
	}
}
/*-- page_top --*/
.page_top {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 240px;
	height: 40px;
	margin: 20px 0 0 auto;
	background-color: #fff;
	color: #fb769c;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	border: 2px solid #fb769c;
	border-radius: 5px;
	transition: color 0.3s, background-color 0.3s;
}
.page_top:after {
	content: "";
	display: block;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #fb769c;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(-90deg);
}
.page_top:hover {
	color: #fff;
	background-color: #fb769c;
}
.page_top:hover:after {
	border-left: 5px solid #fff;
}

@media (max-width: 768px) {
	.page_top {
		width: 200px;
		max-width: 100%;
	}
}

/*----------
 footWrap
----------*/
#footWrap .inFooter {
	background: rgba(114,113,113,0.15) !important;
}
#footWrap .inFooter:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 180px;
	background: #ca5577;
}
#footWrap .inFooter > div {
	background: none !important;
}
#footWrap .inFooter .privacy {
	position: relative;
	padding-top: 20px;
	margin-top: 40px !important;
}
#footWrap .inFooter .privacy a {
	color: #fff;
}
#footWrap .inFooter small {
	position: relative;
	color: #fff;
}

@media (max-width: 768px) {
	#footWrap .inFooter:before {
		height: 170px;
	}
	#footWrap .inFooter .privacy {
		position: relative;
		padding-top: 20px;
		margin-top: 20px !important;
	}
}