/*
Theme Name: 朝陽同窓会
Author: 株式会社宝塚デザイン
Description: 朝陽同窓会オリジナルサイトデザイン
Version: 1.0.0
*/
@charset "UTF-8";
@import url("./css/reset.css");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap');


/*==========カラー==================
=======================================*/

:root {
	--text-color: #333333;
	--key-color: #651765;
	--sec-color: #1C2A4B;
}


/*======共通=============================
=======================================*/

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	letter-spacing: .06em;
	color: #333333;
	word-break: break-all;
	line-height: 200%;

	-webkit-text-size-adjust: 100%;
}


a {
	text-decoration: none;
	color: var(--text-color);
	transition: all 0.4s;
}

a:hover {
	opacity: 0.6;
	transition: all 0.4s;
	color: var(--key-color);
}

img {
	width: 100%;
	max-width: 100%;
	vertical-align: bottom;
}

.inner {
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
}


section {
	padding-top: 70px;
}

.sp_768_show {
	display: none;
}

.sp_390_show {
	display: none;
}



@media screen and (max-width:1240px) {
	.inner {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}

}

@media screen and (max-width:768px) {
	.sp_768_show {
		display: block;
	}

	p {
		font-size: 16px;
	}
}

@media screen and (max-width:390px) {
	.sp_390_show {
		display: block;
	}

	.sp_390_none {
		display: none;
	}


	section {
		padding-top: 50px;
	}
}


/* フェードイン */
@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* フェードアウト */
@keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}




/* タイトル部分 */

.ttl_box h2 {
	font-size: 40px;
	letter-spacing: .12em;
	color: var(--key-color);

	position: relative;
	margin-bottom: .8em;
}

.ttl_box .en {
	font-size: 20px;
	font-family: "Lato", sans-serif;
	letter-spacing: .2em;
	color: var(--key-color);
}

.ttl_box h2::after {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	border-radius: 9999px;
	background-color: var(--key-color);

	position: absolute;
	top: 70px;
}

.ttl_box.center {
	text-align: center;
}

.ttl_box.center h2::after {
	left: 48.5%;
}


.gotop {
	display: none;
	position: fixed;
	width: 50px;
	z-index: 98;
	right: 4%;
	bottom: 7%;
}

.gotop a {
	/* display: inline-block; */
}

@media screen and (max-width:768px) {
	.ttl_box h2 {
		font-size: 32px;
		line-height: 160%;
	}

	.ttl_box .en {
		font-size: 16px;
	}

	.ttl_box.center {
		padding-right: 20px;
		padding-left: 20px;
	}

	.ttl_box h2::after {
		top: 62px;
	}

}

@media screen and (max-width:390px) {
	.ttl_box h2 {
		font-size: 30px;
		letter-spacing: .08em;
	}

	.ttl_box h2::after {
		top: 60px;
	}
}


/*==========ヘッダーナビ ==================
=======================================*/

#header .header_nav ul {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	font-size: 16px;
	font-weight: bold;
}



h1.logo {
	max-width: 280px;
	width: 100%;
}

#header {
	width: 100%;
	padding-right: 120px;
	padding-left: 120px;
	position: fixed;
	top: 20px;
	z-index: 99;
}


#header .flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 30px;
	padding-right: 30px;
	height: 80px;
	background-color: #ffffff;
	border-radius: 6px;
}

#header .flex:not(#header .flex.sp_header_hide) {
	animation-name: fadein;
	animation-duration: 1s;
}

#header .drop_shadow {
	box-shadow: 4px 4px 7px #00000040;
}

@media screen and (max-width: 1030px) {
	#header .flex.sp_header_hide {
		/*transition : all 2.0s ease 0s;*/
		display: none;
	}
}

#header nav ul li a {
	display: block;
	line-height: 80px;
	position: relative;
	padding-right: 30px;
}


#header nav ul li a::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: solid 2px #651765;
	border-right: solid 2px #651765;
	transform: rotate(135deg);

	position: absolute;
	top: 32px;
	right: 2px;
}


#hum {
	display: none;
}


@media screen and (max-width:1440px) {
	#header {
		padding-right: 0px;
		padding-left: 0px;
		width: 1200px;
		max-width: 100%;
		left: calc(50% - 1200px / 2);

	}
}

@media screen and (max-width:1240px) {
	#header {
		padding-right: 20px;
		padding-left: 20px;
		width: 100%;
		left: unset;
	}
}

@media screen and (max-width:1030px) {
	#header .header_nav {
		display: none;
	}
}

@media screen and (max-width:768px) {
	#header h1 {
		width: 200px;
	}

	#header .flex {
		height: 60px;
		padding-left: 20px;
	}

	#header {
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media screen and (max-width:390px) {
	#header h1 {
		width: 170px;
	}

	#header .flex {
		padding-left: 10px;
	}

	#header .flex {
		height: 52px;
	}

	#header .flex {
		border-radius: 4px;
	}
}


/*==========ヘッダーナビsp ==================
=======================================*/

@media screen and (max-width:1030px) {

	.sp_nav {
		/* メニューの位置マイナス指定で画面外に */
		position: fixed;
		right: -100%;
		width: 100%;
		height: 105vh;
		/* メニューを縦に */
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		row-gap: 20px;
		color: #efefef;
		background-color: #651765;
		opacity: 2;
		transition: .3s;
		z-index: 99;
		padding-top: 200px;
		margin-top: -60px;
		padding-bottom: 20px;
	}

	#hum {
		display: block;
	}

	#hum .btn_menu {
		font-size: 13px;
		font-family: "Lato", sans-serif;
		font-weight: 400;
		color: #ffffff;
		width: 100%;
		height: auto;
		text-align: center;
		/* background-color: transparent; */
		position: absolute;
		bottom: 1px;
		left: 50%;
		transform: translateX(-50%);
		letter-spacing: .1em;
	}

	#hum .menu-item {
		/* width: 100%; */
		/* height: 100%; */
		/* メニューテキスト位置をリスト内中心に */
	}

	#hum .btn {
		/* ボタンの配置位置  */
		position: absolute;
		position: fixed;
		top: 30px;
		right: 40px;
		/* ボタンの大きさ  */
		width: 70px;
		height: 60px;
		/* 最前面に */
		z-index: 100;
		background-color: #651765;
		border-radius: 4px;
		padding: 0 8px 0 8px;
	}

	#hum .btn-line {
		display: block;
		position: relative;
		/* バーガー線の位置基準として設定 */
		width: 45px;
		/* 線の長さと高さ */
		height: 1px;
		background-color: #FFFFFF;
		/* バーガー線の色 */
		transition: .2s;
		margin: 0 auto;
		top: -8px;
	}

	#hum .btn-line::before,
	#hum .btn-line::after {
		content: "";
		position: absolute;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #FFFFFF;
		transition: .5s;
	}

	#hum .btn-line::before {
		/* 上の線の位置 */
		transform: translateY(-12px);
	}

	#hum .btn-line::after {
		/* 下の線の位置 */
		transform: translateY(12px);
	}

	/***** メニューオープン時 *****/
	#hum .btn-line.open {
		background-color: transparent;
		/* 真ん中の線を透明に */
	}


	#hum .btn-line.open::before,
	#hum .btn-line.open::after {
		content: "";
		/* background-color: #333; */
		/* 上下の線の色を変える */
		transition: .2s;
		/* background-color: var(--key-color); */
	}

	#hum .btn-line.open::before {
		transform: rotate(45deg);
		/* 上の線を傾ける */
	}

	#hum .btn-line.open::after {
		transform: rotate(-45deg);
		/* 下の線を傾ける */
	}


	.sp_nav.open {
		right: 0;
	}

	/* 開いた時の中身 */
	#hum nav ul li a {
		color: #ffffff;
		font-size: 20px;
	}

	#hum nav ul.sub-menu li:first-child a {
		display: none;
	}


	#hum nav ul.sub-menu li a {
		font-size: 18px;
	}

	#hum nav ul.sub-menu li {
		padding-left: 20px;
		margin-bottom: 20px;
	}

	#hum .menu-item {
		margin-bottom: 10px;
	}


	#hum nav ul {
		display: flex;
		flex-wrap: wrap;
		/* height: 780px; */
		flex-direction: column;
		width: 100%;
		padding-right: 20px;
	}

	#menu-menu_header-1 li.menu-item-has-children a {
		position: relative;
	}

	#hum nav ul li {
		position: relative;
	}

	#hum nav ul li a {
		display: block;
		border-bottom: 1px solid #ffffff;
		padding-bottom: 10px;
	}


	#hum nav ul.sub-menu li:first-child a {
		position: relative;
	}

	#hum nav ul.sub-menu li a {
		border-bottom: unset;
		padding-bottom: 0px;
	}


	#hum nav ul.sub-menu li a::after {
		display: none;
	}


	#hum nav .menu-menu_header-container {
		width: 90%;
		margin: 0 auto;
		overflow-y: scroll;
	}


	#hum .sp_nav .btn_box {
		padding: 0px 20px 10px 20px;
		width: 100%;
	}

	#hum .sp_nav .btn_box ul {
		display: flex;
		flex-direction: unset;
		justify-content: space-around;
	}

	#hum .sp_nav .btn_box .footer_btn {
		margin-top: 20px;
	}

	#hum .sp_nav .btn_box .footer_btn a {
		background-color: #fff;
		color: var(--key-color);
		font-weight: bold;
		width: 160px;
		background-size: 40px;
		line-height: 67px;
		padding: 0px 30px 0px 90px;
	}

	#hum .sp_nav .btn_box .footer_btn.contact a {
		background-image: url(img/icon_mail_violet.svg);
	}

	#hum .sp_nav .btn_box .footer_btn.tateyama a {
		background-image: url(img/icon_tateyama_violet.svg);

	}
}


