<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */


html {
    box-sizing: border-box;
}

*, 
*:before, 
*:after {
    box-sizing: inherit;
}


/*　　webフォント　コピペ用
------------------------------------------------------------------------------------------------------------*/
/*

font-family: 'Murecho', sans-serif; 　全体のゴシック（太さ 400,500,700）

font-family: 'Noto Serif JP', serif; 　明朝（太さ 300）

*/





/*　　基本
------------------------------------------------------------------------------------------------------------*/


html, body{
	margin:0;
	padding:0;
	border:0;
	font-size: 16px;
	font-family: 'Murecho', sans-serif;
	font-weight: 400;
	line-height: 1.5em;
	letter-spacing: 0.02em;
	color: #000;
}




@media screen and (max-width: 960px)
and (max-width: 480px){
html, body{
	font-size: 14px;
}
}



.highlight a:hover *{
	 filter: alpha(opacity=50);
	 -moz-opacity:0.5;
	 opacity:0.5;
	 -webkit-transition: all .3s;
	 transition: all .3s;
	 }
	 

img {
	border: none;
}




a:link {color: #252525;}
a:visited {color: #252525;}
a:hover {color: #8BB7E4;}
a:active {color: #333333;}




.cb{
	/* floatを解除 */
	clear: both;
	margin: 0;
	padding: 0;
}



#contents {
	width: 1100px;
	margin: 0px auto;
	padding: 50px 0px;
}


@media screen and (max-width: 768px) {
	
#contents {
	width: 100%;
	margin: 0px auto;
	padding: 50px 0px;
}
	
}






/*　　点滅文字
------------------------------------------------------------------------------------------------------------*/


.new_blink{
  animation: flash 1s linear infinite;
	color: #BF0003;
	margin-left: 10px;
}

@keyframes flash {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}




.soon_blink{
  animation: flash 1s linear infinite;
	color: #03589E;
	margin-left: 10px;
}

@keyframes flash {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}














/*　　PCのみ表示、スマホのみ表示の切り替え
------------------------------------------------------------------------------------------------------------*/

.pc { display:inline!important; }
.sp { display:none!important; }

@media screen and (max-width: 768px) {
.pc { display:none!important; }
.sp { display:inline!important; }
	}




/*　　h
------------------------------------------------------------------------------------------------------------*/


h1 {
	width:100%;
	margin: 0;
	padding-top: 0;
	font-size: 14px;
	font-weight: normal;
	background-color: #25376B;
	color: #FFFFFF;
	text-align: center;
}


h2 {
  font-size: 26px;
  position: relative;
  padding: 1.5rem;
  text-align: center;
	letter-spacing: 0.05em;
}

h2 span {
  font-size: 16px;
  display: block;
	font-weight: normal;
	line-height: 2.5em;
}

h2:before {
  position: absolute;
  bottom: 5px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #9CBF4F;
}


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


}




/*　　フォント
------------------------------------------------------------------------------------------------------------*/


.tx10 {font-size: 10px;}
.tx11 {font-size: 11px;}
.tx12 {font-size: 12px;}
.tx13 {font-size: 13px;}
.tx14 {font-size: 14px;}
.tx15 {font-size: 15px;}
.tx16 {font-size: 16px;}
.tx17 {font-size: 17px;}
.tx18 {font-size: 18px;}
.tx20 {font-size: 20px;}
.tx22 {font-size: 22px;}
.tx24 {font-size: 24px;}
.tx26 {font-size: 26px;}
.tx28 {font-size: 28px;}
.tx30 {font-size: 30px;}
.tx32 {font-size: 32px;}
.tx34 {font-size: 34px;}
.tx36 {font-size: 36px;}
.tx38 {font-size: 38px;}
.tx40 {font-size: 40px;}

.red {color: #C30;}
.blue {color: #336699;}
.green {color: #696;}
.orange {color: #F90;}
.pink {color:#FF6699;}
.brown {color: #624628;}
.gray {color: #999;}
.white {color: #FFF;}



.tx-ss {font-size: 50% !important;}
.tx-s {font-size: 75% !important;}
.tx-m {font-size: 90% !important;}
.tx-l {font-size: 115% !important;}
.tx-ll {font-size: 130% !important;}






/*　　ライン装飾
------------------------------------------------------------------------------------------------------------*/



.line_green{
	background:linear-gradient(transparent 60%, #A7FDA7 60%);
}

.line_blue{
	background:linear-gradient(transparent 60%, #80D3FC 60%);
}

.line_yellow{
	background:linear-gradient(transparent 60%, #FFFF74 60%);
}


.line_pink{
	background:linear-gradient(transparent 60%, #FFC3EA 60%);
}








/*　　途中で出てくるヘッダナビゲーション
-------------------------------------------------------------------------------------------------------*/



header-nav {display: none;}

.clone-nav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99998;
  width: 100%;
  transition: .3s;
  transform: translateY(-100%);
	background: rgba(255,255,255,1.00);
	border-bottom: 1px solid #CCCCCC;
}

.is-show {
  transform: translateY(0);
}


.fixed-header {
	width: 1100px;
	margin: 0 auto;
	padding: 7px 0px 0px 0px;
	height: 75px;
	
	position: relative;
}


.header-left {
	width: 350px;
	float: left;
	padding: 5px 5px 5px 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 36px;
}

.header-right {
	width: 750px;
	float: right;
	padding: 5px;
	position: absolute;
	bottom: 0;
	right: 0;
}


@media screen and (max-width: 768px) {
	
	
.fixed-header {
	width: 100%;
	margin: 0 auto;
	height: 50px;
}
	

.header-left {
	width: 75%;
}
	
.header-right {
	width: 15%;
}

	
.header-left img{
	max-width: 100%;
}
	
	.clone-nav img {
		height: 3rem;
		margin-top: 7px;
		margin-right: 1px;
	}

}









/*　　ナビゲーションメニュー（プルダウンメニュー付）
------------------------------------------------------------------------------------------------------------*/



.menu {
  width: 700px;			
  margin: 0px auto; 
	padding-bottom: 5px;
	letter-spacing: 0.1em;
}



@media screen and (max-width: 768px) {
	.menu {display: none;}
}




.menu ul{
	padding: 0;
	text-align: center;
}
	
.menu ul li {
  list-style: none;
  margin:0;
  padding:0;
  font-size:14px;
  float: left;
  position: relative;
	
  width: 120px; /*親メニューの幅*/
  height: 40px; /*親メニューの高さ*/
  line-height: 40px;
	
  color: #333; /*親メニューの文字色*/
  text-align: center;
}


	
.menu ul li span{
	padding-left: 0px;
}	
	

	
.menu ul li a {
  position: relative;
  color: #4D4D4D;
  display: block;
  text-decoration: none;
}


.menu ul li a::after {
  position: absolute;
  bottom: 1px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #9BBF50;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
  z-index: 200;
}
	
.menu ul li a:hover::after {
  transform: scale(1, 1);
}
	
	
	
		
.menu ul li:hover, .menu ul li a:hover {
  background: rgba(255,255,255,0.30); /*ホバー時の親メニューの背景色*/
  color: #333; /*ホバー時の親メニューの文字色*/
}
	
	



/*----------　下層プルダウン　-----------*/


.menu ul li ul {
  position: absolute;
  top: 40px; /*親メニューの高さと同じにする*/
  width: 150px;
  z-index: 100;
	padding-left: 0;
}
	
.menu ul li ul li {
  visibility: hidden;
  overflow: hidden;
  width: 160px; /*サブメニューの幅*/
  height: 0;
  background: rgba(255,255,255,1.00); /*サブメニューの背景色*/
}

	
.menu ul li ul li:hover, .menu ul li ul li a:hover {
  background: rgba(255,255,255,1.00); /*ホバー時のサブメニューの背景色*/
}
	
.menu ul li:hover ul li, .menu ul li a:hover ul li{
  visibility: visible;
  overflow: visible;
  height:40px; /*サブメニューの高さ*/
  z-index: 10;
}

	
.menu * {
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
	









/*----------　問い合わせボタン　-----------*/



.contact-btn-space {
	text-align: right;
	margin-top: 25px;
}

.contact-btn {
	width: 160px;
	height: 35px;
	text-align: center;
	padding: 5px;
	border: 1px solid #666666;
	font-size: 14px;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	vertical-align: bottom;
}



.btn-1 {
  color: #333;
  z-index: 1;
}

.btn-1:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
   background: #9BBF50;
  transition: all 0.3s ease;
}

.btn-1:hover {
  color: #000;
}

.btn-1:hover:after {
  top: 0;
  height: 100%;
}

.btn-1:active {
  top: 2px;
}



@media screen and (max-width: 768px) {
	.contact-btn-space  {display: none;}
}












/*　　スマホ用メニュー
-------------------------------------------------------------------------------------------------------*/



sp-nav.globalMenuSp {display: none}

	

@media screen and (max-width: 768px){
	.hamburger {
		display : block;
		position: fixed;
		z-index : 999;
		right : 13px;
		top   : 10px;
		width : 34px;
		height: 34px;
		cursor: pointer;
		text-align: center;
		background: #203667;
		border-radius: 5px;
}
	
.hamburger span {
  display : block;
  position: absolute;
  width   : 22px;
  height  : 2px ;
  left    : 6px;
  background : #FFFFFF;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
	
.hamburger span:nth-child(1) {
  top: 8px;
}
.hamburger span:nth-child(2) {
  top: 16px;
}
.hamburger span:nth-child(3) {
  top: 24px;
}


	
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

	

	
	
	

	
sp-nav.globalMenuSp {
	display: block;
  position: fixed;
  z-index : 99;
  top  : 0;
  left : 0;
  color: #333;
  background: rgba(255,255,255,0.5);
  text-align: center;
  transform: translateX(-100%);
  transition: all 0.6s;
  width: 100%;
}

sp-nav.globalMenuSp ul {
  background: rgba(156,191,79,0.75);
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

sp-nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px dotted #FFFFFF;
}
	
sp-nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
	
sp-nav.globalMenuSp ul li:hover{
  background :#ddd;
}

sp-nav.globalMenuSp ul li a {
  display: block;
  color: #000000;
	font-weight: bold;
  padding: .5em 0;
  text-decoration :none;
}

sp-nav.globalMenuSp ul li img{
	height: 2.5rem;
}	

sp-nav.globalMenuSp ul li table, th, td {
  width: auto !important;
	margin: 0 auto;
	}
	

/* このクラスを、jQueryで付与・削除する */
sp-nav.globalMenuSp.active {
  transform: translateX(0%);
}

	
	
	

/* ドロップダウン */
	
.tap_open span{
	padding-left: 0px;
}	
	
	
.dropdown {
	display: none;
	}
	

.dropdown li{
	width: 100%;
	background: #B9D182;
	border-bottom: #FFFFFF 1px dotted !important;
	}
	
.dropdown li :last-child{
	border-bottom: none !important;
}
	
.dropdown li a{
  display: block;
  color: #525252 !important;
  padding: .5em 0;
  text-decoration :none;
}

	
	

}




	




/*　　アコーディオン
------------------------------------------------------------------------------------------------------------*/


panel {
  width: 100%;
}

#panel &gt; dt {
  border-bottom: solid 1px white;
  background-color: #ffffff;
  cursor: pointer;
  padding: 10px;
}

#panel &gt; dd {
  border: solid 1px Silver;
  margin: 0px;
  padding: 12px;
	font-size: .9rem;
}


@media screen and (max-width: 768px) {
#panel &gt; dd img{
	max-width: 100%;
}
	
}
	
















/*　　複数列レスポンシブ要
------------------------------------------------------------------------------------------------------------*/



/*-=====　2列　=====*/


.col_2{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}

.col_2 &gt; div{
	width: 50%;
	padding: 5px;
}


.col_2 &gt; div img{
	max-width: 100%;
}


@media screen and (max-width: 768px) {
	.col_2 &gt; div{
		width: 100%;
	}
	
	.col_2 &gt; div img{
		max-width: 100%;
	}
}






/*-=====　3列　=====*/


.col_3 {
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}

.col_3 &gt; div{
	width: 33.33333%;
	text-align: center;
	padding: 10px;
}


.col_3 &gt; div img{
	max-width: 100%;
}


@media screen and (max-width: 960px) {
	.col_3 &gt; div{
		width: 50%;
		text-align: center;
	}
}

@media screen and (max-width: 480px) {
	.col_3 &gt; div{
		width: 99%;
		text-align: center;
	}
}







/*-=====　4列　=====*/



.col_4{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_4 &gt; div{
	width: 25%;
	padding: 10px;
}


.col_4 &gt; div img{
	max-width: 100%;
}

@media screen and (max-width: 960px) {
	.col_4 &gt; div{
		width: 33.33333%;
	}
}
@media screen and (max-width: 480px) {
	.col_4 &gt; div{
		width: 50%;
		padding: 5px;
	}
}







/*-=====　5列　=====*/



.col_5{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_5 &gt; div{
	width: 20%;
	padding: 10px;
}


.col_5 &gt; div img{
	max-width: 100%;
}


.col_5 &gt; div &gt; div{
	position: relative;
	overflow: hidden
}

@media screen and (max-width: 960px) {
	.col_5 &gt; div{
		width: 25%;
	}
}

@media screen and (max-width: 480px) {
	.col_5 &gt; div{
		width: 50%;
	}
}





















</pre></body></html>