@charset "UTF-8";
/******************** CSS RESET ********************/
*, *::before, *::after {
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	background: #fff;
}
address {
	font-style: normal;
}
input:not([type="radio"]):not([type="checkbox"]), button, textarea {
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	border-radius: 4px 0 0 4px;
	-webkit-appearance: none;
}
input[type="radio"]{
	margin-top: 0;
	padding-top: 0;
}
input,
label{
	vertical-align: middle;
}
legend{
	width: 100%;
}
/******************** 共通設定 ********************/
html{
	scroll-padding-top: 97px;
	overflow: auto;
	scroll-behavior: smooth;
}
body {
	font-family: "UD新ゴ R","UD Shin Go Regular",arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
	letter-spacing: 0.1em;
	color: #333;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-overflow-scrolling: touch;
}
	@media print, screen and (min-width: 1025px) and (max-width: 1000px) {
		body{
			width: 1000px;
		}
	}
	@media (min-width: 1025px) {
		body{
			position: static !important;
			width: 100% !important;
		}
	}
	@media (max-width: 1024px){
		html{
			scroll-padding-top: 0;
		}
	}
/**** テキスト ****/
p, li {
	margin-top: 12px;
}
.small {
	font-size: 85%;
}
strong{
	color: #900;
}
/**** リンク ****/
a:link {
	text-decoration: underline;
	color: #2b3095;
}
a:visited {
	text-decoration: underline;
	color: #791e78;
}
a:hover {
	text-decoration: none;
	color: #9f0000;
}
a:active {
	text-decoration: none;
	color: #9f0000;
}
.link_white:link {
	text-decoration: underline;
	color: #fff;
}
.link_white:visited {
	text-decoration: underline;
	color: #eee;
}
.link_white:hover {
	text-decoration: underline;
	color: #ffff00;
}
.link_white:active {
	text-decoration: underline;
	color: #ffff00;
}
a:link > strong{
	color: #2b3095;
}
a:visited > strong {
	text-decoration: underline;
	color: #791e78;
}
a:hover > strong {
	text-decoration: none;
	color: #9f0000;
}
a:active > strong {
	text-decoration: none;
	color: #9f0000;
}

/**** 別ウィンドウで開く ****/
.window {
	display: inline-block;
	font-size: 62.5%;
	font-weight: normal;
	background: #F0E6B4;
	color: #333;
	border-radius: 4px;
	padding: 1px 4px;
	margin: 0 4px;
	border: 1px solid #E9AB3D;
	vertical-align: text-bottom;
	word-wrap: break-word;
}
h2 .window{
	font-size:56.25%;
}
.main_naka h2 .window{
	font-size: 49%;
}
/**** 本文へ_スキップ用リンク ****/
.skip {
	position: relative;
	text-align: center;
	width: 100%;
	margin: 0;
}
.skip a {
	background-color: #fff;
	width: 1px;
	font-size: 0.1%;
	line-height: 0.1;
	position: absolute;
	top: auto;
	left: -3000px;
	z-index: 9999;
	padding: 4px 0;
}
.skip a:active, .skip a:focus {
	display: block;
	width: 100%;
	margin: 0 auto;
	font-size: 100%;
	left: 0;
	right: 0;
	top: 0;
	line-height: 1.5;
}

