@charset "utf-8";

* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
  height: 100%;
}

body {
	color: #3B3B3B;
	background-color: #fff;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
	word-wrap: break-word;
	height: 100%;
	line-height: 2.2;
	position: relative;
}

.font_mincho {
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Sawarabi Mincho", "HG明朝E",  "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

section,
article {
	display: block;
}

img {
	vertical-align: top !important;
}

a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
}
img{width:auto; max-width:100%; height:auto; margin:0; padding:0; border:none; line-height:normal; vertical-align:middle;}
a:hover img {
	filter: brightness(120%);
}

li {
	list-style-type: none;
}

a {
	color: #0099CC;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
}
a:hover {
	color: #00CCCC;
	text-decoration: none;
}

table {
	border-collapse: collapse;
}
table td {
	border-collapse: collapse;
}

span{ color: #F63;}

.clear{display:block; clear:both;}


.center{text-align:center;}

/*
ヘッダー
-------------------------------------------*/
header {
	width:100%;
	height: auto;
}

.mainimg{
	width:100%;
	background-color:#F0F0F0;
	padding: 100px 15px 30px 15px;
	font-size: 2.5rem;
	letter-spacing: 0.2rem;
	margin: 0 0 50px 0;
	text-align: left;
	font-weight: 600;
	line-height:1.6;
	font-style: normal;
}

#fadeText span {
  color: #000 !important;
  opacity: 0;
  display: inline-block;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(10px);
}

#fadeText span.visible {
  opacity: 1;
  transform: translateY(0);
}

#fadeText .line {
  display: block;
  margin-bottom: 10px;
}


/*
メインコンテンツ
-------------------------------------------*/
.content {
	width: 100%;
	background-color: #fff;
	color: #3B3B3B;
	padding-top: 50px;
	padding-bottom: 50px;
}
.cont_wrap {
	max-width: 800px;
	width: 94%;
	margin: 0px auto 85px auto;
	position: relative;
}
.cont_wrap02 {
	max-width: 900px;
	width: 94%;
	margin-right: auto;
	margin-left: auto;
}

.content h1 {
	font-size: 2.5rem;
	line-height: 2;
	font-weight: 500;
	letter-spacing: 1px;
	color: #3B3B3B;
	clear: both;
}
.content h2 {
	font-size: 2.5rem;
	line-height: 2;
	font-weight: 500;
	letter-spacing: 1px;
	color: #3B3B3B;
	clear: both;
}

.content h3 {
	font-size: 1.1rem;
	line-height: 30px;
	margin-bottom: 30px;
	font-weight: 600;
	color: #484848;
	letter-spacing: 0.05em;
}

.content h4 {
	font-size: 1rem;
	margin: 0 0 20px 0;
    font-weight: normal;
}
.cont_wrap02 h4{height:100px; line-height: 1.6;}
.cont_wrap02 h3{height:70px;}



.content h5 {
    display: block;
    font-size: 1rem;
    font-weight: normal;
	margin:0 0 10px 0;
	line-height:2;
}

.content h6 {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
	color: #3B3B3B;
	margin:0 0 10px 0;
	line-height:2;
}

.content p {
	width: 60%;
	float: right;
	padding: 10px 0;
}


.day {
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: right; /* 文字を中央寄せ */
  font-size: 1.3rem;
	font-weight: 500;
}
.day::before{
  background-color: #9A9A9A; /* 横線の色 */
  content: "";
  height: 1px; /* 横線の高さ */
  width: 100px; /* 横線の長さ */
}
.day::before {
  margin-right: 15px; /* 文字との余白 */
}


.content_in {
	background-color: #EBEBEB;
	color: #3B3B3B;
	padding: 50px 0;
}

.content_in .white {
	background-color: #fff;
	padding: 25px;
}


/* ポップアップウィンドウ
-------------------------------------- */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  max-width: 90%;
  width: 700px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  animation: fadeIn 0.4s ease;
  position: relative;
  max-height: 90vh;          /* 画面高の80%までに制限 */
  overflow-y: auto;          /* はみ出たらスクロール */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5em;
  background: none;
  border: none;
  cursor: pointer;
}




