@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 91px;
	padding: 0 15px;
	background: #fff;
	font-family: var(--font-sans);
	text-align: left;
}
/* タイトル */
#header h1.title {
	height: 91px;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
}
#header h1.title img {
	object-fit: contain;
	object-position: left;
	width: 100%;
	height: 100%;
	max-width: none;
}
#header h1.title a {
	width: 255px;
}
/* お問い合わせ */
#header .contact a {
	display: block;
}
#header .contact a img {
	vertical-align: middle;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#header {
		border-top: 3px solid #30517c;
	}
	#header .in {
		width: 1100px;
		margin: auto;
		position: relative;
	}
	#header .contact {
		position: absolute;
		top: 15px;
		right: 0;
	}
	#header .contact a img {
		width: 27px;
		margin-right: 10px;
		vertical-align: baseline;
	}
	#header .contact .txt {
		font-size : 15px;
		letter-spacing : 1.5px;
		color : #F15A63;
		font-weight: 600;
	}
	#header .contact .tel {
		font-size: 28px;
		letter-spacing: 2.8px;
		color: #30517c;
		line-height: 1.1em;
	}
	#header .contact .btn a {
		padding: 10px 15px;
		background: var(--color-primary);
		border-radius: 5px;
		box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
		color: #fff;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header .contact .btn a img {
		width: 20px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: #5e00e7; }
	#header .contact .tel a { background: #fff; }
	#header .contact .btn a { background: #fff; }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: #fff;
		z-index: 9997;
	}
	#header h1.title {
		height: 100%;
		padding: 5px 10px;
	}
	#header h1.title a {
		width: 150px;
	}
	/* お問い合わせ */
	#header .contact .tel {
		position: absolute;
		top: 0;
		right: 46px;
	}
	#header .contact .btn {
		position: absolute;
		top: 0;
		right: 23px;
	}
	#header .contact .tel a,
	#header .contact .btn a {
		width: 46px;
		height: 50px;
		padding: 0 10px;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header .contact .txt,
	#header .contact .tel span,
	#header .contact .btn span {
		display: none;
	}
	#rwdMenuWrap ul li a .en {
		display: none;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	position: relative;
	height: 68px;
}
#menu::before {
	content: "";
	background: linear-gradient(0deg,rgba(136, 171, 206, 0.5) 0%, rgba(136, 171, 206, 0) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	border: 0;
	left: 0;
	z-index: -1;
}
#menu ul {
	width: 1100px;
	height: 68px;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}
#menu li:first-of-type {
	width: 200px;
}
#menu li a {
	font-family: var(--font-sans);
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-flow: column;
	flex-flow: column;
	box-sizing: border-box;
	height: 68px;
	padding-bottom: 11px;
	padding: 0 49px;
	color: #30517c;
	letter-spacing: 1.6px;
	font-size: 16px;
	text-shadow: 2px 2px 0 #fff;
	text-align: center;
	text-decoration: none;
	margin-left: 1px;
	border-left: 1px dotted rgba(140,90,255,0.5);
	position: relative;
	background: linear-gradient(0deg,rgba(136, 171, 206, 0.5) 0%, rgba(136, 171, 206, 0) 100%);
}
#menu li:nth-last-of-type(2) a {
	border-right: 1px dotted rgba(140,90,255,0.5);
}
#menu li a::before {
	content: "";
	background: #fff;
	width: 100%;
	height: 68px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#menu li a .en {
	font-size : 14px;
	color : #88ABCE;
	text-shadow: none;
	letter-spacing: normal;
}
#menu li.on a,
#menu li a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	background: linear-gradient(180deg,rgba(136, 171, 206, 0.5) 0%, rgba(136, 171, 206, 0) 100%);
	color: #30517c;
}
#menu ul li.dsp_tbs {
	display: none;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title::before,
#page_title::after {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	content: "";
}
#page_title::before {
	top: 0;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}
#page_title::after {
	bottom: 0;
	box-shadow: 0px -3px 8px rgba(0, 0, 0, 0.2);
}
#page_title .sub_title {
	padding: 50px 0;
	font-size: 25px;
	color: #30517c;
	text-shadow: none;
	background: rgba( 94, 0, 231, 0.1) url(../img/top/slash.png);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}