@media screen and (max-width:768px) {
	#hum .btn {
		top: 27px;
		right: 20px;
		width: 50px;
		height: 46px;
		border-radius: 3px;
	}

	#hum .btn_menu {
		font-size: 10px;

	}

	#hum .btn-line {
		width: 32px;
		top: -6px;
	}


	#hum .btn-line::after {
		transform: translateY(10px);
	}

	#hum .btn-line::before {
		transform: translateY(-10px);
	}

	#hum .sp_nav .btn_box .footer_btn a {
		font-size: 18px;
	}
}

@media screen and (max-width:390px) {
	#hum .btn {
		top: 25px;
		right: 20px;
		width: 48px;
		height: 42px;
	}

	#hum .btn-line {
		width: 30px;
	}

	#hum .btn-line::after {
		transform: translateY(8px);
	}

	#hum .btn-line::before {
		transform: translateY(-8px);
	}

	#hum .sp_nav .btn_box .footer_btn {
		text-align: unset;
	}

	#hum .sp_nav .btn_box .footer_btn a {
		line-height: 54px;
		padding: 0px 15px 0px 90px;
		/* font-size: 16px; */
	}

	#hum nav ul.sub-menu li a {
		font-size: 16px;
	}

	#hum nav ul li a {
		font-size: 18px;
	}
}



/*==ナビサブメニュー隠す ==================
=======================================*/
#header .flex {
	position: relative;
}

#header nav ul.sub-menu li a::after {
	display: none;
}

#header nav ul.menu li .sub-menu {
	display: none;
}


/* サブメニュー調整 */
#header nav ul.sub-menu li a {}



#header nav ul.menu li .sub-menu li a {
	position: relative;
	display: inline-block;
	padding-right: 50px;
	color: #ffffff;
	font-size: 18px;
}

#header nav ul.menu li .sub-menu li a::after {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 10px;
	position: absolute;
	top: 20px;
	right: 9px;
	background-image: url(img/icon_circle_arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#header nav ul.menu li .sub-menu li:first-child {
	width: 100%;
	background-image: url(img/icon_graduate.svg);
	background-repeat: no-repeat;
	background-size: 40px;
	background-position: top 10px left;
}

#header nav ul.menu li .sub-menu li.menu-item-150 {
	background-image: url(img/icon_member.svg);
}

#header nav ul.menu li .sub-menu li.menu-item-153 {
	background-image: url(img/icon_book.svg);
}

#header nav ul.menu li .sub-menu li.menu-item-149 {
	background-image: url(img/icon_comm.svg);
}

#header nav ul.menu li .sub-menu li:first-child a {
	font-size: 26px;
	padding-right: 60px;
	padding-left: 55px;

	margin-bottom: 37px;
	letter-spacing: .06em;
}

#header nav ul.menu li .sub-menu li a {
	line-height: 60px;
}


#header nav ul.menu li .sub-menu li:first-child a::after {
	width: 34px;
	height: 34px;
	top: 13px;
	right: 7px;
}

#header nav ul.menu li .sub-menu li:first-child::before {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	border-radius: 9999px;
	background-color: #fff;

	position: absolute;
	top: 134px;
	left: 45px;
}

#header nav ul.sub-menu li a::after {
	transform: unset;
}

#header nav ul.menu li:hover .sub-menu {
	display: block;
	width: 100%;
	background-color: #ffffff;
	position: absolute;
	top: 74px;
	left: 0px;
	background-color: var(--key-color);
	padding: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	row-gap: 20px;
	column-gap: 50px;

	border-radius: 0 0 6px 6px;
	box-shadow: 4px 4px 7px #00000040;

}


@media screen and (max-width:1240px) {
	.inner {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media screen and (max-width:1030px) {
	/* #hum .menu-item {
		pointer-events: none;
	} */

	#header nav ul.menu li .sub-menu {
		display: block;
	}

}



/*==========サイドボタン==================
=======================================*/

/* .side_btn.side_btn_hide {
	display: none;
}

.side_btn_hide {
	animation-name: fadein;
	animation-duration: 1s;
} */

.side_btn {
	position: fixed;
	right: 0;
	top: 162px;
	z-index: 90;
}

.side_btn ul li a {
	display: inline-block;
	writing-mode: vertical-rl;
	color: #ffffff;
	padding: 40px 10px 12px 15px;
	width: 30px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	text-align: center;
}

.side_btn ul li {
	/* width: 60px; */
}


.side_btn ul li.contact a {
	background-color: var(--key-color);
	background-image: url(img/icon_mail.svg);
	background-repeat: no-repeat;
	background-position: top 6px left 56%;
	letter-spacing: 0.15em;
}

.side_btn ul li.tateyama a {
	background-color: var(--sec-color);
	background-image: url(img/icon_tateyama.svg);
	background-repeat: no-repeat;
	background-position: top 6px left 56%;
	letter-spacing: 0.15em;
}

.side_btn ul li.search {
	background-color: var(--sec-color);
	background-image: url(img/icon_search.svg);
	background-repeat: no-repeat;
	background-position: center;
	padding: 40px 15px 15px 15px;
	margin-bottom: 10px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;

}

.side_btn ul li a img {
	width: 30px;
}

.search {
	display: block;
}

.search:hover {
	cursor: pointer;
	display: block;
}

/* 検索ボタン start */
.search_area {
	/*display: none;*/
	transition: all 0.3s;
	position: absolute;
	top: 0px;
	right: 56px;
	writing-mode: initial;
	width: 300px;
	background-color: var(--sec-color);
	padding: 9.4px 10px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;

	right: -300px;
	opacity: 0;
	z-index: -1;
}

.search_open {
	/*display: block;*/
	transition: all 0.5s;

	opacity: 1;
	right: 56px;
}

.search_area .searchform {
	line-height: 1;
	position: relative;
}

.search_area .searchform .searchfield {
	box-sizing: border-box;
	width: 100%;
	padding: 0.75em;
	border: 1px solid #bbb;
	border-radius: 4px;
	background-color: #fff;
}

.search_area .searchform .searchsubmit {
	position: absolute;
	top: 50%;
	right: 0.75em;
	display: block;
	padding: 0;
	cursor: pointer;
	transform: translateY(-50%);
	color: #000;
	border: none;
	background: transparent;
}

/* 検索ボタン end */



@media screen and (max-width:1030px) {
	.side_btn {
		display: none !important;
	}
}


/*==========通常ボタン==================
=======================================*/

.btn a {
	display: inline-block;
	padding: 0 30px 0 40px;
	line-height: 58px;
	border-radius: 70px;
	border: 1px solid #651765;
	border-color: var(--key-color);
	color: var(--key-color);
	font-weight: bold;
	font-size: 18px;
}

.btn a .arrow {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 2px;
	border-radius: 9999px;
	background-color: var(--key-color);
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 20px;
}

.btn a .arrow::after,
.btn a .arrow::before {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	width: 10px;
	height: 2px;
	border-radius: 9999px;
	background-color: var(--key-color);
	transform-origin: calc(100% - 1px) 50%;
}

.btn a .arrow::before {
	transform: rotate(45deg);
}

.btn a .arrow::after {
	transform: rotate(-45deg);
}

.btn.normal a:hover {
	color: #ffffff;
	background-color: var(--key-color);
	opacity: 1.0;
	transition: all 0.3s;
}

.btn.normal a:hover .arrow {
	background-color: #fff;
	opacity: 1.0;
	transition: all 0.3s;
}

.btn.normal a:hover .arrow::after,
.btn.normal a:hover .arrow::before {
	background-color: #fff;
	opacity: 1.0;
	transition: all 0.3s;
}

@media screen and (max-width:768px) {
	.btn a {
		font-size: 16px;
		line-height: 50px;
	}
}


/*==========フッター==================
=======================================*/

#footer {
	margin-top: 150px;
	display: flex;
	justify-content: space-between;
}


