@charset "utf-8";

/* ------------------------------
 Main visual
------------------------------ */
.mv {
  display: block;
  position: relative;
  width: 100%;
}

.mv_item {
  width: 100%;
  height: calc(100vh - 90px);
  background-position: center center;
  background-size: cover;
}

.mv_item.one {
  background-image: url("../img/top/slide01-bg.jpg");
}

.mv_item.two {
  background-image: url("../img/top/slide02-bg.jpg");
}

.mv_item.three {
  background-image: url("../img/top/slide03-bg.jpg");
}

.mv_copy {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.2rem;
  letter-spacing: 0.15em;
  line-height: 1.6;
  position: absolute;
  z-index: 1000;
}

.one .mv_copy {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #ffffff;
  top: 15%;
  right: 20%;
}

.one .mv_copy::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url("../img/triangle03.svg");
  background-size: cover;
  position: absolute;
  top: -18px;
  right: -10px;
  z-index: -1;
}

.two .mv_copy {
  color: #ffffff;
  top: 25%;
  left: 10%;
}

.two .mv_copy::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url("../img/triangle02.svg");
  background-size: cover;
  position: absolute;
  top: -8px;
  left: -18px;
  z-index: -1;
}

.three .mv_copy {
  top: 25%;
  left: 10%;
}

.three .mv_copy::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url("../img/triangle02.svg");
  background-size: cover;
  position: absolute;
  top: -8px;
  left: -18px;
  z-index: -1;
}

.mv_insta {
  display: block;
  width: 20px;
  position: absolute;
  top: calc(53% + 30px);
  right: 24px;
  z-index: 1000;
}

