/*デフォルトのマウスカーソルを非表示にする*/
html,body,a{
    cursor: none;
}

#cursor{
    transform: translate(0,0);
    pointer-events: none;
    position: fixed;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    background: rgba(30, 144, 255,0.75);
    border-radius: 50%;
    z-index: 999;
    transition: width .3s, height .3s, top .3s, left .3s;
  }

    #cursor.hov_ {
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  background: rgba(224, 255, 255,0.75);
  }



h1{
  color:#f0f8ff;
  font-family: 'Shippori Mincho B1', serif;
  font-family:, serif;
  text-align: center;
  animation-name: fade;
  animation-duration: 2s;
  animation-iteration-count: 1;
  letter-spacing: 0.2em;
  text-shadow: 1px 2px 3px #432f2f;
}

h3{
  color:#f0f8ff;
  font-family: 'Shippori Mincho B1', serif;
  text-align: center;
  animation-name: fade;
  animation-duration: 2s;
  animation-iteration-count: 1;
}
h2{

  font-family: 'Shippori Mincho B1', serif;
  text-align: center;
}
p{

  font-family: 'Shippori Mincho B1', serif;
  text-align: center;
}

img.example1 {
width: 600px;
height: 600px;
}

img.example2 {
  transition: all 0.5s ease-in-out; /* 0.5秒かけて半透明になる。変化の開始と終わりはゆっくり */
}
img.example2:hover {
  opacity: 0.5;
}



/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:500px;
	right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 2s ease-in-out infinite;
  z-index: 30;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:27%;}
      50%{bottom:30%;}
     100%{bottom:27%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
	position: absolute;
	left:-20px;
	bottom:10px;
    /*テキストの形状*/
	color: #ffffff;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #ffffff;
    transform: skewX(-31deg);
}

.scrolldown4:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	right:0;
    /*矢印の形状*/
	width:1px;
	height: 50px;
	background:#ffffff;
}



@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.slideBox {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;

  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* テキストがあるバージョン */
.title {
  font-size: 32px;
  color: #fff;
  z-index: 11;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.sub_title
{
  font-size: 15px;
  color: #fff;
  z-index: 11;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-shadow: 1px 2px 3px #432f2f;
}

.item2 {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 15s 0s infinite;
  animation: anime 15s 0s infinite;
}

.item2:nth-of-type(2) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.item2:nth-of-type(3) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}


/*== 下線が伸びて背景に変わる　*/

.btnlinestretches3{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*ボタンの形状*/
	color:#4682b4;
    padding: 10px 30px;
	display:inline-block;
    text-decoration: none;
    outline: none;
}

/*テキストの設定*/
.btnlinestretches3 span{
    /*テキストを前面に出すためz-indexの値を高く設定*/
	position:relative;
	z-index: 2;
}

.btnlinestretches3:hover span{
	color: #ffffff;
}

/*線の設定*/
.btnlinestretches3::after {
	content:'';
    /*絶対配置で線の位置を決める*/
	position:absolute;
	z-index:1;
	bottom:0;
	left:0;
    /*線の形状*/
	background:#4682b4;
	width:100%;
	height:3px;
    /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

/*線が伸びて背景に*/
.btnlinestretches3:hover::after {
	height:100%;
}


/* .main{
  background-image: url("../img/top_img03.jpg");
  padding-top:  300px;
  padding-bottom: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* background-position:center;
} */

/* .container{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
} */

.header {
  color: #fff;
}

.header.change-color {
  color: #4682b4;
}

.header-rogo{
  height:80px;
  margin-left:  20px;
}

.header-left{
  left:0;
  line-height:1;
  position:fixed;
  top:0%;
  z-index:100;
  padding:1rem;
}

.header-right{
  right:0;
     line-height:1;
     position:fixed;
     top:0%;
     z-index:100;
     padding:1rem;
}

.clear{
  clear:both;
}

/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #4682b4;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center;
	list-style: none;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;

}

#g-nav li a:hover{
  color: #fff;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}

/*×に変化*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #4682b4;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #ffffff;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #ffffff;
}

ul.yoko{
  display: flex;
  margin-top:230px;
}

/*
#humberger {
  position: relative;
  height: 20px;
  width: 28px;
  display: inline-block;
  box-sizing: border-box;
}
#humberger div {
  position: absolute;
  left: 0;
  height: 2px;
  width: 28px;
  background-color: #4682b4;
  border-radius: 2px;
  display: inline-block;
  box-sizing: border-box;
}
#humberger div:nth-of-type(1) {
  bottom: 20px;
}
#humberger div:nth-of-type(2) {
  bottom: 10px;
}
#humberger div:nth-of-type(3) {
  bottom: 0;
} */




.setumei{
  color:#4682b4;
}

.br-sp {display: none; }


.barel{

  width: 450px;

}

.fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 2.5s, transform 2s;
}.fade.active {
	opacity: 1;
	transform: translateY(0px);
}