/* フッター左側 */
#footer .info {
	border-right: solid 1px #333333;
	width: 36%;
}



#footer .info h1 {
	margin-bottom: 40px;
}

#footer .info dl dt {
	/* margin-bottom: 10px; */
	font-weight: bold;
}

#footer .info dl dt dd {
	margin-top: 20px;
}

#footer .info dl dd.map {
	padding-left: 36px;

	background-image: url(img/icon_map.svg);
	background-repeat: no-repeat;
	background-position: left top -1px;
	background-size: 30px;
	line-height: 160%;
	margin-top: 16px;
}

#footer .info dl dd.tel {
	padding-left: 36px;

	background-image: url(img/icon_tel.svg);
	background-repeat: no-repeat;
	background-position: left top -1px;
	background-size: 30px;
	line-height: 160%;
	margin-top: 10px;
}

#footer .info dl dd.mail {
	padding-left: 36px;

	background-image: url(img/icon_mail_bk.svg);
	background-repeat: no-repeat;
	background-position: left top 3px;
	background-size: 30px;
	margin-top: 10px;
}


/* フッター右側 */
.footer_nav {
	/* padding-left: 4%; */
	width: 60%;
}

#menu-menu_footer {
	display: flex;
	flex-wrap: wrap;
	height: 310px;
	flex-direction: column;
	column-gap: 6%;
}

#footer .footer_nav ul li.menu-item-198 a {
	margin-top: 20px;
	padding-left: 0px;
}

#menu-menu_footer li a {
	display: inline-block;
	font-weight: bold;
	padding-left: 20px;
	font-size: 16px;

}

#menu-menu_footer li {
	position: relative;
}


#menu-menu_footer li::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: #333333;
	position: absolute;
	border-radius: 50%;

	top: 14px;
	left: 3px;

}

#menu-menu_footer .sub-menu li::before {
	display: none;
}


#menu-menu_footer .menu-item-type-post_type {
	font-size: 20px;

}

#menu-menu_footer .sub-menu li a {
	font-weight: normal;
}


#menu-menu_footer .menu-item-88 {
	margin-bottom: 30px;
}


#menu-menu_footer .menu-item-198::before {
	display: none;
}


#menu-menu_footer .sub-menu li:last-child::before {
	display: none;
}



/* フッターボタン */
#footer .info .footer_btn {
	margin-top: 50px;
}

.footer_btn a {
	width: 260px;
	background-color: var(--key-color);
	color: #ffffff;
	border-radius: 70px;
	padding: 20px 60px;
	padding-left: 90px;

	background-image: url(img/icon_mail.svg);
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: left 45px center;
}


@media screen and (max-width:390px) {
	.footer_btn a {
		background-position: left 40px center;
		padding: 15px 60px 15px 85px;
	}

}



/* コピーライト */

.ft_copy {
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	background-color: var(--key-color);
	margin-top: 58px;
}

.ft_copy p {
	line-height: 35px;
	font-size: 14px;
}

@media screen and (max-width:1200px) {
	#menu-menu_footer {
		height: 440px;
	}
}

@media screen and (max-width:1000px) {
	#footer {
		flex-direction: column;
	}


	#footer .info {
		border-right: none;
		border-bottom: 1px solid #333333;
	}

	.footer_nav {
		width: 100%;
		padding-left: 0;
		margin-top: 30px;
	}

	#footer .info {
		width: 100%;
	}

	#footer .info .footer_btn {
		padding-bottom: 60px;
	}

}

@media screen and (max-width:768px) {
	#menu-menu_footer {
		height: 570px;
	}

	#menu-menu_footer .menu-item-88 {
		margin-bottom: 0px;
	}

	#footer {
		margin-top: 100px;
	}
}

@media screen and (max-width:390px) {
	#menu-menu_footer {
		height: unset;
	}

	#footer h1 {
		margin: 0 auto;
	}

	.footer_btn {
		text-align: center;
	}

	#footer {
		margin-top: 80px;
	}

	#footer .info dl dd {
		font-size: 16px;
		padding-left: 30px;
	}
}




/*==========メインビジュアル==================
=======================================*/

/* 朝陽あい基金 */

#mv {
	position: relative;
	margin-top: -70px;
}

#mv .fund {
	color: #ffffff;
	text-align: center;
	width: 380px;
	background-color: var(--key-color);
	border: solid 1px #ffffff;
	border-radius: 16px;
	padding: 24px 10px;

	position: absolute;
	bottom: 78px;
	left: 40px;
}

#mv .fund .main {
	font-size: 26px;
	letter-spacing: .08em;
	margin-top: 10px;
	font-weight: bold;
}

#mv .fund .sub {
	font-size: 16px;
}


#mv .fund .btn a {
	background-color: #fff;
	color: var(--key-color);
	margin-top: 24px;
}


#mv .mv_img {
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	height: 600px;

}

#mv .mv_img_sp {
	display: none;
}

@media screen and (min-width:1440px) {
	#mv .mv_img {
		height: 800px;
	}
}

@media screen and (max-width:768px) {
	#mv .mv_img_sp {
		display: block;
	}

	#mv .mv_img {
		display: none;
	}

	#mv .fund {
		bottom: -70px;
		font-size: 22px;
		right: 0;
		left: 0;
		margin: 0 auto;
		padding: 20px 10px;
		width: 90%;
	}

	#mv .fund .btn a {
		margin-top: 20px;
	}

	#mv .fund .sub {
		font-size: 15px;
	}
}


@media screen and (max-width:390px) {
	#mv .fund {
		width: 94%;
		bottom: -180px;
	}

	#mv .fund .main {
		font-size: 22px;
	}
}



/*==========お知らせ==================
=======================================*/
#news {
	background-color: #F8F8F8;
}

#news .inner {
	display: flex;
	justify-content: space-between;
	padding-top: 60px;
	padding-bottom: 60px;
}

#news .btn {
	margin-top: 57px;
}

#news .news_box ul li {
	display: flex;

}

#news .news_box {
	width: 78%;
	padding: 40px;
	padding-top: 20px;
	background-color: #fff;
	border-radius: 10px;
	height: 100%;
}

#news .news_box ul li .date {
	font-size: 16px;
	font-weight: bold;
	color: #646464;
	margin-right: 20px;
}

#news .news_box ul li .category a {
	display: inline-block;
	font-size: 15px;
	background-color: var(--sec-color);
	padding: 3px 14px;
	color: #ffffff;
	letter-spacing: .08em;
}

#news .news_box ul li .category {
	margin-right: 4%;
	font-weight: bold;
}

