@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/earlyaccess/sawarabimincho.css");
*{
	margin: 0;
	padding: 0;
} 
body {
	font-size: 16px;
	letter-spacing: 1px;
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
	word-wrap : break-word;
	overflow-wrap : break-word;
}
img{
	vertical-align:bottom;
	width: 100%;
	height: auto;
}
h1,h2,h3,h4,h5{
	font-size:100%;
	font-weight: normal; 
}
ul,ol{
	list-style-type: none;
}
a{
	text-decoration: none;
}
address{
	font-style: normal;
}

/* ----- other ----- */
.red{
	color: red;
}
.square_img{
	position: relative;
	overflow: hidden;
}
.square_img img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.normal_img{
	text-align: center;
}
.clearfix::after{
	clear:both;
	content:".";
	visibility:hidden;
	display:block;
	height:0;
}
.inline_b{
	display: inline-block;
}
.table{
	display: table;
	width: 100%;
}
.table_cell{
	display: table-cell;
	vertical-align: middle;
}
.width_wrap{
	width: 100%;
	max-width: 1280px;
	min-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}
.pc_hide{
	display: none;
}
.sns_link{
	display: table-cell;
	vertical-align: middle;
	text-align: right;
}
.sns_link li{
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 10px;
	overflow: hidden;
	position: relative;
}
.sns_link li img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
footer #footer .sns_link{
	display: none;
}
.pager{
	text-align: center;
	margin-bottom: 50px;
}
.pager li{
	display: inline-block;
	margin: 0 10px;
}
.pager li a{
	display: block;
	padding: 10px 20px;
	transition: all 0.3s;
}
.pager li a:hover{
	opacity: 0.7;
}
.cate_list{
	text-align: center;
	margin-bottom: 50px;
}
.cate_list li{
	display: inline-block;
	vertical-align: middle;
}
.cate_list li::after{
	content: "/";
	margin: 10px;
	display: inline-block;
	vertical-align: middle;
}
.cate_list li:last-of-type::after{
	display: none;
}
.cate_list li a{
	display: inline-block;
	padding: 10px;
}
.font_20{
	font-size: 20px;
	letter-spacing: 2px;
}
.font_18{
	font-size: 18px;
	letter-spacing: 2px;
}
.font_16{
	font-size: 16px;
}
/*ページ共通部分*/
#wrap{
	position: relative;
	width: 100%;
	margin: 0 auto;
	min-width: 1000px;
	overflow: hidden;
}
header{
	margin-bottom: 50px;
	position: relative;
	min-width: 1000px;
}
header #header{
	display: table;
	padding-top: 20px;
}
header #header #logo{
	display: table-cell;
	width: 30%;
	padding: 0 20px;
	text-align: center;
	vertical-align: middle;
}
header #header #logo img{

}
header #main_menu{
	padding: 30px 0;
}
header #main_menu li{
	display: table-cell;
	text-align: center;
	width: 14%;
	padding: 0 10px;
	font-size: 14px;
	vertical-align: bottom;
}
header #main_menu li a{
	display: block;
	padding: 5%;
	-ms-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
header #main_menu li a:hover{
	transform: translate(0,-5px);
}
/*footer*/
footer{
	text-align: center;
}
footer #footer{
	padding: 30px;
	box-sizing: border-box;
}
footer #footer #footer_link{
	text-align: right;
}
footer #footer #footer_link li{
	display: inline-block;
}
footer #footer #footer_link li a{
	transition: all 0.3s;
}
footer #footer #footer_link li a:hover{
	opacity: 0.5;
}
footer #footer #footer_link li::after{
	content: "/";
	display: inline-block;
	margin: 0 10px;
}
footer #footer #footer_link li:last-of-type::after{
	display: none;
}
footer #footer #footer_logo{
	width: 25%;
	margin: 30px auto;
}
footer #footer #footer_txt{
	display: inline-block;
}
footer #footer #footer_cms{
	text-align: left;
}
footer #copyright{
	padding: 10px;
}
/*page title*/
#page_title{
	padding: 50px 0;
	margin-bottom: 50px;
}
#page_title h2{
	box-sizing: border-box;
	padding: 0 50px;
	font-size: 60px;
}
#page_title h2 span{
	display: inline-block;
	position: relative;
	line-height: 1.3;
}
#page_title h2 span::after{
	position: absolute;
	content: "";
	display: block;
	width: 80%;
	height: 3px;
	bottom: 0;
	left: 10%;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