/* btn
--------------------------------------------------------------------------------------------------------------- */

.btn02{width: 300px; display:inline-block; padding:12px 15px; font-size: 1rem; text-align:center;}
a.btn02{color:#000; background-color: #E4E4E4;  border:solid 1px #E4E4E4; text-decoration:none !important;}
.btn02:hover{color: #000 !important; background-color:#fff; border-color:#E4E4E4; text-decoration:none !important;}

.btn02.inverse:hover{color:#000; background-color: #E4E4E4;  border:solid 2px #CCC; text-decoration:none !important; line-height:2; font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;}
.btn02.inverse{color: #000 !important; background-color:#fff; border:solid 2px #CCC; text-decoration:none !important; line-height:2;}

.btn03{width: 200px; display:inline-block; padding:5px 15px; font-size: 1rem; text-align:center;}
.btn03:hover{color:#000; background-color: #E4E4E4;  border:solid 1px #969494; text-decoration:none !important;}
.btn03{color: #000 !important; background-color:#fff; border:solid 1px #969494; text-decoration:none !important;}


/*
トップへ戻るボタン
-------------------------------------------*/
.to_top {
	position: fixed;
	bottom: 0px;
	right: 0px;
	z-index: 800;
}
.to_top a {
	text-decoration: none;
	text-align: center;
	display: block;
	width: 60px;
	height: 60px;
	background-color: #DCE7E9;
	color: #333;
	text-align: center;
	font-size: 32px;
	line-height: 60px
}
.to_top a:hover {
	background-color: #AAC621;
	color: #FFF;
}

/*
フッター
-------------------------------------------*/

footer {
	background-color: #000;
	color: #fff;
	clear: both;
	width: 100%;
	display: block;
	padding: 50px 0;
	line-height: 1.6;
}

footer .cont_wrap {
	max-width: 1600px;
	width: 94%;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-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;
	-webkit-justify-content: center;
	margin: 0px auto 10px auto;
	font-size: 0.9rem;
	justify-content: center; /* 横方向の中央揃え */
	align-items: top;
}

footer .cont_wrap .f_box {
	width: 31%;
	padding: 1%;
	margin: 1%;
	background:#333;
}

footer .cont_wrap .f_box.lg {
	width: 32%;
	border-left:none;
}

footer .cont_wrap h5 {
	font-size: 1.2rem;
	margin: 0 0 15px 0;
}


address {
	clear: both;
	font-size: 12px;
	font-style: normal;
	padding: 20px;
	text-align: center;
	letter-spacing: 1px;
}

footer .box_pr {
	clear: both;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 10px;
	color: #55838A;
	letter-spacing: 1px;
	background-color: #D2E1E3;
	padding-top: 18px;
	line-height: 22px;
}

.box_pr ul li {
	display: inline;
	padding: 5px;
}

.box_pr ul li a {
	color: #55838A;
}


/*
各種テーブル
-------------------------------------------*/
.content table.table_01 {
	width: 100%;
	/*margin-top: 20px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;*/
}
.content table.table_01 th,
.content table.table_01 td {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #888;
	padding: 10px;
}
.content table.table_01 th {
	font-size: 16px;
	white-space: nowrap;
	font-weight: normal;
	letter-spacing: 1px;
	width: 33%;
}
.content table.table_01 td {
	width: 50%;
	font-size: 14px;
	line-height: 1.5;
	background-color: #FFF;
	text-align:left;
}


@media only screen and (max-width: 767px){
	
	.content table.table_01 td {
		width: 100%;
		display: block;
	}
	
}


.small {
	font-size: smaller;
	color: #666;
}
.chui {
	color: #F03600;
}

.table_01 caption {
	font-size: 14px;
	line-height: 30px;
	background-color: #E5E5E5;
	color: #111;
	letter-spacing: 1px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 1px solid #FFF;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 2px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 2px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 2px 0px;
}
.table_01 th span {
	font-size: 12px;
	color: #CCC;
}


/*
コンテンツボックス
-------------------------------------------*/

.box_cont {
	width: 100%;
	max-width: 750px;
	margin: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
}

.box_cont .box_c_in {
	width: 48%;
	min-height: 150px;
	padding: 10px 20px;
	border: 1px solid #CFDEE0;
	margin-bottom: 30px;
}

.box_cont .box_c_in:hover {
	background-color: #FFF;
	border-top-color: #AAC621;
	border-right-color: #AAC621;
	border-bottom-color: #AAC621;
	border-left-color: #AAC621;
}

.box_cont .box_c_in img {
	max-width: 100%;
	padding: 20px !important;
	border-radius: 30px !important;
}

.content .box_cont .box_c_in h2 {
	padding-bottom: 10px;
	font-size: 24px;
	border-bottom-width: 1px;
	border-bottom-color: #CCC;
	padding-top: 10px;
}




@media screen and (min-width:960px){
body {
	font-size: 16px;
}

/*
ヘッダー
-------------------------------------------*/
header {
	height: auto;
}


header h1 a img {
	top: 23px;
	left: 10px;
	height: 60px;
}

.menu_btn,
.btn_close {
	display: none;
}


/*
ヘッダー
-------------------------------------------*/

#index_top {
	min-height: 850px;
}



.no_pc {
	display: none !important;
}

}
/*-- /960px～ --*/

@media screen and (min-width:1200px){

}

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

body {
	font-size: 16px;
}

body.fixed {
	overflow: hidden;
}

img {
	max-width: 100% !important;
	height: auto;
	width /***/:auto;
	margin-left:auto;
	margin-right:auto;
}

.content h4 {
	margin-right: 10px;
	margin-left: 10px;
}




/*
ヘッダー
-------------------------------------------*/

header {
}

header h1 a img {
	top: 10px;
	left: 10px;
	height: 36px;
}

header .h_menu {
	display: none;
}

header #info {
	display: none;
}



/*
フッター
-------------------------------------------*/
footer {
	border-bottom-width: 60px;
}

footer .cont_wrap .f_box {
	width: 50%;
	text-align: center;
}
footer .cont_wrap .f_box.lg {
	width: 100%;
}

.no_sp {
	display: none;
}

}
/*-- /～960px --*/





#index_top {
	width:100%;
}
#index_top #top_catch {
	top: 50%;
	left: 5%;
	width: 90%;
	height: 40%;
	margin-top: 0px;
	margin-left: 0px;
}


#index_top #top_catch h2 {
	font-size: 40px;
}

