
@charset   "UTF-8";
@media all and (min-width:1024px){

 body{
    margin: 0;    
 }
    
 body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;  /* 背景カラー */
  z-index: 9999;  /* 一番手前に */
  pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;  /* 初期値では非表示 */
  -webkit-transition: opacity 1.5s ease;  /* アニメーション時間は 0.8秒 */
 -ms- transition: opacity 1.5s ease;
 -moz- transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
} 
 
/*body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。*/
 
body.fadeout::after {
  opacity: 1;
} 
 
/*お好みで、.fadeoutセレクタ以下の他の要素にもアニメーション用のCSSを定義します*/
/*DEMOではページ遷移時にarticle要素のスケールもアニメーションさせています*/
 
body.fadeout article{  
  transform:scale(1.2);
  -webkit-transform:scale(1.2);
   opacity: 0;    
}  
    
/*** スマートフォン用アイコン ***/
 
#s-menu{
display: none;
}

/*** ふわっと表示 ***/
.fuwatto-wrap [class*='fuwatto'] {
  opacity: 0;
  transform: translate(0, 10px);
  transition: all 0.9s; 
}
.fuwatto-wrap [class*='fuwatto'].f-act {
  opacity: 1;
  transform: translate(0, 0); 
}
    
/* スクロール時に出るトップへのアイコン */
#page_top{
  width: 100px;
  height: 60px;
  position: fixed;
  right: 20;
  bottom: -100;
  background: #6a8477;
  opacity: 0.7;
  border-radius: 15px;
    z-index: 100;
}
#page_top a{
  position: relative;
  display: block;
  width: 100px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '↑';
  font-size: 15px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}    
    
/* --- 全体のフレーム----- */    
#contents{
  width: 100%;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  overflow: hidden;        
}

/*** 画像サイズの調整 ***/
.p-100{
  width: 100%;
}  
 .p-20{
  width: 10%;
} 
.p-85{
  width: 85%;
} 
.p-90{
  width: 90%;
  min-width: 110px;
}   

.monami-kai{
  float: left;
  width: 50%; 
  height: auto;
  position:	relative;
  overflow: hidden;
} 
.monami-kai .a-caption {
  font-size:		130%;
  color:			#fff;
  position: absolute;
  left: 0;
  padding-top:		80px;
}
.monami-kai .a-mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateY(-180deg);
	transform:		rotateY(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.monami-kai:hover .a-mask {
	-webkit-transform:	rotateY(0deg);
	transform:		rotateY(0deg);
	opacity:		1;	/* ホバーで表示する */
}  
.monami-kai .a-captiont-title{
  width: 90%;  
  padding: 10px 5% 0 5%;/* 設定順番:上・右・下・左; */
  text-align: center;
  font-size:	16pt;
  color: #fff; 
}
.monami-kai .a-caption-moji{
  width: 60%;  
  padding: 10px 20% 0 20%;/* 設定順番:上・右・下・左; */
  text-align: left;
  font-size:	12pt;
  color: #fff;  
  display: inline-block;
}    
.asoshie{
  float: right;
  width: 50%; 
  height: auto;
  overflow: hidden;
}
	
/* --- 右側 ----- */
#r-contents{
  position: relative;
  float: right;
  width: 100vw;
  min-height: 100%;
  margin-right: -14.5%;
  padding-right: 14.5%;
  background-image: url(news.jpg);
  background-size: cover;
  box-sizing: border-box;
  z-index: 1;
}

/* --- ニュース ----- */

#news-box{
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height:1040px;
  padding-top: 0px;
  padding-bottom: 0px;
}
#news-title{
 width: 30%;
 height: auto;
 margin: 20px 63% 2% 7%;/* 設定順番:上・右・下・左; */  
 text-align: left;
 font-size: 40pt;
 font-weight: 800;
 color: #38383c;
 border-bottom: solid 2px #6a8477;
 text-decoration: none; 
 line-height: 0.7;
 display: inline-block;    
}
.news-all{
  width: 70%;
  margin: 15px 15%;/* 設定順番:上下・左右; */
}
/* ニュース（日付・アイコン・見出し・内容）親BOX */
dl{
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px dashed #6a8477;
}
/* ニュース（日付・アイコン・見出し） */
dt{
  width: 96%;  
  height: auto;
  padding-left: 3%;
  padding-right: 1%;
  cursor: pointer;
  display: block;
  overflow: hidden;
}
/* ニュース（内容） */
dd{
  height: auto;
  margin-left: 0;
  padding: 1rem;
  background-color: #fff;
  box-shadow: inset 0 0 15px rgba(0,0,0,.2);
}
.news-all dd{
  display: none;
}
.news-all dd:target{
  display: block;
  /* #によるtargetが効いたときに表示*/
  height: auto;
  padding: 1rem;
  background-color: #fff;
  box-shadow: inset 0 0 15px rgba(0,0,0,.2);
}
/* ニュース（日付） */
.n-ymd{
  float: left;
  width: 12%;
  font-size: 14pt;
  color: #000000;
  display: block;
}
/* ニュース（アイコンnew） */
.new-icon{
  float: left;
  width: 30px;
  padding: 3px;
  margin-left: 5%;
  font-size: 80%;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2em;
  white-space: nowrap;
  color: #6a8477;
  border: solid 1px #6a8477;
  border-radius: 5px;
  -webkit-border-radius: 5px;/* for Safari and Chrome 対応*/
  -moz-border-radius: 5px;/* for Firefox 対応*/
  display: block;
}
/* ニュース（アイコン無し） */
.no-icon{
  float: left;
  width: 30px;
  padding: 3px;
  margin-left: 5%;
  display: block;
}
/* ニュース（見出し） */
.news-midashi{
  float: left;
  width: 70%;
  height: auto;
  margin: 0px;
  padding-left: 3%;
  font-size: 14pt;
  text-align: left; 
  text-decoration : none; 
  text-indent: 1em;
  line-height: 1.5em;
  letter-spacing: 0.3em;
  color: #484b4e;
  overflow: hidden;
  display: block;
} 
.news-kiji{
  width: 90%;
  height: auto;
  margin: auto;
  padding: 5px 5% 5px 5%;/* 設定順番:上・右・下・左; */
  font-size: 12pt;
  text-align: left; 
  line-height: 2.2em;
  text-indent: 1em;
  display: block;
}
.news-pic{
  width: 40%;
  padding: 20px 30% 20px 30%;/* 設定順番:上・右・下・左; */
  display: block;
}