/*page top*/
#page-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
	z-index: 99;
}
#page-top a{
	height: 80px;
	width: 80px;
	display: block;
	border-radius: 50%;
	overflow: hidden;
	background-image: url(../img/page-top.png);
	background-position: center 40%;
	background-repeat: no-repeat;
	background-size: 50%;
	box-shadow: 0 2px 4px rgba(0,0,0,0.5);
	transition: all 0.3s;
}
#page-top a:hover{
	opacity: 0.7;
}
/*drawer-menu*/
.drawer-hamburger{
	position: absolute;
	width: 32px;
	height: 32px;
	top: 50%!important;
	right: 20px!important;
	transform: translate(0,-50%)!important;
	background-color: none;
	z-index: 9998;
}
.drawer-nav{
	font-size: 14px;
}
.drawer-nav .drawer-menu{
	padding: 20px;
}
.drawer-nav .drawer-menu li{
	line-height: 1.8;
	margin-bottom: 20px;
	border-left: 3px solid;
	padding-left: 7px;
}
.drawer-nav .drawer-menu li a{
	letter-spacing: 3px;
}
/*テキスト未入力*/
.box_title:empty,.box_txt:empty,.cate_txt:empty,.sub_cate_title:empty,.sub_cate_txt:empty{
	display: none!important;
}
.box h3:empty,.box p:empty,.box h4:empty,.box h5:empty,.cate h3:empty,.cate p:empty,.cate h4:empty{
	display: none!important;
}
/*index.html*/
#main_img{
	width: 80%;
	max-width: 1000px;
	margin: 0 auto 50px;
	text-align: center;
}
#intro{
	text-align: center;
	margin: 150px auto;
}
#intro h2{
	display: inline-block;
	font-size: 36px;
	position: relative;
	line-height: 1.3;
	margin-bottom: 30px;
	text-align: left;
}
#intro h2::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	left: 0;
	bottom: 0;
}
#intro h2::after{
	content: "";
	position: absolute;
	width: 50%;
	height: 4px;
	left: 0;
	bottom: 0;
}
#intro p{
	text-align: left;
	width: 80%;
	margin: 0 auto;
}
#contents{}
#contents .contents_box{
	position: relative;
}
#contents .contents_box h3:empty,#contents .contents_box p:empty{
	display: none;
}
#contents .contents_box h3{
	display: inline-block;
	font-size: 20px;
	padding: 20px 30px;
}
#contents .contents_box p{
	width: 60%;
	margin: -30px 0 100px;
	margin-left: 10%;
	box-sizing: border-box;
	padding: 10%;
}
#contents .contents_box figure{
	width: 30%;
	position: absolute;
	top: 100px;
	right: 5%;
}
#contents .contents_box figure img{
	box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}
