@charset "utf-8";
/* 
  common
**********************/

:root {
  --color-primary: #f5e4e2;
  --color-primary-dark: #b96e6e;
  --color-black: #363636;
  --font-family-en: "Montserrat", sans-serif;
  --font-family-jp-sans: "Noto Sans JP", sans-serif;
  --font-family-jp-serif: "Shippori Mincho", serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-jp-serif);
}

a {
  text-decoration: none;
}

#content {
  padding-bottom: 100px;
}

#content section {
  width: 100%;
}

#content section .sec_container {
  width: 85%;
  max-width: 980px;
  margin: 0 auto;
}

#content .sec_title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
  color: var(--color-black);
}

#content .sec_subtitle {
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 32px;
}

#content .hr_border {
  background-color: #cfcfcf;
  height: 1px;
  width: 100%;
  margin: 50px auto 35px;
}

#content .view_pc {
  display: block;
}
#content .view_sp {
  display: none;
}

@media (max-width: 767px) {
  #content .view_pc {
    display: none;
  }
  #content .view_sp {
    display: block;
  }
}

#content .mt-4 {
  margin-top: 16px;
}

#content .mt-6 {
  margin-top: 24px;
}

#content .button_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

#content .button_link_black {
  font-size: 12px; /* 12px */
  color: #fff;
  font-family: var(--font-family-jp-serif);
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--color-black);
  padding: 8px 20px;
  display: inline-block;
  width: fit-content;
  text-align: center;
}

#content .button_link_pink {
  font-size: 12px; /* 12px */
  color: var(--color-primary);
  font-family: var(--font-family-jp-serif);
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid var(--color-primary);
  padding: 8px 20px;
  display: inline-block;
  width: fit-content;
}

#content .button_link_black,
#content .button_link_pink {
  transition: opacity 0.3s ease;
}
#content .button_link_black:hover,
#content .button_link_pink:hover {
  opacity: 0.8;
}

#content .view_sp {
  display: none;
}
#content .view_max375 {
  display: none;
}
#content .view_max350 {
  display: none;
}

@media (max-width: 767px) {
  #content {
    padding-top: 0px;
    padding-bottom: 20px;
  }
  #content .view_pc {
    display: none;
  }
  #content .view_sp {
    display: block;
  }
  #content .campaign_period {
    font-size: 14px;
  }
  #content section .sec_container {
    width: 90%;
  }
}
@media (max-width: 375px) {
  #content .view_max375 {
    display: block;
  }
  #content .view_min375 {
    display: none;
  }
  #content .view_max350 {
    display: block;
  }
}

/* 
  mv 
**********************/

/* 横幅に広い画面に対応できるように、画像を背景と分割しました*/
#content #mv {
  text-align: center;
  margin-top: 40px;
}
#content #mv img {
  width: 80%;
  max-width: 980px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  #content #mv img {
    width: 100%;
  }
}

/* 
  introduction 
**********************/

#content #introduction {
  margin-top: -57px;
  position: relative;
  font-family: var(--font-family-jp-serif);
}

@media (max-width: 767px) {
  #content #introduction {
    margin-top: 0px;
    height: auto;
  }
  #content #introduction::before {
    content: "";
    display: block;
    background: url("./images/intro_bg-sp1.png") no-repeat center center /
      contain;
    width: 37%;
    aspect-ratio: 15919 /17359;
    position: absolute;
    top: -70px;
    right: 0;
    z-index: 2;
  }
  #content #introduction::after {
    content: "";
    display: block;
    background: url("./images/intro_bg-sp2.png") no-repeat center center /
      contain;
    width: 27.9%;
    aspect-ratio: 12059 /22213;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}
#content #introduction .introduction_bg {
  width: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  #content #introduction .introduction_bg {
    display: none;
  }
}
#content #introduction .introduction_text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: var(--color-black);
  font-weight: 400;
  line-height: 2.5;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--color-primary); /* 下線の色 */
  text-decoration-thickness: 2px; /* 線の太さ */
  text-underline-offset: 8px;
}
#content #introduction .introduction_text span {
  color: var(--color-primary-dark);
  font-weight: 600;
}

@media (max-width: 767px) {
  #content #introduction .introduction_text {
    font-size: 14px;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 102px 0 119px;
  }
}