/**** フォーム ****/
#body input, header button, #main_outline button, footer button, #body textarea {
	background: #fff;
	border: 1px solid #999;
	font-size: 85%;
}
/* text,textarea */
#body input[type="text"], #body textarea ,#body input[type="password"] {
	font-family: "UD新ゴ R","UD Shin Go Regular",arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: #fffa;
	padding: 8px 6px;
}
/* select */
#body select[size], #body select[multiple], #body select[size][multiple] {
	padding: 6px;
}
/* submit,reset,button */
#body input[type="submit"], #body input[type="reset"],header button[type="button"],#main_outline button[type="button"],footer button[type="button"], header button, #main_outline button, footer button {
	background: #333;
	border-radius: 6px;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	padding: 16px 10px;
	border: 1px solid #333;
	transition: all 0.3s;
	color: #fff;
	width: 50px;
	height: 100%;
	min-height: 50px;
}
#body input[type="submit"]:hover, #body input[type="reset"]:hover,header button[type="button"]:hover,#main_outline button[type="button"]:hover,footer button[type="button"]:hover, header button:hover, #main_outline button:hover, footer button:hover {
	background: #444;
	border: 1px solid #444;
}
/**** 見出し等のフォント ****/
h1,h2,h3,h4,h5,h6,strong,th,em,b{
	font-family: "UD新ゴ DB","UD Shin Go DemiBold";
}
/**** その他 ****/
.anchor, .notit {
	display: block;
	height: 1px;
	margin-top: -1px;
}
.date {
	font-size: 85%;
	color: #555;
	display: inline-block;
	margin-left: 12px;
}
.noscript {
	font-size: 85%;
	color: #a90000;
}
.none {
	display: none;
}
/******************** レイアウトCSS ********************/

/********************************************
2カラムの場合ここにliguid.cssをの中身をコピーして、
liguid.cssは削除する
********************************************/

.all{
	background: #F6F7F0;
}
.design{
	clear: both;
	position: relative;
}
.sub .design{
	background: url("../css/img/kan_bg.png");
}
.inner{
	max-width: 1224px;
	margin: 0 auto;
	padding: 0 12px 24px;
	position: relative;
}
.zone01_in,
.zone02_in,
.zone03_in,
.zone04_in{
	padding: 0 12px;
}

@media only screen and (max-width: 1024px) {
	.zone01 {
		float: none;
		width: 100%;
	}
	.zone02 {
		float: none;
		width: 100%;
	}
}
/********************** ヘッダー **********************/
.main_header {
	background: #F6F7F0;
	width: 100%;
}
.head{
	position: relative;
}
	@media only screen and (max-width: 1024px) {
		.main_header{
			overflow: hidden;
			margin-bottom: -4px;
		}
	}
/**** ヘッダー上段リンク ****/
.h_top {
	max-width: 1224px;
	width: 100%;
	margin: 0 auto;
	padding: 5px 12px 0;
	display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	font-size: 75%;
}
.h_top .mainsite{
	margin: 8px 0 auto;
	padding: 0 20px;
	position: relative;
}
.h_top .mainsite::before{
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	top: calc(50% - 4px);
	left: 5px;
	border-top: 1px solid #707070;
	border-right: 1px solid #707070;
	transform: rotate(45deg);
}
.h_top .mainsite a{
	letter-spacing: 0;
}
.h_top .h_toplist01 {
	display: flex;
		align-items: center;
	margin: 4px auto 4px 0;
}
.h_top .h_toplist {
	display: flex;
		align-items: center;
		justify-content: flex-end;
	margin: 3% 0 0 auto;
}
.h_top_in01 p, .h_top_in02 p{
	margin-top: 8px;
}
.h_top_in01 p:last-of-type, .h_top_in02 p:last-of-type {
  margin-bottom: 8px;
}
.easy_btn{
	margin-top: 0;
}
.easy_btn a {
  padding: 4px 6px;
  display: inline-block;
  background-color: #fff;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 20px;
  border: 1px solid #ccc;
}
.h_top_in01 p a, .h_top_in02 p a {
  max-width: 123px;
  width: 100%;
  text-align: center;
}
.h_top_in01 p a:hover, .h_top_in02 p a:hover{
	background: #efefef;
	transition: all 0.2s;
}
	@media only screen and (max-width: 1024px) {
		.h_top_wrap{
			display: none;
		}
	}
/* 色の反転 */
.bg_color{
	display: flex;
	align-items: center;
	margin-right:16px;
}
.bg_tit{
	padding: 0;
	margin: 0 6px 0 0;
}
.bg_list{
	display: flex;
	align-items: center;
}
.bg_list li{
	padding: 0;
	margin: 0 0 0 4px;
}
.bg_list li a{
	display: block;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	text-decoration: none;
	padding: 0 4px;
}
.bg_list li:last-child a{
	background: #000;
}
.bg_list li:last-child a > strong{
	color: #fff;
}