.brandy{

    display:flex;
    justify-content: center;

}
.card-img{
  display: inline-block;
  margin: 50px;
}
.card-text{

  text-align: center;
  display: inline-block;
  color:#4682b4;
}
.whisky{
    display:flex;
    text-align: center;
    justify-content: center;

}

.card-img2-2{
  display: none;
  width:600px;
  height: 600px;
  text-align: center;
  margin: 50px;
}

.card-img2{
  width:600px;
  height: 600px;
  text-align: center;
  margin: 50px;
}
.card-text2{
  text-align: center;
  margin-right:  120px;
  margin-left: 150px;
  color:#4682b4;
}

.online{
  color:#4682b4;
}

.eizou{
  text-align: center;
}


.box1 {
  text-align: center;
background:#4682b4;
color:#ffffff;/*境界線の指定*/
padding:1px;
}
.box1 p {
margin:0;
padding:0;
}


.box2 {
  display:flex;
  justify-content: center;
  text-align: center;
background:#4682b4;
color:#ffffff;/*境界線の指定*/
padding:1px;
}
.box2 p {
margin:0;
padding:0;
}



.card-img3{
  width:300px;
  height: 300px;
  text-align: center;
  margin: 50px;
  display: inline-block;
}

.sonotahakotira{
  text-align: right;
  margin-right:  120px;
  margin-left: 150px;
  color:#4682b4;
}

a {
  color:#4682b4;
  text-decoration:none;
  font-family: 'Shippori Mincho B1', serif;
}
a:hover {
  color: skyblue;
  font-weight: bold;
}

.contact{
  color:#4682b4;
  text-align: center;
  margin-top: 200px;
  margin-bottom: 200px;
}

.card-texts{

  display:flex;
  align-items:stretch;
  justify-content: center;
  color:#4682b4;
}

.texts1 p{
  margin: 0;
}

.texts1{

  display:flex;
  vertical-align: middle;
  align-items: center;
  margin-right: 20px;
font-size: 50px;

}
.texts2{
  display:flex;
  vertical-align: middle;
  margin-top: 15px;
  margin-right: 20px;
  align-items: center;

}
.texts3{
  display:flex;
  vertical-align: middle;
  margin-right: 20px;
  align-items: center;
  font-size:30px;

}
.sns{
  display:flex;
  margin-top: 18px;
  vertical-align: middle;
  align-items: center;

}

.copy{
  color:#000000;
  margin: 0px;
  font-family: 'Shippori Mincho B1', serif;
  text-align: center;
}

img.example4 {
  transition: all 0.5s ease-in-out; /* 0.5秒かけて半透明になる。変化の開始と終わりはゆっくり */
}
img.example4:hover {
  opacity: 0.5;
}

body{
  background: url(../img/water_00229.jpg) no-repeat center center;
	  background-color: #ffffff;
	  background-size: cover;
  margin: 0px;
    padding: 0px;
    color: #FFFFFF;
}
.cursor,
.follower {
  border-radius: 50%;
  position: absolute; //bodyの一番左上になるように配置する
  top: 0;
  left: 0;
  cursor: none; //もともとあるカーソルは見えなくなるようにする
  posinter-events: none; //他の要素がクリックできなくならないように
}

