@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)

font-family: 'Courgette', cursive;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
*/

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%;
/*font: inherit;*/
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers
*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*====================*/

*{
	position:relative;
	box-sizing:border-box;
}

body{
	font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
	font-family: 'Noto Sans JP', sans-serif;
	font-size:16px;
	line-height:1.5;
	letter-spacing:0.02em;
	font-weight: normal;
	color:#333;
}

*{
	outline: none;
}

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em !important;
	margin-bottom: .5em !important;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em !important;
	margin-bottom: .5em !important;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto !important;
	margin-right: auto !important;
}

table.aligncenter{
	display:table;
}

table.flex_table.aligncenter,
table.flex_table.alignright,
table.flex_table.alignleft{
	float:none;
}

.mincho{
	font-family: 'Noto Serif JP', serif;
}

.oubun{
font-family: 'Courgette', cursive;
}

.rtl{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.btn a{
	display:inline-block;
	padding:.5em 2em;
	color:#121737;
	font-weight: bold;
	background:#b4c440;
	border:1px solid #b4c440;
	text-decoration:none;
	transition:.2s;
}

.btn a:after{
	position: absolute;
	display: block;
	content: '';
	margin: auto;
	width: 3em;
	height: 3px;
	background-color: #121737;
	top: 0;
	bottom: 0;
	right: -2.5em;
}

.btn a:hover{
	color:#173F5D;
	background:#fff;
}

/* head */
header{
	padding:0 1em 1em;
	width:100%;
	top:0;
	left:0;
	background:#121737;
	z-index:9999;
}

#head_cont{
	display:flex;
	justify-content:space-between;
	margin:auto;
	max-width:1500px;
}

#head_cont #title h1 a{
	display:block;
	width:413px;
	height:80px;
	text-indent:-9999px;
	background-image:url(./img/head_logo.png);
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center;
}

/* gl_menu */
#gl_menu nav{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

#gl_menu ul{
	display:flex;
	justify-content:space-between;
	height:100%;
}

#gl_menu ul li{
	width:100%;
}

#gl_menu ul li a{
	display:flex;
	align-items:center;
	justify-content:center;
	padding:1em 2em;
	width:100%;
	height:100%;
	color:#fff;
	text-align:center;
	text-decoration:none;
}

#gl_menu ul li a.now{
	color:#b4c440;
}

#gl_menu ul li a span:before{
	position:absolute;
	display:block;
	content:'';
	margin:auto;
	width:0;
	height:2px;
	bottom:-.5em;
	left:0;
	right:0;
	background:#fff;
	transition:.5s;
}

#gl_menu ul li a.now span:before{
	background:#b4c440;
}

#gl_menu ul li a:hover span:before,
#gl_menu ul li a.now span:before{
	width:100%;
}

#gl_menu ul li:last-child{
	background:#b4c440;
}

#gl_menu ul li:last-child a{
	color:#121737;
}


#gl_menu ul li:last-child a span:before{
	background:#121737;
}

#gl_menu ul li a span{
	display:inline-block;
	font-size:120%;
}

/* main image */
#main_image_wrap{
	width:100%;
	height:calc(100vh - 109px);
}

#main_image{
	display:flex;
	justify-content:space-between;
	margin:auto;
	width:100%;
	height:100%;
	overflow:hidden;
}

#main_image:before{
	position:absolute;
	display:block;
	content:'';
	width:80%;
	height:100%;
	background:rgba(255,255,255,0.5);
	top:0;
	left:50%;
	z-index:99;
	transition:1s;
}
#main_image:after{
	position:absolute;
	display:block;
	content:'';
	width:80%;
	height:100%;
	background:rgba(191,186,183,0.5);
	top:0;
	right:50%;
	z-index:99;
	transition:1s;
}

#main_image_wrap.slideopen #main_image:before{
	left:-100%;
	right:0;
}

#main_image_wrap.slideopen #main_image:after{
	left:-100%;
	right:0;
}


#main_image #main_image_slider{
	width:50%;
}

#main_image #sub_image_wrap{
	display:flex;
	flex-wrap:wrap;
	width:50%;
}

#main_image #sub_image_wrap p{
	width:50%;
	text-indent:-9999px;
	background-color: #b4c440;
	background-repeat:no-repeat;
	background-position: center;
	background-size: cover;
	border:3px solid #b4c440;
}

#main_image #sub_image_wrap p img{
	width:100%;
}

#main_image #sub_image_wrap p:nth-child(3){
	text-indent:0;
}