/*top cms*/
.top_cms{
	margin-bottom: 100px;
}
.top_cms .cms_wrap {
	text-align: center;
	padding: 50px 0;
}
.top_cms .cms_wrap .top_cms_title{
	font-size: 36px;
	display: inline-block;
	position: relative;
	margin-bottom: 50px;
	line-height: 1.3;
	text-align: left;
}
.top_cms .cms_wrap .top_cms_title::after{
	content: "";
	display: block;
	position: absolute;
	width: 60%;
	height: 3px;
	bottom: 0;
	left: 20%;
}
.top_cms .cms_wrap .top_cms_box{
	width: 80%;
	margin: 0 auto;
	box-sizing: border-box;
	text-align: left;
	padding: 3%;
	border: 2px solid;
	margin-bottom: 50px;
}
.top_cms .cms_wrap .more a{
	display: inline-block;
	position: relative;
	font-size: 20px;
	transition: all 0.3s;
}
.top_cms .cms_wrap .more a::after{
	display: block;
	content: "";
	width: 80%;
	position: absolute;
	height: 2px;
	bottom: 0;
	left: 10%;
}
.top_cms .cms_wrap .more a:hover{
	opacity: 0.5;
}
.top_cms .cms_wrap h2:empty,.top_cms .cms_wrap h3:empty,.top_cms .cms_wrap p:empty{
	display: none!important;
}
/*top cms page2*/
.page2_cms .box{
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid;
}
.page2_cms .box:last-of-type{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.page2_cms .box a{
	width: 100%;
	transition: all 0.3s;
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content:left;
    align-items:flex-start;
}
.page2_cms .box a:hover{
	opacity: 0.5;
}
.page2_cms .box figure{
	width: 10%;
	vertical-align: middle;
	position: relative;
}
.page2_cms .box figure img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.page2_cms .box div{
	width: 90%;
	box-sizing: border-box;
	padding: 2% 5%;
	vertical-align: middle;
}
.page2_cms .box div .date{
	letter-spacing: 10px;
	font-size: 14px;
}
/*top cms page3*/
.page3_cms .box figure{
	margin-bottom: 20px;
}
.page3_cms .box h3{
	margin-bottom: 20px;
	font-size: 18px;
}
/*top cms page4*/
.page4_cms .box{
	width: 33.333%;
	float: left;
	box-sizing: border-box;
	padding: 2%;
}
.page4_cms .box a{
	transition: all 0.3s;
	display: block;
}
.page4_cms .box a:hover{
	opacity: 0.7;
}
.page4_cms .box figure{
	margin-bottom: 10px;
}
/*top cms page5*/
.page5_cms .box{
	padding: 0 10%;
}
.page5_cms .box:first-of-type{
	border-bottom: 1px solid;
}
.page5_cms .box a{
	display: table;
	width: 100%;
	padding: 30px 0;
}
.page5_cms .box a .box_img,.page5_cms .box a .arrow{
	display: table-cell;
	width: 33.333%;
	vertical-align: middle;
	text-align: center;
}
.page5_cms .box a .box_img figure{
	margin: 0 10%;
}
.page5_cms .box a .arrow img{
	max-width: 120px;
}
/*top cms page6*/
.page6_cms .top_cms_box{
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
	justify-content: center;
	position: relative;
}
.page6_cms .box{
	width: 50%;
	box-sizing: border-box;
	padding: 20px 30px;
	text-align: center;
	vertical-align: top;
}
.page6_cms .box:nth-of-type(1),.page6_cms .box:nth-of-type(2){
	border-bottom: 1px solid;
}
.page6_cms .box:nth-of-type(1),.page6_cms .box:nth-of-type(3){
	border-right: 1px solid;
}
.page6_cms .box a{
	display: block;
	text-align: left;
}
.page6_cms .box h3{
	width: 100%;
}
.page6_cms .box p{
	width: 100%;
}
/*page2.html*/
#page2{}
#page2 .box_wrap{
	padding: 0 5%;
	box-sizing: border-box;
}
#page2 .box_wrap .box{
	width: 75%;
	margin: 0 auto 50px;
	padding-left: 5%;
	padding-bottom: 50px;
	border-bottom: 1px solid;
	border-left: 3px solid;
}
#page2 .box_wrap .box figure{
	width: 50%;
	text-align: left;
	margin-bottom: 30px;
}
#page2 .box_wrap .box .date{
	font-size: 14px;
	letter-spacing: 4px;
}
#page2 .box_wrap .box h3{
	font-size: 18px;
	letter-spacing: 2px;
	margin-top: 10px;
}
#page2 .box_wrap .box p{
	margin-top: 10px;
}
/*page3.html*/
#page3{}
#page3 .cate{
	margin: 0 5% 100px;
}
#page3 .cate .top_txt{
	display: table;
	width: 100%;
}
#page3 .cate .top_txt figure,#page3 .cate .txt_box{
	display: table-cell;
	width: 50%;
	max-width: 50%;
	padding: 3%;
	vertical-align: middle;
}
#page3 .cate .txt_box .cate_title{
	padding: 10px;
	border-top: 2px solid;
	border-bottom: 2px solid;
}
#page3 .cate .txt_box .cate_txt{
	padding: 10px;
}
#page3 .cate .box_wrap{
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
	justify-content: left;
}
#page3 .cate .box_wrap .box{
	width: 42%;
	margin: 2%;
	padding: 2%;
}
#page3 .cate .box_wrap .box .box_title{
	padding: 5px;
	padding-left: 30px;
	border-bottom: 1px solid;
	position: relative;
}
#page3 .cate .box_wrap .box .box_title::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	width: 10px;
	height: 10px;
	transform: translate(0,-5px);
	background-color: #fff;
	overflow: hidden;
}
#page3 .cate .box_wrap .box .box_txt{
	margin: 10px 10px 0;
}
/*page4.html*/
#page4{}
#page4 .cate{
	padding: 0 5%;
	margin-bottom: 100px;
}
#page4 .cate .top_txt{
	display: table;
	width: 100%;
	margin-bottom: 30px;
}
#page4 .cate .cate_title,#page4 .cate .cate_img{
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}
#page4 .cate .cate_title{
	display: table-cell;
	padding: 20px 10px;
	text-align: center;
}
#page4 .cate .cate_title span{
	display: inline-block;
	text-align: left;
}
#page4 .cate .sub_cate{
	margin-bottom: 50px;
}
#page4 .cate .sub_cate:last-of-type{
	margin-bottom: 0;
}
#page4 .cate .sub_cate .sub_cate_title{
	padding: 5px;
}
#page4 .cate .sub_cate .sub_cate_txt{
	margin: 10px;
	text-shadow: none;
}
#page4 .cate .sub_cate .box{
	width: 80%;
	margin: 30px auto 0;
	text-shadow: none;
}
#page4 .cate .sub_cate .box .table{
	border-bottom: 3px double;
}
#page4 .cate .sub_cate .box .table_cell{
	width: 50%;
}
#page4 .cate .sub_cate .box .table .box_title,#page4 .cate .sub_cate .box .table .box_txt{
	font-weight: bold;
}
#page4 .cate .sub_cate .box .box_title,#page4 .cate .sub_cate .box .box_txt{
	padding: 5px 10px;
}
/*page5.html*/
#page5{}
#page5 .cate{
	margin: 0 5% 100px;
}
#page5 .cate .cate_title{
	border-bottom: 2px solid;
	margin-bottom: 5px;
	font-weight: bold;
	padding: 0 10px;
}
#page5 .cate .cate_txt{
	padding: 10px;
}
#page5 .cate .box{
	width: 90%;
	padding: 2%;
	margin: 50px auto 0;
}
#page5 .cate .box .box_img_wrap{
	display: table;
	width: 100%;
	margin: 20px 0;
}
#page5 .cate .box .box_img_wrap .box_img2,#page5 .cate .box .box_img_wrap .arrow{
	display: table-cell;
	width: 33.333%;
	vertical-align: middle;
	text-align: center;
}
#page5 .cate .box .box_img_wrap .box_img2{
	padding: 10px 0;
}
#page5 .cate .box .box_img_wrap .arrow{
	padding: 10px;
}
#page5 .cate .box .box_img_wrap .arrow img{
	max-width: 120px;
}
/*page6.html*/
#page6{}
#page6 .box_wrap{
	padding: 0 5%;
}
#page6 .box{
	width: 70%;
	padding: 5%;
	margin-bottom: 50px;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}
