
@charset   "UTF-8";
@media screen and (max-width:1023px){

body{
  margin: 0;  
} 

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;  /* 背景カラー */
  z-index: 9998;  /* 一番手前に */
  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{
  -webkit-transform:scale(1.2);
  transform:scale(1.2);
    
} 

/* --- スマホ用アイコン---- */    
#s-menu{
  background-color: #fff;
  border-bottom: 1px solid #b9a4a4;
}   
#s-rogo{
  width: 100%;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.p-30{
  width: 20%;
  min-width: 120px;
  max-width: 200px;
} 	
.s-icon{
  text-decoration: none;
  color: #fff;   
}
.s-icon-n{
  padding: 5px 5px 5px 30px;/* 設定順番:上・右・下・左; */
  font-size: 10pt;
  text-align: left;
  text-decoration: none;
  color: #fff; 
  display: block;
  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(115,84,72,1) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: .3s;
}
.s-icon-n:hover {
  background-position: -100% 0;
  color: #fff;
}
.sample-accordion {
  min-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.sample-accordion .ac-content {
  margin: 0;
  padding: 0;
}
.sample-accordion input {
  display: none;
}
.sample-accordion label {
  display: block;
  cursor: pointer;
  text-align: left;
  text-indent: 3em;
  padding: 5;
  background: linear-gradient(to bottom, #5a5454, #403a3a);
  color: #fff;
  border-bottom: 1px double #fff;
  box-sizing: border-box;
}
.sample-accordion label:hover {
  background: #746e6e;
}
.sample-accordion .ac-cont {
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #9f887f, #806a61);
  box-sizing: border-box;
  transition: 0.2s;
}
.sample-accordion input:checked + .ac-cont {
  height: auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}	
.la{
  width: 100%;
  margin-left: 0;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: normal;
  font-size: 13pt;
}	
/* --- 全体のフレーム----- */    
#contents{
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;        
}	
/* --- デスクトップ左側ナビゲーションメニュー非表示 ----- */	
#sidebar{
  display: none;	
}
#r-contents{
  width: 100%;
  min-height: 100vh;
  padding-top: 20px;
  object-fit: cover;
  box-sizing: border-box; 
  background-color:#fff9ed;
  z-index: 1;
}	

.main-title{
  margin: 0 5% 15px 0;
  font-size: 27px;	
  text-indent:1em;
  background-color:#fff9ed;
}

/* --- （お問い合わせ内容入力と下の文字）----- */
.input-t-p{
  margin-left: 25px;  
  background-color:#fff9ed;
  display: block;
}
.input-t{
 font-size: 23px;
 font-weight: bold;
}
.input-p{
 width: 90%;
 font-size: 14px;
}

/* --- thanks（お問い合わせ送信完了） ----- */
.kanryou-t{
  font-size: 20pt;	
}	

#copyright{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 25px;
  padding-top: 5px;
  font-size: 10pt;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  background-color: forestgreen;
  z-index: 60;
}    

/* ローディングアニメーション */   
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}
}
    
}      
 
.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); 
}
    
/* メンテナンス中 */ 
.mente{
  width: 100%;
  max-width: 600px;
  min-height: 500px;
  margin: 50px auto 0 auto;
  text-align: center;  
}
.mente-title{
  font-size: 21px;
  font-weight: bold;
  text-decoration: underline;
}
.mente p{
  width: 88%;
  max-width: 390px;
  margin: 20px auto 0 auto;
  font-size: 14px;
  text-align: left;  
  display: inline-block;
}

.p-tel{
  width: 100%;
  margin: 0 auto;
  font-size: 17px;
  text-align: center;
  display: block;
}
.p-tel span{
  font-size: 20px;
  display: inline-block;
}
.p-tel a:link {
 color: #000000;
 text-decoration: none;
}
.p-tel a:visited {
 color: #000000;
 text-decoration: none;
}

}
