/*　--記述での注意。 
　　・不要のコメントは必ず削除する。 
　　・ヘッダー、フッター、ナビゲーション、共通CSS以外は基本記述しない。
*/


/* -----------------------------------
  フォント
----------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;900&family=Oswald:wght@400;700&family=Shippori+Mincho:wght@400;600&display=swap');

/* 
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Shippori Mincho', serif;
 */


/* -----------------------------------
  basic
----------------------------------- */

body {
	/* -- サイトに合わせて設定 -- */
	font-size: 1.4rem;
	color: #363636;
	background: #ffffff;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'Noto Sans JP', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

a {
	text-decoration: none;
	color: #363636;
	transition: .3s;
}

img {
	width: 100%;
}

span.btn_sankaku {
	display: inline-block;
	font-size: 80%;
	transform: scale(0.7, 1);
	margin: 0 3px;
}

.head_margin {
	/* -- 追尾型メニューの高さに合わせる -- */
	margin-top: 70px;
}

main {
	margin-top: 70px;
}


/* -----------------------------------
  ブレイクポイント
----------------------------------- */


/* -- ページレイアウト -- */

.boxcenter {
	width: 100%;
	margin: auto;
	/* -- サイトに合わせて設定 -- */
	padding: 10px 0 30px;
	max-width: 1000px;
}

article .boxcenter:first-child {
	width: 100%;
	margin: auto;
	/* -- サイトに合わせて設定 -- */
	padding: 60px 0;
	max-width: 1000px;
}


/* 強制文字揃え変更 */

.txt-c {
	text-align: center !important;
}

.txt-l {
	text-align: left !important;
}

.txt-r {
	text-align: right !important;
}


/* ブレイクポイント切り替え用 */

.pc_block {
	display: block;
}

.pc_flex {
	/* itemsの揃え用　レイアウトを組むときはclassで指定する */
	display: flex;
}

.pc_inline {
	/* <br>で使用するときは必ずこれを使用する */
	display: inline;
}

.pc_inblock {
	display: inline-block;
}

.sp_block,
.sp_flex,
.sp_inline,
.sp_inblock {
	display: none;
}

@media screen and (max-width: 767px) {
	body {
		font-size: 1.2rem;
	}

	main {
		width: 100%;
		font-size: 1.2rem;
		padding-top: 30vw;
	}

	.boxcenter {
		margin: 0 auto;
		max-width: none;
	}

	/* ブレイクポイント切り替え用 */
	.sp_block {
		display: block;
	}

	.sp_flex {
		/* itemsの揃え用　レイアウトを組むときはclassで指定する */
		display: flex;
	}

	.sp_inline {
		/* <br>で使用するときは必ずこれを使用する */
		display: inline;
	}

	.sp_inblock {
		display: inline-block;
	}

	.pc_block,
	.pc_flex,
	.pc_inline,
	.pc_inblock {
		display: none;
	}
}


/* -----------------------------------
  サイトカラー
----------------------------------- */


/* -----------------------------------
  pc　768px〜
----------------------------------- */


/*-------- nav.php --------*/


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

header {
	width: 100%;
	padding: 10px 0;
	background: #fff;
	position: fixed;
	top: 0;
	z-index: 100;
}

header .main_nav {
	max-width: 1920px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.menu_left,
.menu_right,
.main_menu,
.user_menu,
.sub_menu {
	display: flex;
	flex-wrap: wrap;
}

.menu_left {
	width: 100%;
	justify-content: center;
	align-items: flex-end;
	padding-left: 10px;
}

.menu_right {
	width: auto;
	justify-content: end;
	padding-right: 30px;
}

.header_logo {
	max-width: 200px;
	margin-right: -100px;
}

.header_logo p {
	padding-left: 10px;
	font-size: 1rem;
}


/* メインメニュー */

.main_menu {
	width: calc(100% - 200px);
	align-items: flex-end;
}

.main_menu_items {
	max-width: 120px;
	margin: 10px 10px 0 10px;
	text-align: center;
	position: relative;
	padding: 5px 0;
}

.main_menu_items a {
	border-radius: 0;
	color: #BEB478;
	position: relative;
	padding: 10px 0;
	bottom: 5px;
}

.main_menu_items>a:before {
	position: absolute;
	width: 0;
	height: 3px;
	content: '';
	-webkit-transition: all .3s;
	transition: all .3s;
	background: #005243;
}

.main_menu_items>a:before {
	bottom: 0;
	left: 0;
}

.main_menu_items>a:hover:before {
	width: 100%;
}

label.main_menu_tag:before {
	width: 100%;
	height: 3px;
	content: '';
	display: block;
	background: #005243;
	position: absolute;
	bottom: 0;
	left: 0;
}

.main_menu_items a:hover,
label.main_menu_tag {
	color: #005243;
}

label.main_menu_tag {
	display: block;
	padding: 5px 15px 5px 0;
}

.main_menu_cnts {
	width: 240px;
	height: 0;
	overflow: hidden;
	background: #F8F7EF;
	text-align: left;
	transition: all .5s ease-out;
	position: absolute;
	top: 30px;
	left: 0;
}

.main_menu_cnts li.main_menu_items_main {
	padding: 5px 10px;
}

.main_menu_cnts li.main_menu_items_sub {
	padding: 2px 10px 2px 25px;
}

.main_menu_cnts li:first-child {
	padding-top: 10px;
}

.main_menu_cnts li:last-child {
	padding-bottom: 20px;
}

.main_menu_tag::after {
	content: "＋";
	color: #005243;
	position: absolute;
	top: 24%;
	right: 0;
}

.main_menu_items_main,
.main_menu_items_sub {
	padding: 0;
}

.menu_left input[type="checkbox"] {
	display: none;
}

#main_menu:checked+label.main_menu_tag {
	background: #F8F7EF;
}

#main_menu:checked+label.main_menu_tag:before {
	display: none;
}

