@charset "utf-8";
/* CSS Document */
/* main-color:（青）#003D76 (オレンジ）#FB7E01 */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Sawarabi+Gothic&display=swap');

body {
    /*font-family: "Sawarabi Gothic", serif;*/
	font-family: Arial, Helvetica, sans-serif, ＭＳ Ｐゴシック ", Osaka, " ヒラギノ角ゴ Pro W3;
	font-weight:400;
	background-color:#EAEAEA;
	margin:0;
}

p{
	margin:0;
}

img{
	max-width:100%;
}
header .container{
	border-top:5px solid #FB7E01;
}
.container {
    max-width: 1320px;
	margin:auto;
	background-color:#fff;
	padding:10px 0;
}

.t_left{
	text-align:left;
}
.t_center{
	text-align:center;
}
.t_right{
	text-align:right;
}

.p0{
	padding:0;
}
.p1{
	padding:5px;
}
.p2{
	padding:10px;
}
.p3{
	padding:15px;
}
.p4{
	padding:20px;
}
.p5{
	padding:25px;
}

.m0{
	margin:0;
}
.m1{
	margin:5px;
}
.m2{
	margin:10px;
}
.m3{
	margin:15px;
}
.m4{
	margin:20px;
}
.m5{
	margin:25px;
}
.mt1{
	margin-top:5px;
}
.mt2{
	margin-top:10px;
}
.mt3{
	margin-top:15px;
}
.mt4{
	margin-top:20px;
}
.mt5{
	margin-top:25px;
}
.mb1{
	margin-bottom:5px;
}
.mb2{
	margin-bottom:10px;
}
.mb3{
	margin-bottom:15px;
}
.mb4{
	margin-bottom:20px;
}
.mb5{
	margin-bottom:25px;
}
.pt1{
	padding-top:5px;
}
.pt2{
	padding-top:10px;
}
.pt3{
	padding-top:15px;
}
.pt4{
	padding-top:20px;
}
.pt5{
	padding-top:25px;
}
.pb1{
	padding-bottom:5px;
}
.pb2{
	padding-bottom:10px;
}
.pb3{
	padding-bottom:15px;
}
.pb4{
	padding-bottom:20px;
}
.pb5{
	padding-bottom:25px;
}

@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (max-width: 576px) {
    .container {
        max-width: 540px;
    }
}

.pc {
    display: inline;
}
.sp {
    display: none;
}



.clear{clear:both;}

i{
	color:#000000;
	padding-right:10px;
}

.h_logo{float:left;}
.h_logo h1{margin:10px;}
.h_tel{
	margin:10px;	
	float:right;
}

.h_tel .tel,
.pc-hidden .tel{
	color:#FB7E01;
	font-size:24px;
}

.drawer_menu a {
	color: inherit;
	text-decoration: none;
}

.drawer_menu a:visited {
	color: inherit;
}


/* PC用ナビゲーション */

.drawer_menu .drawer_nav_wrapper {
	transform: translate(0);
	width: 100%;
	height: 50px;
	/* PC用メニュー高さ */
	position: relative;
	top: auto;
	right: auto;
	z-index: 100;
/*	background-color: #F3F3F3;*/
	/* PC用メニュー背景色 */
}

.drawer_menu .drawer_nav {
/*	max-width: 1000px;*/
	/* コンテンツ幅に合わせる */
	padding: 0;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	list-style-type: none;
}

.drawer_menu .drawer_nav li {
	font-size: 16px;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 50px;
	/* PC用メニュー高さ */
	line-height: 50px;
	/* PC用メニュー高さ */
	background-color: #F3F3F3;
	/* PC用メニューボタン背景色 */
	text-align: center;
	list-style-type: none;
	border-top:1px solid #666;
	border-left:1px solid #666;
	border-bottom:4px solid #31A5D4;
	margin-left: -1px;
}
.drawer_menu .drawer_nav li:last-child {
	border-right:1px solid #666;
}