#page6 .box:nth-of-type(even){
	margin-left: 20%;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}
#page6 .box hgroup{
	padding: 10px;
	text-shadow: none;
}
#page6 .box .box_title{
	font-weight: bold;
	margin-bottom: 10px;
}
#page6 .box .box_txt{
	margin: 0 10px;
	padding: 10px;
}
/*page7.html*/
#map iframe{
	width: 100%;
	height: 500px;
}
#page7{}
#page7 .box_wrap{
	width: 70%;
	margin: 50px auto;
}
#page7 .box_wrap .box{
	margin-bottom: 30px;
}
#page7 .box_wrap .box h3{
	display: inline-block;
	border-bottom: 1px solid;
	line-height: 1.3;
	letter-spacing: 10px;
	padding-left: 10px;
	margin-bottom: 10px;
}
/*page8.html*/
#page8{
	text-align: center;
	margin-bottom: 80px;
}
#page8 .top_txt{
	display: inline-block;
	text-align: left;
	padding: 10px 20px;
	margin-bottom: 30px;
}
#page8 #form_box{
	width: 70%;
	margin: 0 auto;
	padding: 0 5%;
}
#page8 #form_box > .box{
	margin-bottom: 30px;
	padding: 30px 10px;
	display: table;
	width: 100%;
	box-sizing: border-box;
	border-top: 1px solid;
	border-bottom: 1px solid;
}
#page8 #form_box .box h3{
	text-align: left;
	padding: 5px 10px;
	display: table-cell;
	width: 30%;
	vertical-align: middle;
}
#page8 #form_box .box p{
	display: table-cell;
	vertical-align: middle;
}
#page8 #form_box .box input[type="text"],#form_box .box textarea{
	width: 100%;
	padding: 5px 5px;
	box-sizing: border-box;
	border: none;
}
#page8 #form_box .box input::-webkit-input-placeholder,#page8 #form_box .box textarea::-webkit-input-placeholder{
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
#page8 #form_box .box input:-moz-placeholder,#page8 #form_box .box textarea:-moz-placeholder{
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
#page8 #form_box .box input::-moz-placeholder,#page8 #form_box .box textarea::-moz-placeholder{
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
#page8 #form_box .box input:-ms-input-placeholder,#page8 #form_box .box textarea:-ms-input-placeholder {
	font-family: "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