/* フォントサイズ */
.font_size, .font_tit, .font, .font_list, .font_list li {
	float: left;
}
.font_size {
	display: flex;
	align-items: center;
	margin-left: 20px;
}
.font_tit {
	margin: 0 6px 0 0;
}
.font_list {
  display: flex;
  align-items: center;
}
.font_list li {
	margin: 0;
}
.font_list li a{
	background: #fff;
	color: #333;
	display: inline-block;
	text-decoration: none;
	padding: 4px 6px;
	border: 1px solid #ccc;
	border-radius: 4px 0 0 4px;
}
.font_list li:last-of-type a{
	border-radius: 0 4px 4px 0;
	border-left: 0;
	background: #EBEBEB;
}
.font_list li a strong{
	line-height: 0;
}
/**** ヘッダーメイン ****/
.h_top_wrap{
	position: absolute;
	width: 100%;
	z-index: 10;
}
.head_id {
	max-width: 1224px;
	width: 100%;
	margin: 0 auto;
	padding: 2em 12px 0;
}
.h_main {
	display: flex;
		align-items: center;
	padding: 0 0 18px;
	position: relative;
}
.h_main .h1 {
	margin: 0;
	padding-left: 9.5px;
}
.h_main .h1 img{
	position: relative;
	max-width: 429px;
}
.h_main ul:first-of-type{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 0 0 12px auto;
	width: 100%;
}
.h_main li{
	margin: 0;
}
.h_main li:last-of-type{
	width: 45%;
}
.h_main .easy_btn a{
	display: block;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	text-decoration: none;
	padding: 1px 10px;
	letter-spacing: 0;
}
.h_main .mainsite {
	margin: 0;
}
.h_main .mainsite a {
	display: block;
	border: 1px solid #ccc;
	background: #444;
	color: #fff;
	font-size: 85%;
	padding: 3px 10px 2px;
	text-decoration: none;
	border-radius: 4px;
}
.h_main .mainsite li a:hover{
	background: #555;
}
	@media only screen and (max-width: 1024px) {
		.head_id{
			padding: 0;
			width: 100%;
		}
		.h_main{
			padding: 8px 70px 20px 12px;
			position: relative;
			z-index: 1;
		}
		.h_main .h1 {
			width: 240px;
			padding: 0;
		}
		.h_main .h1 img{
			top: 0;
			max-width: 100%;
		}
		.h_main .mainsite{
			display: none;
		}
		.h_main ul:first-of-type{
			display: none;
		}
	}

/* 言語選択 */
.language{
	position: relative;
	margin-left: 20px;
}
.lang_btn{
	margin: 0;
}
.lang_btn a{
	display: inline-block;
	padding: 4px 10px;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #ccc;
	text-decoration: none;
	transition: all 0.2s;
}
.lang_btn a:hover{
	background: #efefef;
	transition: all 0.2s;
}
.language > div{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	border-top: 0;
	border-bottom: 0;
	width: 100%;
	z-index: 100;
}
.lang_list{
	background: #fff;
	border: 1px dotted #888;
	border-bottom: none;
}
.lang_list li{
	border-bottom: 1px dotted #888;
	padding: 0;
	margin: 0;
}
.lang_list li a{
	display: inline-block;
	padding: 8px 0;
	text-align: center;
	width: 100%;
	text-decoration: none;
}
.language .lang_btn.close{
	margin: 0;
}
.lang_btn.close a{
	padding: 2px 6px 2px 20px;
	position: relative;
	border-radius: 0 0 4px 4px;
	border: none;
	border-bottom: 1px dotted #888;
	text-align: center;
}
.lang_btn.close a::before,
.lang_btn.close a::after {
	content: '';
	background: #3B4043;
	height: 1px;
	width: 12px;
	position: absolute;
	left: 5px;
	top: 50%;
	margin-top: 0;
	transform: rotate(-45deg);
}
.lang_btn.close a::after{
	transform: rotate(45deg);
}