#news .news_box ul li {
	border-bottom: 1px solid #CBCBCB;
	padding: 25px 0;
}

#news .news_box ul li .ttl {
	font-weight: bold;
}




@media screen and (max-width:768px) {
	#news .inner {
		flex-direction: column;
	}

	#news .news_box {
		width: 100%;
		margin-top: 40px;
	}

	#news .btn {
		margin-top: 26px;
	}

	#news .news_box ul li {
		display: flex;
		flex-wrap: wrap;
	}

	#news .news_box ul li a {
		/* width: 62%; */
		width: 100%;
		margin-top: 12px;
	}

	#news .news_box ul li .category a {
		margin-top: 0px;
		width: unset;
	}
}

@media screen and (max-width:390px) {
	#news .inner {
		padding-top: 200px;
	}

	#news .news_box {
		padding: 20px;
	}

	#news .news_box ul li {
		padding: 20px 0;
	}

	#news .news_box ul li:first-child {
		padding-top: 0px;
	}

	#news .news_box ul li a {
		margin-top: 18px;
	}


}



/*==========朝陽同窓会について==================
=======================================*/

#about h3 {
	font-size: 32px;
	text-align: center;
	font-weight: normal;
	margin-top: 34px;
	margin-bottom: 77px;
	line-height: 200%;
}

#about {
	position: relative;
}

#about::before {
	content: "";
	display: block;
	width: 100%;
	height: 73%;
	background-color: #F8F8F6;

	position: absolute;
	z-index: -1;
	top: 430px;

}

#about .about_box {
	position: relative;
	display: flex;
	justify-content: space-between;
}

#about .about_box .text {
	width: 1200px;
	margin: 0 auto;
}

#about .about_box .img_box {
	padding-left: 8.3%;
	padding-top: 54px;
	height: 560px;
	/* background-image: url(img/top_about.webp); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	padding-top: 80px;

	width: 53%;
	height: 470px;

	position: absolute;
	right: 0;
	border-radius: 6px 0 0 6px;
	z-index: -1;
	margin-top: -40px;
}


#about .about_box p {
	/* width: 535px; */
	width: 46%;
	margin-bottom: 40px;
	margin-top: 20px;
	padding-right: 20px;
}

#about .link_box {
	margin-top: 180px;
}

@media screen and (min-width:1440px) {
	#about .about_box .img_box {
		background-size: 100%;
		height: 120%;
	}

	/* #about .about_box p {
		width: 60%;
	} */
}

@media screen and (max-width:1240px) {
	#about .about_box {
		padding-left: 20px;
		top: -20;
	}

}

@media screen and (max-width:768px) {
	#about .about_box .img_box {
		width: 90%;
		height: 420px;
	}

	#about .about_box p {
		margin-top: 410px;
		width: 100%;
		padding-right: 0px;
	}

	#about .about_box {
		padding-right: 20px;
	}

	#about .btn {
		text-align: center;
	}

	#about .link_box {
		margin-top: 60px;
	}

	#about::before {
		height: 100%;
	}

	#about h3 {
		padding-left: 20px;
		padding-right: 20px;
		line-height: 180%;
		font-size: 24px;
		margin-bottom: 70px;
	}

	.ttl_box.center h2::after {
		left: 46.5%;
	}
}

@media screen and (max-width:390px) {
	#about .ttl_box.center h2::after {}

	.ttl_box.center h2::after {
		left: 44%;
	}


	#about .about_box .img_box {
		height: 300px;
		width: 100%;
		border-radius: 0px;
	}

	#about::before {
		top: 480px;
	}

	#about .about_box p {
		margin-top: 280px;
	}

	#about h3 {
		font-size: 22px;
	}
}


/* 館山寮共通 */

.link_box ul {
	display: flex;
	justify-content: space-between;
	gap: 2%;
}

.link_box ul li {
	width: 32%;
	position: relative;
}

.link_box ul li a {
	display: inline-block;
	width: 100%;
}


.link_box ul li .ttl {
	width: 62%;
	line-height: 54px;
	border-radius: 40px;
	border: 1px solid #ffffff;
	background-color: var(--key-color);
	text-align: center;
	color: #fff;
	margin: auto auto;

	position: absolute;
	top: 39%;
	left: 20%;
	font-weight: bold;
}

.link_box ul li .img_box {
	position: relative;
}

.link_box ul li .img_box::before {
	content: "";
	width: calc(100% - 14px);
	height: calc(100% - 14px);
	border: 1px solid #ffffff;
	display: block;
	position: absolute;
	top: 6px;
	left: 6px;
	border-radius: 5px;
}




/* 丸に矢印 */

.arrow_circle {
	width: 40px;
	height: 40px;
	border: 1px solid #ffffff;
	border-radius: 50%;

	position: absolute;
	right: 26px;
	bottom: 20px;
}

.arrow_circle .in {
	position: relative;
	top: -3px;
	left: 8px;
	display: inline-block;
	width: 20px;
	height: 2px;
	border-radius: 9999px;
	background-color: #ffffff;
	/* margin-left: 312px; */
}

.arrow_circle .in::after,
.arrow_circle .in::before {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	width: 10px;
	height: 2px;
	border-radius: 9999px;
	background-color: #ffffff;
	transform-origin: calc(100% - 1px) 50%;
}

.arrow_circle .in::before {
	transform: rotate(45deg);
}

.arrow_circle .in::after {
	transform: rotate(-45deg);
}


@media screen and (max-width:768px) {
	.link_box ul {
		flex-direction: column;
	}

	.link_box ul li {
		width: 100%;
		margin: 0 auto;
		margin-top: 20px;
	}

	.link_box ul li .ttl {
		width: 60%;
		line-height: 70px;
		left: 20%;
		/* font-size: 16px; */
	}

	.arrow_circle {
		right: 20px;
		bottom: 40px;
	}
}

@media screen and (max-width:390px) {
	.link_box ul li .ttl {
		line-height: 50px;
		width: 70%;
		left: 15%;
		font-size: 16px;
	}

	.arrow_circle {
		right: 10px;
	}

	#about .arrow_circle,
	#tateyama .arrow_circle {
		right: 20px;
		bottom: 20px;
	}
}


/*==========交流の場==================
=======================================*/

#comm {
	background-color: var(--sec-color);
	padding-top: 40px;
	padding-bottom: 40px;
	margin-top: 100px;
}

#comm .whitebg {
	width: 95%;
	margin: 0 auto;
	background-color: #ffffff;
	border-radius: 6px;
	padding: 70px 0 50px 0;
}

#comm .text {
	text-align: center;
	margin: 40px 0;
}

#comm .btn {
	text-align: center;
}


#comm ul {
	display: flex;
	justify-content: space-between;
	margin-top: 70px;
}

#comm ul li {
	max-width: 280px;
	width: 24%;
}

#comm ul li a .name {
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	padding-top: 25px;
}

#comm .link_box .ttl {
	position: relative;
}

#comm .link_box .arrow_circle {
	border: 1px solid #651765;
	right: 0px;
	bottom: 0px;
}

#comm .link_box .arrow_circle .in {
	background-color: var(--key-color);
}

#comm .link_box .arrow_circle .in::before,
#comm .link_box .arrow_circle .in::after {
	background-color: var(--key-color);
}

#comm ul li a {
	position: relative;
}

#comm ul li a img {
	border-bottom: 5px solid #651765;
}

/* #comm ul li a img::after {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	background-color: var(--key-color);

	position: absolute;
	bottom: 54px;
	left: 0;
} */


@media screen and (max-width:390px) {
	/* #comm ul li a::after {
		bottom: 46px;
	} */

	#comm .link_box .arrow_circle {
		bottom: -4px;
	}
}




/* ホバー時 */

#comm .link_box li a:hover .arrow_circle {
	background-color: var(--key-color);
}

#comm .link_box li a:hover .arrow_circle .in {
	background-color: #fff;
}

#comm .link_box li a:hover .arrow_circle .in::before,
#comm .link_box li a:hover .arrow_circle .in::after {
	background-color: #ffffff;
}