#index_top #top_catch p {
	font-size: 12px;
}

#sub_top {
	height: 180px;
	padding-top: 100px;
}

.content {
	padding-top: 20px;
	padding-bottom: 20px;
}

.content p {
	margin-bottom: 20px;
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 10px;
}

.img_left,
.img_right {
	float: none;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	max-width: 100%;
}

.pick_up ul li {
	width: 100%;
}
.pick_up ul li {
	margin: 5%;
}

.content .ul_news li span.date {
	padding-right: 0px;
	display: block;
}



.box_cont {
	padding-right: 10px;
	padding-left: 10px;
}

.box_cont .box_c_in {
	width: 100%;
	padding: 10px;
}

.content .cont_wrap .txt_box {
	margin-left: 0px;
	margin-right: 0px;
}

.scroll {
	overflow-x:scroll;
}
}

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

input,
textarea {
	max-width: 300px !important;
}

.content table.table_01 th,
.content table.table_01 td {
	width: 100% !important;
	display: block;
}

.content table.table_01 th {
	background-color: #F6F6F6;
}


#index_top #top_catch h2 {
	font-size: 30px;
}

#sub_top {
	font-size: 24px;
}

.content h2 {
	font-size: 24px;
}

.content .obi_001 h2 {
	font-size: 22px;
}

}