#page8 #form_box #form_bt{
	padding: 30px 0; 
}
#page8 #form_box #form_bt div{
	display: inline-block;
	width: 30%;
	height: 50px;
	margin: 0 5%;
	position: relative;
}
#page8 #form_box #form_bt div input{
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 99;
	top: 0;
	left: 0;
	padding: 15px;
	cursor: pointer;
	border: none;
	background-color: transparent;
	-ms-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-appearance: none;
}
#page8 #form_box #form_bt div::after{
	display: block;
	position: absolute;
	width: auto;
	height: 18px;
	font-size: 18px;
	letter-spacing: 3px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	line-height: 1;
	z-index: 98
}
#page8 #form_box #form_bt #submit::after{
	content: "送信";
}
#page8 #form_box #form_bt #reset::after{
	content: "クリア";
}
/*page9.html*/
#page9{
	margin-bottom: 80px;
}
#page9 .box_wrap{
	margin: 0 5%;
}
#page9 .box_wrap .top_txt{
	margin-bottom: 30px;
}
#page9 .box_wrap .box{
	margin-bottom: 20px;
}
#page9 .box_wrap .box h3{
	margin-bottom: 10px;
}
#page9 .box_wrap .box p{
	padding: 10px;
}
#page9 .box_wrap .box p a{
	display: inline-block;
	margin: 0 10px;
	border-bottom: 1px solid;
	transition: all 0.3s;
}
#page9 .box_wrap .box p a:hover{
	opacity: 0.7;
}
/*page10.html*/
#page10{
	margin-bottom: 50px;
}
#page10 .box_wrap{
}
#page10 .box_wrap ul{
	text-align: center;
}
#page10 .box_wrap ul li{
	display: inline-block;
	width: 30%;
	margin: 1%;
	box-sizing: border-box;
	transition: all 0.3s;
}
#page10 .box_wrap ul li:hover{
	transform: translate(0,-5px);
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
#page10 .box_wrap ul li a{
	display: block;
	padding: 20px 10px;
	color: #fff;
	overflow: hidden;
	position: relative;
}
#page10 .box_wrap ul li a::before,#page10 .box_wrap ul li a::after{
	content: "";
	position: absolute;
	transform: rotate(-45deg);
	height: 7px;
	width: 100px;
}
#page10 .box_wrap ul li a::before{
	top: 0px;
	left: -20px;
}
#page10 .box_wrap ul li a::after{
	bottom: 0px;
	right: -20px;
}
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 780px){
.width_wrap{
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
#wrap{
	min-width: 100%;
}
header{
	margin-bottom: 50px;
	min-width: 100%;
}
header #header{
	display: block;
	padding-top: 0;
}
header #header #logo{
	display: block;
	width: 30%;
	padding: 20px;
}
header #header #logo img{
	max-width: 200px;
}
header #main_menu{
	display: none;
}
header #header .sns_link{
	display: none;
}
/*footer*/
footer #footer{
	padding: 30px;
}
footer #footer #footer_link{
	display: none;
}
footer #footer #footer_logo{
	width: 30%;
	margin: 30px auto;
}
footer #footer .sns_link{
	display: block;
	text-align: center;
}
footer #footer #footer_cms{
	font-size: 14px;
}
footer #copyright{
	font-size: 14px;
}
/*page_top*/
#page-top {
    bottom: 30px;
    right: 10px;
}
#page-top a{
	height: 40px;
	width: 40px;
}
/*page title*/
#page_title{
	padding: 50px 0;
}
#page_title h2{
	font-size: 40px;
}
.font_20{
	font-size: 18px;
	letter-spacing: 2px;
}
.font_18{
	font-size: 16px;
	letter-spacing: 2px;
}
.font_16{
	font-size: 14px;
}

