@charset "UTF-8";

/*--------------------------------
 ALL
---------------------------------*/
html {
scroll-behavior: smooth;
}

body {
    text-align: center;
    font-family: "Noto Sans", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo,
    sans-serif;
    font-size: 16px;
    color: #333;
}

a {
  color:#666;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h2{
  font-size: 36px;
  font-weight:bold;
  text-transform:uppercase;
  margin-bottom:8px;
}

h3{
  font-size: 20px;
  color:#666;
  margin-top:0;
  margin-bottom:40px;
}

h4{
  font-size: 20px;
  font-weight:bold;
  margin-top:10px;
}
/*--------------------------------
 layout
---------------------------------*/
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 30px;
}

section {
  background:#fff; 
  padding: 100px 0px 100px 0px;
}

section:nth-child(2n){
  background:#eaeaea; 
}

/*--------------------------------
header
---------------------------------*/
.header {
  background-color:#9B1200;
  padding: 80px 0px 80px 0px;
  margin: 0;
}

.header .logo {
  width: 450px;
  text-align: center;
  margin: 0 auto;
}

/*--------------------------------
 global navigation
---------------------------------*/
.gnav {
  background-color:#eaeaea;
  padding: 20px 0;
}

.gnav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.gnav ul li {
  display: inline-block;
  padding-left: 0;
  margin-right: 60px;
  font-size: 20px;
  font-weight:bold;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform:uppercase;

}

.gnav ul li:last-child {
  margin-right: 0;
}


/*--------------------------------
area01 / about
---------------------------------*/


.area01 > .container {
  display: flex;
  align-items: center;
}

.area01 .img {
  width: 50%;
}

.teeimg {
  border: solid 8px #eaeaea;
}

.area01 .desc {
  width: 50%;
  padding-right: 20px;
  padding-left: 20px;
}
.area01 .text {
  text-align: left;
}
.area01 .text p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}


/*--------------------------------
area02 / gallery
---------------------------------*/

/*==================================================
gallery スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:94%;
    margin:0 auto;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

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

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

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

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

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

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

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

/*==================================================
Instagram/blogでもっと見るボタンのcss
===================================*/
.btn{
 font-size:16px;
}
.btn_more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 360px;
    padding: 20px 25px;
    color: #222;
    transition: 0.3s ease-in-out;
   text-decoration:none;
    font-weight: 600;
    background: #eaeaea;
    border-radius: 50px;
    border: 0.2rem solid #222;
    box-shadow: 0.2rem 0.2rem 0px 0.1rem #cccccc;
}
.btn_more:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  box-shadow: none;
  opacity: 1;
  transition: all 0.2s;
}

/*--------------------------------
area03 / shop
---------------------------------*/

.area03 .shoptext {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.shoplist{
  display: flex;
  flex-flow: wrap;
  margin-top:40px;
  margin-bottom:20px;
  justify-content: center;
}

.shopitem {
 padding:0px 20px;
}

.shopitem img{
  border: solid 8px #eaeaea;
}

.shopupdate{
  padding:10px 20px;
  color:#cc0000;
}


/*--------------------------------
area04 / blog
---------------------------------*/
.blog {
  max-width: 1170px;
  margin: 0 auto;
  padding: 10px 0;
}
.blog .list {
  display: flex;
  flex-flow: wrap;
}

.blog .list .item {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
  /* flex: 0 1 calc((100% - 60px) / 3); */
}

.blog .list .item:nth-child(3n) {
  margin-right: 0;
}

.blog .list .item:hover {
  opacity: 0.8;
}

.blog .list .img {
  margin-bottom: 12px;
}

.blog img{
  border: solid 3px #fff;
}

.blog .list .title {
  color:#111;
  text-align:left;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
}

.blog .list .date {
  text-align:left;
  font-size: 12px;
  margin-top: 6px;
}



/*--------------------------------
area05 / sns
---------------------------------*/

.snsface{
 padding-bottom:20px;
}

.snstext {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 30px;
}
.snstext p{
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1em;
    text-align:left;
}

.snsicon {
 margin-top:30px;
}
.snsicon ul{
  display: flex;
  justify-content: center;
}





/*--------------------------------
footer
---------------------------------*/
footer {
  padding: 80px;
  background: #111;
  color:#fff;
}

/*==================================================
footer ページトップのためのcss
===================================*/

/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#9B1200;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:1.2rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom:10px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}


/*media Queries 905
----------------------------------------------------*/
@media screen and (max-width: 905px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }
  /* Layout */
  .container {
    padding: 0 20px;
  }

  /* header */
  .header {
    padding: 30px 0;
  }

  .header .logo {
    width: 280px;
  }

  /* global navi */
  .gnav {
    padding: 20px 0;
  }

  .gnav ul li {
    font-size: 16px;
    margin-right: 30px;
  }

  .area01 > .container {
    flex-direction: column;
  }

  .area01 .img {
    width: 100%;
    margin-bottom: 30px;
  }

  .area01 .desc {
 width:488px;
    padding-right: 0;
    padding-left: 20px;
  }

  .area01 .text p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* blog */
.blog{
    width:94%;
}


}


/*media Queries 769
----------------------------------------------------*/
@media screen and (max-width: 769px) {

section {
  padding: 60px 0px 60px 0px;
}
  
.area01 .desc {
 width:488px;
}
.area03 .text{
 padding:0px 30px 0px 30px;
}

.shopitem{
 margin-bottom:20px;
}


  /* blog */
  .blog .list {
    display: block;
  }

  .blog .list .item {
   width:auto;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .blog .list .title {
   width:auto;
}
  .blog .list .img {
    margin-bottom: 10px;
  }

  .blog .list .date {
    margin-top: 2px;
  }
  /* footer */
footer {
  padding: 40px;
  background: #111;
  color:#fff;
}
}

/*media Queries 426
----------------------------------------------------*/
@media screen and (max-width: 426px) {

body{
  font-size: 14px;
}

h2{
  font-size: 30px;
  font-weight:bold;
  text-transform:uppercase;
  margin-bottom:6px;
}

h3{
  font-size: 20px;
  color:#666;
  margin-top:0;
  margin-bottom:24px;
}


  /* global navi */
  .gnav {
    padding: 10px 0;
  }

  .gnav ul li {
    font-size: 14px;
    margin-right: 18px;
  }

  /* about */
.area01 .desc {
 width:94%;
}
  /* shop */
.shoptext {
  max-width: 360px;
  margin: 0 auto;
  padding: 0 30px;
  text-align:left;
}

  /* sns */
.snstext {
  max-width: 360px;
  margin: 0 auto;
  padding: 0 30px;
}
.snsicon img{
 width:50px;
}
  /* button */
.btn_more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 20px 25px;
    color: #222;
    transition: 0.3s ease-in-out;
   text-decoration:none;
    font-weight: 600;
    background: #eaeaea;
    border-radius: 50px;
    border: 0.2rem solid #222;
    box-shadow: 0.2rem 0.2rem 0px 0.1rem #cccccc;
}
.btn_more:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  box-shadow: none;
  opacity: 1;
  transition: all 0.2s;
}
  /* 404 */
.area404 .text {
    width:auto;
    padding:20px;
    font-size: 12px;
    line-height: 1.4;
}

}