.cursor {
  width: 8px;
  height: 8px;
  background-color: #000;
  z-index: 1001; //どの要素よりも一番上になるようにする
}

.follower {
  width: 40px;
  height: 40px;
  background-color: #fdfe00;
  z-indes: 1000; //カーソルの次に上になるようにする
}

.content{
    margin: auto;
    background-color: rgb(0,0,0,0.5);
	width: 50%;
	height: 600px;
	}

  .copyimg2{
    display: none;
  }

/* ボタン全体 */
.flowbtn8{
border-radius:50%;
position:relative;
display:inline-block;
width:50px;
height:50px;
font-size:30px;
text-decoration:none;
transition:.5s;
}
/* ボタンマウスホバー時のテキスト指定 */
.flowbtn8:hover{
color:#fff!important;
}
/* アイコンをど真ん中に */
.flowbtn8 i{
position:absolute;
top:50%;
left:50%;
-ms-transform:translate(-50%,-50%);
-webkit-transform:translate(-50%,-50%);
transform:translate(-50%,-50%);
}
/* Twitter */
.flowbtn8.fl_tw2{
border:solid 1px #55acee;
color:#55acee;
}
/* Twitterマウスホバー時 */
.flowbtn8.fl_tw2:hover{
border:solid 1px #55acee;
background:#55acee;
}
/* Instagram */
.flowbtn8.insta_btn2 {
border:solid 1px #c6529a;
color:#c6529a;
font-size:35px;
}
/* Instagramマウスホバー時 */
.flowbtn8.insta_btn2:hover{
border:solid 1px #c6529a;
background:#c6529a;
}
/* Facebook */
.flowbtn8.fl_fb2{
border:solid 1px #3b5998;
color:#3b5998;
}
/* Facebookマウスホバー時 */
.flowbtn8.fl_fb2:hover{
border:solid 1px #3b5998;
background:#3b5998;
}
/* Feedly */
.flowbtn8.fl_fd2{
border:solid 1px #6cc655;
color:#6cc655;
font-size:28px;
}
/* Feedlyマウスホバー時 */
.flowbtn8.fl_fd2:hover{
border:solid 1px #6cc655;
background:#6cc655;
}
/* Pocket */
.flowbtn8.fl_pk2{
border:solid 1px #ef3f56;
color:#ef3f56;
font-size:32px;
}
/* Pocketマウスホバー時 */
.flowbtn8.fl_pk2:hover{
border:solid 1px #ef3f56;
background:#ef3f56;
}
/* はてブ */
.flowbtn8.fl_hb2{
border:solid 1px #1ba5dc;
color:#1ba5dc;
font-size:25px;
}
/* はてブマウスホバー時 */
.flowbtn8.fl_hb2:hover{
border:solid 1px #1ba5dc;
background:#1ba5dc;
}
/* YouTube */
.flowbtn8.fl_yu2{
border:solid 1px #fc0d1c;
color:#fc0d1c;
font-size:28px;
}
/* YouTubeマウスホバー時 */
.flowbtn8.fl_yu2:hover{
border:solid 1px #fc0d1c;
background:#fc0d1c;
}
/* LINE */
.flowbtn8.fl_li2{
border:solid 1px #00c300;
color:#00c300;
font-size:35px;
}
/* LINEマウスホバー時 */
.flowbtn8.fl_li2:hover{
border:solid 1px #00c300;
background:#00c300;
}
/* お問い合わせ */
.flowbtn8.fl_ma2{
border:solid 1px #f3981d;
color:#f3981d;
font-size:28px;
}
/* お問い合わせマウスホバー時 */
.flowbtn8.fl_ma2:hover{
border:solid 1px #f3981d;
background:#f3981d;
}
/* ulタグの内側余白を０にする */
ul.snsbtniti{
padding:0!important;
list-style-type:none!important;
width:200px;
margin:0 auto;
}
/* ボタン全体の位置 */
.snsbtniti{
display:flex;
flex-flow:row wrap;
justify-content:space-around;
}
/* ボタン同士の余白 */
.snsbtniti li{
flex:0 0 33%;
text-align:center!important;
}