/* ニュース（アイコン全体） */
.news-icon{
  width: 40%;
  max-width: 280px;
  padding: 0 0 40px 60%;
}

.idou-box{
  float: left;
  width: 60%;
}

/* ニュース（アイコン・左） */
.page-idou-l{
  float: left;
  cursor: pointer;
  width: 60px;
  margin: 0 auto;
  padding: 12px 8px;/* 設定順番:上下・左右; */
  line-height: 10px;
  font-size: 10pt;
  vertical-align: middle;
  text-align:center;
  text-decoration: none;
  color:#ffffff;
  background: #70542c;  
  border-radius: 40px;
  -webkit-border-radius: 40;
  -moz-border-radius: 40;
  transition: .3s;
  display:block;
}
.page-idou-l:hover {
  background: #c09a61;
  text-decoration: none;
}
/* ニュース・リンク通常時 色指定 */
.page-idou-l a:link{
  text-decoration: none;
  color:#fff;
}
/* ニュース・リンク訪問済み 色指定 */
.page-idou-l a:visited{
  text-decoration: none;
  color: #fff;
}

/* ニュース（アイコン・右） */
.page-idou-r{
  float: right;
  cursor: pointer;
  width: 60px;
  margin: 0 auto;
  padding: 12px 8px;/* 設定順番:上下・左右; */
  line-height: 10px;
  font-size: 10pt;
  vertical-align: middle;
  text-align:center;
  text-decoration: none;
  color:#ffffff;
  background: #70542c;  
  border-radius: 40px;
  -webkit-border-radius: 40;
  -moz-border-radius: 40;
  transition: .3s;
  display:block;
}
.page-idou-r:hover {
  background: #c09a61;
  text-decoration: none;
}
/* ニュース・リンク通常時 色指定 */
.page-idou-r a:link{
  text-decoration: none;
  color:#fff;
}
/* ニュース・リンク訪問済み 色指定 */
.page-idou-r a:visited{
  text-decoration: none;
  color: #fff;
}

/* ニュース（アイコン・戻る） */
.news-back {
  float: right;
  cursor: pointer;
  width: 60px;
  margin: 0 auto;
  padding: 12px 8px;/* 設定順番:上下・左右; */
  line-height: 10px;
  font-size: 10pt;
  vertical-align: middle;
  text-align:center;
  text-decoration: none;
  color:#ffffff;
  background: #70542c;  
  border-radius: 40px;
  -webkit-border-radius: 40;
  -moz-border-radius: 40;
  transition: .3s;
  display:block;
}
.news-back:hover {
  background: #c09a61;
  text-decoration: none;
}
/* ニュース・戻る・リンク通常時 色指定 */
.news-back a:link{
  text-decoration: none;
  color:#fff;
}
/* ニュース・戻る・リンク訪問済み 色指定 */
.news-back a:visited{
  text-decoration: none;
  color: #fff;
}

/* ローディングアニメーション */   
body,html {
 width: 100%;
 height: 100%;
 margin: 0;
 padding: 0;
} 
.anime {
 width: 100%;
 height: 100%;
 max-height: 1080px;
 background-color: #fff;
 position: relative;
} 
.anime img {
 display: block;
 position: absolute;
 top: 30%;
 left: 45%;
 animation-name: fadein;
 animation-duration: 2s;
}
@keyframes fadein {
from {
  opacity: 0;
  transform: translateY(20px);
}
to {
  opacity: 1;
  transform: translateY(0);
} 
.mainSite {
 width: 100%;
 height: 100%;
 max-height: 1080px;
 background-color: #FC6;
 position: relative;
 animation: fadeIn 2s ease 0s 1 normal;
 -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
    
}  
      
#copyright{
  width: 100%;
  height: 25px;
  padding-top: 5px;
  font-size: 10pt;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  background-color: forestgreen;
  z-index: 60;
}     
	
}