#main_image #sub_image_wrap p span{
	display:flex;
	align-items: center;
	position:absolute;
	height:100%;
	width:80vw;
	right:0;
}

/* slider */
#main_image_slider .slick-track,
#main_image_slider .slick-list,
#main_image_slider p{
	width:100%;
	height:100%;
}

#main_image_slider p{
	background-size:cover;
	background-position:center;
	text-indent:-9999px;
}

.slick-dotted.slick-slider{
	margin-bottom:0;
}

.slick-dots{
	position:absolute;
	text-align:right;
	bottom:0;
	right:0;
}

.slick-dots li button{
	width: 15px;
	height: 15px;
	border:1px solid #ABA9A9;
	border-radius:50%;
}

.slick-dots li button:before{
	content:'';
	margin:auto;
	width: 15px;
    height: 15px;
    background-color:transparent;
	border-radius:50%;
	top:0;
	bottom:0;
	right:0;
	left:0;
}

.slick-dots li.slick-active button:before{
    background-color:#b4c440;
}

/* top_cont */

.content_wrap{
	max-width:1500px;
	padding:1em;
	margin:0 auto ;
	overflow:hidden;
}

#top_cont1_wrap {
	background-image: url(./img/box_bg_white.png);
	overflow: hidden;
}

#top_cont1_wrap .desc_wrap{
	display:flex;
	justify-content: space-between;
	max-width:1500px;
	margin: auto 0 1.5em auto;
}

#top_cont1_wrap .desc_wrap > section{
	width: 100%;
}

#top_cont1_wrap .desc_wrap > section#desc{
	padding:8em 1em 3em;
	height: 100%;
	background-color: #121737;
}

#top_cont1_wrap .desc_wrap > section#desc h3{
	position: absolute;
	padding:.2em 1em;
	width:120%;
	color: #121737;
	font-size:240%;
	background-color: #b4c440;
	top: .5em;
	left:-30px;
    z-index: 9999;
}

#top_cont1_wrap .desc_wrap > section#desc p{
	color:#fff ;
	font-size:150%;
}

#top_cont1_wrap .desc_wrap > section img{
	width: 100%;
	border:3px solid #b4c440;
}



#news_wrap{
	margin-bottom: 1.5em;
	width:100%;
	overflow:hidden;
}

#news_wrap .content_wrap{
	display:flex;
	width:100%;
	background: #fff;
}

#news_wrap .content_wrap section:first-of-type{
	width:calc(100% - 380px);
}

#news_wrap .content_wrap section:last-of-type{
	width:380px;
}

#news_wrap h3{
	display:table;
	align-items: center;
	margin:0;
	padding:.5em 2em;
	color: #121737; 
	font-size:400%;
	font-family: 'Noto Serif JP', serif;
	line-height: 1;
	text-align:center;
}

#news_wrap h3:before{
	position: absolute;
	display:block;
	content: '';
	margin:auto;
	width:2em;
	height:3px;
	background-color: #121737;
	top:0;
	bottom:0;
	left:0;
}

#news_wrap h3 span{
	display:inline-block;
	margin-left:.5em;
	font-size:50%;
}

#news_wrap ul{
	width:80%;
	margin:0 auto 1.5em;
}

#news_wrap ul li {
	display:flex;
	padding: .5em;
	border-bottom:1px dashed #ccc;
}


#news_wrap ul li .news_text,
#news_wrap ul li .news_date{
    display: block;
    padding:.5em;
}

#news_wrap ul li .news_date{
	clear:both;
	text-align:center;
	color: #b4c440;
	font-weight: bold;
}

#news_wrap .content_wrap section > p{
	text-align: center;
}


#top_cont2_wrap{
	background-image: url(./img/service_bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
}

#top_cont2_wrap h3{
	display: table;
	align-items: center;
	padding:.5em 2em; 
	color: #121737;
	font-size:400%;
	font-family: 'Noto Serif JP', serif;
	line-height: 1;
	text-align:center;
}

#top_cont2_wrap h3:before{
	position: absolute;
	display:block;
	content: '';
	margin:auto;
	width:2em;
	height:3px;
	background-color: #121737;
	top:1em;
	left:0;
}

#top_cont2_wrap h3 span{
	display: block;
	font-size: 30%;
	text-align: right;
}

#top_cont2_wrap #service_box{
	background-color: rgba(0, 0, 0, .5);
}

#top_cont2_wrap #service_box .content_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