@media screen and (max-width:768px) {
	#comm ul {
		flex-direction: column;
		margin-top: 0px;
	}

	#comm ul li {
		width: 80%;
		margin: 0 auto;
		max-width: 100%;
		margin-top: 40px;
	}

	#comm .whitebg {
		padding-top: 50px;
	}

	#comm ul li a .name {
		font-size: 18px;
	}
}


@media screen and (max-width:390px) {
	#comm {
		padding-top: 20px;
	}

	#comm ul li {
		width: 95%;
		margin-top: 50px;
	}

	#comm ul li a .name {
		padding-top: 20px;
	}
}



/*==========交流の場==================
=======================================*/

#member .box {
	display: flex;
	justify-content: space-between;
	margin-top: 34px;
}

#member .text {
	width: 55%;
}


.link_sec {
	width: 38%;
}

.link_sec ul li a {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	line-height: 100px;
	width: 100%;
	padding-left: 20px;
	letter-spacing: .12em;

}

.link_sec ul li {
	border-top: 1px solid #651765;
	position: relative;
}

.link_sec ul li:last-child {
	border-bottom: 1px solid #651765;
}

.link_sec ul li a .arrow_circle {
	border: 1px solid #651765;
	top: 30%;
}


.link_sec ul li a .arrow_circle .in {
	background-color: var(--key-color);
	top: -37px;
	left: 8px;
}

.link_sec ul li a .arrow_circle .in::before,
.link_sec ul li a .arrow_circle .in::after {
	background-color: var(--key-color);
	transition: all 0.4s;
}

.link_sec ul li a:hover {
	opacity: .8;
}

.link_sec ul li a:hover .arrow_circle {
	background-color: var(--key-color);
	transition: all 0.4s;
}

.link_sec ul li a:hover .arrow_circle .in {
	background-color: #fff;
	transition: all 0.4s;
}

.link_sec ul li a:hover .arrow_circle .in::before,
.link_sec ul li a:hover .arrow_circle .in::after {
	background-color: #fff;
}

@media screen and (max-width:768px) {
	.link_sec {
		width: 100%;
		margin-top: 40px;
	}

	.link_sec ul li a {
		line-height: 80px;
		font-size: 18px;
	}

	.link_sec ul li a .arrow_circle .in {
		top: -28px;
	}

	.link_sec ul li a .arrow_circle {
		top: 25%;
	}
}

@media screen and (max-width:390px) {
	.link_sec ul li a {
		line-height: 80px;
		font-size: 18px;
		padding-left: 10px;
	}

	.link_sec ul li a .arrow_circle .in {
		top: -27px;
		left: 9px;
	}
}




/*==========会員の方へ==================
=======================================*/

.member_fund {
	/* background-image: url(img/top_member_bokin.webp); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top right;
	height: 650px;

	margin-top: 90px;
}

.member_fund .fund_box {
	width: 780px;
	padding: 75px 47px;
	background-color: #fffffff2;
	border-radius: 6px;

}

.member_fund .fund_box h3 {
	font-size: 34px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
}

.member_fund .fund_box .ttl {
	font-size: 28px;
	color: var(--key-color);
	letter-spacing: .12em;
	font-weight: bold;
	position: relative;
	padding-left: 35px;
	margin: 20px 0;
}

.member_fund .fund_box .ttl::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	background-color: var(--key-color);

	position: absolute;
	top: 20px;
	left: 0;
}

.member_fund .fund_box .btn {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

.member_fund .inner {
	padding-top: 60px;
}

@media screen and (max-width:1000px) {
	.member_fund .fund_box {
		width: 100%;
	}
}


@media screen and (max-width:768px) {
	#member .box {
		flex-direction: column;
	}

	#member .text {
		width: 100%;
	}

	.member_fund {
		background-image: url(img/top_member_bokin_sp.webp);
		width: 100%;
		height: 100%;
		background-size: auto;
		background-size: contain;
	}

	.member_fund .fund_box h3 {
		line-height: 160%;
		font-size: 32px;
	}

	.member_fund .fund_box {
		padding: 40px 30px;
		margin-top: 320px;
	}

	.member_fund .fund_box .ttl {
		margin-bottom: 10px;
		font-size: 26px;
	}

	.member_fund .fund_box .ttl::before {
		top: 16px;
		left: 2px;
	}
}

@media screen and (max-width:600px) {
	.member_fund .fund_box {
		margin-top: 200px;
	}

}

@media screen and (max-width:500px) {
	/* .member_fund .fund_box {
		margin-top: 200px;
	} */

	.member_fund .fund_box {
		padding: 30px 15px;
	}

	.member_fund .fund_box h3 {
		font-size: 24px;
		letter-spacing: .04em;
	}

	.member_fund .fund_box .ttl {
		font-size: 20px;
		letter-spacing: .04em;
		padding-left: 20px;
	}

	.member_fund .fund_box .ttl::before {
		width: 10px;
		height: 10px;
		top: 12px;
		left: 0px;
	}

}

@media screen and (max-width:390px) {
	.member_fund .fund_box {
		margin-top: 150px;
	}


}


/*==========アーカイブ==================
=======================================*/

#archive .flex {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-top: 100px;
}

#archive .flex .left {
	width: 1200px;
	margin: 0 auto;
}

#archive .flex .left p {
	width: 484px;
}

#archive .flex .right {
	/* background-image: url(img/top_archive.webp); */
	background-repeat: no-repeat;
	background-position: right top;
	background-size: cover;
	width: 52%;
	height: 460px;
	position: absolute;

	top: 0;
	right: 0;
	border-radius: 6px 0 0 6px;
	z-index: -1;
}


#archive .flex .link_sec {
	margin-top: 55px;
	margin-bottom: 45px;
	width: 484px;
}

/* 外部リンクボタン */

#archive .link_sec ul li a .arrow_icon {
	width: 30px;
	position: absolute;
	top: -37%;
	right: 33px;
}


@media screen and (max-width:1240px) {
	#archive .flex .left {
		padding-left: 20px;
	}
}



@media screen and (max-width:1060px) {
	#archive .flex .link_sec {
		width: 100%;
		margin-top: 30px;
	}

	#archive .flex .right {
		width: 90%;
		height: 400px;
		top: -60px;

	}

	#archive .flex .left {
		margin-top: 380px;
		padding-right: 20px;
	}


	#archive .flex .left p {
		width: 100%;
	}

	#archive .link_sec ul li a .arrow_icon {
		right: 25px;
	}
}

@media screen and (max-width:390px) {
	#archive .flex .right {
		height: 260px;
		width: 100%;
		border-radius: 0px;
	}

	#archive .flex .left {
		margin-top: 220px;
	}

	#archive .link_sec ul li a .arrow_icon {
		top: -32%;
		right: 17px;
	}

	#archive .flex {
		margin-top: 90px;
	}



}




/*==========館山寮==================
=======================================*/

#tateyama {
	background-image: url(img/top_tateyama.webp);
	background-repeat: no-repeat;
	background-size: cover;
	height: 692px;
	margin-top: 100px;
}


#tateyama .link_box {
	margin-top: 120px;
}


#tateyama .ttl_box h2 {
	color: #ffffff;
}

#tateyama .ttl_box .en {
	color: #fff;
}

#tateyama .ttl_box h2::after {
	background-color: #fff;
}

#tateyama .text {
	color: #ffffff;
	text-align: center;
	margin-top: 40px;
}


@media screen and (max-width:768px) {
	#tateyama .link_box {
		margin-top: 50px;
	}

	#tateyama {
		height: 100%;
		background-size: auto;
		background-position: top right;
	}
}

@media screen and (max-width:390px) {
	#tateyama {
		background-size: initial;
		height: 100%;
		margin-top: 60px;
	}

	#tateyama .text {
		text-align: left;
	}
}


/*==========下層==================
=======================================*/

/* 共通 */

/*パンクズリスト */

.breadcrumb span {
	padding-right: 14px;
	position: relative;
}

.breadcrumb {
	font-size: 14px;
	letter-spacing: .02em;
	line-height: 130%;
	margin-top: 15px;
}