/* 検索ボックス */
.head .src_wrap{
	margin: 0 auto;
	max-width: 1224px;
	padding: 0 12px;
	width: 100%;
	position: relative;
}
.head .src_box {
	position: absolute;
	top: 100%;
	margin: 24px auto;
	right: 12px;
	width: 345px;
}	
.src_box .q {
	float: left;
	width: calc(100% - 70px) !important;
	margin: 0;
	height: 36px !important;
	padding: 0 6px!important;
	border: 1px solid #ccc!important;
	border-right: none;
	border-radius: 4px 0 0 4px !important;
}
.head .src_box #search_button,
.src_box #search_button_sp {
	width: 70px;
	min-height: 36px;
	margin: 0;
	padding: 0 12px;
	background: #EBEBEB;
	font-size: 80%;
	cursor: pointer;
	border: 1px solid #ccc;
	border-left: none;
	white-space: normal;
	border-radius: 0 4px 4px 0;
	display: block;
	position: relative;
	color: #2b3095;
	height: 36px;
	text-align: center;
}
.head .src_box #search_button:hover,
.src_box #search_button_sp:hover{
	background: #ddd;
}
	@media only screen and (max-width: 1024px) {
		.head .src_wrap{
			display: none;
		}
		.head .src_box #search_button,.src_box #search_button_sp{
			padding: 0 15px;
			text-align: center;
		}
	}
/**** グローバルナビ ****/
.g_navi {
	background: #F0E6B4;
	letter-spacing: 0.1em;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.g_navi_in {
	max-width: 1224px;
	width: 100%;
	margin: 0 auto;
	padding: 0 12px;
	display: flex;
}
.g_navi_in > li {
	width: 25%;
	margin: 0;
	display: flex;
	position: relative;
	padding: 17px 6px;
}
.g_navi_in > li::before{
	content: "";
	position: absolute;
	top: calc(50% - 12px);
	right: 0;
	width: 1px;
	height: 24px;
	background: #707070;
	z-index: 5;
}
.g_navi_in > li:first-of-type::after{
	content: "";
	position: absolute;
	top: calc(50% - 12px);
	left: 0;
	width: 1px;
	height: 24px;
	background: #707070;
	z-index: 5;
}
.g_navi_in > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	background: #F0E6B4;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	padding: 0;
	width: 100%;
	transition: all 0.3s;
	color: #333;
}
.g_navi_in > li > a:hover, .g_navi_in > li.active > a {
	background-color: #fff;
}
.g_navi_in li span{
	display: block;
}
	@media only screen and (max-width: 1024px) {
		.g_navi{
			display: none;
		}
	}
/* 追従メニュー */
.clone-nav {
	background: rgba(255,255,255,0.9);
	position: fixed !important;
	left: 0;
	top: 0;
	max-width: 100%;
	width: 100%;
	transition: .4s;
	transform: translateY(-170%);
	z-index: 9999;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.is-show {
  transform: translateY(0);
}
.clone-nav .h_top_wrap{
	display: none;
}
.clone-nav .head_id{
	padding: 0 12px;
	position: relative;
}
.clone-nav .h_main{
	position: absolute;
	padding: 0;
	top: 0;
	left: 12px;
}
.clone-nav .h1{
	flex-shrink: 0;
	z-index: 100;
	padding: 4px 10px 7px;
}
.clone-nav .h1 img{
	width: 200px;
}
.clone-nav .h_main ul:first-of-type{
	display: none;
}
.clone-nav .h1 .go_home{
	display: none;
}
.clone-nav .h_shien{
	font-size: 90%;
}
.clone-nav .g_navi{
	background: #F6F7F0;
}
.clone-nav .g_navi_in{
	padding-left: 244px;
}
.clone-nav .g_navi_in > li a{
	font-size: 90%;
	letter-spacing: 0;
	background: #F6F7F0;
}
.clone-nav .g_navi_in > li a:hover, .clone-nav .g_navi_in > li.active > a{
	background: #F0E6B4;
}
.clone-nav .src_wrap{
	display: none;
}
.clone-nav .src_box .q,
.clone-nav .head_id .src_box #search_button{
	height: 32px;
	vertical-align: top;
}
.clone-nav:focus-within{
	transform: translateY(0);
}
	@media only screen and (max-width: 998px) {
		.clone-nav-in{
			flex-wrap: wrap;
			padding: 10px 0 0;
		}
		.clone-nav .h1{
			padding: 0 12px 10px;
			width: auto;
		}
		.clone-nav .h1 img{
			width: 250px;
		}
		.clone-nav .g_navi_in{
			width: 100%;
		}
	}
	@media only screen and (max-width: 1024px) {
		.clone-nav {
			display: none;
		}
	}