#top_cont2_wrap #service_box .content_wrap > section{
	margin-bottom: 1.5em;
	padding:80px 1em 1em;
	width:40%;
	height:350px;
	background-color: #b4c440;
	background-size: 100% auto;
	background-position: center;
	border:3px solid #b4c440;
	transition:.2s;
}


#top_cont2_wrap #service_box .content_wrap > section:hover{
    background-size: 110% auto;
}


#top_cont2_wrap #service_box .content_wrap > section a{
	position:absolute;
	display:block;
	content:'';
	margin:auto;
	width:100%;
	height:100%;
	text-indent:-9999px;
	top:0;
	left:0;
	z-index:100;
}

#top_cont2_wrap #service_box .content_wrap > section h4{
	position:absolute;
	padding:.5em;
	width: 100%;
	font-size: 150%;
	font-family: 'Noto Serif JP', serif;
	background-color: #b4c440;
	top:-.5em;
	left:-3em;
}

#top_cont2_wrap #service_box .content_wrap > section p{
	position:absolute;
	padding:.5em;
	width: 80%;
	font-size: 90%;
	font-family: 'Noto Serif JP', serif;
	background-color: rgba(255,255,255,.8);
	bottom:.5em;
	right:-3em;
}


#top_cont3_wrap{
	padding:1em; 
	background:url(./img/box_bg_brown.png);
}

#top_cont3_wrap h3{
	align-items: center;
	padding:.5em 2em; 
	color: #b4c440;
	font-size:400%;
	font-family: 'Noto Serif JP', serif;
	line-height: 1;
}

#top_cont3_wrap h3:before{
	position: absolute;
	display:block;
	content: '';
	margin:auto;
	width:2em;
	height:3px;
	background-color: #b4c440;
	top:1em;
	left:0;
}

#top_cont3_wrap h3 span{
	display: block;
	font-size: 30%;
	text-align: left;
}

#top_cont3_wrap h4{
	margin-bottom: 1.5em;
	padding:.5em;
	font-size: 150%;
	font-family: 'Noto Serif JP', serif;
	background-color: #b4c440;
}

#top_cont3_wrap p{
	color:#fff;
	font-size:150%;
}

#top_cont3_wrap .content_wrap p.btn{
	margin-bottom: 1.5em;
	text-align:center;
}

#top_cont3_wrap .content_wrap h5{
	margin-bottom:1.5em;
	font-size: 150%;
	color:#b4c440;
	text-align:center;
}

#top_cont3_wrap .content_wrap .qa td p{
	padding:.5em;
	margin-bottom: .5em;
	color:#121737;
	background:#fff;
}

#top_cont3_wrap .content_wrap .qa td p span{
	color: #b4c440;
	margin-right:1em;
}


#top_cont3_wrap .content_wrap .qa td p:last-child{
	background-color: transparent;
}

#top_cont3_wrap .content_wrap .about td:last-child{
	display:flex;
	align-items:flex-start;
}

#top_cont3_wrap .content_wrap .about td:last-child p{
	width:30%;

}

#top_cont3_wrap .content_wrap .about td:last-child p:first-of-type{
	border-right:0;
}

#top_cont3_wrap .content_wrap .about td:last-child p:first-of-type:after{
	position:absolute;
	content:'';
	margin:auto;
	width:100px;
	height:100px;
	background:#b4c440;
	bottom:-100px;
	right:-4px;
}

#top_cont3_wrap .content_wrap .about td:last-child p:last-child{
	width:70%;
	border-left:3px solid #b4c440;
}

#top_cont3_wrap .content_wrap .about td:last-child p{
	border:3px solid #b4c440;
}

#top_cont3_wrap .content_wrap .about td:last-child p img{
	vertical-align:top;
	width:100%;
	height:auto;
}

#top_cont4_wrap{
	background-image:url(./img/box_bg_white.png);
	background-size: cover;
	background-position: center;
}



#top_cont4_wrap h3{
	display: table;
	align-items: center;
	margin:auto 0 auto auto;
	padding:.5em 2em; 
	color: #121737;
	font-size:400%;
	font-family: 'Noto Serif JP', serif;
	line-height: 1;
}

#top_cont4_wrap h3:before{
	position: absolute;
	display:block;
	content: '';
	margin:auto;
	width:2em;
	height:3px;
	background-color: #121737;
	top:1em;
	left:0;
}

#top_cont4_wrap h3 span{
	display: block;
	font-size: 30%;
	text-align: center;
}

#top_cont4_wrap #map{
	display: flex;
	justify-content: space-between;
}

