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

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

　   サイト全体

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

html {
	margin: 0;
	padding: 0;
	overflow-y: scroll;
	-moz-text-size-adjust: none;
	/* スマホ文字サイズ自動調整 */
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* ボックスサイズ枠線まで含める */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
body {
	font-size: 1em;
	font-family: "Meiryo", "メイリオ", "ＭＳ　Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
	font-style: normal;
	line-height: 1.9;
	color: #333;
	-webkit-text-size-adjust: 100%;
	text-align: center;
	-webkit-font-smoothing: antialiased;
	/*チラつき防止*/
}
.clearfix::after {
	content: " ";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	line-height: 0;
	overflow-x: hidden;
}
* html .clearfix {
	height: 1px;
	/*¥*/
	/*/
height: auto;
overflow: hidden;
/**/
}
@media only screen and (max-width: 767px) {
	body {
		font-size: .9em;
	}
}
.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
}
@media only screen and (max-width: 980px) {
	.container {
		padding: 0 3%;
		margin: 0 auto;
		clear: both;
		max-width: 100%;
	}
}
/* a TEL */

a[href^="tel:"] {
	text-decoration: none;
	color: #3F3F3F;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		color: #333;
	}
}
/* ---------------------------------------------------------------------------------------------

　 全体フェードイン

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

body {
	animation: fadeIn 1.5s ease 0s 1 normal;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}
@keyframes fadeIn {
	/*上のbody内で呼び出しているアニメーションと名前をそろえる*/
	0% {
		opacity: 0
	}
	/* 始め */
	100% {
		opacity: 1
	}
	/* 終わり */
}
/*古いブラウザ用*/

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
/* ---------------------------------------------------------------------------------------------

　   リセット

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

h1, h2, h3, h4, h5, p, div, dt, dd, dl, img, input, form, ul, li, span {
	margin: 0;
	padding: 0;
}
/* ------------------------------------- */

/* 画像
/* ------------------------------------- */

img {
	vertical-align: middle;
	border-style: none;
	border: 0;
	-webkit-backface-visibility: hidden;
}
a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}
.resizeimage img {
	width: 100%;
}
/* ------------------------------------- */

/* 文章
/* ------------------------------------- */

p {
	text-align: justify;
}
/* ------------------------------------- */

/* 回りこみ解除
/* ------------------------------------- */