/**** スマホメニューに関するスタイル ****/
#menu_button{
	position: fixed;
	top: 0;
	right: 12px;
	margin-top: 18px;
	z-index: 200;
}
#menu_button a{
	position: relative;
	background: #333;
	border-radius: 4px;
	font-size: 70%;
	display: inline-block;
	text-decoration: none;
	letter-spacing: -0.5px;
	text-align: center;
	padding-top: 34px;
	min-height: 54px;
	width: 54px;
	z-index: 2;
	transition: all 0.3s;
}
#menu_button a strong{
	color: #fff;
}
#menu_button a .icon_ham{
	position: absolute;
	top: 10px;
	left: 50%;
	margin-left: -15px;
	display: inline-block;
	background: #F0E6B4;
	height: 3px;
	width: 30px;
}
#menu_button a .icon_ham:before,
#menu_button a .icon_ham:after{
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -15px;
	background: #F0E6B4;
	height: 3px;
	width: 30px;
}
#menu_button a .icon_ham:before{
	top: 8px;
}
#menu_button a .icon_ham:after{
	top: 16px;
}
	@media print, screen and (min-width: 1025px) {
		#menu_button,
		#lan_drop{
			display: none !important;
		}
	}
#sidr {
	position: fixed;
	top: 0;
	height: 100%;
	z-index: 9999;
	width: 300px;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: 100%;
	background: #fff;
	border-left: 3px solid #333;
	box-sizing: border-box;
	color: #333;
}
	@media print, screen and (min-width: 1025px) {
		#sidr {
			display: none !important;
		}
	}