/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
#container {
	text-align: left;
	line-height: 1.8;
}
#container p {
	margin-bottom: 1em;
}
#container h3.sub {
	position: relative;
	margin-bottom: 20px;
	font-size : 52px;
	font-family: var(--font-sans);
	font-weight: 500;
	text-align: center;
}
#container h3.sub02 {
	text-align: center;
	font-size: 145%;
	font-family: var(--font-sans);
	font-weight: 600;
	margin-bottom: 45px;
}
#container h4.sub {
	margin: 20px 0;
	padding: 10px;
	font-size: 20px;
	border-left: 2px solid #30517c;
}
#container h4.sub span {
	font-size: 15px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap, #footer, #header {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container {
		padding-top: 50px;
	}
	#container h3.sub {
		font-size: 46px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
	#container h3.sub02 {
		font-size: 125%;
		margin-bottom: 35px;
	}
	#container h4.sub {
		font-size: 125%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#wrap, #footer {
		min-width: 320px;
	}
	#container h3.sub {
		margin-bottom: 10px;
		font-size: 30px;
	}
	#container h3.sub02 {
		font-size: 130%;
	}
	#container h4.sub {
		font-size: 130%;
	}
}
/*--------------------------------------------------
  バナー（サブページ、ページ下部のバナー）
--------------------------------------------------*/
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#contact_bana {
		display: block;
		margin: 0;
	}
	#contact_bana .contact_box a {
		margin: 0 auto 15px;
	}
	#contact_bana .contact_box .btn_link {
		margin-left: auto;
	}
	#contact_bana.sub {
		display: block;
		margin-bottom: 0;
	}
	#contact_bana.sub .contact_box a.tel_link,
	#contact_bana.sub .contact_box a.btn_link {
		margin: 0 auto;
	}
	#contact_bana.sub .contact_box a.tel_link {
		margin-bottom: 15px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#contact_bana.sub {
		margin-top: 40px;
	}
}
/*--------------------------------------------------
  ナビ
--------------------------------------------------*/
#navi {
	padding-top: 82px;
}
#navi .box_title {
	font-size : 23px;
	font-weight: 800;
	padding-bottom: 8px;
}
#navi .box_title img {
	width: 38px;
	margin-right: 8px;
}
#navi .box_contents {
	border: 1px solid #eaedf2;
	border-top: 2px solid  #30517c;
	padding: 15px 10px 20px;
}
#navi .box_contents dl {
	font-size: 14px;
}
#navi .box_contents dl+dl {
	margin-top: 10px;
}
#navi .box_contents dl dt {
	color : #597496;
}
#navi .box_contents dl dd {
	padding-bottom: 6px;
	border-bottom: 1px dotted #30517c;
}
#navi .box_contents dl dd a {
	color: #5e00e7;
}
#navi .link_all {
	color : #5e00e7;
	display: inline-block;
	margin-top: 10px;
	font-size: 14px;
}
#navi #top_blog {
	padding: 40px 0 55px;
}
#navi_menu {
	border: 1px solid #eee;
	border-radius: 10px 10px 0 0;
	margin-top: 50px;
}
#navi_menu .menu_title {
	font-size : 23px;
	line-height: 1.1em;
	font-weight: bold;
	color: #fff;
	background : #30517c;
	border-radius : 10px 10px 0px 0px;
	position: relative;
	padding: 9px 15px;
}
#navi_menu .menu_title .en {
	font-size : 14px;
	display: block;
}
#navi_menu .menu_title .img {
	position: absolute;
	bottom: 10px;
	right: 10px;
}
#navi_menu .menu_title .img img {
	width: 98px;
}
#navi_menu .menu_contents {
	padding: 3px 13px 0;
}
#navi_menu .list {
	list-style-type: none;
}
#navi_menu .list li {
	font-size: 14px;
	padding: 16px 0 14px;
}
#navi_menu .list li+li {
	border-top: 1px solid #97a8bd;
}
#navi #about {
	border: 1px solid #30517c;
	border-radius: 5px;
	padding: 20px 15px 15px;
	margin-top: 55px;
}
#navi #about .about_title {
	font-size : 21px;
	color : #5e00e7;
	font-weight: 500;
	margin-bottom: 10px;
	line-height: 1.2em;
}
#navi #about .about_title .mini {
	font-size : 12px;
	display: block;
	line-height: 1.2em;
}
#navi #about .address {
	font-size : 12px;
	color: #30517c;
	line-height: 2.08em;
	margin-bottom: 0;
}
	@media only screen and (min-width: 769px) {
		#navi {
			float: left;
			width: 230px;
		}
	}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.main {
	width: 1150px;
	max-width: 100%;
	margin: auto;
	padding: 0 25px;
}
.top_grade {
	background: url(../img/grade.png) repeat-x top left;
}
.box_simple {
	margin-bottom: 10px;
	padding: 15px;
	border: 1px solid #5e00e7;
	font-size: 14px;
	line-height : 20px;
}
@media only screen and (min-width: 769px) {
	#main {
		float: right;
		width: 824px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
	.main {
		padding-left: 20px;
		padding-right: 20px;
	}
}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#contact_bana {
	margin: 50px auto 74px;
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
#contact_bana .contact_box .tel_link, #contact_bana .contact_box .btn_link {
	width: 390px;
	height: 119px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #d6dce5;
	background: url(../img/tel_bg.png) no-repeat bottom center / 100% auto;
	position: relative;
	font-family: var(--font-sans);
	column-gap: 15px;
	font-weight: 600;
}
#contact_bana .contact_box .tel_link img {
	width: 86px;
}
#contact_bana .contact_box .tel_txt {
	text-align: center;
}
#contact_bana .contact_box .tel_txt .txt1 {
	margin-top: 12px;
	letter-spacing: 0.7px;
	color: #f15a63;
	display: block;
}
#contact_bana .contact_box .tel_txt .txt2 {
	font-size: 33px;
	line-height: 1.2em;
	letter-spacing: 3.3px;
	color: #30517c;
	display: block;
	font-weight: 500;
}
#contact_bana .contact_box .tel_txt .txt3 {
	font-size: 10px;
	color: #30517c;
	margin-top: 4px;
	display: block;
}
#contact_bana .contact_box .btn_link {
	padding-bottom: 18px;
	-webkit-flex-flow: column;
	flex-flow: column;
	margin-left: 40px;
	background-image: url(../img/mail_bg.png);
}
#contact_bana .contact_box .btn_link img {
	width: 33px;
	margin-right: 15px;
	position: relative;
	top: -2px;
}
#contact_bana .contact_box .btn_link .mail_txt1 {
	font-size: 90%;
	color: #8c5aff;
}
#contact_bana .contact_box .btn_link .mail_txt2 {
	font-size: 33px;
	line-height: 1.1em;
	font-weight: 500;
}
#contact_bana .contact_box .btn_link .btn {
	width: 98px;
	display: inline-block;
	box-sizing: border-box;
	padding: 0 7px 2px;
	text-align: left;
	color: #fff;
	line-height: 25px;
	border-radius: 5px;
	background: url(../img/mail_btn.png) no-repeat center right 5px;
	background-color: #8c5aff;
	position: absolute;
	left: calc(50% - 49px);
	bottom: 1px;
	font-size: 90%;
	font-weight: normal;
}
#footer {
	clear: both;
	width: 100%;
	margin-top: auto;
	background: rgba(124,145,172,0.1);
	font-size: 14px;
	line-height: 1.6;
}
#footer .main {
	padding-top: 50px;
	padding-bottom: 50px;
}
#footer p {
	text-align: center;
}
#footer p.ttl {
	margin-bottom: 30px;
}
#footer .ttl img {
	width: 245px;
}
/* リンク */
#footer .link {
	background: linear-gradient(0deg,rgba(76, 110, 150, 1) 0%, rgba(48, 81, 124, 1) 100%);
}
#footer .link ul {
	padding: 15px 0;
	border-bottom: 1px solid #FFF;
}
#footer .link ul li {
	display: inline;
	margin-right: 20px;
	padding-left: 20px;
	list-style: none;
}
#footer .link ul li a {
	color: #FFF;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	padding: 15px 0;
	color: #FFF;
	font-size: 12px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .ttl {
		margin-bottom: 20px;
	}
	#copyright {
		padding: 10px 0;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#contact_bana .contact_box .tel_link, #contact_bana .contact_box .btn_link {
		width: 100%;
		padding: 10px;
	}
	#contact_bana .contact_box .btn_link  {
		padding: 0;
	}
	#contact_bana .contact_box .tel_txt .txt2 {
		font-size: 23px;
		letter-spacing: normal;
	}
	#contact_bana .contact_box .btn_link .mail_txt1,#contact_bana .contact_box .btn_link .mail_txt2 {
		position: relative;
		top: -10px;
	}
	#footer .main {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	#footer .ttl img {
		width: 200px;
	}
	#footer .contact li+li {
		margin-top: 15px;
	}
	#footer .contact li.tel a {
		font-size: 25px;
	}
	#footer .txt {
		font-size: 12px;
		text-align: left;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