.clear {
	clear: both;
}
html {
	/*スクロールバーを常に表示*/
	overflow-y: scroll;
}
a img, ol li img, li img, ul li img {
	/*上揃え*/
	vertical-align: top;
	text-align: center;
	border-style: none;
}
img {
	vertical-align: middle;
	border: none;
	max-width: 100%;
	height: auto;
}
li, ol, ul {
	/*リストマークを消す*/
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ul ul {
	margin-left: 1em;
}
/* ------------------------------------- */

/*フロート設定
/* ------------------------------------- */

.tex img.centered, .tex img.aligncenter{
	display: block;
	margin-left: auto;
	margin-right: auto;
	clear: none;
}
.tex img.alignright, .tex .alignright img{
	margin-left: 20px;
	margin-right: 0;
	margin-bottom: 20px;
	display: inline;
	clear: none;
}
.tex img.alignleft, .tex .alignleft img{
	margin-left: 0;
	margin-right: 20px;
	margin-bottom: 20px;
	display: inline;
	clear: none;
}
.tex img.alignnone, .tex .alignnone img{
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 10px;
	clear: none;
	display: block;
}
.tex .alignright, .right {
	float: right;
}
.tex .alignleft {
	float: left;
}
.aligncenter {
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (max-width:60em) {
	.tex img.alignright, .tex img.alignleft, .tex img.alignnone, .tex img.aligncenter{
		clear: both;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.tex .alignright {
		float: none;
	}
	.tex .alignleft {
		float: none;
	}
	.tex .aligncenter {
		clear: both;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}
/* ---------------------------------------------------------------------------------------------

　   リンク

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

a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #848484;
	text-decoration: none;
}
/* ---------------------------------------------------------------------------------------------

　   PC･スマホ 表示・非表示

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

@media(min-width:768px) {
	.sp {
		display: none !important;
	}
}
@media(max-width:767px) {
	.pc {
		display: none !important;
	}
}
/* ---------------------------------------------------------------------------------------------

　 pagetop

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

.pagetop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
}
.pagetop a {
	display: block;
	background-color: #19317a;
	text-align: center;
	color: #FFF;
	font-size: 12px;
	text-decoration: none;
	padding: 2px 10px 5px 10px;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
.pagetop a:hover {
	display: block;
	background-color: #7583af;
	text-align: center;
	color: #fff;
	text-decoration: none;
}
/* ---------------------------------------------------------------------------------------------

　   HEADER

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

#header {
	z-index: 99;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
}
#gNav a:hover {
	color: #999;
}
nav li a {
	font-size: 0.9em;
	letter-spacing: 0.2em;
	font-family: 'Noto Serif JP', serif;
}
nav .sub-menu, .mean-container .mean-nav ul ul {
	background: #fff;
}
@media only screen and ( max-width: 980px) {
	#header {
		padding: 10px 0;
		height: 60px;
	}
	.h_logo {
		width: 200px;
		position: absolute;
		top: 18px;
		left: 10px;
		z-index: 100;
	}
	#gNav .nav {
		overflow-y: auto;
		height: 100vh;
	}
	.mean-nav .container {
		padding: 0;
	}
	nav li .fa {
		display: none;
	}
}
@media print, screen and ( min-width: 981px) {
	#header {
		height: 80px;
	}
	.h_logo {
		width: 250px;
	}
	#h_top {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	#gNav ul {
		position: relative;
		display: flex;
	}
	#gNav li {
		position: relative;
		margin-right: 1em;
	}
	#gNav li:last-child {
		margin-right: 0;
	}
	#gNav li i {
		font-size: 16px;
		margin-left: 5px;
	}
	#gNav li a {
		position: relative;
		display: block;
		text-align: center;
		line-height: 80px;
	}
	#gNav .sub-menu {
		visibility: hidden;
		opacity: 0;
		z-index: 1;
		display: block;
		position: absolute;
		top: 50px;
		left: 50%;
		margin-left: -100px;
		width: 200px;
		-webkit-transition: all .2s ease;
		transition: all .2s ease;
	}
	#gNav .sub-menu a {
		display: block;
		border-bottom: none;
		padding: 20px;
		line-height: 1.2em;
	}
	#gNav .sub-menu a:hover:after {
		content: none;
	}
	#gNav .sub-menu li {
		display: block;
		font-size: 16px;
		padding: 0;
		margin: 0;
	}
	#gNav .sub-menu li:last-child {
		border-bottom: none;
	}
	#gNav ul>li:hover {
		-webkit-transition: all .5s;
		transition: all .5s;
	}
	#gNav ul>li:hover a, #gNav .current-menu-item a, #gNav .current-menu-parent a {}
	#gNav li:hover ul.sub-menu {
		top: 80px;
		visibility: visible;
		opacity: 1;
		z-index: 9999;
	}
	#gNav li ul li:after {
		content: none;
	}
	#gNav li:hover ul.sub-menu a {
		color: #000;
	}
	#gNav .sub-menu li a:hover {
		background: #fff;
	}
	#gNav .contact_btn a:hover {
		color: #fff;
	}
}
/* ---------------------------------------------------------------------------------------------

　   CONTENTS

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

@media only screen and ( max-width: 980px) {
	#main {
		padding-top: 60px;
	}
}
@media print, screen and ( min-width: 981px) {
	#main {
		padding-top: 80px;
	}
}
/* ---------------------------------------------------------------------------------------------

　   フッター

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

#footer {
	font-size: 14px;
	background-color: #19317a;
	color: #fff
}
.f_box {
	width: 100%;
	padding: 5% 0;
	margin: 0 auto;
	text-align: center;
}
.f_box h5 img {
	width: 250px;
	height: auto
}
.copy {
	text-align: center;
	font-family: Verdana, “Droid Sans”;
	font-size: 10px;
	padding-top: 3%
}
@media only screen and ( max-width: 768px) {
	.f_box {
		padding: 8% 0;
	}
	.f_box h5 img {
		width: 200px;
	}
}
/* ---------------------------------------------------------------------------------------------

　 table

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

table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px 0;
	border-style: solid;
	border-width: 0;
	border-bottom: 1px solid #ccc;
	text-align: left;
}
table th, table#otoiawase th {
	background-color: #e6e8ea;
}
table th, table td {
	font-weight: normal;
	padding: 8px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
table#otoiawase th, table#otoiawase td {
	font-weight: normal;
	padding: 8px;
	border-bottom: 1px solid #ccc;
}
table.mobile-block {
	border-left: none;
}
table.mobile-block th {
	color: #333;
}
table td img {
	margin: 0 0 10px 0;
	margin-bottom: 0;
}
.contactform-width {
	max-width: 100%;
}
.red {
	color: red;
}
.form_moji {
	font-size: 130%;
}
/* 画像用 */

table.topwaku td, table.topwaku {
	font-weight: normal;
	padding: 0px 10px;
	border: none;
	border-top: none;
}
textarea {
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	/* Firefox */
	-webkit-box-sizing: border-box;
	/* Chrome, Safari */
}
input[type="text"], input[type="email"] {
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	/* Firefox */
	-webkit-box-sizing: border-box;
	/* Chrome, Safari */
}
/* お問い合わせボタン */

.buttonContainer {
	text-align: center;
	padding: 20px 0 0 0;
}
#button {
	width: 98%;
	display: inline-block;
	font: normal normal 300 1.3em '';
	text-decoration: none;
	color: #777;
	background-color: transparent;
	border: 1px solid #777;
	padding: .5em 0;
	margin: 5px;
	background-size: 200% 100%;
	background-color: #fff;
	transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
}
#button:hover {
	color: rgba(255, 255, 255, 1);
	background-color: #777;
	background-position: -100% 100%;
}
.contactform-width {
	max-width: 90%;
}
/* 確認赤枠 */

.red_line {
	padding: 1em;
	margin: 2em 0;
	font-weight: bold;
	border: solid 1px red;
}
.red_line p {
	margin: 0;
	padding: 0;
}
@media screen and (min-width: 768px) {
	table#otoiawase {
		border-top: 1px solid #ccc;
	}
	table#otoiawase th, table#otoiawase td {
		padding: 20px;
	}
	table#otoiawase th {
		width: 30%;
	}
	.contactform-width {
		max-width: 90%;
	}
	#button {
		width: 240px;
	}
	h3.title_r {
		font-size: 1.8em;
		line-height: 1.6em;
	}
	h4.midasi {
		font-size: 1.6em;
		line-height: 1.4em;
	}
	h5.midasi {
		font-size: 1.4em;
	}
	.boxA:after {
		content: "";
		display: block;
		clear: both
	}
	.box2 {
		float: left;
		width: 48%;
	}
	.box3 {
		float: right;
		width: 48%;
	}
}
/* ---------------------------------------------------------------------------------------------
　 お知らせ
--------------------------------------------------------------------------------------------- */