#sidr .sidr-inner {
  padding: 0 0 15px;
}
.sidr.right {
  left: auto;
  right: -300px;
}
#sidr .close{
	text-align: left;
	position: relative;
	padding: 0;
	margin: 0;
}
#sidr .close a{
	background: #333;
	display: inline-block;
	color: #fff;
	padding: 14px 10px 14px 32px;
	position: relative;
	width: 100%;
}
#sidr .close a:before,
#sidr .close a:after{
	content: '';
	background: #F0E6B4;
	height: 2px;
	width: 16px;
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: 0;
	transform: rotate(-45deg);
}
#sidr .close a:after{
	transform: rotate(45deg);
}
#sidr .src_box{
	padding: 10px;
	border-bottom: 1px solid #707070;
}
#sidr ul {
	display: block;
	border-bottom: 1px solid #707070;
	margin: 0;
	padding: 0;
}
#sidr ul li {
	background: none;
	border-bottom: 1px dashed #ccc;
	display: block;
	text-align: left;
	margin: 0;
	padding: 0;
	position: relative;
}
#sidr ul li::before{
	content: '';
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -4px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	transform: rotate(45deg);
}
#sidr ul li:nth-last-child(2), #sidr ul li:last-child{
	border-bottom: none;
}
#sidr ul li a{
	display: inline-block;
	padding: 12px 24px 12px 12px;
	text-decoration: none;
	width: 100%;
}
#sidr ul li.mainsite{
	background: #F0E6B4;
	font-size: 85%;
}
#sidr ul.sidr_navi_sub{
	display: block;
	background: #F6F7F0;
}
#sidr ul.sidr_navi_sub li{
	border-bottom: 1px dashed #ccc;
	font-size: 85%;
	width: 100%;
}
#sidr ul.sidr_navi_sub li a{
	letter-spacing: -0.01em;
}
#sidr ul.sidr_navi_sub li:last-child{
	border: 0;
}
/**** 支援機能 ****/
#sidr .side_shien{
	background: transparent;
}
#sidr ul.sidr_navi02{
	border-bottom: 0;
	padding: 10px 10px 4px;
	display: flex;
		flex-wrap: wrap;
	background: #F6F7F0;
}
#sidr ul.sidr_navi02 li{
	border: 0;
	margin-right: 2%;
	margin-bottom: 6px;
	width: 49%;
}
#sidr ul.sidr_navi02 li:nth-of-type(2n){
	margin-right: 0;
}
#sidr ul.sidr_navi02 li::before{
	display: none;
}
#sidr ul.sidr_navi02 li a{
	display: inline-block;
	background: #fff;
	border: 1px solid #bbb;
	border-radius: 4px;
	font-size: 70%;
	letter-spacing: -0.01em;
	padding: 6px 2px;
	text-align: center;
}
#sidr ul.sidr_navi03{
	display: flex;
	border-top: 1px solid #bbb;
}
#sidr ul.sidr_navi03 li{
	border-bottom: 0;
	font-size: 85%;
	width: 50%;
}
#sidr ul.sidr_navi03 li:nth-child(odd){
	border-right: 1px solid #bbb;
}
/*********** フッター ***********/
.main_footer {
	overflow: hidden;
	width: 100%;
}
	@media only screen and (max-width: 1024px) {
		.main_footer {
			min-width: 100%;
		}
	}
/**** マイページのスタイル ****/
.online_strage_a {
	padding-bottom: 24px;
}
.online_strage_a .mypage {
	max-width: 1224px;
	width: 100%;
	margin: 0 auto;
	padding: 0 12px;
}
.online_strage_a .mypage_h2_wrapper {
	background-color: #88c9ea;
	padding-left: 16px;
	position: relative;
}
.online_strage_a .mypage_title {
	float: left;
	color: #fff;
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: -1;
}
.online_strage_a .mypage_h2_wrapper p {
	float: right;
}
.online_strage_a .mypage_contents {
	background-color: #e8f4f9;
	padding: 4px 16px 16px;
}
.online_strage_a .mypage_list li {
	display: inline-block;
	font-size: 85%;
	margin-right: 8px;
}
.online_strage_a .mypage_list li p.online_strage_title {
	background: #fff;
	border: 1px solid #ccc;
	padding: 2px 8px;
	margin: 0;
	border-radius: 4px;
}
.online_strage_a .online_strage button {
	background: #fff;
	color: #333;
	font-size: 68.75%;
	padding: 2px 4px;
	margin: 12px 8px 12px 0;
	vertical-align: bottom;
}
#body .online_strage_a .online_strage button[type="button"]{
	background: #fff;
	color: #2b3095;
	font-size: 75%;
	padding: 4px 6px;
}
#body .online_strage_a .online_strage button[type="button"]:hover{
	background: #efefef;
	color: #9f0000;
}
	@media only screen and (max-width: 1024px) {
		.online_strage_a{
			padding: 0 10px 24px;
		}
		.online_strage_a .mypage{
			width: 100%;
		}
	}
