@charset "utf-8";

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {background:url(../img/1.png);}
.slider-item02 {background:url(../img/2.png);}
.slider-item03 {background:url(../img/3.png);}
.slider-item04 {background:url(../img/4.png);}
.slider-item05 {background:url(../img/5.png);}
.slider-item06 {background:url(../img/6.png);}
.slider-item07 {background:url(../img/7.png);}
.slider-item08 {background:url(../img/8.png);}
.slider-item09 {background:url(../img/9.png);}
.slider-item10 {background:url(../img/10.png);}
.slider-item11 {background:url(../img/11.png);}
.slider-item12 {background:url(../img/12.png);}
.slider-item13 {background:url(../img/13.png);}
.slider-item14 {background:url(../img/14.png);}
.slider-item15 {background:url(../img/15.png);}


.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
    background-color: #fff;
}

/*矢印の設定*/

.slick-prev,
.slick-next {
    position: absolute;
  z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  position: relative;
  z-index: 3;
    text-align:center;
  margin:-50px 0 0 0;/*ドットの位置*/
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:4px;/*ドットボタンのサイズ*/
    height:12px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:10px;
    background:#fff;/*ドットボタンの色*/
    border: none;
}

.slick-dots .slick-active button{
    background:#999;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/
html{
  font-size: 1rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #00a0b8;
}

a:hover,
a:active{
  text-decoration: none;
}

h1{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
  font-family: "Hina Mincho", serif;
}
h1 img{
  height: 100%; /* イメージの高さを50%に設定 */
}

h2{
  color:#00a0b8;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  font-family: "Hina Mincho", serif;
 }

.wrapper{
  position: relative;
}

.container{
  background:#fff;
  padding: 100px 50px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.container h3{
   font-size: 1.8rem;
   font-weight: 400;
   margin-top: 50px;
   margin-bottom: 0;
   font-family: "Hina Mincho", serif;
  }
.container h4{
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: "Hina Mincho", serif;
   }
.container p{
  color: #666;
  line-height: 2;
  margin-bottom: 2rem;
}

.brown{
  color: #cc556a;
}
.blond{
  color: #00a0b8;
}

.bottle{margin: 50px auto 20px; text-align: center;}
.bottle img{height: 300px;}

.pr1{border: 1px solid #00a0b8; padding: 50px; margin: 100px auto;}
.pr2{border: 1px solid #cc556a; padding: 50px; margin: 100px auto;}
.title{text-align: center; margin: 100px auto 50px;}
.title img{width: 50%; margin: 0 auto 50px;}
.product img{width: 100%;}
.product .slider{height:100%;margin:0 0 30px;}
.mat{
  border-top: 1px solid #00a0b8; padding: 30px 0; margin: 50px 0;
  border-bottom: 1px solid #00a0b8; padding: 30px 0; margin: 50px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem; line-height:1.5;
  color:#666;
}
.bronze{
  border-bottom: 1px solid #00a0b8; padding: 30px 0; margin: 0px 0 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem; line-height:1.5;
  color:#666;
  display: flex;
  align-items: center;
}
.bronze img{
  width: 80px;
  display: inline-block;
  padding-right: 20px;
}
.mat2{
  border-top: 1px solid #cc556a; padding: 30px 0; margin: 50px 0;
  border-bottom: 1px solid #cc556a; padding: 30px 0; margin: 50px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem; line-height:1.5;
  color:#666;
}
.button {
  display: inline-block;
  padding: 10px 40px;
  background-color: #00a0b8;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 10px;
  transition: background-color 0.3s;
  font-family: "Noto Sans JP", sans-serif;
}

.button:hover {
  background-color: #008d9e;
}

.button2 {
  display: inline-block;
  padding: 10px 40px;
  background-color: #cc556a;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 10px;
  transition: background-color 0.3s;
  font-family: "Noto Sans JP", sans-serif;
}

.button2:hover {
  background-color: #974151;
}



.center{text-align: center;}
.insta{text-align: center;}
.insta img{ width: 50px;}
.mt50{margin-top: 50px}


.about{margin-bottom: 100px; text-align: center;}
.logo img {width: 200px}

.shop {}
table {
  border-bottom: 1px solid #008d9e;
  margin: 0 auto 100px;
  border-spacing: 0px;
  width: 100%;}
td {padding: 10px; margin: 0; }
tr{padding: 0; margin: 0; width: 100%;border-top: 1px solid #008d9e;}

.shoplist {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #008d9e;
}
.shoplast {
    border-bottom: 1px solid #008d9e;
    margin-bottom: 100px;
}

.shoplist li {
    padding: 10px;
}

.footer{
  background:#00a0b8;
  text-align: center;
  padding: 80px 0 50px;
}
.footer img{height: 150px;}
.footer p{
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.5;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 768px) { .sp { display: none !important; } }
@media screen and (max-width: 767px) { .pc { display: none !important; } }

@media screen and (max-width: 767px) {
  .container{width: calc(100% - 42px); padding: 100px 20px; margin: 0 auto;}
  .pr1{border: 1px solid #00a0b8; padding: 20px; margin: 100px 0 50px;}
  .pr2{border: 1px solid #cc556a; padding: 20px; margin: 100px 0 50px;}
  .title{text-align: center; margin: 50px auto 20px;}
  .title img{width: 80%; margin: 0 auto 20px;}
  .product img{width: 100%; margin: 0 0 20px;}
  .container h3{font-size: 1.4rem; margin-bottom: 10px}
  .container h4{font-size: 1.1rem;}
  .container p{font-size: 0.9rem;}
  .about{width: 90%; margin: 50px auto;}
  td {padding: 0px; margin: 0; border-top: none; display: block;}
  td:first-child{padding: 10px 0 0; margin: 10px 0 0; border-top: 1px solid #008d9e;}
  table {width: 100%; padding-bottom: 10px;}
  .bottle{width: 90%;}
  .shop {width: 100%;}


  .shoplist {
      display: flex;
      justify-content: flex-start;
      border-top: 1px solid #008d9e;
      flex-direction: column;
      padding: 10px;
  }
  .shoplist li {
      padding: 0px;
  }
  .mat{border: 1px solid #00a0b8; padding: 20px; margin: 50px 0;}
  .mat2{border: 1px solid #cc556a; padding: 20px; margin: 50px 0;}
}