.breadcrumb span::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid #1A1A1A;
	transform: rotate(-45deg);
	border-top: 0;
	border-left: 0;

	position: absolute;
	top: 6px;
	left: -20px;
}

.breadcrumb span:first-child {
	margin-left: 0px;
}

.breadcrumb span:first-child::before {
	display: none;
}


@media screen and (max-width:768px) {}

@media screen and (max-width:390px) {
	.breadcrumb {
		margin-top: 10px;
	}

	.breadcrumb span {
		font-size: 12px;
	}
}








#main_content a {
	color: #651765;
}


#main_content {
	line-height: 200%;
	position: relative;
	/* padding-top: 550px; */
}


#sub_mv {
	background-image: url(img/lw_mv.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;

	padding-top: 100px;
}

#sub_mv h2 {
	font-size: 40px;
	font-weight: bold;
	letter-spacing: .16em;
	color: #ffff;
	text-align: center;
	text-shadow: 4px 4px 4px #666666BF;
	padding-left: 20px;
	padding-right: 20px;
}

#sub_mv .mv_en {
	display: block;
	font-size: 20px;
	margin-top: 20px;
	/* 英字タイトル上の余白調整 */
	letter-spacing: .2em;
}

@media screen and (max-width: 768px) {
	#sub_mv {
		padding-top: 80px;
		height: 380px;
	}

	#sub_mv h2 {
		font-size: 30px;
		letter-spacing: .08em;
	}

	#sub_mv .mv_en {
		font-size: 16px;
	}
}

@media screen and (max-width: 390px) {
	#sub_mv {
		height: 280px;
		padding-top: 40px;
	}

}


#main_content h6.en {
	font-family: "Lato", sans-serif;
	letter-spacing: .2em;
}

#main_content h3 {
	font-size: 36px;
	position: relative;
	line-height: 200%;
	padding-left: 36px;
	letter-spacing: .1em;
	margin-bottom: 30px;
	padding-top: 100px;
}

#main_content h3::before {
	content: "";
	display: block;
	width: 8px;
	height: 74px;
	background-color: var(--key-color);
	border-radius: 999px;
	position: absolute;

	left: 0;
	top: 103px;
}

#main_content h4 {
	font-size: 22px;
	letter-spacing: .08em;
	border-bottom: var(--key-color) 1px solid;
	padding-bottom: 10px;
	margin-top: 50px;
	margin-bottom: 20px;
}

#main_content h5 {
	margin-top: 34px;
	font-size: 20px;
	margin-bottom: 10px;
	letter-spacing: .1em;

}

#main_content p {
	line-height: 200%;
}

#main_content h6 {
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 10px;
}

#main_content ul li {
	padding-left: 22px;
	position: relative;
	line-height: 200%;
	margin-top: 5px;
}

#main_content ul li::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	background-color: var(--key-color);
	border-radius: 50%;

	position: absolute;
	top: 15px;
	left: 0;
}

.wp-block-group h6 {
	width: 30%;
	padding-left: 90px;
	padding-right: 90px;
	background-color: var(--key-color);
	text-align: center;
	color: #ffffff;
}

.wp-block-group p {
	/* background-color: #F8F8F6;
	padding: 20px; */
}

.inner2 {
	width: 900px;
	max-width: 100%;
	margin: 0 auto
}


@media screen and (max-width: 768px) {
	#main_content h3 {
		font-size: 30px;
		padding-left: 32px;
	}

	#main_content h4 {
		font-size: 18px;
	}

	#main_content h3::before {
		width: 7px;
		height: 54px;
		top: 105px;
	}

	#main_content h5 {
		font-size: 18px;
	}

	#main_content h6 {
		font-size: 18px;
	}
}

@media screen and (max-width: 390px) {
	#main_content h3 {
		font-size: 28px;
		padding-left: 28px;
		letter-spacing: .08em;
	}

	#main_content ul li {
		font-size: 16px;
	}

	#main_content ul li::before {
		top: 12px
	}

	#main_content .catch {
		font-size: 20px;
	}

	#main_content h3::before {
		height: 52px;
		top: 103px;
	}

	#main_content h6 {
		font-size: 16px;
	}
}



/* お問い合わせ */


.wpcf7 input[type="file"] {
	font-size: 16px;
}

.contact_box {
	margin-top: 100px;
}

.tb_contact {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.tb_contact tr {
	display: flex;
	flex-direction: column;
}

.tb_contact th {
	width: 100%;
	text-align: left;
	padding-bottom: 10px;
	/* padding: 20px; */
	vertical-align: middle;
	font-weight: normal;
	font-size: 18px;
}

.tb_contact th p {
	font-weight: bold;
	margin-top: 0px;
}

#main_content .tb_contact td p {
	margin-top: 0px;
}


.tb_contact td {
	width: 100%;
	/* padding: 20px; */
	padding-bottom: 30px;
}

.hissu {
	color: #fff;
	font-size: 14px;
	line-height: 1.5em;
	background: var(--key-color);
	padding: 0px 10px 2px;
	border-radius: 3px;
	box-sizing: border-box;
	display: inline-block;
	margin-left: 20px;
	letter-spacing: 0.2em;
}

.ninni {
	color: #fff;
	font-size: 14px;
	line-height: 1.5em;
	background: #B0B0B0;
	padding: 0px 10px 2px;
	border-radius: 3px;
	box-sizing: border-box;
	display: inline-block;
	margin-left: 30px;
	letter-spacing: 0.2em;
}

.tb_contact input[type="text"],
.tb_contact input[type="email"],
.tb_contact input[type="tel"],
.tb_contact select,
.tb_contact textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 15px 20px;
	border: 1px solid #B0B0B0;
	background-color: #F8F8F6;
	border-radius: 5px;
	font-size: 16px;
}

.tb_contact select {
	/*width: initial;*/
}



/* contactform7 ���M�������̘g�̐F  */
div.wpcf7-mail-sent-ok,
div.wpcf7-mail-sent-ng,
div.wpcf7-aborted,
div.wpcf7-spam-blocked,
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
	border: none !important;
}


.wpcf7 form .wpcf7-response-output {
	text-align: center;
	max-width: 800px;
	width: 90%;
	margin: 2em auto !important;
	padding: 1em !important;
}

.wpcf7 form.sent .wpcf7-response-output {
	border: none;
	background-color: #651765;
	color: #ffffff;
}

.wpcf7 form.invalid .wpcf7-response-output {
	background-color: transparent;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: var(--key-color) !important;
}


.wpcf7-spinner {
	display: none;
}


.submit {
	text-align: center;
}

input[type="submit"],
.item-description input[type="submit"] {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: .6em;
	text-indent: 1em;
	color: var(--key-color);
	outline: none;
	border: none;

	display: block;
	margin: 0 auto;
	position: relative;
	border-radius: 80px;
	padding: 14px 70px;
	/* box-shadow: 3px 3px 3px #ccc; */

	background-color: #fff;
	transition: all 0.2s;
	border: 1px solid #651765;
	margin-top: 70px;
}

input[type="submit"]:hover {
	background-color: var(--key-color);
	opacity: 1.0;
	cursor: pointer;
	color: #ffffff;
}

div.wpcf7 .wpcf7-submit:disabled {
	background: #ccc;
}

.submit_outbox {
	text-align: center;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
	text-align: center;
	background-color: #f0ff00;
	padding: 10px 0;
}

div.wpcf7-mail-sent-ok {
	text-align: center;
	background-color: #db2b52;
	padding: 10px 0;
	color: #fff;
}


/* 館山申し込みフォーム */

.wpcf7-file {
	display: inline-block;
	font-family: 'Noto Sans JP', sans-serif;
	color: #333333;
	font-size: 1.6rem;
	height: 100%;
	padding-left: 0;
	width: 306px;

	/* @include fw.mq("tab") {
		margin-left: 20px;
	}

	@include fw.mq("sp") {
		font-size: 1.4rem;
		margin-left: 0px;
	} */
}