/**** トップへ戻る ****/
.foot_modori {
	margin-top: 56px;
}
.foot_modori .modoriin {
	max-width: 1224px;
	width: 100%;
	margin: 0 auto;
	padding: 0 12px 20px;
	text-align: right;
}
.foot_modori a {
	display: inline-block;
	text-decoration: none;
	background: #333;
	border: 1px solid #333;
	line-height: 1;
	padding: 33px 17px 17px;
	border-radius: 6px;
	color: #fff;
	letter-spacing: 0;
	position: relative;
	transition: all 0.3s;
}
.foot_modori a::before{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 14px;
	left: calc(50% - 5px);
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: rotate(45deg);
}
.foot_modori a:hover{
	background: #444;
}

	@media only screen and (max-width: 1024px) {
		.foot_modori{
			padding: 0 10px;
		}
		.foot_modori .modoriin {
			width: 100%;
		}
	}
	@media only screen and (max-width: 480px) {
		.foot_modori a{
			font-size: 88%;
		}
	}
/**** メインフッター ****/
.foot_wrap {
	background: #F6F7F0;
	padding: 0;
}
.foot {
	max-width: 1224px;
	width: 100%;
	margin: 0 auto;
	padding: 28px 12px 34px;
	display: flex;
}
.foot_main{
	width: calc(100% - 506px);
}
.foot_main .foot_sub_link{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.foot_main .foot_sub_link a{
	position: relative;
	padding: 0 30px;
	border-right: 1px solid #707070;
	letter-spacing: 0;
	font-size: 85%;
}
.foot_main .foot_sub_link li:first-of-type a{
	border-left: 1px solid #707070;
}
.foot_in{
	margin-top: 16px;
}
.foot .address {
	margin-top: 8px;
	font-size: 85%;
}
.foot .address .foot_id{
	display: inline-block;
	max-width: 380px;
	width: 100%;
	margin-bottom: 16px;
}
.foot .address .small{
	font-size: 100%;
	line-height: 1.77;
}
.foot .address a[href^="tel:"]{
	cursor: default;
	color: #222;
	text-decoration: none;
}
.udfonts {
  width: 140px;
  border: 1px solid #726416;
  margin-top: 28px;
}
.foot_sns ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 0;
}
.foot_sns ul li {
	margin: 30px 8px 0 0;
	width: calc(33.3% - 8px);
	max-width: 140px;
}
.foot_sns ul li a {
	border-radius: 6px;
	text-decoration: none;
	display: block;height: 100%;
	padding: 20px;
	text-align: center;
	transition: 0.2s;
	word-break: break-all;
}
.foot_sns ul li a:hover {
  background: rgba(255, 255, 255, 0.5);
}
.foot_sns ul li a img {
	width: 40px;
	margin-top: 10px;
}
.foot_sns ul li a span {
	margin-top: 20px;
	display: block;
}
.foot_sub{
	display: flex;
	width: 506px;
	padding-top: 89px;
}
.foot_img_link{
	width: 39.5%;
	text-align: center;
}
.foot_img_link img{
	display: block;
	border-radius: 6px;
	margin-bottom: 10px;
}
.foot_img_link span:last-of-type{
	display: inline-block;
	background: #EBEBEB;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 0 5px;
	font-size: 75%;
	word-wrap: break-word;
	margin-left: 5px;
	margin-top: 5px;
	vertical-align: text-bottom;
}
.foot_map {
  margin-left: 48px;
  width: calc(60.5% - 48px);
}
.foot_map img {
  border-radius: 6px;
}
.foot_link{
	background: #fff;
	text-align: center;
	padding: 16px 12px;
}
.foot_link li {
	padding: 0;
	display: inline-block;
	position: relative;
	margin: 0 20px;
	padding-left: 20px;
	letter-spacing: 0;
	font-size: 85%;
}
.foot_link li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: 0;
	width: 8px;
	height: 8px;
	border-right: 1px solid #707070;
	border-bottom: 1px solid #707070;
	transform: rotate(-45deg);
}
.foot_copy {
	font-size: 85%;
	padding: 11px 12px;
	text-align: center;
	letter-spacing: 0.05em;
}
.foot_copyin {
	width: 1000px;
	margin: 0 auto;
}
	@media only screen and (max-width: 1024px) {
		.foot {
			padding: 10px 12px;
			width: 100%;
		}
		.foot_main{
			width: 60%;
		}
		.foot_main .foot_sub_link a {
			font-size: 85%;
			padding: 0 20px;
		}
		.foot .address .foot_id{
			max-width: 240px;
		}
		.foot .address a[href^="tel:"]{
			cursor: pointer;
			color: #2b3095;
			text-decoration: underline;
		}
		.foot_sub{
			display: block;
			width: 40%;
		}
		.foot_img_link {
			width: 100%;
			max-width: 200px;
			margin-left: auto;
		}
		.foot_map{
			display: none;
		}
		.foot_link li {
			font-size: 85%;
		}
		.foot_copyin{
			padding: 0 10px;
			width: 100%;
		}
	}
	@media only screen and (max-width: 768px) {
		.foot{
			display: block;
			padding-bottom: 24px;
		}
		.foot_main{
			width: 100%;
		}
		.foot_sub{
			width: 100%;
			padding-top: 24px;
		}
		.foot_img_link {
			width: 100%;
			max-width: 150px;
			margin-left: 0;
		}
		.foot_link li {
			text-align: left;
			margin: 16px 0 0;
			width: 50%;
		}
		.foot_link li:first-of-type, .foot_link li:nth-of-type(2){
			margin-top: 0;
		}
	}
	@media only screen and (max-width: 480px){
		.foot_sns ul li{
			margin-top: 8px;
		}
		.foot_sns ul li a{
			padding: 12px 10px 20px;
			font-size: 85%;
		}
	}
	@media only screen and (max-width: 420px){
		.foot .address .fax{
			display: block;
		}
	}