.p_1{
     padding:2% 5%;
	 }

.back{
     margin:5% 0 0 5%;
	 display: inline-block;
     padding: 0.3em 1em;
     text-decoration: none;
     color: #ffffff;
     border: solid 2px #ffffff;
     border-radius: 3px;
     transition: .4s;
     }

.back:hover {
    background: #cccccc;
    color: #000000;
}
.onlineshop{
      margin: auto;
   height: 200px;
    text-align: center;
   }

   img.example2-2 {
   display: none;
   }

  /*　↓画面サイズが480px以下の場合ここの記述が適用される　*/

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


  .slideBox {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;

    overflow: hidden;
    position: relative;
  }

  .header-rogo{
    height:40px;
    margin-left:  5px;

  }




.title{
  color: #fff;
  z-index: 11;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;

}
.sub_title{
  color: #fff;
  z-index: 11;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-shadow: 1px 2px 3px #432f2f;

}

img.example1 {
width: 100%;
height: auto;
}

.setumei{
  margin: 30px;
}


.br-sp {
  display:block;
 }

.brandy{
  display: block;
  text-align: center;

}
.card-img{
  width:100%;
  margin: 0;
}
.card-text{
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
  color:#4682b4;
}
.whisky{
  display: block;
  margin-top: 20px;
  margin-bottom: 100px;
}

.card-img2-2{
  display: block;
  height: 418px;
  width:100%;
  margin: 0;
}

.card-img2{
  display: none;
  width:100%;
  margin: 0;
}
.card-text2{
  margin: 30px;
  margin-top: 0;
  text-align: center;
  color:#4682b4;
}

.sonotahakotira{
  text-align: center;
  margin: 0;
  color:#4682b4;
}
img.example2 {
display: none;
}

img.example2-2 {
  display: block;
  margin: auto;
text-align: center;
}

img.example5 {
margin: auto;
text-align: center;
width: 100%;
height: auto;
}


.onlineshop{
  margin: auto;
  height:auto;
  text-align: center;
  }


.contact{
  color:#4682b4;
  text-align: center;
  margin-top: 200px;
  margin-bottom: 200px;

}

.card-texts{
  margin: 30px;
  display: block;
  text-align: center;
  justify-content: center;
  color:#4682b4;
}

.texts1{
  text-align: center;
display: block;
font-size: 1.2rem;
margin: 0;
}

.texts2{
font-size: 0.8rem;
display: block;
margin: 0;
}

.texts3{
  display:none;
}

.example4{
  width: 100%;

}
.copyimg2{
  display: block;
  margin-top: 10px;
}
.copyimg{
  display: none;
}

h2{
  color:#000000;
}

.siro{
  color:#ffffff;
  margin: 0;
}

p{
  color:#000000;
}



#cursor{
    transform: translate(0,0);
    pointer-events: none;
    position: fixed;
    top: -4px;
    left: -4px;
    width: 0px;
    height: 0px;
    background: rgba(30, 144, 255,255);
    border-radius: 50%;
    z-index: 999;
    transition: width .3s, height .3s, top .3s, left .3s;
  }

    #cursor.hov_ {
  top: -12px;
  left: -12px;
  width: 0px;
  height: 0px;
  background: rgba(224, 255, 255,255);
  }

  #g-nav ul {
   opacity: 0;/*はじめは透過0*/
      /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
      position:absolute;
      top:40%;
      left:50%;
      transform: translate(-50%,-50%);
  }

  #g-nav li a{
   line-height:20px;
 }

.smoll{
  font-size: 0.5rem;
}

ul.yoko{
  display:block;
  margin-top:260px;
}

body{
  /* font-size: 0.5rem; */
    background:none;
  	  background-color: #ffffff;
    margin: 0px;
      padding: 0px;
      color:#000000;
}


}
