@charset "UTF-8";

/*Pタブの初期設定のマージンとパディングを無効に*/
* {
      margin: 0px;
      padding: 0px;
}

/*リストを一段さげないためのやつ*/
ul, ol {
  padding-left:0px;
}

/*全体の設定 ハイパーリンク埋め込まれている文字黒にし、罫線なしに*/
body	
a{
	text-decoration:none; /*文字の装飾なしに*/
}
a:link	{
	color : #000000;
}
a:visited	{
	color : #000000;
} 

header {
  padding:10px;
  background: #fff;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #55A4C2;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  width: 250px;/*最大幅（お好みで調整を）*/
  height: 100%;
  background: #fff;
  opacity: 0.90; /* 90％不透明度(＝10％透過) */
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

#nav-content a {
	margin: 10px;
	max-height: 10px;
	width: auto;
}

/*罫線*/
.bar3 {
	margin:5px 15px;
  display: block;
  height: 1px;
width: 210px;
  background-color: #55A4C2;
  border: 0;  /*デフォルトデザインでは線がある場合があるので、消しておく。*/
}	


/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.header-logo-menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
}

/*ロゴやサイトタイトルをセンタリング*/
.logo-area{text-align:center;margin:auto;}

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

/*ハンバーガーメニュー非表示*/		
header	{
		display:none ;
	}		
	
.zentai{
	margin: 0px 0px 10px 0px  ;
	}	
	

/*タイトルの動き*/	
.inline-block{
        display: inline-block;      /* インラインブロック要素にする */
        background-color:  #ffffff;    /* 背景色指定 */
        padding:30px;             /* 余白指定 */
        height: 100px;              /* 高さ指定 */
       animation: anime1 2s ease;      /* アニメーション指定 */
}
 
@keyframes anime1{
    0% {
        opacity: 0; /* 透明度指定 */
        top: 50px;  /* 位置指定 */
    }
    100% {
        opacity:  1; /* 透明度指定 */
        top: 0;  /* 位置指定 */
    }
}
		
/*メニューボタン 改行設定*/	
.flex{
    padding:0px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
	
/*メニューボタン 間隔設定*/
.flex a{
	padding:0px;	
	}
	
/*メイン画像の動き*/	
.flex{
       animation: anime1 2s ease;      /* アニメーション指定 */
}
 
	
		
/*背景のブルー*/	
.background-gray {
  background: #AFD5E7;
}

.slide img{
		width: 100%;
	}
	
/*メイン画像下の文字消す*/	
.mainp{
		display: none;
	}	
	

/*お知らせ*/
.wrapper2 {
    max-width: 838.68px;
    margin: 0 auto;   /*このブロックを中央寄せするCSS。*/
	margin:50px 20px;
	padding-bottom: 80px;
    background:#AFD5E7;   /*背景と同じ水色*/
  }

.wrapper2 h1{ 
	text-align: center; 
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "sans-serif";
	font-size: 18px;
	font-weight: 600;	
	}	
	
/*罫線*/
.bar1 {
  display: block;
  max-width: 838.68px;
  height: 2px;
  background-color: #000000;
  border: 0;  /*デフォルトデザインでは線がある場合があるので、消しておく。*/
}	

/*スクロールのやつ*/
.inline_box {
    max-width: 838.68px; /*最大幅*/
    height: 430px; /*高さ*/
    overflow: auto; /*スクロールバーの表示とはみ出したものの表示方法*/
    background: #FFFFFF; /*ボックスの中の背景色*/
    border: 1px solid #FFFFFF; /*ボックス周りの罫線の設定*/
    padding: 20px;
    text-align: left;
}	
	
/*スクロールのやつ下からフェードイン*/
/* 画面外にいる状態 
.inline_box{
  -webkit-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
  opacity: 0;
}
.inline_box.active{
  opacity: 1;
}
	 */

/*スクロールの中の日時*/	
.inline_box time {	
	padding: 10px 0px ;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "sans-serif";
    font-size: 15px;
	font-weight: 300;
	color: #55A4C2;
	}	
	
/*スクロールの中のタイトル*/
.accordion dt {
   border-bottom: solid 1px white;
   background-color: white;
   cursor: pointer;
   padding: 10px 0px ;
   font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "sans-serif";
   font-size: 16px;	
   font-weight: 600;
	color: #55A4C2;
	line-height: 1.3em;
}

.under {
  background: linear-gradient(transparent 50%, yellow 50%);
}/*スクロールの中の内容*/	
.accordion dd {
padding: 10px 0px 20px;	
font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "sans-serif";
font-size: 12px;
font-weight: 200;	
}
	
/*罫線*/
.bar2 {
  display: block;
  height: 1px;
  background-color: #55A4C2;
  border: 0;  /*デフォルトデザインでは線がある場合があるので、消しておく。*/
}	

/*BarberFactoryアイコン押したら薄くなる設定
.icon img:hover { 
	opacity: 0.5 ;
}
*/				
	
/*ページ下の情報*/
.wrapper3 {	
	position: relative;
	margin: 20px 20px;
 }
	
.wrapper3 p1{
	font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "sans-serif";
	font-size: 11px;
	line-height: 1em;
	font-weight: 500; 
	}	
	
.wrapper3 p2{
	margin: 30px 10px;
    font-family: "Tahoma", "Geneva","Hiragino Sans", "sans-serif";
    font-size: 10px;
	font-weight:300;
    letter-spacing: 5px;
	}	

.wrapper3 .ramune{
		position: absolute;
		top:-40px;
	}	
	
/*ラムネちゃんの画面下からフェードイン*/
/* 画面外にいる状態 */
.ramune{
  -webkit-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
  opacity: 0;
}
.ramune.active{
  opacity: 1;
}		