/*index.html*/
#main_img{
	width: 80%;
}
#intro{
	margin: 100px auto;
}
#intro h2{
	font-size: 40px;
}
#intro p{
	font-size: 14px;
}
#contents {
	margin-bottom: 100px;
}
#contents .contents_box{
	position: relative;
	width: 90%;
	margin: 0 auto 50px;
}
#contents .contents_box h3{
	font-size: 18px;
}
#contents .contents_box p{
	width: 80%;
	margin: -30px 0 30px;
	margin-left: 10%;
	box-sizing: border-box;
	padding: 40px 30px;
}
#contents .contents_box figure{
	width: 50%;
	position: static;
	margin: 0 auto;
}
/*top cms*/
.top_cms{
	margin-bottom: 80px;
}
.top_cms .cms_wrap {
	text-align: center;
	padding: 40px 0;
}
.top_cms .cms_wrap .top_cms_title{
	font-size: 40px;
	margin-bottom: 30px;
}
.top_cms .cms_wrap .top_cms_box{
	width: 90%;
	padding: 5%;
	margin-bottom: 30px;
}
/*top cms page2*/
.page2_cms .box figure{
	width: 30%;
}
.page2_cms .box div{
	width: 70%;
}
.page2_cms .box div{
	font-size: 14px;
}
/*top cms page3*/
.page3_cms .box figure{
}
.page3_cms .box h3{
	font-size: 16px;
}
.page3_cms .box p{
	font-size: 14px;
}
/*top cms page4*/
.page4_cms .box{
	font-size: 14px;
}
/*top cms page5*/
.page5_cms .box a .arrow img{
	max-width: 60px;
}
/*top cms page6*/
.page6_cms .box{
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 20px;
	border-bottom: 1px solid;
}
.page6_cms .box:nth-of-type(1),.page6_cms .box:nth-of-type(3){
	border-right: none;
}
.page6_cms .box:last-of-type{
	border-bottom: none;
}
.page6_cms .box p{
	font-size: 14px;
}
/*page2.html*/
#page2 .box_wrap .box{
	width: 85%;
}
/*page3.html*/
#page3{}
#page3 .cate .top_txt figure,#page3 .cate .txt_box{
	padding: 2%;
}
/*page8.html*/
#page8 #form_box{
	width: 90%;
	margin: 0 auto;
	padding: 0 5%;
}
}
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 700px){
.sp_hide{
	display: none;
}
.pc_hide{
	display: block;
}
/*page title*/
#page_title{
	padding: 30px 0;
	margin-bottom: 30px;
}
#page_title h2{
	padding: 0 20px;
	font-size: 20px;
	line-height: 1.5;
	text-align: center;
}
#page_title h2 span::after{
	height: 2px;
}
.pager{
	text-align: center;
	margin-bottom: 50px;
}
.pager li{
	display: none;
}
.pager li.prev,.pager li.next{
	display: inline-block;
}
.cate_list{
	text-align: center;
	margin-bottom: 50px;
}
.cate_list li{
	display: block;
	margin-bottom: 10px;
}
.cate_list li::after{
	display: none;
}
.cate_list li a{
	display: block;
}
footer #footer #footer_logo{
	width: 50%;
	margin: 30px auto;
}
/*index.html*/
#main_img{
	width: 100%;
}
#intro{
	margin: 80px auto;
}
#intro h2{
	font-size: 24px;
}
#intro p{
	width: 90%;
}
#contents {
	margin-bottom: 80px;
}
#contents .contents_box h3{
	font-size: 16px;
	padding: 10px;
}
#contents .contents_box p{
	width: 90%;
	padding: 40px 20px 20px;
	font-size: 14px;
}
#contents .contents_box figure{
	width: 70%;
	position: static;
	margin: 0 auto;
}
/*top cms*/
.top_cms .cms_wrap .top_cms_title{
	font-size: 20px;
	margin-bottom: 30px;
}
.top_cms .cms_wrap .top_cms_box{
	width: 90%;
	padding: 5%;
	margin-bottom: 30px;
}
/*top cms page2*/
.page2_cms .box figure{
	display: none;
}
.page2_cms .box div{
	width: 100%;
	display: block;
}
.page2_cms .box div{
	font-size: 14px;
}
/*top cms page3*/
.page3_cms .box figure{
	width: 80%;
	padding: 0;
	margin: 0 auto 20px;
}
/*top cms page4*/
.page4_cms .box{
	float: none;
	width: 90%;
	margin: 0 auto 20px;
}
.page4_cms .box:last-of-type{
	margin-bottom: 0;
}
.page4_cms .box figure{
	width: 80%;
	margin: 0 auto 10px ;
}
/*top cms page5*/
.page5_cms .box{
	padding: 0;
}
.page5_cms .box:first-of-type{
	border-bottom: 1px solid;
}
.page5_cms .box a{
	display: table;
	width: 100%;
	padding: 30px 0;
}
.page5_cms .box a .box_img{
	display: table-cell;
	width: 40%;
	vertical-align: middle;
	text-align: center;
}
.page5_cms .box a .arrow{
	width: 20%;
}
.page5_cms .box a .box_img figure{
	margin: 0;
}
.page5_cms .box a .arrow img{
	max-width: 30px;
}
/*page2.html*/
#page2 .box_wrap .box{
	width: 95%;
	margin: 30px auto;
	padding-left: 5%;
	padding-bottom: 30px;
}
#page2 .box_wrap .box figure{
	width: 70%;
	margin-bottom: 20px;
}
/*page3.html*/
#page3{}
#page3 .cate{
	margin: 0 5% 50px;
}
#page3 .cate .top_txt{
	display: block;
	width: 100%;
}
#page3 .cate .top_txt figure,#page3 .cate .txt_box{
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 3%;
	box-sizing: border-box;
	vertical-align: middle;
}
#page3 .cate .box_wrap .box{
	width: 96%;
	margin: 0 auto 30px;
	padding: 2%;
}
/*page4.html*/
#page4{}
#page4 .cate{
	margin-bottom: 80px;
}
#page4 .cate .top_txt{
	display: block;
	width: 100%;
	margin-bottom: 30px;
}
#page4 .cate .cate_title,#page4 .cate .cate_img{
	display: block;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}