#top_cont4_wrap #map > *{
	margin:1%;
	width: 48%;
}

#top_cont4_wrap #map > * > p{
	margin-bottom:1.5em;
}

#top_cont4_wrap #map > * > h4:before{
	content:'●';
	color: #b4c440;
}

#top_cont4_wrap #contact_wrap h4{
	display: table;
	align-items: center;
	margin:auto 0 auto auto;
	padding:.5em 2em; 
	color: #121737;
	font-size:400%;
	font-family: 'Noto Serif JP', serif;
	line-height: 1;
}

#top_cont4_wrap #contact_wrap h4:before{
	position: absolute;
	display:block;
	content: '';
	margin:auto;
	width:2em;
	height:3px;
	background-color: #121737;
	top:1em;
	left:0;
}

#top_cont4_wrap #contact_wrap h4 span{
	display: block;
	font-size: 30%;
	text-align: center;
}

#top_cont4_wrap #contact_wrap p{
	margin-bottom:1.5em;
	text-align: center;
}

/* page */

.content_wrap table.flex_table{
	margin-bottom: 1.5em;

}

.content_wrap table.flex_table,
.content_wrap table.flex_table > tbody{
	display:block;
}

.content_wrap table.flex_table > tbody > tr{
	display: flex;
	justify-content: space-between;
}

.content_wrap table.flex_table > tbody > tr > td{
	display: block;
	padding:.5em;
}

.content_wrap table.flex_table.eq_width > tbody > tr{
	justify-content: space-between;
}

.content_wrap table.flex_table.eq_width > tbody > tr > td{
	width:100%;
}

#sns_bookmark{
	margin-bottom:1em;
	text-align:right;
	z-index:10;
}

#sns_bookmark p{
	text-align:left;
}

#sns_bookmark img{
	height:22px;
	width:auto;
}

#sns_bookmark p span{
	font-weight:bold;
}

#sns_bookmark *{
	vertical-align: middle;
}

#sns_bookmark > section{
	display:inline-block;
	line-height: 1;
}

/* footer_wrap */
footer{
	background-color: #121737;
}

#foot_cont{
	margin:0 auto 1.5em;
	background-color: #b4c440;
}

#foot_cont ul{
	display:flex;
	justify-content:center;
	margin: auto;
	max-width: 1500px;
}

#foot_cont ul li{
	display:block;
}

#foot_cont ul li a{
	color:#121737;
}

#foot_cont ul li a:hover{
	text-decoration:none;
}

#foot_cont ul li a span{
	display:inline-block;
	padding:.5em 1em;
	background-image:url(./img/menu_1.png);
	background-repeat:no-repeat;
	background-size:auto 1.2em;
	background-position:center left;
}
address{
	margin:auto;
	padding:.5em;
	font-style:normal;
}

address p:first-of-type{
	display:table;
	padding-left:125px;
	margin:auto;
	font-size:40px;
	background-image:url(./img/logo_en.png);
	background-repeat:no-repeat;
	background-size:contain;
	background-position:left center;
}

address p{
	margin-right:1em;
	color: #fff;
	text-align:center;
	white-space:nowrap;
}


address p br{
	display:none;
}


#copyright{
	margin:auto;
	padding:1em;
	max-width:800px;
	color: #fff;
	font-size:80%;
	text-align:center;
}


/* page */

#page #breadcrumb{
	margin:auto;
	padding:1em;
	max-width:1400px;
}

#page #breadcrumb{
	display:flex;
	margin-bottom:1.5em;
	font-size:90%;
	justify-content:flex-end;
}

#page #breadcrumb li{
	margin-left: .5em;
	margin-bottom:0;
	padding-left: 0;
}

#page #breadcrumb li:after{
	margin-left: .5em;
	content: '＞';
}

#page #breadcrumb li:last-child:after{
	content:'';
}

#page #breadcrumb li:before{
	display:none;
}

#page #wrapper{
	overflow:hidden;
}

#page .content_wrap{
	margin:0 auto 1.5em;
	min-height:500px;
	max-width:1200px;
	overflow:visible;
}

#page .content_wrap h2{
    display: table;
    align-items: center;
    padding: .5em 2em .5em 2.5em;
    color: #121737;
    font-size: 250%;
    font-family: 'Noto Serif JP', serif;
    line-height: 1;
    text-align: center;
}

#page .content_wrap h2:before {
    position: absolute;
    display: block;
    content: '';
    margin: auto;
    width: 2em;
    height: 3px;
    background-color: #121737;
    top: 0;
    bottom: 0;
    left: 0;
}