input[type=file]::file-selector-button {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	background-color: #F8F8F6;
	border: 1px solid #B0B0B0;
	padding: .8em;
	margin-right: .8em;
	color: #333333;
	height: 100%;
	cursor: pointer;
	border-radius: 5px;
	vertical-align: middle;
}



@media screen and (max-width: 768px) {


	.tb_contact {
		width: 100%;
	}

	.tb_contact th,
	.tb_contact td {
		/* width: 100%;
		padding: 8px 12px;
		display: block;
		border: none;
		box-sizing: border-box; */

	}

	input[type="submit"],
	.item-description input[type="submit"] {
		margin-top: 50px;
	}


	.tb_contact td {
		/* padding-bottom: 40px; */
	}

	.contact_box {
		margin-top: 60px;
	}

	.tb_contact th p {
		/* font-size: 16px; */
	}


	.hissu {
		/* font-size: 12px;
		margin-left: 20px; */
	}

	input[type="submit"],
	.item-description input[type="submit"] {
		padding: 14px 60px;
		margin-top: 30px;
	}

	.tb_contact input[type="text"],
	.tb_contact input[type="email"],
	.tb_contact input[type="tel"],
	.tb_contact select,
	.tb_contact textarea {
		padding: 12px 10px;

	}

	input[type=file]::file-selector-button {
		padding: .6em 1em;
	}
}


.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #b93943;
}





/* 注意事項 */
#main_content div.note {
	padding: 50px;
	padding-top: 0px;
	background-color: #F8F8F6;
	border: 1px solid #651765;
	border-radius: 10px;
}

#main_content div.note h5 {
	font-size: 22px;
	width: 100%;
	text-align: center;
	font-weight: bold;
	color: #651765;
	margin-bottom: 30px;
}

.note .detail {
	padding-left: 24px;
}

#main_content .square {
	position: relative;
	margin-top: 30px;
}

#main_content .square::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-color: var(--key-color);

	position: absolute;
	top: 35%;
	left: -22px;
}


#main_content div.note_outline {
	border: unset;
	outline: 1px solid #651765;
	outline-offset: -10px;
	margin-bottom: 70px;
	border: 0px;
	padding-top: 40px;
	background-color: #F8F8F6;
	padding-bottom: 40px;

	padding: 40px 20px 40px 20px;
}

#main_content div.note_outline p {
	text-align: left;

}






@media screen and (max-width: 768px) {


	#main_content div.note {
		padding: 20px;
	}

	#main_content div.note h5 {
		margin-top: 20px;
		font-size: 18px;
		margin-bottom: 20px;
	}


}

@media screen and (max-width: 600px) {
	#main_content div.note_outline p br {
		display: none;
	}
}

@media screen and (max-width: 390px) {
	#main_content div.note_outline {
		margin-bottom: 50px;
	}

}


/* .wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #b93943;
} */




/* 固定ページ修正 */

.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content {
	padding: 0 70px 0 0;
}


.wp-block-table thead {
	background-color: var(--sec-color);
	color: #ffff;
}


.wp-block-table tbody {
	background-color: #EEEEEE;
}

.wp-block-table table {
	margin-top: 10px;
}

.wp-block-table table td,
.wp-block-table table th {
	border: 3px solid #ffffff;
	padding: 16px 30px;
}

.wp-block-table table td {
	vertical-align: middle;
}

.wp-block-table table th {
	font-size: 20px;
	letter-spacing: .1em;
}

.wp-block-table table td a {
	color: var(--key-color);
	text-decoration: underline;
}

strong a {
	color: var(--key-color);
	text-decoration: underline;

}




.wp-block-table.aligncenter,
.wp-block-table.alignleft,
.wp-block-table.alignright {
	display: block !important;
}


.scroll_text {
	display: none;
}

@media screen and (max-width: 1240px) {
	.scroll {
		overflow-x: scroll;
		display: block;
		margin-top: 20px;
	}

	.scroll table th,
	.scroll table td {
		white-space: nowrap;
	}


	#main_content .scroll table {
		width: 1200px;
	}

	.scroll_text {
		display: block;
	}
}



@media screen and (max-width: 600px) {

	.wp-block-table table td,
	.wp-block-table table th {
		padding: 12px 12px;
	}

	.wp-block-table table td,
	.wp-block-table table th {
		font-size: 16px;
	}


	#main_content .scroll.reference table {
		width: 600px;
	}

	#main_content .scroll table {
		width: 100%;
	}

}



/* 連絡先、振込先 */


#main_content .contact2 .left {
	width: 30%;
	background-color: var(--key-color);
	font-size: 20px;
	color: #ffff;
	font-weight: bold;
	vertical-align: middle;
	letter-spacing: .08em;
}

#main_content .contact2 .right {
	width: 70%;
	background-color: #F8F8F6;
	font-size: 18px;
	padding: 16px 10px;
}



.wp-block-table.contact tr td {
	background-color: #F8F8F6;
	font-size: 18px;
	padding: 16px 10px;
}

.wp-block-table.contact tr td:first-child {
	background-color: var(--key-color);
	color: #ffffff;
	width: 30%;
	font-size: 20px;
	font-weight: bold;
	vertical-align: middle;
	letter-spacing: .08em;
}


@media screen and (max-width: 390px) {

	.wp-block-table.contact tr td {
		font-size: 16px;
	}

	.wp-block-table.contact tr td:first-child {
		/* writing-mode: vertical-rl; */
		font-size: 16px;
		width: 28%;
	}
}




/* 朝陽同窓会について */

#main_content .catch {
	font-size: 28px;
	margin-bottom: 20px;
}



@media screen and (max-width: 768px) {
	#main_content .catch {
		font-size: 22px;
	}
}


@media screen and (max-width: 600px) {


	.wp-block-media-text.is-stacked-on-mobile {
		grid-template-columns: 100% !important;
	}

	.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content {
		grid-column: 1;
		grid-row: 2;
	}

	.wp-block-media-text__media img,
	.wp-block-media-text__media video {
		/* width: 60% !important;
		margin: 0 auto !important;
		display: flex;
		justify-content: center; */
	}

	.wp-block-media-text>.wp-block-media-text__content {
		padding: 0px !important;
		padding-top: 10px !important;
	}

	#main_content .greeting_name {
		text-align: left !important;
		font-size: 18px !important;
	}

	#main_content .greeting img {
		width: 80%;
	}

	#main_content .greeting .wp-block-media-text__media {
		text-align: center;
	}
}

@media screen and (max-width: 390px) {

	#main_content .catch {
		font-size: 20px;
	}
}



/* 交流の場リンク集 */

#main_content .link_container p {
	font-size: 20px;
	line-height: 54px;
	color: #ffff;
	padding-left: 20px;
	background-color: var(--key-color);
	margin-bottom: 20px;
	letter-spacing: .08em;
}


#main_content .link_container p {
	margin-top: 60px;
	font-weight: bold;
}

.link_container ul li a {
	color: var(--key-color);
	text-decoration: underline;
}

body .link_container {
	justify-content: space-between;
}


@media screen and (max-width: 781px) {
	#main_content .link_container p {
		margin-top: 30px;
		font-size: 18px;
	}

	:where(.wp-block-columns.is-layout-flex) {
		gap: 0em !important;
	}


}


/* 下層_会員の方へ */

#main_content ul.member_btn {
	display: flex;
	justify-content: space-around;
	/* margin-top: 50px; */
	column-gap: 100px;
}

#main_content ul.member_btn li {
	padding-left: 0px
}

#main_content ul.member_btn li a {
	display: block;
}

#main_content ul.member_btn li::before {
	display: none;
}

@media screen and (max-width: 600px) {
	#main_content ul.member_btn {
		flex-direction: column;
		margin-top: 20px;
	}

	#main_content ul.member_btn a {
		padding-left: 66px;
		padding-right: 86px;
	}

	#main_content ul.member_btn li {
		margin-top: 10px;
	}

}


/* 下層ボタン */

#main_content .lw_btn {
	margin-top: 40px;
	margin-right: 20px;
}

