@charset "UTF-8";

/* 関数定義 =============================================================================== */
:root {
  --base-color: #fff;
  --text-color: #008DDA;
  --main-color: #A5CCE6;
}


/* jQuery =============================================================================== */
/* フェードイン - 上から */
.fadeInTop {
  transform: translate3d(0, -10px, 0);
  transition: 1.0s;
  opacity: 0;
}
.fadeInTop.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* PC
=============================================================================== */
main {
  color: var(--text-color);
  background: var(--base-color);
  font-size: 16px;
  font-family: "Sawarabi Gothic", sans-serif;
  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;
}

/* メインビジュアル_mv */
.mv {
  width: 100vw;
  margin-bottom: 60px;
  padding: 45px 0;
  background-color: var(--main-color);
  background-image: url(../images/mv-bg_01_pc.png), url(../images/mv-bg_02_pc.png);
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left bottom;
}
.mv-image {
  display: block;
  width: 1240px;
  margin: 0 auto;
}

/* 導入_intro */
.intro {
  margin-bottom: 60px;
}
.lead {
  margin-bottom: 60px;
}
.lead-text {
  font-size: 20px;
  text-align: center;
  line-height: 2.25;
}
.styleList {
  margin-bottom: 80px;
}
.styleList-list {
  display: flex;
  width: 930px;
  margin-left: auto;
  margin-right: auto;
}
.styleList-item {
  width: calc((930px - 150px) / 6);
  margin-right: 30px;
}
.styleList-item:last-child {
  margin-right: 0;
}

/* スタイル紹介 */
.style-inner {
  width: 1040px;
  margin: 0 auto;
}
.style-block {
  margin-bottom: 80px;
}
.style-block.odd {
  background-image: url(../images/flower_01.png);
  background-repeat: no-repeat;
  background-position: left top;
}
.style-block.even {
  background-image: url(../images/flower_02.png);
  background-repeat: no-repeat;
  background-position: 60% top;
}
.style-name {
  display: flex;
  align-items: end;
  position: relative;
  top: 30px;
}
.style-name.even {
  left: 50%;
  padding-left: 30px;
}
.style-name_img {
  width: 95px;
  margin-right: 15px;
}
.style-name_text {
  font-size: 20px;
}
.style-block_inner {
  display: flex;
}
.style-block_inner.odd {
  flex-direction: row-reverse;
}
.style-block_main {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.styletext {
  margin-top: 30px;
  position: relative;
  height: 200px;
}
.styletext-content {
  position: absolute;
  bottom: 0;
  margin: 0;
  line-height: 2.25;
}
.style-block_detail {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.style-block_detail.odd {
  padding-right: 30px;
}
.style-block_detail.even {
  padding-left: 30px;
}
.product-list {
  width: 90%;
  height: 250px;
  padding-top: 60px;
}
.product-item {
  margin-bottom: 15px;
  display: flex;
}
.product-name {
  flex-grow: 1.5;
}
.product-price {
  margin-right: 30px;
}
.btn-product_link {
  display: block;
  width: 120px;
  background-color: var(--text-color);
  color: #fff!important;
  text-align: center;
  border-radius: 2px;
}
.btn-product_link:hover {
  text-decoration: none!important;
}
/* トップページへ_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: #fff;
}
.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.02em;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  /* メインビジュアル_mv */
  .mv {
    width: 100vw;
    margin-bottom: 45px;
    padding: 20px 15px;
    background-image: url(../images/mv-bg_01_sp.png), url(../images/mv-bg_02_sp.png);
    background-repeat: no-repeat, no-repeat;
    background-position: right top, left bottom;
  }
  .mv-image {
    width: 100%;
  }

  /* 導入_intro */
  .intro {
    margin-bottom: 45px;
    padding: 0 15px;
  }
  .lead {
    margin-bottom: 45px;
  }
  .lead-text {
    font-size: 17px;
    text-align: center;
    line-height: 1.8;
  }
  .styleList {
    margin-bottom: 30px;
  }
  .styleList-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .styleList-item {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
    margin-bottom: 15px;
  }
  .styleList-item:nth-child(3) {
    margin-right: 0;
  }

  /* スタイル紹介 */
.style-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.style-block {
  margin-bottom: 60px;
}
.style-block.odd {
  background-position: right 90%;
}
.style-block.even {
  background-position: left 90%;
}
.style-name {
  position: relative;
  align-items: flex-start;
  top: 0;
  margin-bottom: 10px;
}
.style-name.even {
  left: 0;
  padding-left: 0;
}
.style-name_img {
  width: 70px;
  margin-right: 10px;
}
.style-name_text {
  font-size: 18px;
}
.style-block_inner {
  display: flex;
}
.style-block_inner.odd {
  flex-direction: column;
}
.style-block_inner.even {
  flex-direction: column;
}
.style-block_main {
  width: 100%;
}
.style-block_main.even {
  align-items: flex-end;
}
.styleimage_main {
  width: 90%;
}
.styleimage_detail {
  width: 47%;
}
.styletext {
  width: 50%;
  margin-top: 15px;
  height: 300px;
}
.styletext-content {
  line-height: 1.8;
}
.style-block_detail {
  width: 100%;
  margin-top: -335px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
}
.style-block_detail.odd {
  padding-right: 0;
  align-items: flex-end;
}
.style-block_detail.even {
  padding-left: 0;
}
.product-list {
  width: 90%;
  height: fit-content;
  margin: 120px auto 0;
  padding-top: 0;
}
.product-item {
  margin-bottom: 13px;
}
.product-name {
  flex-grow: 1.5;
}
.product-price {
  margin-right: 15px;
}
.btn-product_link {
  display: block;
  width: 90px;
  border-radius: 2px;
}
.btn-product_link:hover {
  text-decoration: none!important;
}

  /* 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;}