#page .content_wrap h2 span{
	display:inline-block;
	margin-left:1em;
	font-size:65%;
}

#page .content_wrap h3:first-of-type {
	margin-top:0;

}

#page .content_wrap h3 {
	margin-top:3em;
	margin-bottom:1.5em;
	padding:.5em;
	font-size:130%;
    font-family: 'Noto Serif JP', serif;
    background-color: #b4c440;
    top: -.5em;
}

#page .content_wrap h4 {
margin-bottom: 1.5em;
	padding:.5em;
    font-size: 150%;
    color: #b4c440;
}

#page .content_wrap h5{
	padding:.5em;
	margin-bottom:1.5em;
}

#page .content_wrap h5:before{

content: '●';
    color: #b4c440;
}

#page .content_wrap h6{
	margin-bottom:1.5em;
	padding:.5em;
	border-bottom:1px dotted #666;
}

#page .content_wrap p {
	margin-bottom:1.5em;
	padding:0 .5em;
}

#page .content_wrap > p {
	margin:0 auto 1.5em;
	max-width:1200px;
}

#page .content_wrap ul{
	margin-bottom:1.5em;
}


#page .content_wrap ul li{
	padding:.5em .5em .5em 1.5em;
	margin-bottom:.5em;
}

#page .content_wrap ul li:before{
	position:absolute;
	display:block;
	content: '●';
	color: #b4c440;
	top:.5em;
	left:0;
}


#page .content_wrap table{
	margin-bottom:1.5em;
	border-top: 3px solid #b4c440;
	border-bottom:3px solid #b4c440
}

#page .content_wrap table th,
#page .content_wrap table td{
	vertical-align:top;
	padding:1em;
	border-bottom:1px solid #ccc;
}

#page .content_wrap table td h4{
	padding-top:0;
	padding-bottom:0;
}

#page .content_wrap table th{
	padding:1em;
	word-break:keep-all;
	white-space:pre;
}

#page .content_wrap table tr > th:first-of-type,
#page .content_wrap table tr > td:first-of-type{
}

#page .content_wrap table tr > th > :last-child,
#page .content_wrap table tr > td > :last-child{
	margin-bottom:0;
}


#page .content_wrap table.flex_table,
#page .content_wrap table.flex_table > tbody{
	display:block;
	max-width:100%;
	background:transparent;
	border:0;
}

#page .content_wrap table.flex_table{
}

#page .content_wrap table.flex_table:before{
	position:absolute;
	content:'';
	margin:auto;
	width:100vw;
	height:100%;
	background:#efefef;
	left:0;
}

#page .content_wrap table.flex_table:nth-of-type(2n):before{
	left:auto;
	right:0;
}


#page .content_wrap table.flex_table *{
}

#page .content_wrap table.flex_table > tbody > tr{
	display:flex;
}

#page .content_wrap table.flex_table > tbody > tr > td{
	display:block;
	padding:1em;
	width:auto !important;
	border:0;
}

#page .content_wrap table.flex_table > tbody > tr > td table.flex_table td{
	padding:.5em;
}

#page .content_wrap table.flex_table.aligncenter > tbody > tr{
	justify-content:center;
}

#page .content_wrap table.flex_table.aligncenter > tbody > tr > td{
	width:auto !important;
}

#page .content_wrap table.flex_table.alignright > tbody > tr{
	justify-content:flex-end;
}


#page .content_wrap table.flex_table.al_center > tbody > tr{
	align-items:center;
}

#page .content_wrap table.flex_table.eqwidth > tbody > tr > td{
	width:100% !important;
}

#page .content_wrap table p{
	padding:0;
}

#page .content_wrap table.tb_noborder,
#page .content_wrap table.tb_noborder > tbody > tr > td,
#page .content_wrap table.tb_noborder > tbody > tr > th{
	border:0 !important;
}

#page #service-contactwrap{
	position:fixed;
	margin:auto;
	right:0;
	top:150px;
	z-index:9999;
}


#page #service-contactwrap a{
	display:block;
	padding:1em;
	color:#fff;
	text-decoration:none;
	background:#121737;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	transition:.2s;
}

#page #service-contactwrap a:hover{
	opacity:.7;
}

/* form */

#page .content_wrap form input,
#page .content_wrap form textarea{
	max-width:100%;
	padding:.2em 1em;
	font-size: 100%;
	border:1px solid #ccc;
	border-radius:5px;
	font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
}