#main_menu:checked+.main_menu_tag::after {
	content: "ー";
}

#main_menu:checked+.main_menu_tag+.main_menu_cnts {
	height: auto;
	opacity: 1;
	visibility: visible;
}


/* ユーザー別メニュー */

.user_menu {
	margin: 2px 0;
}

.user_menu li {
	margin-left: 20px;
}

.sub_menu li {
	position: relative;
}

.sub_menu_cnts {
	background: #dbeff0;
	/* width: 120px; */
	height: auto;
	position: absolute;
	left: 10px;
	opacity: 0;
	transition: 0.5s;
}

.sub_menu_cnts a:hover {
	border-bottom: 1px solid #005243;
}

.sub_menu_cnts li {
	padding: 5px 10px;
}


/* イベントメニュー */

.sub_menu {
	margin: 2px 0;
}

.menu_right input[type="checkbox"] {
	display: none;
}

.sub_menu_tag {
	display: block;
	width: fit-content;
	max-width: 160px;
	padding: 5px 20px 5px 10px;
	text-align: center;
	color: #005243;
	position: relative;
	margin-left: 10px;
}

.sub_menu_tag::after {
	content: "▼";
	color: #005243;
	position: absolute;
	top: 24%;
	right: 0;
	transform: rotate(-90deg) scale(0.8, 0.6);
	transition: 0.5s;
}

.sub_menu_tag:last-child {
	padding: 5px 10px;
}

.sub_menu_tag:last-child::after {
	display: none;
}

#sub_menu_event:checked+.sub_menu_tag:hover::after,
#sub_menu_exam:checked+.sub_menu_tag:hover::after {
	transform: rotate(0deg) scale(0.8, 0.6);
	transition: 0.5s;
}

#sub_menu_event:checked+.sub_menu_tag+.sub_menu_cnts,
#sub_menu_exam:checked+.sub_menu_tag+.sub_menu_cnts {
	height: auto;
	opacity: 1;
	visibility: visible;
	transition: 0.5s;
}


/*-------- nav.php --------*/


/*--------------------------------------------------------------
　　footer　footer.php
--------------------------------------------------------------*/

.footer_menu,
.footer_menu01,
.footer_menu02,
.footer_menu03,
.copylight {
	margin: 0 auto;
	list-style-type: none;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	text-decoration: none;
}