.mv_scroll {
  display: block;
  width: 60px;
  height: 130px;
  position: absolute;
  bottom: 0;
  left: 200px;
  background-image: url("../img/triangle01.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}

.mv_scroll a {
  display: inline-block;
  height: 130px;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  padding: 0px 10px;
  overflow: hidden;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.mv_scroll a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 70px;
  background: #fff;
  animation: sc 2s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sc {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media only screen and (max-width: 767px) {
  .mv_item {
    height: calc(100vh - 60px);
  }

  .mv_scroll {
    left: 60px;
  }
}

@media only screen and (max-width: 640px) {
  .mv_item.one {
    background-image: url("../img/top/slide01-bg-sp.jpg");
  }

  .mv_item.two {
    background-image: url("../img/top/slide02-bg-sp.jpg");
  }

  .mv_item.three {
    background-image: url("../img/top/slide03-bg-sp.jpg");
  }

  .one .mv_copy {
    top: 10%;
    right: 50%;
    transform: translateX(50%);
  }

  .two .mv_copy {
    color: #ffffff;
    top: 30%;
    left: 15%;
  }

  .three .mv_copy {
    top: 8%;
    left: calc( 50% - 100px );
  }
}



/* ------------------------------
 Slick parts
------------------------------ */
.slick-dots {
  display: block;
  position: absolute;
  bottom: 42%;
/*  bottom: 47%; インスタボタンがある場合 */
  right: 25px;
  z-index: 1000;
}

.slick-dots li {
  display: block;
}

.slick-dots li + li {
  margin-top: 30px;
}

.slick-dots li button {
  display: block;
  font-size: 0;
  line-height: 0;
  width: 18px;
  height: 18px;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.slick-dots li button::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border: solid 1px #ffffff;
  border-radius: 5px;
  position: absolute;
  top: 5px;
  left: 5px;
  transition: all .5s;
}

.slick-dots li button:hover::before {
  background-color: #ffffff;
}

.slick-dots li.slick-active button::before {
  background-color: #ffffff;
}



/* ------------------------------
 Catchcopy
------------------------------ */
.catchcopy {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  position: relative;
}

.catchcopy::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-image: url("../img/triangle02.svg");
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.catchcopy_txt {
  width: 100%;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .catchcopy {
    width: 100%;
    height: auto;
    display: block;
    padding: 40px 0;
  }

  .catchcopy::before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-image: url("../img/triangle02.svg");
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .catchcopy_txt {
    font-size:3rem;
  }
}

@media only screen and (max-width: 460px) {
  .catchcopy_txt {
    font-size:2.2rem;
  }
}



/* ------------------------------
 Common
------------------------------ */
.c-heading .eng {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  transform-origin: bottom left;
  transform: scaleX(1.1);
}

.c-heading .jpn {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

.c-copy {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 18px;
}

.c-text {
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 18px;
}

.c-more {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-style: italic;
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: right;
}

.c-more a {
  display: inline-block;
  padding: 12px 100px 12px 0px;
  position: relative;
}

.c-more a::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background-color: #351f00;
  position: absolute;
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
  transform: rotate(38deg);
}

.c-more a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #351f00;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-more a:hover::after {
  animation: more 1.5s cubic-bezier(1, 0, 0, 1);
}

@keyframes more {
  0% {
    transform: scale(1, 1);
    transform-origin: 100% 0;
  }
  35% {
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }
  35.1% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  70%, 100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
}

@media only screen and (min-width: 768px) and ( max-width:860px) {
  .c-heading .eng {
    font-size: 3rem;
  }

  .c-copy {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 767px) {
  .c-heading .eng {
    transform-origin: bottom center;
  }

  .c-more {
    margin-top: 10px;
  }
}



/* ------------------------------
 Advantage
------------------------------ */
.advantage {
  width: 100%;
  display: flex;
}

.advantage_info {
  width: calc(100% / 3);
  padding-left: 4.2%;
  padding-right: 4.2%;
  margin-top: 20px;
}

.advantage_img {
  width: calc(100% / 3 * 2);
  height: 500px;
  background-image: url("../img/top/advantage-img.jpg");
  background-position: center center;
  background-size: cover;
}

.advantage_img-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .advantage {
    display: block;
    text-align: center;
    margin-top: 50px;
  }

  .advantage_info {
    width: 100%;
    margin-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .advantage_img {
    display: none;
  }

  .advantage_img-sp {
    display: block;
    width: calc( 100% + 40px );
    margin: 20px -20px 0 -20px;
  }
}



/* ------------------------------
 Service
------------------------------ */
.service {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 50px;
  background-image: url("../img/top/sevice-bg.png");
  background-position: center center;
  background-size: cover;
  display: flex;
  position: relative;
  z-index: 1;
}

.service::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-image: url("../img/triangle04.svg");
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.service_info {
  width: calc(100% / 3);
  margin-top: 20px;
  padding-left: 4.2%;
  padding-right: 4.2%;
  order: 2;
}

.service_menu {
  width: calc(100% / 3 * 2);
  order: 1;
}

.service_list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.service_item {
  width: 50%;
  margin-bottom: 70px;
  padding-left: 4%;
}

.service_item a {
  width: 350px;
  height: 100px;
  position: relative;
  display: block;
  margin: 0 auto;
}

.service_item a::after {
  content: "";
  display: block;
  width: 21px;
  height: 7px;
  background-image: url("../img/top/service-arrow.png");
  background-size: cover;
  position: absolute;
  bottom: 10px;
  right: 28px;
  transition: all .3s ease-in-out;
}

.service_item a:hover::after {
  right: 18px;
}

.service_btn {
  display: flex;
}

.service_btn_img {
  width: 130px;
  height: 100px;
  overflow: hidden;
}

.service_btn_img img {
  transition: all .3s ease-in-out;
}

.service_item a:hover .service_btn_img img {
  transform: scale(1.1);
}

.service_btn_ttl {
  width: 220px;
  height: 100px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  background-image: url("../img/top/service-btn-bg.png");
  background-size: cover;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

@media only screen and ( max-width:1120px) {
  .service_info {
    margin-top: 0px;
  }

  .service_item a {
    width: 280px;
    height: 80px;
  }

  .service_btn_img {
    width: 104px;
    height: 80px;
  }

  .service_btn_ttl {
    width: 176px;
    height: 80px;
    font-size: 1.6rem;
    padding-left: 16px;
  }
}

@media only screen and (min-width: 768px) and ( max-width:870px) {
  .service {
    padding-bottom: 100px;
  }

  .service_item {
    width: 100%;
    margin-bottom: 20px;
  }

  .service_info {
    width: 50%;
  }

  .service_menu {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .service {
    display: block;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .service::before {
    width: 60px;
    height: 60px;
  }

  .service_info {
    width: 100%;
    margin-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service_menu {
    width: 100%;
    margin-top: 40px;
  }

  .service_item {
    margin-bottom: 30px;
    padding-left: 0;
  }
}

@media only screen and (max-width: 580px) {
  .service_list {
    display: block;
    text-align: center;
  }

  .service_item {
    width: 100%;
    margin-bottom: 20px;
  }
}



/* ------------------------------
 Parallax
------------------------------ */
.parallax {
  width: 100%;
  height: 380px;
  background-image: url("../img/top/parallax.jpg");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

@media only screen and (min-width: 768px) and ( max-width:1024px) {
  .parallax {
    height: 240px;
    background-attachment: scroll;
  }
}

@media only screen and (max-width: 767px) {
  .parallax {
    height: 160px;
    background-attachment: scroll;
  }
}



/* ------------------------------
 Company
------------------------------ */
.company {
  width: 100%;
  display: flex;
  padding-top: 100px;
  position: relative;
}

.company::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-image: url("../img/triangle02.svg");
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.company_info {
  width: calc(100% / 3);
  margin-top: 20px;
  padding-left: 4.2%;
  padding-right: 4.2%;
}

.company_img {
  width: calc(100% / 3 * 2);
  height: 500px;
  background-image: url("../img/top/company-img.jpg");
  background-position: left center;
  background-size: cover;
}

.company_img-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .company {
    display: block;
    text-align: center;
    padding-top: 80px;
  }

  .company::before {
    width: 60px;
    height: 60px;
  }

  .company_info {
    width: 100%;
    margin-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .company_img {
    display: none;
  }

  .company_img-sp {
    display: block;
    width: calc( 100% + 40px );
    margin: 20px -20px 0 -20px;
  }
}



/* ------------------------------
 Online Shop
------------------------------ */
.shop {
  width: 100%;
}

.shop_main {
  width: 100%;
  display: flex;
  padding-top: 100px;
  position: relative;
}

.shop_main::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-image: url("../img/triangle03.svg");
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.shop_info {
  width: calc(100% / 3);
  margin-top: 20px;
  padding-left: 4.2%;
  padding-right: 4.2%;
  order: 2;
}

.shop_img {
  width: calc(100% / 3 * 2);
  height: 500px;
  background-image: url("../img/top/shop-img.jpg");
  background-position: center center;
  background-size: cover;
  order: 1;
}

.shop_img-sp {
  display: none;
}

.shop_sub {
  width: 100%;
  margin-top: 20px;
  padding-bottom: 70px;
  background-color: #f3ecde;
}

.shop_sub_list {
  display: flex;
  flex-wrap: wrap;
}

.shop_sub_item {
  width: calc( 100% / 6 );
}

.shop_sub_btn {
  width: 100%;
  text-align: center;
  margin-top: 70px;
}

.shop_sub_btn a {
  display: inline-block;
  width: 400px;
  position: relative;
  z-index: 1;
  border: solid 1px #351f00;
  padding: 20px 0px;
}

.shop_sub_btn a::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #351f00;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  transition: all .4s ease-in-out;
  transform-origin: left;
  transform: scaleX(0);
}

.shop_sub_btn a:hover::after {
  transform: scaleX(1);
}

.shop_sub_btn a .inner {
  display: inline-block;
  padding-left: 70px;
  padding-right: 10px;
  background-image: url("../img/top/cart-brown.svg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 48px;
  transition: all .4s ease-in-out;
  position: relative;
}

.shop_sub_btn a .inner::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #351f00;
  position: absolute;
  bottom: -10px;
  right: -46px;
  transform-origin: bottom right;
  transform: rotate(38deg);
  transition: all .4s ease-in-out;
}

.shop_sub_btn a:hover .inner::before {
  background-color: #ffffff;
}

.shop_sub_btn a .inner::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #351f00;
  position: absolute;
  bottom: -10px;
  right: -46px;
  transition: all .4s ease-in-out;
}

.shop_sub_btn a:hover .inner::after {
  background-color: #ffffff;
}

.shop_sub_btn a:hover .inner {
  background-image: url("../img/top/cart-white.svg");
}

.shop_sub_btn a .eng {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  transform-origin: bottom center;
  transform: scaleX(1.1);
  transition: all .4s ease-in-out;
}

.shop_sub_btn a:hover .eng {
  color: #ffffff;
}

.shop_sub_btn a .jpn {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  margin-top: 5px;
  transition: all .4s ease-in-out;
}

.shop_sub_btn a:hover .jpn {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .shop_main {
    display: block;
    text-align: center;
    padding-top: 80px;
  }

  .shop_main::before {
    width: 60px;
    height: 60px;
  }

  .shop_info {
    width: 100%;
    margin-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .shop_img {
    display: none;
  }

  .shop_img-sp {
    display: block;
    width: calc( 100% + 40px );
    margin: 20px -20px 0 -20px;
  }

  .shop_sub_item {
    width: calc( 100% / 3 );
  }

  .shop_sub_btn {
    margin-top: 30px;
  }

  .shop_sub_btn a {
    width: 280px;
  }

  .shop_sub_btn a .inner {
    padding-left: 52px;
    padding-right: 15px;
    background-size: 40px;
  }

  .shop_sub_btn a .inner::before {
    bottom: -10px;
    right: -10px;
  }

  .shop_sub_btn a .inner::after {
    bottom: -10px;
    right: -10px;
  }

  .shop_sub_btn a .eng {
    font-size: 2.6rem;
  }

  .shop_sub_btn a .jpn {
    font-size: 1.2rem;
  }
}