#page .content_wrap form input[type=number]{
	width:5em !important;
}

#page .content_wrap form textarea{
	width:100%;
}

#page .content_wrap form select{
	padding:1em;
	padding:.2em 1em;
	font-size: 100%;
	border:1px solid #ccc;
	border-radius:5px;
	font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
}

#page .content_wrap form input[type=submit],
#page .content_wrap form button[type=submit]{
	position:relative;
	display:block;
	margin:auto;
	color:#fff;
	font-weight:bold;
	text-shadow:none;
	background: #131958;
	border:0;
	cursor:pointer;
	transition:.2s;
	font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
}

#page table#mfp_confirm_table tr th,
#page table#mfp_confirm_table tr td{
	padding:1em .5em;
	font-size:100%;
}

#page .mfp_element_submit,
#page .mfp_element_reset,
#page .mfp_element_button,
#page button.mfp_next,
#page button.mfp_prev{
	position:relative;
	margin:auto;
	color:#fff;
	font-weight:bold;
	text-shadow:none;
	background: #052f47;
	cursor:pointer;
	transition:.2s;
	font-family: 游ゴシック,メイリオ,Meiryo,ヒラギノ角ゴ Pro W3,Hiragino Kaku Gothic Pro,Osaka,ＭＳ\ Ｐゴシック,MS PGothic,sans-serif;
}


#page .content_wrap form input[type=submit]:hover,
#page .content_wrap form button[type=submit]:hover{
	background-color:#718692;
	transition:.2s;
}

#page .content_wrap form input[type=submit]:before {
    display: block;
    position: absolute;
    content: '';
    margin: auto;
    width: 1em;
    height: .5em;
    background: linear-gradient(to top left, rgba(255,255,255,0) 50%, #052F47 50.5%) no-repeat top left/100% 100%;
    top: .5em;
    left: -1.2em;
}

#page .content_wrap form input[type=reset]{
	position:relative;
	display:inline-block;
	margin:auto;
	padding:.5em 1em;
	width:auto;
	color:#fff;
	font-size:100%;
	background-color:#666;
	text-align:center;
	cursor:pointer;
	transition:.2s;
}

#page .content_wrap form input[type=reset]:hover{
	background-color:#aaa;
	transition:.2s;
}

#page .gallery{
	margin-bottom:1.5em;
}

#page .gallery img{
	border:0;
}



/* pagetop */
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #b4c440;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 40px;
  text-decoration: none;
  color:transparent;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0d8';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*----------------------------------

	smartphone

-----------------------------------*/

#sp_toggle{
	display:none;
}


@media screen and (max-width: 1080px) {

#head_cont #title h1 a{
	width:300px;
}

#top_cont1_wrap .desc_wrap > section#desc{
	padding: 5em 1em 3em;
}

#top_cont1_wrap .desc_wrap > section#desc h3{
	font-size:150%;
	left: -16px;
	white-space: nowrap;
}

#top_cont1_wrap .desc_wrap > section#desc p{
	font-size:110%;
}

} 

@media screen and (max-width: 940px) { 



#gl_menu ul{
	display:none;
}


#sp_toggle{
	position:fixed;
	display:table;
	margin: 0 0 0 auto;
	padding:1.2em;
	font-size:100%;
	color:#333;
	text-align:center;
	font-weight:bold;
	box-sizing:border-box;
	cursor:pointer;
	top:0;
	right:0;
	z-index:9999;
	background:rgba(255,255,255,.7);
}

#sp_toggle #sp_toggle_icon{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  margin: -1px 0 0 -2.5em;
  background: #333;
  transition: .2s;
}

#sp_toggle #sp_toggle_icon:before,
#sp_toggle #sp_toggle_icon:after{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 2px;
  background: #333;
  transition: .3s;
}

#sp_toggle #sp_toggle_icon:before{
  margin-top: -6px;
}

#sp_toggle #sp_toggle_icon:after{
  margin-top: 4px;
}

#sp_toggle #sp_toggle_icon.close{
  background: transparent;
}

#sp_toggle #sp_toggle_icon.close:before, #panel-btn .close:after{
  margin-top: 0;

}

#sp_toggle #sp_toggle_icon.close:before{
  margin-top: -1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#sp_toggle #sp_toggle_icon.close:after{
  margin-top: -1px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

#gl_menu{
	position:fixed;
	width: 100%;
	top:0;
	right:0;

	z-index:9999;
}

#gl_menu.menuopen{
	width:100%;
}