.drawer_menu .drawer_nav li.active,
.drawer_menu .drawer_nav li:hover {
	border-bottom:4px solid #FE8001;
	/* PC用メニューボタンマウスオーバー背景色 */
}

.drawer_menu .drawer_nav li a {
	color: #000;
	-webkit-transition:0s;
	 transition:0st;
    display: block;
    width: 100%
}


/* PC非表示 */

@media screen and (min-width:1001px) {
	.pc-hidden {
		display: none;
		text-align: center;
	}
}

@media screen and (min-width: 1001px) {
	/* ドロップダウンメニュー2階層目 */
	.drawer_menu .drawer_nav li ul.second-level {
		visibility: hidden;
		list-style-type: none;
/*		position: absolute;*/
		width:100%;
		z-index: -1;
		top: 0;
		margin: 0;
		padding-left: 0;
	}

	.drawer_menu .drawer_nav li:hover ul.second-level {
		visibility: visible;
		z-index: 1;
		top: 50px;
		/* PC用メニューの高さに合わせる */
		transition: all .3s;
	}

	.drawer_menu .drawer_nav li:hover ul.second-level li {
		/* ドロップダウンメニューボタン横幅 */
		height: 50px;
		/* Pドロップダウンメニューボタン高さ */
		text-align: center;
		border:none;
		border-left:1px solid #666;
		border-right:1px solid #666;
		border-bottom:1px solid #666;
	}

	.drawer_menu .drawer_nav li:hover ul.second-level li:first-child{
		border-top:1px solid #666;
	}

	.drawer_menu .drawer_nav li:hover ul.second-level li a {
		display: block;
		background-color: #F3F3F3;
		/* ドロップダウンメニューの文字の背景色 */
		color: #000;
		/* ドロップダウンメニューの文字色 */
		font-size: 100%;
		text-decoration: none;
		line-height: 50px;
		/* Pドロップダウンメニューボタン高さ */
		text-align: center;
	}

	.drawer_menu .drawer_nav li:hover ul.second-level li a:hover {
		background-color: #DDDDFF;
		/* ドロップダウンメニューマウスホバー背景色 */
	}

	.touch-btn {
		color: #fff;
		margin-left: 5px;
	}
}

/*+++ Default Button Color +++*/

.drawer_menu .drawer_button {
	color: #fff;
	/* ハンバーガーメニュー文字色 */
	display: none;
}

.drawer_menu .drawer_button .drawer_bar {
	background-color: #fff;
	/* ハンバーガーメニュー三本線の色 */
}