/**** アコーディオンのスタイル ****/
.ac_display{
	display: none;
}
@media print, screen and (min-width: 1025px) {
	.ac_box{
		pointer-events: none !important;
	}
	.ac_box + div{
		display: block !important;
	}
}
@media only screen and (max-width: 1024px) {
	.ac_box h2{
		padding-right: 72px;
	}
	.ac_display{
		display: inline-block;
		position: absolute;
		top: 50%;
		margin: -14px 0 0;
		right: 12px;
		font-size: 72%;
		background: #fff;
		border: 1px solid #ccc;
		z-index: 100;
	}
	.ac_display a{
		display: inline-block;
		position: relative;
		text-decoration: none;
		padding: 4px 4px 4px 18px;
	}
	.ac_display::before,
	.ac_display::after{
		content: '';
		background: #555;
		position: absolute;
		left: 4px;
		top: 11px;
		height: 2px;
		width: 10px;
	}
	.ac_display::after{
		transform: rotate(90deg);
	}
	.ac_box + div{
		display: none;
	}
	.ac_box{
		position: relative;
		width: 100%;
		overflow: hidden;
	}
	.ac_box.active p::after{
		display: none;
	}
}
/**** RSSアイコンのスタイル ****/
a.rss_icon,
a.rss_icon2{
	background: #FF8F21;
	display: inline-block;
	color: #fff;
	text-decoration: none;
	text-shadow: 1px 1px 1px #b45c00,-1px 1px 1px #b45c00,1px -1px 1px #b45c00,-1px -1px 1px #b45c00,1px 0 1px #b45c00,0px 1px 1px #b45c00,-1px 0 1px #b45c00,0 -1px 1px #b45c00;
	padding: 5px 5px 5px 7px;
	line-height: 1.1;
	position: relative;
	vertical-align: middle;
}
a.rss_icon{
	font-size: 90%;
}
a.rss_icon2{
	font-size: 68.75%;
	padding: 3px 28px 1px 6px;
}
a.rss_icon2 span{
	display: block;
}
a.rss_icon img{
	margin-left: 4px;
	margin-top: -3px;
	height: auto;
	width: 16px;
	vertical-align: middle;
}
a.rss_icon2 img{
	position: absolute;
	top: 50%;
	margin-top: -9px;
	right: 6px;
	height: auto;
	width: 16px;
	vertical-align: middle;
}