#gl_menu ul{
	padding-top:63px;
	flex-direction:column;
	background:rgba(255,255,255,.9);
}

#gl_menu ul li{
	padding:0;
}

#gl_menu ul li a{
	color:#333;
}

#gl_menu ul:nth-child(2) li a{
	padding:.5em 1em;

	background-image:none;
}

#gl_menu ul:nth-child(3) li a:before{
	top:0;
	bottom:0;
	left:0;
	right:auto;

}

#main_image_wrap #main_image:before,
#main_image_wrap #main_image:after{
	display:none;
}

#main_image_wrap{
	max-height:500px;
}

#main_image #main_image_slider{
	width:75%;
}

#main_image #sub_image_wrap{
	width:25%;
}

#main_image #sub_image_wrap p{
	width:100%;
}

#main_image #sub_image_wrap p:nth-child(2n){
	display:none;
}

#top_cont1_wrap .desc_wrap{
	align-items: end;
	background-color: #121737;
}

#top_cont1_wrap .desc_wrap > section{
}

#top_cont1_wrap .desc_wrap > section#desc{
}

#top_cont1_wrap .desc_wrap > section#desc h3{
	width:80vw;
}

#top_cont1_wrap .desc_wrap > section#desc p br{
	display:none;
}

#news_wrap h3{
	margin:0;
	font-size:200%;
}

#news_wrap h3:before{
	width:1.8em;
	height:1px;
}

#news_wrap ul{
	width:100%;
}

#news_wrap ul li{
	display:list-item;
}

#news_wrap ul li .news_date{
	text-align:left;
}

#news_wrap .content_wrap{
	flex-wrap:wrap;
}

#news_wrap .content_wrap section:first-of-type,
#news_wrap .content_wrap section:last-of-type{
	margin-bottom:1.5em;
	width:100%;
}

#news_wrap .content_wrap section:last-of-type iframe{
	display:block;
	margin:auto;
}


#top_cont2_wrap h3{
	font-size:200%;
}

#top_cont2_wrap #service_box .content_wrap{
	justify-content: center;
}

#top_cont2_wrap #service_box .content_wrap > section{
	width:80%;
	background-size:cover;
}

#top_cont2_wrap #service_box .content_wrap > section h4{
	left:-24px;
}

#top_cont2_wrap #service_box .content_wrap > section a{
	display:inline-block;
	width:auto;
	height:auto;
	font-size: 90%;
	text-indent:0;
	left:auto;
	bottom:1em;
	right:0;
	top:auto;

}

#top_cont2_wrap #service_box .content_wrap > section p{
	padding-bottom:3em;
}

#top_cont3_wrap h3{
	font-size:200%;
}

#top_cont3_wrap h3:before{
	height:1px;
}

#top_cont3_wrap p{
	font-size:110%;
}

#top_cont3_wrap .content_wrap .about td:last-child{
	display:none;
}

#top_cont4_wrap h3{
	font-size:200%;
}

#top_cont4_wrap h3:before{
	height:1px;
}

#top_cont4_wrap #map{
	flex-direction:column;
}

#top_cont4_wrap #map iframe{
	height:300px;
}

#top_cont4_wrap #map > *{
	width:100%;
}

#top_cont4_wrap #contact_wrap h4{
	margin:0;
	font-size:200%;
}

#top_cont4_wrap #contact_wrap h4:before{
	height:1px;
}


.content_wrap table.flex_table > tbody > tr{
	flex-direction:column;
}

#contact_wrap{
	top:auto;
	bottom:0;
	left:0;
	width:100%;
}

#contact_wrap .rtl{
	-ms-writing-mode: unset;
	writing-mode: unset;
}

#contact_wrap p{
	display: flex;
	font-size:90%;
}

#contact_wrap p img{
	margin:0 .5em;
	height: 20px;
}

/*記事内の画像*/
#page_cont img,
#page_cont img.alignleft,
#page_cont img.alignright {
	float: none;
	clear: both;
	display: block;
	margin-left: auto !important;
	margin-right: auto !important;
}

#page #service-contactwrap{
	top:auto;
	bottom:8px;
	left:8px;
	right:auto;
}

#page #service-contactwrap a{
    writing-mode: unset;
}

#page_cont table.flex_table > tbody > tr{
	flex-direction:column;
}

#page_cont  table.large_table{
	width:96% !important;
	margin-left:auto;
	margin-right:auto;
}

#page_cont table.large_table strong{
	word-break: keep-all;
}