#page4 .cate .cate_img{
	width: 80%;
}
#page4 .cate .cate_title{
	display: block;
	text-align: left;
}
#page4 .cate .sub_cate{
	margin-bottom: 30px;
}
#page4 .cate .sub_cate:last-of-type{
	margin-bottom: 0;
}
#page4 .cate .sub_cate .sub_cate_txt{
	margin: 10px 0;
	text-shadow: none;
}
#page4 .cate .sub_cate .box{
	width: 100%;
	margin: 30px auto 0;
	text-shadow: none;
}
#page4 .cate .sub_cate .box .table{
	border: 3px double;
	display: block;
}
#page4 .cate .sub_cate .box .table .box_title,#page4 .cate .sub_cate .box .table .box_txt{
	font-weight: bold;
}
#page4 .cate .sub_cate .box .box_title,#page4 .cate .sub_cate .box .box_txt{
	padding: 10px;
}
/*page5.html*/
#page5 .cate{
	margin-bottom: 80px;
	}
#page5 .cate .box{
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	margin: 50px auto 0;
}
#page5 .cate .box .box_img_wrap{
	display: table;
	width: 100%;
	margin: 10px 0;
}
#page5 .cate .box .box_img_wrap .box_img2,#page5 .cate .box .box_img_wrap .arrow{
	display: table-cell;
	width: 40%;
}
#page5 .cate .box .box_img_wrap .arrow{
	width: 20%;
}
#page5 .cate .box .box_img_wrap .box_img2{
	padding: 0;
}
#page5 .cate .box .box_img_wrap .arrow{
	padding: 0 10px;
}
#page5 .cate .box .box_img_wrap .arrow img{
	width: 80%;
	max-width: 60px;
}
/*page6.html*/
#page6 .box{
	width: 90%;
	padding: 5%;
	margin-bottom: 50px;
	box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}