#main_content .lw_btn a,
#column .lw_btn a {
	display: inline-block;
	line-height: 58px;
	padding-left: 46px;
	padding-right: 66px;
	border: 1px solid #651765;
	border-radius: 70px;
	background-image: url(img/arrow.svg);
	background-repeat: no-repeat;
	background-position: right 20px top 54%;
	background-size: 24px;
	border-radius: 70px;
	color: #651765;
	text-decoration: none;
	font-weight: bold;
}

#main_content .lw_btn a:hover,
#column .lw_btn a:hover {
	background-image: url(img/arrow_white.svg);
	background-color: var(--key-color);
	color: #fff;
	opacity: 1.0;
}

#main_content .lw_btn.ex a {
	background-image: url(img/icon_link.svg);
	background-size: 24px;
}

#main_content .lw_btn.ex a:hover {
	background-image: url(img/icon_link_white.svg);
}

#main_content .lw_btn.form a {
	background-image: url(img/icon_download.svg);
	background-size: 26px;
}

#main_content .lw_btn.form a:hover {
	background-image: url(img/icon_download_white.svg);
}

@media screen and (max-width: 768px) {


	#main_content .lw_btn {
		margin-top: 20px;
	}
}


@media screen and (max-width: 390px) {

	#main_content .lw_btn a,
	#column .lw_btn a {
		line-height: 50px;
	}


	#main_content .lw_btn {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		margin-top: 20px;
	}

	#main_content .lw_btn a {
		padding-right: 0px;
		padding-left: 0px;
		display: block;
	}

	#main_content .lw_btn.ex {
		margin-top: 10px;
	}

}




/*==========下層アンカーリンク==================
=======================================*/


#main_content .anchor_link_box {
	display: flex;
	justify-content: space-between;
	width: 900px;
	max-width: 100%;
	margin: 0 auto;
	flex-wrap: wrap;
}

#main_content .anchor_link_box li::before {
	display: none;
}

#main_content .anchor_link_box li {
	width: 30%;
	padding-left: 0px;
}

#main_content .anchor_link_box li:nth-child(n+4) {
	margin-top: 30px;
}

#main_content .anchor_link_box li a {
	display: block;
	line-height: 60px;
	/* width: 100%; */
	color: var(--key-color);
	border: 1px solid #651765;
	border-radius: 10px;
	padding-left: 20px;
	font-weight: bold;

	position: relative;
}

#main_content .anchor_link_box li a::after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-top: 2px solid #651765;
	border-right: 2px solid #651765;
	transform: rotate(135deg);

	position: absolute;
	top: 36%;
	right: 22px;
}

#main_content .anchor_link_box li a:hover {
	background-color: var(--key-color);
	color: #ffffff;
	opacity: 1.0;
}

#main_content .anchor_link_box li a:hover::after {
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
}


#main_content .anchor_link_box li.arrow a::after,
#main_content .anchor_link_box li.ex a::after {
	display: none;
}

#main_content .anchor_link_box li.arrow a {
	background-image: url(img/arrow.svg);
	background-repeat: no-repeat;
	background-position: right 20px top 53%;
	background-size: 24px;
	border-radius: 70px;
	text-align: center;
	padding-right: 34px;
}

#main_content .anchor_link_box li.arrow a:hover {
	background-image: url(img/arrow_white.svg);
}

#main_content .anchor_link_box li.ex {}

#main_content .anchor_link_box li.ex a {
	background-image: url(img/icon_link.svg);
	background-repeat: no-repeat;
	background-position: right 20px top 52%;
	background-size: 24px;
	border-radius: 70px;
	text-align: center;
	padding-right: 34px;
}

#main_content .anchor_link_box li.ex a:hover {
	background-image: url(img/icon_link_white.svg);
}


#main_content .anchor_link_box::after {
	content: "";
	display: block;
	width: 30%;
	height: 0;
}


@media screen and (max-width: 768px) {
	#main_content .anchor_link_box li {
		width: 48%;
	}

	#main_content .anchor_link_box li:nth-child(n+4) {
		margin-top: 0px;
	}

	#main_content .anchor_link_box li:nth-child(n+3) {
		margin-top: 20px;
	}

}

@media screen and (max-width: 390px) {
	#main_content .anchor_link_box li a {
		line-height: 50px;
	}

	#main_content .anchor_link_box li {
		width: 100%;
		margin-top: 8px;
	}

	#main_content .anchor_link_box li:nth-child(n+3) {
		margin-top: 8px;
	}

	#main_content .anchor_link_box li a::after {
		top: 30%;
	}


}


/*==========下層アンカーリンク終わり==================
=======================================*/




/* プライバシーポリシー */


#main_content ol li {
	list-style: auto;

}


#main_content ol {
	padding-left: 25px;
	margin-top: 20px;
	margin-bottom: 20px;
}



/* 館山寮 */


#main_content .bg_white {
	background-color: #fff;
	padding: 20px;
	margin: 20px 0 20px 22px;
}


#main_content .form_ttl::before {
	display: none;
}

#main_content .form_ttl {
	padding-left: 0px;
}


#main_content .schedule th {
	/* color: #333333; */
	font-style: unset;
	background-color: #1C2A4B;
}


#main_content .schedule mark {
	font-style: unset;
}

#main_content .scroll.schedule table td {
	line-height: 160%;
}

@media screen and (max-width: 768px) {
	#main_content ol li {
		font-size: 16px;
	}
}



@media screen and (max-width: 600px) {
	#main_content .sp_column {
		flex-direction: column;
	}

	#main_content .form_ttl {
		font-size: 26px;
		padding-top: 70px;
	}


	#main_content .scroll.schedule table {
		width: 840px;
	}
}

@media screen and (max-width: 390px) {
	#main_content .form_ttl {
		padding-top: 50px;
	}
}



/* 404ページ */

#main_content.ntf .ttl {
	font-size: 28px;
	font-weight: bold;
}

#main_content.ntf p {
	text-align: center;
}

#main_content.ntf p.lw_btn a {
	background-image: url(img/arrow_violet_left.svg);
	background-position: left 20px top 54%;
	display: block;
	width: 18%;
	margin: 0 auto;
	padding-left: 26px;
	padding-right: 0px;
}

#main_content.ntf p.lw_btn a:hover {
	background-image: url(img/arrow_white_left.svg);
}


@media screen and (max-width: 768px) {
	#main_content.ntf p.lw_btn a {
		width: 210px;
	}

}

@media screen and (max-width: 390px) {
	#main_content.ntf .ttl {
		font-size: 20px;
	}

	#main_content.ntf p.lw_btn {
		margin-top: 40px;
	}
}




/* 卒業回早見表 */

#main_content .reference tr:nth-child(12) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(21) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(31) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(41) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(51) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(61) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(71) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(81) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(91) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(101) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(111) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(121) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(131) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(141) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(151) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(161) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(171) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(181) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(191) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(201) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(211) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(221) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(231) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(241) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(251) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(251) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(261) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(271) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(281) td {
	border-bottom: 3px solid #1C2A4B !important;
}

#main_content .reference tr:nth-child(291) td {
	border-bottom: 3px solid #1C2A4B !important;
}




/* 検索結果画面 */


#main_content.search p {
	color: #333333;
}

#main_content.search ul li {
	padding-left: 0px;
}

#main_content.search ul li::before {
	display: none;
}

#main_content.search h4 {
	position: relative;
	padding-left: 20px;
}

#main_content.search h4::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-color: var(--key-color);
	border-radius: 100%;
	position: absolute;
	top: 10px;
	left: 0;
}


#main_content.search .lw_btn {
	text-align: center;
	margin-top: 100px;

}

#main_content.search .lw_btn a {
	background-image: url(img/arrow_violet_left.svg);
	background-position: left 20px top 54%;
	display: block;
	width: 210px;
	margin: 0 auto;
	padding-left: 26px;
	padding-right: 0px;
}

#main_content.search .lw_btn a:hover {
	background-image: url(img/arrow_white_left.svg);
}


@media screen and (max-width: 768px) {
	#main_content.search {
		padding-top: 40px;
	}

	#main_content.search .lw_btn {
		margin-top: 60px;
	}
}