.footer_menu li {
	padding: 5px 0;
}

footer a {
	display: block;
}

.footer_menu li a {
	text-decoration: none;
	color: #737373;
}

.footer_menu li a:hover {
	color: #d88fac;
}

footer .boxcenter {
	padding: 60px 0 0;
}

.footer_menu {
	display: flex;
	padding: 20px 0;
}

.footer_menu .footer_menu01 {
	font-weight: bold;
	font-size: 16px;
	padding-left: 10px;
	padding-bottom: 10px;
}

.footer_menu .footer_menu01:first-child {
	margin-left: 0;
}

.footer_menu .footer_menu02,
.footer_menu .footer_menu03 {
	font-weight: normal;
	font-size: 12px;
	padding-left: 10px;
	padding-bottom: 10px;
}

.footer_menu .footer_menu02-01 {
	display: flex;
	padding-left: 10px;
}

.footer_access {
	padding: 40px 0 15px 0;
}

.footer_logo {
	width: 20%;
	margin: auto;
}

.footer_access h1 {
	font-size: 28px;
	font-weight: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: -1.5px;
}

.footer_inst {
	display: inline-block;
	width: 40px;
	line-height: 0;
	margin: 3%;
}

.footer_access .footer_access__p {
	display: inline-block;
	text-align: left;
	font-size: 16px;
	padding: 10px 50px 10px 0;
	margin: 0;
}

.footer_access .footer_access__p dt {
	letter-spacing: -1px
}

.footer_access .footer_access__p:last-child {
	border-left: 1px solid #737373;
	padding-left: 50px;
	padding-right: 0;
}

.footer_access .footer_access__p dd {
	font-family: "Noto Sans CJK JP Regular", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	margin: 0;
	font-size: 14px;
}


/* -- コピーライト -- */

.copylight {
	padding: 20px 0;
	font-size: 12px;
	line-height: 2.4em;
}

.copylight a {
	display: inline;
}


/* -- トップへ戻る -- */

.pageTopBtn {
	position: fixed;
	bottom: 60px;
	right: 10px;
	z-index: 80;
	background-color: #f2e7ff77;
	border-radius: 50px;
}

.pageTopBtn a {
	width: 70px;
	height: 70px;
	opacity: 0.75;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}


/* -----------------------------------
  tablet 768px〜1000px
----------------------------------- */