#page6 .box:nth-of-type(even){
	margin-left: 0;
	box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}
#page6 .box .box_txt{
	margin: 0;
	padding: 10px;
}
/*page7.html*/
#map{
	width: 90%;
	margin: 0 auto;
}
#map iframe{
	height: 300px;
}
#page7 .box_wrap{
	width: 90%;
	margin: 30px auto;
}
#page7 .box_wrap .box{
	margin-bottom: 20px;
}
#page7 .box_wrap .box h3{
	margin-bottom: 5px;
}
#page7 .box_wrap .box p{
	font-size: 14px;
}
/*page8.html*/
#page8 #form_box > .box{
	padding: 20px 10px;
	display: block;
	width: 100%;
}
#page8 #form_box .box h3{
	display: block;
	width: 100%;
}
#page8 #form_box .box p{
	display: block;
}
#page8 #form_box #form_bt{
	padding: 20px 0; 
}
#page8 #form_box #form_bt div{
	display: inline-block;
	width: 30%;
	height: 50px;
	margin: 0 5%;
	position: relative;
}
#page8 #form_box #form_bt div::after{
	height: 14px;
	font-size: 14px;
	letter-spacing: 2px;
}
/*page10.html*/
#page10 .box_wrap ul li{
	display: block;
	width: 90%;
	margin: 15px auto;
}
#page10 .box_wrap ul li a{
	padding: 10px;
}
#page10 .box_wrap ul li a::before,#page10 .box_wrap ul li a::after{
	content: "";
	position: absolute;
	transform: rotate(-45deg);
	height: 3px;
	width: 100px;
	background-color: #f2f2f2;
}
#page10 .box_wrap ul li a::before{
	top: 0px;
	left: -30px;
}
#page10 .box_wrap ul li a::after{
	bottom: 0px;
	right: -30px;
}
}