/* CSS Document */
html { scroll-behavior: smooth; }

:root {
	--main-color: #ffffff;
	--line-color: #927d54;
	--header-hei: 100px;
	--radius    :  10px;
	/* --main-color: rgb(12, 3, 3); */
}
header {
	position: fixed;
	inset: 0;
	z-index: 100;
	/*DEBUG用BOREDER
border: 3px solid black;
*/
}

body {
	padding: 0;
	margin: 0;
	font-family: main;
	background-color: var(--main-color);
}

hr {
	margin: 20px;
	width: 90%;
}

.hover_on {
	cursor: pointer;
	width: fit-content;
	height: fit-content;
	white-space: nowrap;
	padding: auto 0px;
}
.hover_on:hover {
	opacity: 0.7;
}
.hover_on a {
	color: #f3fcfe !important;
}
	
/* LINK設定 */
a {
	color: #284d5f;
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	color: #3e7089;
	text-decoration: none
}
img {
	vertical-align: middle;	/* イメージ 中央揃え処理用 */
	border: 0px;
}

.flex_on {
	display: -webkit-flex;	/* Chrome 21-27 */
	display: -moz-box;		/* Firefox 2-21 */
	display: -ms-flexbox;	/* IE9 */
	display: flex;
	position: relative;
}

/* HEADER部 */
.top_header {
	width: 100%;
	height: var(--header-hei);
	text-align: center;
	border-bottom: #a7a7a7 solid 1px;
	margin-bottom: 20px;
	/* color: white; */
	background-color: #f4f9fa;
	/*DEBUG用BOREDER
border: 3px solid red;
*/
}

.top_main {
	width: 150px;
	height: 100px;
	vertical-align: middle;
	margin-left: 30px;
	/* background-color: #fff2e8; */
}
.top_main div {
	width: 70px;
	height: 70px;
	margin: auto;
	/*DEBUG用BOREDER
border: 3px solid red;
*/
}
.top_main img {
	/* width: 60px;
	height: 60px; */
	margin: auto;
}

:root {
	--main-wid: 800px;
	--main-body-wid: calc(var(--main-wid) - 80px);
	--main-body-mag: 15px;
	--main-body-ttl-hei: 50px;
	--main-body-pad: 30px;
	--main-body-bar-rad: 3px;
}

.main_body_all_c, 
.main_body_all_l, 
.main_body_all_r {
	width: var(--main-wid);
	height: fit-content;
	position: relative;
	padding: 20px;
	font-size: 10px;
	z-index: 10;
	border-radius: var(--radius);
	box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3) inset;
}
.main_body_all_c {
	width: fit-content;
	margin: var(--main-body-mag) auto 10px auto;
}
.main_body_all_l {
	margin: var(--main-body-mag) auto 0 var(--main-body-mag);
}
.main_body_all_r {
	margin: var(--main-body-mag) var(--main-body-mag) 0 auto;
}
.main_body {
	width: var(--main-body-wid);
	text-align: left;
	padding: 25px 20px 10px 20px;
	margin: 0px auto 20px auto;
	border-radius: var(--radius);
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}

.main_body_sub {
	padding-bottom: 15px;
	font-size: 18px;
	color: #5a81c5;
}

.main_body_desc {
	text-align: left;
	font-size: 12px;
	padding: 10px;
	color: #737373;
	line-height: 25px;
}

.main_body_desc_c {
	text-align: center;
	font-size: 10px;
	color: #737373;
	line-height: 25px;
	a {
		display: inline-block;
		margin: 15px auto;
	}
}

/* ************************/
/*	MAIL送信
/* ************************/
/* MAIL送信ページ ヘッダー */
.mail_inp_tb {
	font-size: 10pt;
	color: var(--line-color);
	padding: 0px;
	border-collapse: collapse;
}
/* MAIL送信ページ 入力欄 */
.mail_inp_td1 {
	text-align: right;
	/* background-color: var(--line-color); */
	padding: 10px;
	border-top: 1px solid var(--line-color);
	border-bottom: 1px solid var(--line-color);
	border-right: 1px solid var(--line-color);
}
.mail_inp_td2 {
	padding: 10px;
	border-top: 1px solid var(--line-color);
	border-bottom: 1px solid var(--line-color);
	border-left: 1px solid var(--line-color);
}
.mail_inp_td3 {
	padding-top: 15px;
	text-align: center;
	align-items: center;
}

.mail_inp_mark {
	margin-left: 3px;
}

.dv_video_js {
	width: fit-content;
	border-radius: var(--radius);
	box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

/* ************************/
/*	実サイトへ移動用
/* ************************/
#jump_site {
	width: fit-content;
	padding: 15px 20px;
	position: fixed;
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	left: 10px;
	bottom: -80px;
	/* bottom: 10px; */
	opacity: 0.8;
	background-color: #f4f9fa;
	border-radius: var(--radius);
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
	z-index: 100;
}

/* ************************/
/*	ページトップへ移動用
/* ************************/
#page_top {
	width: 50px;
	height: 50px;
	position: fixed;
	right: 10px;
	bottom: -50px;
	opacity: 0.6;
	background-image: url("../img/pagetop.svg");
	z-index: 100;
}

#page_top a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
}

#page_top a::before {
	position: absolute;
}

.dv_banner {
	position: fixed;
	left: 0px;
	bottom: 0px;
	z-index: 1000;
/*DEBUG用
*/
}
