@charset "UTF-8";
/* RESET */
body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0;
}
figure {margin: 0; padding: 0;}
ul{margin: 0; padding: 0;}
li{list-style-type: none; margin: 0; padding: 0;}
dd {margin-left: 0;}

/* BASE-FONT-COLOR */
html{
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 16px;
  line-height: 2;
  background-color: #fff;
  color:#352821;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: scroll;
  line-break: strict; /* 厳格な禁則処理 */
  word-break: break-strict;/* CJKは厳格に改行制限し非CJKはどこでも改行できる */
  word-wrap: break-word; /* 必要に応じて単語の途中で改行 */
}
a{
  background: transparent;
  color: #352821;
  text-decoration: none;
  transition: 0.5s;
}
a:focus{outline:none;}
a:hover {text-decoration: underline;;}
::selection {/*ドラッグして選択したときの文字色と文字の背景色*/
  background: #352821;
  color: #fff;
}

.header{
  min-height: 100vh;
}
h1{
  text-align: center;
  padding-top: 40vh;
}
h1 img{
  width: 20vw;
}
.about{
  width: 100vw;
  padding-top: 10vh;
  background-color: rgba(54,63,52,0.9);
  color: #fff;
}
.message {
  margin: 0 auto;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  height: 23rem;
  columns: 18rem;
}
.about p{
  line-height: 2.5;
  letter-spacing: 1px;
  margin: 4rem;
}
.news{
  width: 80vw;
  padding: 0 10vw 5vw 10vw;
  background-color: #d4c9af;
}
.news h2{
  font-family: 'Oswald';
  font-weight: 300;
  color: #363f34;
  font-size: 2rem;
  border-left: 2px solid #363f34;
  padding-top: 5rem;
  padding-left: 2rem;
}
#feeds {
clear:both;
}
.blogFeed ul{
  width: 45vw;
  margin-left: 25rem;
  margin-top: -2rem;
}
.blogFeed ul li{
  line-height: 1.5;
  margin-bottom: 1rem;
}
.cut1{
  background-attachment: fixed;
  background-image: url("../images/cut1.jpg");
  width: 100vw;
  height: 100vh;
  background-size: cover;
  margin: 0;
  padding: 0;
}
.store{
  width: 100vw;
  height: auto;
  margin: 0;
  padding: 3rem 0;
  background-color: #9A7A60;
  background-image: url("../images/store_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #352821;
  text-align: center;
}
.store h2{
  font-size: 2.2rem;
  line-height: 2;
  font-family:'Noto Serif JP';
  font-weight: normal;
}
p.info{
  letter-spacing: 1px;
}
p.info a{
  color: #352821;
}
.online{
  width: 100vw;
  margin: 0;
  background-color: #fff;
  text-align: center;
  color: #000;
  padding: 60px 0;
}
.online img{
  width: 40vw;
}
.button {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  margin-top: 10px;
}
.button:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}
.online a:hover{
  text-decoration: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.cut2{
  background-image: url("../images/cut2.jpg");
  width: 100vw;
  height: 70vh;
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
}

.pc{display: block;}
.sp{display: none;}

@media screen and (max-width: 768px) {
  html{font-size: 15px;}
  .pc{display: none;}
  .pcslash{visibility: hidden;}
  .sp{display: block;}

  .header{max-height: 90vh;min-height: 90vh}
  h1{
    padding-top: 38vh;
  }
  h1 img{
    width: 50vw;
  }
  .about{
    width: 100vw;
    height: auto;
    padding-top: 7vh;
  }
  .message {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    width: 85vw;
    height: auto;
    columns: auto;
  }
  .about p{
    font-family:'Noto Serif JP';
    line-height: 1.8;
    letter-spacing: 0;
    margin: 1.5rem;
  }
  .news{
    max-width: 80vw;
    overflow: hidden;
    padding: 0 10vw auto 10vw;
  }
  .news h2{
    font-size: 1.2rem;
    padding-left: 1rem;
    padding-top: 2rem;
  }
  .blogFeed ul{
    font-family:'Noto Serif JP';
    width: 70vw;
    margin-left: 2rem;
    margin-top: 1rem;
  }
  .cut1{
    background-attachment: scroll;
    height: 40vh;
  }
  .store{
    width: 90vw;
    padding: 3rem 5vw 4rem;
  }
  .attention{
    width: 65vw;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.5
  }
  .online{
    width: 100vw;
    height: auto;
    padding: 30px 0;
  }
  .online p{
    font-size: 12px;
    line-height: 1.5;
  }
  .online img{
    width: 75vw;

  }
  .cut2{
    background-image: url("../images/cut2.jpg");
    width: 100vw;
    height: 30vh;
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
  }
}