.info_box_list {
	text-align: left;
	margin: 5% 0;
}
.info_box_list ul {
	list-style: none;
	line-height: 0;
	margin-top: 2%
}
.info_box_list ul:after {
	content: "";
	clear: both;
	display: block;
}
.info_box_list li div img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	/* トリミングしたい枠の幅 */
	-webkit-filter: opacity(100%);
	filter: opacity(100%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.info_box_list ul li {
	display: inline-block;
	/display: inline;
	/* IE用ハック */
	/zoom: 1;
	/* IE用ハック */
	vertical-align: top;
	/* 上端を揃える */
	text-align: center;
	letter-spacing: normal;
	margin-bottom: 0
}
.c_mise {
	width: 100%;
	max-width: 100%;
	margin: 0;
	position: relative;
	padding-bottom: 100%;
	height: 0;
}
.c_mise::before {
	content: "";
	display: block;
	padding-top: 100%;
}
.c_mise img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	object-fit: cover;
}
.c_mise a img {
	-webkit-filter: opacity(100%);
	filter: opacity(100%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.info_box_list a {
	text-decoration: none;
	color: #333;
}
.info_box_list li img a {
	border: 0;
}
.info_box_list a:hover, a:hover .c_mise, a:hover .cate_box {
	opacity: 0.6;
	transition: 0.5s;
	text-decoration: none;
}
.info_box_tex {
	margin-top: 15px;
	text-align: left
}
.info_box_tex h5 {
	text-decoration: none;
	font-weight: normal;
	font-size: 1em;
	line-height: 1.6;
	clear: both;
	margin-top: 10px;
}
.info_box_tex p {
	margin: 0;
	float: none;
	font-size: .9em;
	line-height: 1.5;
	font-weight: normal;
}
@media screen and (max-width: 767px) {
	.info_box_list ul li {
		width: 47%;
		margin-right: 4%;
		margin-bottom: 5%
	}
	.info_box_list ul li:nth-child(2n) {
		margin-right: 0;
	}
	.info_box_list li h5 {
		font-size: 1em;
		line-height: 1.3;
	}
}
@media screen and (min-width:768px) {
	.info_box_list ul li {
		width: 22%;
		margin-right: 3%;
	}
	.info_box_list ul li:nth-child(4n) {
		margin-right: 0;
	}
}
/* カテゴリの設定
 /* ------------------------------------- */

.catebl {
	display: inline-block;
	font-weight: normal;
	margin: 0 10px 0 0;
	color: #fff;
	font-size: .8em;
}
.en_news {
	background: #777777;
	padding: 3px 8px;
}
.cate_box {
	display: flex;
	align-items: center;
}
/* ---------------------------------------------------------------------------------------------

　   バナー

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

#back_bana {
	padding: 40px 0;
}
@media only screen and (max-width: 980px) {
	#back_bana {
		padding: 8% 0;
	}
}
.bana_box ul:after {
	content: "";
	clear: both;
	display: block;
}
.bana_box ul li {
	list-style-type: none;
	display: block;
	float: left;
	width: 100%;
	position: relative;
	transition: all .3s;
	overflow-x: hidden;
}
.bana_box ul li .sb_img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
	/*IE対策*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.bana_text {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	z-index: 100;
	text-align: center;
	font-size: 22px;
	font-weight: normal;
	letter-spacing: .2em;
	font-family: 'Noto Serif JP', serif;
	color: #fff
}
.bana_text span {
	font-size: 10px;
	display: block;
	margin-top: 0;
	letter-spacing: 0;
}
.color-base-gray::after {
	content: '';
	opacity: 0.5;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	mix-blend-mode: multiply;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: block;
	background-color: #575858;
}
.bana_box ul li a:hover {
	opacity: 0.6;
	transition: 0.5s;
	text-decoration: none;
}
@media only screen and (min-width: 768px) {
	.bana_box {
		z-index: 9999;
	}
	.bana_box ul li {
		width: 49%;
		margin-right: 2%;
	}
	.bana_box ul li:nth-child(2n) {
		margin-right: 0;
	}
	.bana_icon {
		width: 200px;
		height: auto
	}
}
@media only screen and (min-width: 981px) {
	.bana_box ul li .sb_img {
		height: 200px;
	}
	.bana_text {
		font-size: 33px;
	}
}
@media only screen and (max-width: 767px) {
	.bana_box {
		margin-top: 0;
		padding-top: 3%
	}
	.bana_box ul {
		margin: 0 auto;
		width: 400px;
	}
	.bana_box ul li {
		margin-bottom: 3%;
	}
}
@media only screen and (max-width: 600px) {
	.bana_box ul {
		width: 100%;
	}
}