@media screen and (max-width: 1000px) {
	.footer_access .footer_access__p {
		padding-right: 20px;
	}

	.footer_access .footer_access__p:last-child {
		padding-left: 20px;
	}

	/* この上に記述 */
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {}


/* -----------------------------------
  sp　〜768px
----------------------------------- */

@media screen and (max-width: 767px) {

	/*----------- hedaer ----------*/
	.header_logo {
		max-width: none;
		width: 45vw;
		margin: 10px auto 10px 10px;
		position: relative;
		/* z-index: 112; */
	}

	.header_logo p {
		padding-left: 10px;
		font-size: 1rem;
		text-align: center;
	}

	.main_menu {
		margin: 5px auto 0;
		width: 100%;
		justify-content: space-evenly;
		border-top: #a598b6 1px solid;
	}

	input[type="checkbox"] {
		display: none;
	}

	label.main_menu_tag {
		width: 12vw;
		height: 12vw;
		background: #fff;
		position: relative;
		z-index: 111;
		border: 2px solid #005243;
		border-radius: 5px;
	}

	label.main_menu_tag:before {
		display: none;
	}

	.main_menu_items_sp .main_menu_tag {
		text-align: center;
		position: absolute;
		top: calc(50% - 9vw);
		right: calc(15% - 9vw);
		padding: 6vw 0 0 0;
	}

	.main_menu .main_menu_items {
		/* border-bottom: 3px #005243 solid; */
		padding: 2vw 0 0 0;
		margin: 0 auto;
	}

	.main_menu_items a {
		color: #005243;
		font-size: 1.4rem;
		font-weight: bold;
		bottom: auto;
		padding: 0;
	}

	.main_menu_items_sp .main_menu_tag::after {
		content: "";
		display: block;
		background: url(../images/common/menu_o.png)no-repeat center center;
		background-size: contain;
		width: 5vw;
		height: 5vw;
		font-size: 180%;
		position: absolute;
		top: 1vw;
		right: 3vw;
	}

	.main_menu_items_sp .main_menu_cnts {
		width: 100%;
		height: 0;
		overflow: hidden;
		text-align: left;
		background: #ffffff;
		transition: all .5s ease-out;
		/* padding-top: 20vw; */
		position: absolute;
		top: 0;
		left: 0;
		z-index: 90;
	}

	#main_menu_sp:checked+.main_menu_tag+.main_menu_cnts {
		height: 100vh;
		opacity: 1;
		visibility: visible;
		background: #dbeff0;
	}

	#main_menu_sp:checked+.main_menu_tag::after {
		content: "";
		display: block;
		background: url(../images/common/menu_c.png)no-repeat center center;
		background-size: contain;
	}

	.main_menu_items_sp .sub_menu_cnts {
		background: none;
		width: auto;
		height: auto;
		font-size: 1.6rem;
		color: #005243;
		position: static;
		opacity: 1;
	}

	.main_menu_items_sp .main_menu_cnts a {
		font-size: 1.4rem;
		color: #005243;
	}

	.main_menu_items_sp li.main_menu_items_main {
		padding: 3vw 5vw;
		border-bottom: #005243 1px dashed;
		font-size: 1.6rem;
		color: #005243;
	}

	.main_menu_items_sp li.main_menu_items_sub {
		padding: 2vw 5vw;
	}

	.main_menu_items_sp li.main_menu_items_sub:last-child {
		padding-bottom: 1vw;
	}

	.user_menu,
	.sub_menu {
		display: block;
	}

	.user_menu li {
		margin-left: 0;
	}

	/*----------- footer ----------*/
	.footer_logo {
		width: 45%;
		margin: auto;
	}

	.footer_access h1 {
		font-size: 22px;
		font-weight: normal;
		display: block;
	}

	.footer_access .footer_access__p {
		display: inline-block;
		text-align: center;
		font-size: 16px;
		padding: 10px 0 10px 0;
		margin: 0;
		letter-spacing: 1.5px;
	}

	.footer_access .footer_access__p:last-child {
		border-left: none;
		padding-left: 0;
		padding-right: 0;
		position: relative;
	}

	.footer_access .footer_access__p:last-child::before {
		content: "";
		display: block;
		width: 30vw;
		height: 1px;
		background: #ccc;
		margin: auto;
		margin-bottom: 15px;
	}

	.footer_menu {
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		flex-wrap: wrap;
		align-content: flex-start;
		padding: 20px 0;
		height: 150vw;
		width: 100%;
	}

	.footer_menu .footer_menu01 {
		width: 50vw;
	}

	.footer_menu .footer_menu02-01 {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		padding-left: 10px;
		align-content: flex-start;
	}

	.footer_menu .footer_menu02,
	.footer_menu .footer_menu03 {
		width: 100%;
		font-weight: normal;
		font-size: 12px;
		padding-left: 10px;
		padding-bottom: 10px;
	}

	.footer_menu .pc_block {
		display: none;
	}

	/* -- コピーライト -- */
	.copylight {
		padding: 5vw 0 30vw;
		font-size: 12px;
		line-height: 2.4em;
	}

	/* -- トップへ戻る -- */
	.pageTopBtn {
		bottom: 5vw;
		right: 10px;
		z-index: 80;
	}

	.pageTopBtn a {
		width: 16vw;
		height: 16vw;
	}
}


/* 追加 */
.post_btn a {
	width: 100%;
	display: block;
	background-image: linear-gradient(60deg, #38b48b, #7DB9DE, #8B81C3);
	padding: 10px 16px;
	font-family: "Sawarabi Mincho";
	font-size: 16px;
	color: #ffffff;
	line-height: 1;
	border-radius: 30px;
	transition: 0.5s;
}

.post_btn a:hover {
	background: linear-gradient(60deg, #8B81C3, #7DB9DE, #38b48b);
	/* transition: 0.5s; */
}