/*
エフェクト
-------------------------------------------*/
.effect {
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
	transform: translateY(20px);
	-webkit-transform: translateY(20px);  
    -moz-transform: translateY(20px); 
	-webkit-transition: 1.0s ease-out;
	-moz-transition: 1.0s ease-out;
	transition: 1.0s ease-out;
}
.effect.d_02 {
transition-delay:0.2s;
-webkit-transition-delay:0.2s;
}
.effect.d_04 {
transition-delay:0.4s;
-webkit-transition-delay:0.4s;
}
.effect.d_06 {
transition-delay:0.6s;
-webkit-transition-delay:0.6s;
}
.effect.d_08 {
transition-delay:0.8s;
-webkit-transition-delay:0.8s;
}
.effect.start {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	transform: translateY(0px);
	-webkit-transform: translateY(0px);  
    -moz-transform: translateY(0px);    
}





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

.content .cont_wrap .box_left {
	width: 100%;
	float: none;
}
.content .cont_wrap .box_right {
	width: 100%;
	float: none;
	overflow: hidden;
}

.content .cont_wrap .box_right .fb-page {
	width: 100% !important;
}

}


@media only screen and (max-width: 767px){
	
	.content h1 {
	font-size: 2.1rem;
	line-height: 1.8;
	margin-top: 20px;
	}
	
	.mainimg{
		padding: 70px 15px;
		font-size: 2rem;
	}
	
.img_center span {
	font-size: 14px;
	padding: 5px;
}

.img_center div {
	font-size: 12px;
	padding: 20px;
}

dl.faq {
	width: 96%;
}

dl.faq dt {
	font-size: 18px;
	width: 90%;
}

dl.faq dd {
	width: 90%;
	margin-left: 10%;
}
.content h2 {
	font-size: 2rem;
	line-height: 1.8;
	font-weight: 500;
	letter-spacing: 1px;
	color: #3B3B3B;
	clear: both;
}

.content p {
	width: 80%;
	float: right;
	padding: 10px 0;
}
	
footer .cont_wrap .f_box {
	width: 100%;
	padding: 20px 10px;
	border-left:none;
	font-size: 0.9rem;
}

footer .cont_wrap .f_box.lg {
	width: 100%;
	border-left:none;
}

footer .cont_wrap h5 {
	font-size: 1.1rem;
}


}






/* Grid - RS-MQF 1140 V.2 - https://www.os-templates.com/free-basic-html5-templates/rs-mqf-1140
--------------------------------------------------------------------------------------------------------------- */
.clear, .group{display:block; overflow:hidden;}
.one_half, .one_third, .two_third, .one_quarter, .two_quarter, .three_quarter{display:inline-block; float:left; margin:0 0 0 3.21052%; list-style:none;}

.first{margin-left:0; clear:left;}

.one_quarter{width:21.8421%;}
.one_third{width:30.82631%;}
.one_half, .two_quarter{width:47.89473%;}
.two_third{width:65.26315%;}
.three_quarter{width:73.94736%;}

.width30{max-width: 15%; margin: 30px auto;}

@media screen and (max-width:750px){
	.one_half, .one_third, .two_third, .one_quarter, .two_quarter, .three_quarter{display:block; float:none; width:auto; margin:0 0 30px 0; padding:0;}
	.width30{max-width: 40%; margin: 30px auto;}

	.clear .one_half.first{margin:0 0 60px 0 !important;}
	.clear .one_half:nth-child(even){margin:0 0 0px 0;}

}

/* Spacing
--------------------------------------------------------------------------------------------------------------- */
.btmspace_10{margin-bottom:10px;}
.btmspace_15{margin-bottom:15px;}
.btmspace_20{margin-bottom:20px;}
.btmspace_30{margin-bottom:30px;}
.btmspace_50{margin-bottom:50px;}
.btmspace_80{margin-bottom:80px;}
.btmspace_100{margin-bottom:100px;}
.btmspace_120{margin-bottom:120px;}
.btmspace_150{margin-bottom:150px;}

.tx_center{text-align: center;}

.fonts01s{font-size:0.75rem !important;}
.fonts02s{font-size:0.9rem !important;}

.fonts01{font-size:1.1rem !important;}
.fonts02{font-size:1.3rem !important;}
.fonts03{font-size:1.6rem !important; font-weight: 600;}

.fontc_green{color:#AAC621 !important;}


.text_right{text-align: right;}