/* 1000px以下 */
@media screen and (max-width: 1000px) {
	.h_tel{
		display:none;
	}

	.drawer_menu .drawer_bg {
		width: 100%;
		height: 100%;
		position: fixed;
		z-index: 999;
		background-color: rgba(51, 51, 51, 0.5);
		display: none;
		top: 0;
		left: 0;
	}

	.drawer_menu .drawer_button {
		display: block;
		background-color: #555;
		color: #fff;
		border: none;
		padding: 5px;
		width: 50px;
		letter-spacing: 0.1em;
		cursor: pointer;
		position: fixed;
		top: 10px;
		right: 10px;
		z-index: 1001;
		text-align: center;
		outline: none;
	}

	.drawer_menu .drawer_button.active .drawer_bar {
		width: 40px;
	}

	.drawer_menu .drawer_button.active .drawer_bar1 {
		transform: rotate(30deg);
	}

	.drawer_menu .drawer_button.active .drawer_bar2 {
		opacity: 0;
	}

	.drawer_menu .drawer_button.active .drawer_bar3 {
		transform: rotate(-30deg);
	}

	.drawer_menu .drawer_button.active .drawer_menu_text {
		display: none;
	}

	.drawer_menu .drawer_button.active .drawer_close {
		display: block;
	}

	.drawer_menu .drawer_bar {
		display: block;
		height: 2px;
		margin: 8px 2px;
		transition: all 0.2s;
		transform-origin: 0 0;
	}

	.drawer_menu .drawer_text {
		text-align: center;
		font-size: 10px;
	}

	.drawer_menu .drawer_close {
		letter-spacing: 0.08em;
		display: none;
	}

	.drawer_menu .drawer_menu_text {
		display: block;
	}

	.drawer_menu .drawer_nav_wrapper {
		width: 250px;
		height: 100%;
		transition: all 0.2s;
		transform: translate(250px);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		background-color: #FFF;
		/* ドロワーメニュー内背景色 */
		overflow-x: hidden;
		overflow-y: auto;
	}

	.drawer_menu .drawer_nav {
		display: block;
		position: relative;
		margin-top: 40px;
	}

	.drawer_menu .drawer_nav li:hover {
		border-bottom: 1px solid #eee;
	}

	.drawer_menu .drawer_nav li{
		background-color: #fff;
		height: 50px;
		line-height: 50px;
		/*  ドロワーメニューリスト項目高さ */
		position: relative;
		border-top:0px;
		border-bottom: 1px solid #666 !important;
	}
	.drawer_menu .drawer_nav li.sp{
		height: 50px !important;
		line-height: 50px !important;
	}
	.drawer_menu .drawer_nav li:last-child {
/*		border-right:0px;
	    border-top: 1px solid #666;*/
	}
	.drawer_menu .drawer_nav li a {
		background-color: #fff;
		/* ドロワーメニューリスト背景色 */
		color: #555;
		/* ドロワーメニューリスト文字色 */
		display: block;
		text-align: left;
		padding-left: 20px;
	}
	.drawer_menu .drawer_nav li:last-child{
		border-right:0px;
	}
	i{
		margin-top: 13px;
	}

	/* スマートフォン2階層目 */
	.drawer_menu .drawer_nav li:hover ul.second-level {
		display: block;
	}

	.drawer_menu .drawer_nav li ul.second-level {
		display: none;
		position: relative;
		padding: 0;
		z-index: 1001;
	}
	.drawer_menu .drawer_nav li ul.second-level li a {
		background-color:#ECECEC;
	}

	.drawer_menu .drawer_nav li ul.second-level li a {
		padding-left: 40px;
	}

	.drawer_menu .drawer_nav_wrapper.open {
		transform: translate(0);
	}

	.drawer_menu.left .drawer_button {
		right: auto;
		left: 32px;
	}

	.drawer_menu.left .drawer_nav_wrapper {
		transform: translate(-250px);
		right: auto;
		left: 0;
	}

	.drawer_menu.left .drawer_nav_wrapper.open {
		transform: translate(0);
	}

	.pc-hidden {
		text-align: center;
		margin-top:15px;
	}

	.touch-btn {
		color: #555;
		position: absolute;
		top: .25rem;
		right: 2%;
		display: block;
		z-index: 10;
		width: 50px;
		height: 50px;
		text-align: center;
		vertical-align: middle;
	}
}
.ftop{
	background-image:url(../images/bg_container.gif);
	background-repeat:repeat-x;
	min-height:50px;
}
footer .container{
	height:auto;
	background-color:#D1E6EE;
}
.fdiv{
	border-top:5px solid #F4F4FF;
}
.l_d{
	border-left: 1px #000 dotted;
}
.row{
  display: flex;
  flex-wrap: wrap;
/*
  flex-direction: row;
  align-items: center;	/*flex-end;*/

}