/* 
  benefits 
**********************/
#content #benefits {
  margin: 23px auto 85px;
}
@media (max-width: 767px) {
  #content #benefits {
    margin: 10px auto 60px;
  }
}
#content #benefits .three_benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 920px) {
  #content #benefits .three_benefits {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
#content #benefits .three_benefits li {
  border: solid 15px var(--color-primary);
  background-color: #f8f6f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 17px 0;
}
#content #benefits .three_benefits li .bene_num {
  font-size: 14px;
  background-color: var(--color-primary);
  border-radius: 40px;
  padding: 3px 27px 1px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
#content #benefits .three_benefits li .bene_num span {
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 24px;
  transform: translateY(-2px);
}
#content #benefits .three_benefits li .bene_title {
  height: 70px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2px;
  text-align: center;
}
#content #benefits .three_benefits li .bene_img {
  width: 100%;
}
#content #benefits .three_benefits li .bene_text {
  width: 90%;
  margin: 20px auto 24px;
  text-align: left;
  flex: 1;
  font-size: 14px;
  line-height: 1.71;
}
#content #benefits .three_benefits li .bene_note {
  width: 90%;
  margin: 0 auto 10px;
  font-size: 12px;
  line-height: 1.42;
}
@media (max-width: 920px) {
  #content #benefits .three_benefits li .bene_img {
    width: 80%;
    margin: 0 auto;
  }
  #content #benefits .three_benefits li .bene_text {
    width: 80%;
  }
  #content #benefits .three_benefits li .bene_note {
    width: 80%;
  }
}

/* 
  order
**********************/

#content #order .attention {
  font-size: 18px;
  color: var(--color-primary-dark);
  border: solid 2px var(--color-primary-dark);
  padding: 12px 45px;
  text-align: center;
  width: fit-content;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  #content #order .attention {
    font-size: 16px;
  }
}
#content #order .item_box {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  #content #order .item_box {
    flex-direction: column;
    gap: 50px;
    padding-bottom: 20px;
  }
}
#content #order .item_box img {
  width: 480px;
}
/* 未実装 */
#content #order .item_box .item_content {
  width: 240px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.item_info {
  font-size: 14px;
}
.item_tag {
  display: inline-flex;
  background-color: #eed2cd;
  padding: 5px 8px;
  margin-bottom: 20px;
}
.item_brand {
  color: #939393;
}
.item_name {
  font-size: 20px;
  margin-bottom: 10px;
}
.item_price {
  font-size: 10px;
}
.item_price span {
  font-size: 16px;
}
#quantity {
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  padding: 0.5em;
  background-color: #fff;
  width: 88px;
  height: 34px;
  margin-left: 10px;
}
#confirm_cart {
  background-color: #373b3e;
  color: #fff;
  padding: 16px 65px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
}
.item_content p label {
  font-size: 14px;
}
#content #order .item_text {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 72px;
}

#content #order .note_title {
  font-size: 14px;
  font-weight: 400;
  background-color: #f3e7e5;
  padding: 12px 0;
  text-align: center;
}

#content .note_desc {
  font-size: 13px;
  font-weight: 400;
  margin-top: 26px;
  line-height: 2.15;
}
#content #order .note_desc span {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-decoration-color: #c39292;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
#content #order .note_desc a {
  text-decoration: underline;
}

#content #reviews {
  width: 100%;
  background-color: #f8efee;
  padding: 70px 0;
  margin: 70px 0 80px;
}
#content #reviews .sec_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#content #reviews .reviews_lead {
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 13px;
}
#content #reviews .reviews_list {
  width: 100%;
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 920px) {
  #content #order .item_box img {
    width: 420px;
    max-width: 90%;
  }
  #content #reviews .reviews_list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#content #reviews .reviews_list li {
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  padding: 30px 20px;
}
#content #reviews .reviews_list li .reviews_header {
  display: flex;
  align-items: center;
}
#content #reviews .reviews_list li .reviews_header .attribute {
  color: #939393;
  font-size: 13px;
  flex: 1;
  padding: 0 12px;
}
#content #reviews .reviews_list li .reviews_header .star {
  color: #c39292;
  letter-spacing: 0.1em;
}
#content #reviews .reviews_list li .reviews_comment {
  margin: 20px auto 25px;
  font-size: 13px;
  line-height: 2.15;
}
@media (max-width: 767px) {
  #content #order .item_box .item_content p {
    text-align: center;
  }
  #content #order .item_box .item_content .item_content_info {
    text-align: center;
  }
}
