/*デフォルトのマウスカーソルを非表示にする*/
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;
  text-align: center;
  animation-name: fade;
  animation-duration: 2s;
  animation-iteration-count: 1;
  letter-spacing: 0.2em

}

h2{
  color:#4682b4;
  font-family: 'Shippori Mincho B1', serif;
  text-align: center;
  margin-top:50px;
}
p{

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

.taruru{
  display: none;
}

@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}


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

.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;
}

.main2{
  display: none;
}

/* ふわっとアニメーション */
@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;
  }
}

/*=== 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;
}

.main{
  background-image: url("../../img/top_img06.jpg");
  background-position: center center;
  background-repeat:none;
  background-size: cover;
  height: 100vh;
  width: 100%;

   /* background-position:center; */
}

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

.header {
  color: #fff;
}

.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秒かけてアニメーション*/
    z-index: 999;
}

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

/*ナビゲーションの縦スクロール*/
#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;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    display: none;

}

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

/* 背景が出現後にナビゲーション 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{
   text-align: center;
   margin-top: 220px;
}
ul.yoko li{
   display: inline-block;
}
/*
#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;
} */

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



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




.fade {
  transition: 1.5s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.fade.on {
  transform: translateY(0);
  opacity: 1.0;
}


.text{
  margin: 50px;
  text-align: center;
  color:#4682b4;
}

hr {
  border-color: #4682b4;
  border-style: solid;
   width: 216px;
}







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;
  text-align: center;
  justify-content: center;
  color:#4682b4;
}

.texts1 p{
  margin: 0;
}

.texts1{

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

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

}
.texts3{
  display:flex;
  vertical-align: middle;
  margin-top: 8px;
  margin-right: 20px;
  text-align: center;

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

}

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

.copyimg2{
  display: none;
}


.news{

    display:flex;
    justify-content: center;
    margin: 50px;

}
.img{
  display: inline-block;

}
.texts{
  margin: 50px;
  text-align: center;
  display: inline-block;
  color:#4682b4;
}

body{
  margin: 0px;
    padding: 0px;

}

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

/* ボタン全体 */
.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;
}

/* 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;
}


.br-sp {display: none; }





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

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

  .openbtn span{
     background-color: #fff5e0;

      }


  @keyframes border_anim {
    0%{
      width: 0%;
    }
    100%{
      width: 80%;
    }
  }
  .border{
  position: relative;
  text-align: left;
  margin-left: 50px;
  margin-right: auto;
  }

  .border:before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -10%;
  border-bottom: solid 1px #000;
  animation: border_anim 2s linear forwards;
  }

  .border2{
    position: relative;
    text-align: center;
  }

  .border2:before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -25%;
    width: 0;
    border-bottom: solid 1px #000;
    transform: translateX(-50%);
    animation: border_anim 2s linear forwards;
  }

  .sub{
  margin-top:5;
  margin-left: 50px;
  text-align: left;
  font-size: 0.8rem;
  }
  .siro{
  color:#4682b4;;
  margin: 0;
  }


  .main{
    background-image: url("../../img/top_img06.jpg");
    background-position: center center;
  background-repeat:cover;
  background-size: auto 100vh;
  height: 100vh;
  width: 100%;

     /* background-position:center; */
  }

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

  }

.news{
  display: block;
}

.main2{
  display: block;
}

.header-px{
  display: block;
  position:fixed;
  top:0;
  z-index: 101;
}



.text{
margin-top: 20px;
margin-bottom: 100px;
}

.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%);

}

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

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

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

  img.example6 {
    display: block;
  width: 100%;
  height: auto;
  }


.copyimg2{
  display: block;
  margin-top: 10px;
}
.copyimg{
  display: none;
}
.onlineshop{
  margin: auto;
  height:auto;
  text-align: center;
  }


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

}

.box2{
  display: block;
}

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

.texts1{
  text-align: center;
display: block;
font-size: 2.5rem;
color:#0C7792;
margin: 0;
}

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

.texts3{
  display:none;
  color:#0C7792;
}

.texts{
  margin-top: 0;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  text-align: center;
  display: inline-block;
  color:#4682b4;
}
.text{
  margin-bottom: 0;
}
.br-sp {
  display:block;
 }

 #brandy01{
   white-space: nowrap;
   position: relative;
   text-align: left;
   margin-right: auto;
 }

 #brandy02{
   white-space: nowrap;
   position: relative;
   text-align: left;
   margin-right: auto;
 }
 #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;
      color: #fff5e0;
    }

   h2{
     color:#000000;
   }
   .taruru{
     display:block;
   }

   p{
     font-size: 0.9rem;
     color:#132533;
     letter-spacing: 0.05em;
     line-height: 1.8;
   }

   .left{
     text-align: left;
   }

   .smoll{
  font-size: 0.8rem;
}
ul.yoko{
  display: block;
  margin-top:260px;
  line-height: 5px;
}
body{
}
}
