@charset "UTF-8";

/* 関数定義 =============================================================================== */
:root {
  --base-color: #E0A260;
  --text-color: #4E3011;
  --main-color: #A4B28D;
  --bg-color: #EDE6E0;
}


/* jQuery =============================================================================== */
/* フェードイン - 上から */
.fadeInTop {
  transform: translate3d(0, -10px, 0);
  transition: 1.0s;
  opacity: 0;
}
.fadeInTop.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* PC
=============================================================================== */
body {
  background: var(--base-color);
}
main {
  color: var(--text-color);
  font-size: 16px;
  font-family: "Roboto", "Kosugi", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
img {
  max-width: 100%;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
.text-small {
  font-size: small;
}
.section-title {
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
}
/* メインビジュアル_mv */
.mv {
  width: 100vw;
  margin-bottom: 60px;
  background-color: var(--bg-color);
}
.mv-image {
  display: block;
  width: 1240px;
  margin: 0 auto;
  line-height: 0;
}

/* 導入_intro */
.intro {
  background: linear-gradient(180deg, var(--base-color) 0%, var(--base-color) 70%, var(--main-color) 70%, var(--main-color) 100%);
}
.lead {
  margin-bottom: 60px;
}
.lead-text {
  font-size: 18px;
  text-align: center;
  line-height: 2.25;
}
.styleList {
  padding-bottom: 80px;
}
.styleList-list {
  display: flex;
  width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.styleList-item {
  width: calc((950px - 25px) / 6);
  margin-right: 5px;
  transition-duration: .5s;
}
.styleList-item:last-child {
  margin-right: 0;
}
.styleList-item:hover {
  transform: translateY(-8px); 
}
.styleList-item > a:hover {
  opacity: 1.0!important;
}

/* スタイル紹介 */
.style-block {
  padding-bottom: 60px;
}
.style-block.style01, 
.style-block.style02, 
.style-block.style06 {
  background: var(--main-color);
}
.style-block.style03 {
  background: linear-gradient(180deg, var(--main-color) 0%, var(--main-color) 25%, var(--base-color) 25%, var(--base-color) 100%);
}
.style-block.style05 {
  background: linear-gradient(180deg, var(--base-color) 0%, var(--base-color) 25%, var(--main-color) 25%, var(--main-color) 100%);
}
.style-block_inner {
  width: 1040px;
  margin: 0 auto;
}

/* スタイル名見出し */
.style-name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 670px;
  height: 150px;
  margin: 0 auto;
  background-image: url(../images/title_image_pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
}
.style-name_img {
  width: 100px;
  position: absolute;
  top: 22%;
  left: 15%;
  z-index: 1;
}
.style-name_text {
  display: block;
  position: relative;
  font-size: 24px;
  letter-spacing: 0.125em;
  line-height: 1.7;
  z-index: 2;
  padding-top: 5px;
}

.style-content {
  position: relative;
  margin-bottom: 45px;
}
.style-image {
  width: 960px;
  display: block;
  margin: 0 auto;
}
.style-image > img {
  width: 960px;
}
.style-text {
  width: 320px;
  line-height: 1.8;
}
.style-text.odd {
  position: absolute;
  right: 0;
  bottom: 30px;
}
.style-text.even {
  position: absolute;
  left: 0;
  bottom: 30px;
}
.style-text_lead {
  font-size: 18px;
  font-weight: bold;
}

.product-list {
  width: 700px;
  margin: 0 auto;
}
.product-item {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.product-name {
  flex-grow: 1.0;
}
.product-price {
  margin-right: 30px;
}
.btn-product_link_gr {
  display: block;
  width: 200px;
  padding: 5px;
  background-color: var(--text-color);
  color: var(--main-color)!important;
  text-align: center;
  border-radius: 2px;
}
.btn-product_link_or {
  display: block;
  width: 200px;
  padding: 5px;
  background-color: var(--text-color);
  color: var(--base-color)!important;
  text-align: center;
  border-radius: 2px;
}
.btn-product_link_gr:hover, 
.btn-product_link_or:hover {
  text-decoration: none!important;
}

/* おすすめ特集_feature */
.feature {
  padding-top: 60px;
}
.feature-list {
  width: 860px;
  margin: 0 auto;
  display: flex;
}
.feature-item {
  width: calc((860px - 45px) / 4);
  margin-right: 15px;
  margin-bottom: 30px;
}
.feature-item_text {
  font-size: 15px;
}
.feature-item:last-child {
  margin-right: 0;
}
.feature-item > a:hover {
  text-decoration: none;
}

/* トップページへ_returnBtn */
.returnBtn {
  display: block;
  width: 650px;
  height: 60px;
  margin: 100px auto 0;
}
.returnBtn a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  padding: 15px;
  background: var(--text-color);
  font-size: 16px;
  text-align: center;
  color: var(--base-color);
}
.returnBtn a:hover {
  text-decoration: none!important;
}
/*
.returnBtn a::before {
  position: absolute;
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 34px;
  transition-duration: 0.3s;
  z-index: 1;
} */


/* SP
=============================================================================== */
@media screen and (max-width: 767px) {
  main {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.0125em;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  /* メインビジュアル_mv */
  .mv {
    width: 100vw;
    margin-bottom: 30px;
  }
  .mv-image {
    width: 100%;
  }
  .section-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  /* 導入_intro */
  .intro {
    padding: 0 15px 30px 15px;
    background: linear-gradient(180deg, var(--base-color) 0%, var(--base-color) 70%, var(--main-color) 70%, var(--main-color) 100%);
  }
  .lead {
    margin-bottom: 45px;
  }
  .lead-text {
    font-size: 16px;
    text-align: center;
    line-height: 2.0;
  }
  .styleList {
    padding-bottom: 30px;
  }
  .styleList-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .styleList-item {
    width: calc((100% - 45px) / 3);
    margin-right: 0;
    margin-bottom: 10px;
  }
  .styleList-item:nth-child(3) {
    margin-right: 45px;
  }
  .styleList-item:nth-child(4) {
    margin-left: 45px;
  }
  .styleList-item:hover {
  transform: translateY(0); 
  }

  /* スタイル紹介 */
  .style-block {
    padding-bottom: 45px;
  }
  .style-block_inner {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* スタイル名見出し */
  .style-name {
    width: 100%;
    height: auto;
    aspect-ratio: 40 / 9;
    background-image: url(../images/title_image_sp.png);
    padding: 30px 0;
  }
  .style-name_img {
    width: 60px;
    position: absolute;
    top: 20%;
    left: 10%;
  }
  .style-name_text {
    font-size: 17px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    padding-top: 0;
  }

  .style-content {
  position: static;
  margin-bottom: 30px;
  }
  .style-image {
    width: 100%;
    margin-bottom: 8px;
  }
  .style-image > img {
    width: 100%;
  }
  .style-text {
    width: 100%;
    padding: 0 15px;
    line-height: 1.9;
  }
  .style-text.odd {
    position: static;
  }
  .style-text.even {
    position: static;
  }
  .style-text_lead {
    font-size: 16px;
    font-weight: bold;
  }

  .product-list {
    width: 100%;
    margin: 0 auto;
  }
  .product-item {
    margin-bottom: 10px;
  }
  .product-name {
    flex-grow: 1.5;
  }
  .product-price {
    margin-right: 10px;
    font-size: 13px;
  }
  .btn-product_link_gr {
    display: block;
    width: 120px;
    padding: 5px;
  }
  .btn-product_link_or {
    display: block;
    width: 120px;
    padding: 5px;
  }

  /* おすすめ特集_feature */
  .feature {
    padding: 45px 15px 0 15px;
  }
  .feature-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  .feature-item {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-bottom: 20px;
  }
  .feature-item:nth-child(2n) {
    margin-right: 0;
  }
  .feature-item_text {
    font-size: 13px;
  }

  /* RETURN-BTN */
  .returnBtn {
  width: 80%;
  height: 45px;
  margin: 80px auto 0;
  padding: 0 15px;
  }
  .returnBtn a {
    margin-top: 15px;
    padding-top: 10px;
  }
  /*
  .returnBtn a::before {
    right: 18px;
  }
  .returnBtn a:active {
    opacity: 0.7;
  } */

}



/*# sourceMappingURL=style.css.map */


.txt_center {text-align: center;margin: 35px 0 0 0;}