.col1, .col2, .col3, .col4, .col5{
	float:left;
	box-sizing:content-box;
}
.col1{
	width:100%;
}
.col2{
	width:50%;
}
.col3{
	width:33.333%;
}
.col4{
	width:24.9%;
}
.col5{
	width:20%;
}
.col1 div, .col2 div, .col3 div, .col4 div, .col5 div{
	padding:10px;
}
@media (max-width: 1000px) {
    .pc {
        display: none;
    }
    .sp {
        display: inline;
    }
	.col4{
		width:50%;
	}
	.col5{
		width:33.333%;
	}
	footer h4{
		margin:3px 0;
	}
	.l_d{
		border-left: 0px;
	}
}
@media (max-width: 680px) {
	.col1, .col2, .col3, .col4{
		width:100%;
	}
	.col5{
		width:50%;
	}
	
	footer h4{
		margin:3px 0;
	}
}
.f_menu{
	margin-top: 15px;
}
.f_div{
	border-left: 1px #000 dotted;
}
.copyright{
	font-size:12px;
	padding-right:10px;
	text-align:right;
}
.tp{
	text-align:left;
	padding:10px 25px;
	font-size:13px;
	line-height:1.5;
}
.title {
    display: flex;
    align-items: center;
    padding: 3px 10px;
    background-color: #fea041;
    color: #ffffff;
    margin: 0;
    font-size: 20px;
    border-radius: 3px;
}

.title::before {
    display: inline-block;
    width: 5px;
    height: 1.5em;
    margin-right: .5em;
    background-color: #ffffff;
    content: '';
}
.t_waku{
	border:1px solid #FB7E01;
	padding:3px 2px;
	border-radius:3px;
	margin-bottom:20px;
}
.main{
	padding:0 10px;
	float:left;
	width:78%;
}
.sub{
	width:20%;
	float:left;
	text-align:center;
}
.leftmenu {
    padding: 0 0 5px 0;
}
.leftmenu2 {
    padding: 0 0 3px 30px;
}
/*
.sub a{
	color:#000;
}
.sub ul{
	list-style:none;
	padding:0;
	text-align:left;
	margin:0;
}
.sub li{
	border:1px solid #D5D5D5;
	margin:5px;
	padding:10px;

}
.sub ul.s_menu{
	margin:0;
}
.sub ul.s_menu li{
	margin-left:40px;
	padding:3px;
	background-color:#FFCAA6;
	border:none;
}
*/
@media (max-width: 1000px) {
	.main{
		width:98%;
	}
	.tp{
		max-width:300px;
		margin:auto;
	}
}
table.table_common {
    margin-bottom: 10px;
    border: 1px solid #CCCCCC;
	border-spacing: 0;
	border-collapse: collapse;
	width:90%;
	margin:auto;
}
table.table_common th{
	background-color:#FFFFFF;
	padding:5px 5px 5px 10px;
	text-align:center;
	border: 1px solid #CCCCCC;
	width:150px;
}
table.table_common td {
    background-color: #FFF9F6;
    padding: 5px 5px 5px 10px;
    text-align: left;
	border: 1px solid #CCCCCC;
}
table.table_common td.td2 {
    background-color:#F3F3F3;
}

table.table_common1 td {
    background-color: #F7FBFD;
}
table.table_common2 td {
    background-color: #FFFFE1;
}

@media (max-width: 640px) {
	table.table_common th{
		width:100px;
	}
}

/*よくある質問*/
.qa{
    background-color: #F7F7F8;
	padding: 50px 80px;
}
.qa_heading{
    padding-left: 67px;
    position: relative;
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: 2px dotted #e6e6e7;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
}
.qa_heading::before {
    flex: 0 0 auto;
    content: "";
    display: block;
    background-image:url(../images/qa_q.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 49px;
    height: 49px;
    margin-right: 0;
    position: absolute;
    left: 0;
}
.qa_description{
	display: block;
    padding-left: 67px;
    position: relative;
	margin-left:0;
}
.qa_description::before {
    flex: 0 0 auto;
    content: "";
    display: block;
    background-image:url(../images/qa_a.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 49px;
    height: 49px;
    margin-right: 0;
    position: absolute;
    left: 0;
}
@media (max-width: 768px) {
	.qa{
		padding: 20px 10px;
	}
	.qa_heading::before,
	.qa_description::before {
		width: 35px;
		height: 35px;
	}
	.qa_heading,
	.qa_description{
		padding-left: 50px;
	}
}

.msg{
	width:90%;
	margin:auto;
	text-indent: 1em;
}