/* 枠のマージン・パディング */
.mt { margin-top: 80px; }
.mb { margin-bottom: 80px; }
.pt { padding-top: 80px; }
.pb { padding-bottom: 80px; }
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.mb { margin-bottom: 50px; }
	.pt { padding-top: 50px; }
	.pb { padding-bottom: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	.mb { margin-bottom: 40px; }
	.pt { padding-top: 40px; }
	.pb { padding-bottom: 40px; }
}
/*------------------------------------------------*/
/* パンくずリスト */
#page_navi {
	margin-bottom: 50px;
	padding-top: 30px;
	color: var(--color-thin);
	font-size: 12px;
	line-height: 1;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}
#page_navi li+li:before {
	content: ">";
	margin-right: 0.5em;
}
#page_navi a {
	color: var(--color-thin);
	text-decoration: none;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#page_navi {
		margin-bottom: 30px;
		padding-top: 15px;
		font-size: 11px;
	}
}
/*------------------------------------------------*/
/* テーブル */
.tbl {
	width: 100%;
	background: #fff;
}
.tbl th,
.tbl td {
	padding: 14px;
	border: 1px solid var(--color-tbl-border);
}
.tbl th {
	white-space: nowrap;
	background: var(--color-tbl-th);
}
@media only screen and (max-width: 640px){ /* スマホ */
	.tbl {
		border-bottom: 1px solid var(--color-tbl-border);
	}
	.tbl th,
	.tbl td {
		display: block;
		width: auto;
		padding: 10px;
		border-bottom: none;
	}
}
/*------------------------------------------------*/
/* 注意書き */
p.attention {
	margin-left: 1em;
	text-indent: -1em;
}
/*------------------------------------------------*/
/* 横100％ */
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
}
/*------------------------------------------------*/
/* 横100％背景 */
.bg_wide {
	position: relative;
}
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
@media only screen and (max-width: 1150px) {
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 50px);
		margin-left: -25px;
		margin-right: 0;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 40px);
		margin-left: -20px;
		margin-right: 0;
	}
}
/*------------------------------------------------*/
/* フレックスボックス */
.box_flex_sp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_flex_sp.rev { flex-direction: row-reverse; }
.box_flex_sp.vcen { align-items: center; }
.box_flex_sp.vtop { align-items: flex-start; }
.box_flex_sp.htop { justify-content: flex-start; }
.box_flex_sp.hcen { justify-content: center; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_flex.rev { flex-direction: row-reverse; }
	.box_flex.vcen { align-items: center; }
	.box_flex.vtop { align-items: flex-start; }
	.box_flex.htop { justify-content: flex-start; }
	.box_flex.hcen { justify-content: center; }
}
/*------------------------------------------------*/
/* 箱のパディング */
.box_pad {
	padding: 20px;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_pad { padding: 30px; }
}
