/*デフォルトのマウスカーソルを非表示にする*/
html,body,a{
    cursor: none;
}
.header {
  color: #fff;
}
#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;
}

img.example3 {
width: 300px;
height: 300px;
}

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



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


/*リストのレイアウト設定*/
#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;
}
 */



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


.news{

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

}
.img{
  display: inline-block;

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

.jump1{
	display: block;
	padding-top: 90px;
	margin-top: -90px;
}

.jump2{
	display: block;
	padding-top: 90px;
	margin-top: -90px;
}
.jump3{
	display: block;
	padding-top: 90px;
	margin-top: -90px;
}

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

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

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

}

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

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


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

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

  .br-sp {
    display:block;
   }

  .main{
    background-image: url("../../img/nuru.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;

  }




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

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


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

}

.news{

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

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

}
.text{
  margin: 50px;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  display: block;
  color:#4682b4;
  white-space: nowrap;
}

.box2{
  display: block;
}

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

  h2{
    color:#000000;
  }


  p{
    color:#000000;
  }

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