@charset "UTF-8";
/*
00：SETUP
01：FONTS 
02：BASE
	02-1：UTILITY
03：PAGE COMMON
04：PARTS COMMON
05：HEADER / NAV
06：FOOTER
07：TOP
	07-1：MV
  07-2：ABOUT
  07-3：HOKKAIDO
  07-4：PRODUCTS
  07-5：INSTAGRAM
*/
/*================== 

00：SETUP

====================*/
@-webkit-keyframes scr-d {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scr-d {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/*================== 

01：FONTS

====================*/
/*================== 

02：BASE

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

body {
  position: relative;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

/*----------------------
02-1：UTILITY
-----------------------*/
@media screen and (min-width: 990px) {
  .pc-none {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .tab-none {
    display: none !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-none {
    display: none !important;
  }
}

/*================== 

03：PAGE COMMON

====================*/
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*================== 

04：PARTS COMMON

====================*/
.title {
  font-size: 38px;
  color: #333333;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 749px) {
  .title {
    font-size: 20px;
  }
}

.lead {
  font-size: 28px;
  color: #333333;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 749px) {
  .lead {
    font-size: 20px;
  }
}

.btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 749px) {
  .btn {
    font-size: 12px;
    padding: 8px 18px;
  }
}
.btn--green {
  color: #fff;
  background-color: #374a11;
  border: 1px solid #374a11;
}
.btn--green:hover {
  color: #374a11;
  background-color: #fff;
}
.btn--invalid {
  color: #fff;
  background-color: #c7c7c7;
  border: 1px solid #c7c7c7;
  pointer-events: none;
}

/*================== 

05：HEADER / NAV

====================*/
.header {
  height: 80px;
  position: -webkit-sticky;
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 12px 20px 10px;
  margin: 0 auto;
  /* background: #E9952C99; */
}
@media screen and (max-width: 749px) {
  .header {
    height: 60px;
    padding: 10px;
  }
}
.header .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.header .inner .logo {
  width: 70px;
}
@media screen and (max-width: 749px) {
  .header .inner .logo {
    width: 50px;
  }
}
.header .inner .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
.header .inner .menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  font-size: 14px;
  gap: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 749px) {
  .header .inner .menu__list {
    display: none;
  }
}

/*================== 

06：FOOTER

====================*/
.footer {
  background: #f0f0f0 url(../img/bg_texture.png) repeat fixed;
  padding: 60px 0 40px;
}
.footer .logo {
  max-width: 170px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 749px) {
  .footer .logo {
    max-width: 50%;
  }
}
.footer .footer-copyright {
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  padding: 0 20px;
}
@media screen and (max-width: 749px) {
  .footer .footer-copyright {
    font-size: 10px;
  }
}

/*================== 

07：TOP

====================*/
/*----------------------
07-1：MV
-----------------------*/
.sec-01 {
  position: relative;
  height: 100vh;
  top: -80px;
}
.webp .sec-01 {
  background: url(../img/mv_pc.webp) no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  .webp .sec-01 {
    background: url(../img/mv_sp.webp) no-repeat center/cover;
  }
}
.no-webp .sec-01 {
  background: url(../img/mv_pc.jpg) no-repeat center/cover;
}
@media screen and (max-width: 749px) {
  .no-webp .sec-01 {
    background: url(../img/mv_sp.jpg) no-repeat center/cover;
  }
}
@media screen and (max-width: 749px) {
  .sec-01 {
    top: -60px;
  }
}
.sec-01 .container {
  height: 100%;
  display: grid;
  place-items: center;
}
.sec-01 .container .logo {
  max-width: 375px;
}
@media screen and (max-width: 749px) {
  .sec-01 .container .logo {
    max-width: 70%;
  }
}
.sec-01 .scroll-down {
  display: inline-block;
  position: absolute;
  right: 4vw;
  bottom: -50px;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #000;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (max-width: 749px) {
  .sec-01 .scroll-down {
    padding: 10px 0 70px;
    font-size: 12px;
  }
}
.sec-01 .scroll-down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #000;
  -webkit-animation: scr-d 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scr-d 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@media screen and (max-width: 749px) {
  .sec-01 .scroll-down::after {
    height: 60px;
  }
}

/*----------------------
07-2：ABOUT
-----------------------*/
.sec-02 {
  position: relative;
  background: #faf8f6 url(../img/bg_texture.png) repeat;
  margin: 80px 0;
}
.sec-02 .container {
  margin: 100px auto 185px;
  max-width: 660px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .sec-02 .container {
    margin: 0px auto 50px;
    padding: 0 20px;
  }
}
.sec-02 .container p {
  font-size: 16px;
  line-height: 3;
}
@media screen and (max-width: 749px) {
  .sec-02 .container p {
    font-size: 12px;
    line-height: 2.6;
  }
}
.sec-02 .img-wrap_sec-02-01 {
  position: relative;
  top: -80px;
  max-width: 90vw;
}
@media screen and (max-width: 749px) {
  .sec-02 .img-wrap_sec-02-01 {
    max-width: 92vw;
  }
}
.sec-02 .img_sobaco {
  max-width: 570px;
  width: 32vw;
  position: absolute;
  right: 0.6vw;
  top: 9%;
}
@media screen and (max-width: 749px) {
  .sec-02 .img_sobaco {
    top: 26vw;
  }
}
.sec-02 .img-wrap_sec-02-03 {
  position: relative;
  max-width: 46vw;
}
@media screen and (max-width: 749px) {
  .sec-02 .img-wrap_sec-02-03 {
    max-width: 100vw;
  }
}
.sec-02 .img-wrap_sec-02-03 .logo_hokkaido {
  position: absolute;
  width: 14vw;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 749px) {
  .sec-02 .img-wrap_sec-02-03 .logo_hokkaido {
    width: 38vw;
  }
}
.sec-02 .img-wrap_sec-02-04 {
  position: absolute;
  right: 0;
  max-width: 61vw;
  margin-top: -25vw;
}
@media screen and (max-width: 749px) {
  .sec-02 .img-wrap_sec-02-04 {
    max-width: 75vw;
    margin-top: -6vw;
  }
}
/*----------------------
07-3：HOKKAIDO
-----------------------*/
.sec-03 {
  position: relative;
  background: url(../img/hokkaido.png) no-repeat 32px 0/68%;
  margin-bottom: 230px;
}
@media screen and (max-width: 749px) {
  .sec-03 {
    background: url(../img/hokkaido.png) no-repeat 20px 42%/108%;
    margin-bottom: 70px;
  }
}
.sec-03 .container {
  margin: 170px 0 110px auto;
  max-width: 610px;
  width: 100%;
  padding-top: 200px;
}
@media screen and (max-width: 749px) {
  .sec-03 .container {
    margin: 53vw 0 50px auto;
    padding: 0 20px 100px;
  }
}
@media screen and (max-width: 749px) {
  .sec-03 .container .head {
    margin-bottom: 10px;
  }
}
.sec-03 .container p {
  font-size: 16px;
  line-height: 3;
}
@media screen and (max-width: 749px) {
  .sec-03 .container p {
    font-size: 12px;
    line-height: 2.6;
  }
}
.sec-03 .img-wrap_sec-03 {
  position: relative;
  margin: 0 auto 180px 38%;
  max-width: 980px;
}
@media screen and (max-width: 749px) {
  .sec-03 .img-wrap_sec-03 {
    margin: 0 auto 70px;
  }
}
.sec-03 .img-wrap_sec-03 .img_sec-03-01 {
  max-width: 450px;
  width: 30vw;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 749px) {
  .sec-03 .img-wrap_sec-03 .img_sec-03-01 {
    max-width: 450px;
    width: 60vw;
    top: 50px;
  }
}
.sec-03 .img-wrap_sec-03 .img_sec-03-02 {
  max-width: 450px;
  width: 30vw;
  position: absolute;
  top: 80px;
  left: 40%;
  z-index: 2;
}
@media screen and (max-width: 749px) {
  .sec-03 .img-wrap_sec-03 .img_sec-03-02 {
    max-width: 450px;
    width: 60vw;
    top: 0;
  }
}
.sec-03 .btn-wrap a {
  margin: 0 auto;
  display: block;
  width: 170px;
}

/*----------------------
07-4：PRODUCTS
-----------------------*/
.sec-04 {
  scroll-margin-top: 50px;
  margin-bottom: 140px;
}
@media screen and (max-width: 749px) {
  .sec-04 {
    margin-bottom: 70px;
    background: #f6f0ea url(../img/bg_texture.png) repeat;
  }
}
.sec-04 .container {
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .sec-04 .container {
    padding: 40px 20px;
  }
}
.sec-04 .container .head {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 749px) {
  .sec-04 .container .head {
    margin-bottom: 40px;
  }
}
.sec-04 .container .product {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  gap: 6%;
  margin-bottom: 150px;
}
@media screen and (max-width: 749px) {
  .sec-04 .container .product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    margin-bottom: 50px;
  }
}
.sec-04 .container .product__info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
          flex: 0 1 50%;
}
.sec-04 .container .product__info > h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media screen and (max-width: 749px) {
  .sec-04 .container .product__info > h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
}
.sec-04 .container .product__info > p {
  font-size: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 749px) {
  .sec-04 .container .product__info > p {
    font-size: 12px;
  }
}
.sec-04 .container .product__info > a {
  width: 170px;
}
.sec-04 .container .product__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
          flex: 0 1 50%;
  max-width: 670px;
  position: relative;
}
@media screen and (max-width: 749px) {
  .sec-04 .container .product__img {
    margin-bottom: 20px;
  }
}
.sec-04 .container .product__img img {
  position: relative;
  z-index: 2;
}
.sec-04 .container .product__img::after {
  content: "";
  position: absolute;
  bottom: -35px;
  right: -35px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #f6f0ea url(../img/bg_texture.png) repeat;
}
@media screen and (max-width: 749px) {
  .sec-04 .container .product__img::after {
    display: none;
  }
}
.sec-04 .container .product:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 749px) {
  .sec-04 .container .product:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/*----------------------
07-5：INSTAGRAM
-----------------------*/
.sec-05 {
  margin-bottom: 140px;
}
@media screen and (max-width: 749px) {
  .sec-05 {
    margin-bottom: 80px;
  }
}
.sec-05 .container {
  max-width: 1140px;
  margin: 0 auto;
}
.sec-05 .container .head {
  text-align: center;
}
@media screen and (max-width: 749px) {
  .sec-05 .container .head {
    margin-bottom: 20px;
  }
}
.sec-05 .container .btn-wrap a {
  margin: 0 auto;
  display: block;
  width: 170px;
}
.sec-05 .container .btn-wrap .svg-inline--fa {
  width: 16px;
  margin-right: 7px;
}
.sec-05 .container .btn-wrap span {
  vertical-align: text-top;
}

#sb_instagram {
  padding-bottom: 30px !important;
}/*# sourceMappingURL=style.css.map */