#page_cont table.large_table{
	display: block;
	height:auto !important;
	overflow-x: scroll;
	table-layout:fixed; 
	font-size:85%;
	box-sizing: border-box;
}

#page_cont table.large_table:before{

}

#page_cont table.large_table th,
#page_cont table.large_table td{
	white-space: nowrap;
	padding:3px 8px;
}

#page_cont table.large_table {
     overflow: auto;
}

#page_cont table::-webkit-scrollbar{ /* スクロールバー全体 */
    height: 5px;
}

#page_cont table::-webkit-scrollbar-thumb{ /* スクロールバーのある部分 */
    background: #173F5D;
    border-radius: 10px;
}
#page_cont table::-webkit-scrollbar-track-piece:start{ /* スクロールバーが表示されてない部分（前） */
    background: #e1e6ea;
}
#page_cont table::-webkit-scrollbar-track-piece:end{ /* スクロールバーが表示されてない部分（後ろ） */
    background: #e1e6ea;
}

#page_cont table:not(.large_table){
	width:100%;
}

#page_cont table:not(.large_table) > tbody > tr > td,
#page_cont table:not(.large_table) > tbody > tr > th{
	display:block;
	overflow:hidden;
	padding: .5em;
	width:100% !important;
	text-align:left;
	border-right:0;
}

#page_cont table:not(.large_table) td{
	text-align:left !important;
}

#page #page_cont .gallery{
	display:flex;
	flex-wrap:wrap;
}

#page #page_cont .gallery-item{
	width:50%;
}


}

@media screen and (max-width: 520px) { 

#head_cont #title h1 a{
	width: 150px;
	height: 60px;
}

#main_image_wrap{
	height:auto;
	max-height:100%;
}

#main_image{
	flex-direction:column;
}

#main_image_slider p{
	height:350px;
}

#main_image #main_image_slider{
	width:100%;
}

#main_image #sub_image_wrap{
	position: static;
	width:100%;
	border-right:3px solid #b4c440;
	border-bottom:3px solid #b4c440;
}

#main_image #sub_image_wrap p{
	padding:8%;
	height:0;
	width:33.3333%;
}

#main_image #sub_image_wrap p{
	border-right:0;
	border-bottom:0;
}

#main_image #sub_image_wrap p:nth-child(3){
	position: static;
}

#main_image #sub_image_wrap p span{
	top:0;
	bottom:0;
}

#main_image #sub_image_wrap p:nth-child(2n){
	display:block;
}

#top_cont1_wrap .desc_wrap{
	display:block;
	padding-bottom:1.5em;
}

#top_cont1_wrap .desc_wrap > section#desc{
	padding:1em;
}

#top_cont1_wrap .desc_wrap > section#desc h3{
	margin-bottom:1em;
	position:relative;
	width:100%;
	font-size: 130%;
	white-space:unset;
	top:0;
	left:0;
	z-index: 0;
}

#top_cont1_wrap .desc_wrap > section#desc p{
	font-size:100%;
}

#top_cont1_wrap .desc_wrap > section img{
	display:block;
	margin:auto;
	width:300px;
}

#top_cont2_wrap #service_box .content_wrap > section{
	width:100%;
}

#top_cont2_wrap #service_box .content_wrap > section h4{
	font-size:130%;
}

#top_cont2_wrap #service_box .content_wrap > section p{
	width:95%;
	right:-16px;
}

#top_cont3_wrap .content_wrap{
	padding:0;
}

#top_cont3_wrap h4{
	font-size:130%;
}

#page #breadcrumb{
	display:none;
}

#page .content_wrap h2{
	margin-bottom:1em;
	padding-right:1em;
	font-size:150%;
	text-align:left;
}

#page .content_wrap h2 span{
	display:block;
	margin:.5em 0;
}

#page .content_wrap h4{
	font-size:120%
}

#page .content_wrap img{
	max-width:100%;
	height:auto;
}

#page .content_wrap iframe{
	width:100%;
	max-height:350px;
}


#page #service-contactwrap{
	font-size:80%;
}

#page .gallery img{
	padding:.5em;
}


address p:first-of-type{
	padding-left: 60px;
	font-size:120%;
}

address p{
	white-space:unset;
	word-break:keep-all;
}

address p br{
	display:block;
}

#foot_cont ul{
	display:block;
}

#foot_cont ul li a span{
	padding:1em;
}

.wpcf7-radio,
.wpcf7-select{
	display:block;
	margin-bottom:.5em;
}

#page .content_wrap form input, #page .content_wrap form textarea{
	padding:.2em;
}

}