@charset "UTF-8";
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  border: none;
  background-color: #fff;
}
.header_contain {
  position: relative;
  z-index: 99;
  padding: 25px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .header_contain {
    padding: 25rem 50rem;
  }
}
@media screen and (max-width: 768px) {
  .header_contain {
    padding: 20rem 20rem;
  }
}
.header_logo {
  max-width: 80px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .header_logo {
    max-width: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .header_logo {
    max-width: 55rem;
  }
}
.header_icons {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .header_icons {
    gap: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .header_icons {
    gap: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .header_icons_insta {
    display: none;
  }
}
.header_icons img {
  width: 22px;
}
@media screen and (max-width: 1440px) {
  .header_icons img {
    width: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .header_icons img {
    width: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .header_menu {
    width: 50rem;
  }
}
.header_menubtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  gap: 6px;
}
@media screen and (max-width: 1440px) {
  .header_menubtn {
    width: 35rem;
    height: 35rem;
    gap: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .header_menubtn {
    width: 35rem;
    height: 35rem;
    gap: 6rem;
  }
}
.header_menubtn.change .bar01 {
  transform: rotate(-45deg) translate(-3px, 3px);
  background: #222;
}
@media screen and (max-width: 1440px) {
  .header_menubtn.change .bar01 {
    transform: rotate(-45deg) translate(-3rem, 3rem);
  }
}
.header_menubtn.change .bar02 {
  transform: rotate(45deg) translate(-2px, -2px);
  background: #222;
}
@media screen and (max-width: 1440px) {
  .header_menubtn.change .bar02 {
    transform: rotate(45deg) translate(-2rem, -2rem);
  }
}
.header_menubtn .bar {
  width: 20px;
  height: 1px;
  background: #222;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .header_menubtn .bar {
    width: 20rem;
  }
}
.header .nav {
  position: fixed;
  z-index: 90;
  background: #f4f3f2;
  top: 0;
  right: -1000%;
  width: 700px;
  height: 100vh;
  overflow-y: auto;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 1440px) {
  .header .nav {
    width: 700rem;
  }
}
@media screen and (max-width: 768px) {
  .header .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #eae8e5;
  }
}
.header .nav.open {
  opacity: 1;
  right: 0%;
}
.header .nav_box {
  padding: 200px 50px 150px 90px;
}
@media screen and (max-width: 1440px) {
  .header .nav_box {
    padding: 200rem 50rem 150rem 90rem;
  }
}
@media screen and (max-width: 768px) {
  .header .nav_box {
    margin-top: 150rem;
    padding: 0 20rem;
    padding-left: 50rem;
    padding-bottom: 50rem;
  }
}
.header .nav_col01 {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 50px;
}
@media screen and (max-width: 1440px) {
  .header .nav_col01 {
    grid-gap: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .header .nav_col01 {
    grid-gap: 15rem;
    grid-template-columns: 1fr;
  }
}
.header .nav_col01 ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .header .nav_col01 ul {
    gap: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .header .nav_col01 ul {
    gap: 15rem;
  }
}
.header .nav_col01 ul li a {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1440px) {
  .header .nav_col01 ul li a {
    gap: 20rem;
  }
}
@media screen and (min-width: 768px) {
  .header .nav_col01 ul li a:hover .linktxt .en {
    color: #d16765;
  }
  .header .nav_col01 ul li a:hover .linktxt .jp {
    color: #d16765;
  }
}
.header .nav_col01 ul li a .number {
  font-family: "Bodoni Moda", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #9a9187;
}
@media screen and (max-width: 1440px) {
  .header .nav_col01 ul li a .number {
    font-size: 14rem;
  }
}
.header .nav_col01 ul li a .linktxt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media screen and (max-width: 1440px) {
  .header .nav_col01 ul li a .linktxt {
    gap: 3rem;
  }
}
.header .nav_col01 ul li a .linktxt .en {
  font-family: "Bodoni Moda", serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #484343;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .header .nav_col01 ul li a .linktxt .en {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .header .nav_col01 ul li a .linktxt .en {
    color: #d16765;
  }
}
.header .nav_col01 ul li a .linktxt .jp {
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: left;
  color: #6a6a6a;
  transition: 0.3s;
}
@media screen and (max-width: 1440px) {
  .header .nav_col01 ul li a .linktxt .jp {
    font-size: 12rem;
  }
}
.header .nav_buybtn {
  margin-top: 35px;
}
@media screen and (max-width: 1440px) {
  .header .nav_buybtn {
    margin-top: 35rem;
  }
}
.header .nav_buybtn .buybtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 195px;
  height: 45px;
  border-radius: 25px;
  background: #d69c38;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .header .nav_buybtn .buybtn {
    gap: 7rem;
    width: 195rem;
    height: 45rem;
    border-radius: 25rem;
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .header .nav_buybtn .buybtn {
    display: none;
  }
}
.header .nav_buybtn .buybtn img {
  width: 15px;
}
@media screen and (max-width: 1440px) {
  .header .nav_buybtn .buybtn img {
    width: 15rem;
  }
}
.header .nav_buybtn .c-ctabtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .nav_buybtn .c-ctabtn {
    display: flex;
  }
}
.header .nav_productimg {
  position: absolute;
  bottom: 40px;
  right: 50px;
  width: 200px;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .header .nav_productimg {
    bottom: 40rem;
    right: 50rem;
    width: 200rem;
  }
}
@media screen and (max-width: 768px) {
  .header .nav_productimg {
    display: none;
  }
}

.footer {
  position: relative;
  z-index: 80;
  border: none;
  background: #d7d2cb;
  width: 100%;
  margin: auto;
  margin-top: 120px;
  padding: 60px;
}
@media screen and (max-width: 1440px) {
  .footer {
    margin-top: 120rem;
    padding: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30rem 20rem;
  }
}
.footer_logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .footer_logo {
    width: 140rem;
  }
}
.footer_insta {
  width: 25px;
  margin: 20px auto;
}
@media screen and (max-width: 1440px) {
  .footer_insta {
    width: 25rem;
    margin: 20rem auto;
  }
}
.footer_info {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  color: #222;
}
@media screen and (max-width: 1440px) {
  .footer_info {
    font-size: 13rem;
    line-height: 22rem;
  }
}
.footer_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .footer_nav {
    gap: 10rem;
    margin-top: 20rem;
  }
}
.footer_nav li,
.footer_nav a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  font-size: 13px;
  text-align: center;
  color: #222;
}
@media screen and (max-width: 1440px) {
  .footer_nav li,
  .footer_nav a {
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav li,
  .footer_nav a {
    font-size: 12rem;
  }
}

.single_product_review {
  margin-top: 60px;
  padding: 80px 0;
  background: #f4f3f2;
}
@media screen and (max-width: 1440px) {
  .single_product_review {
    padding: 80rem 0;
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review {
    padding: 60rem 30rem;
  }
}
.single_product_review_inner {
  max-width: 800px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .single_product_review_inner {
    max-width: 800rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review_inner {
    max-width: 100%;
  }
}
.single_product_review_title h2 {
  position: relative;
  font-family: "Bodoni Moda", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #9a9187;
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .single_product_review_title h2 {
    font-size: 24rem;
    margin-bottom: 40rem;
  }
}
.single_product_review_title h2::before {
  position: absolute;
  content: "";
  width: 160px;
  border: 1px solid #9a9187;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1440px) {
  .single_product_review_title h2::before {
    width: 160rem;
    bottom: -15rem;
  }
}
.single_product_review_title h2::after {
  position: absolute;
  content: "";
  width: 20px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  border-top: 1px solid #9a9187;
}
@media screen and (max-width: 1440px) {
  .single_product_review_title h2::after {
    width: 20rem;
    bottom: -15rem;
    border-width: 1rem;
  }
}
.single_product_review_toptxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  text-align: center;
  color: #222;
}
@media screen and (max-width: 1440px) {
  .single_product_review_toptxt {
    font-size: 15rem;
    line-height: 27rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review_toptxt {
    font-size: 13rem;
    line-height: 21rem;
  }
}
.single_product_review_list {
  margin-top: 15px;
  border-top: 1px solid #dedede;
}
@media screen and (max-width: 1440px) {
  .single_product_review_list {
    margin-top: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review_list {
    margin-top: 25rem;
  }
}
.single_product_review_item {
  padding: 25px 0;
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 1440px) {
  .single_product_review_item {
    padding: 25rem 0;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review_item {
    padding: 15rem 0;
  }
}
.single_product_review_item .itemtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
  text-align: left;
  color: #222;
}
@media screen and (max-width: 1440px) {
  .single_product_review_item .itemtitle {
    font-size: 15rem;
    line-height: 27rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review_item .itemtitle {
    font-size: 14rem;
    line-height: 23rem;
  }
}
.single_product_review_item .iteminfo {
  margin-top: 10px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  color: #707070;
}
@media screen and (max-width: 1440px) {
  .single_product_review_item .iteminfo {
    margin-top: 10rem;
    margin-bottom: 15rem;
    gap: 20rem;
    font-size: 14rem;
    line-height: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review_item .iteminfo {
    margin-top: 10rem;
    margin-bottom: 10rem;
    font-size: 13rem;
    line-height: 2;
    gap: 0 10rem;
  }
}
.single_product_review_item .iteminfo_star {
  color: #cbac2c;
}
.single_product_review_item .itemcontent {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  text-align: left;
  color: #222;
}
@media screen and (max-width: 1440px) {
  .single_product_review_item .itemcontent {
    font-size: 15rem;
    line-height: 27rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review_item .itemcontent {
    font-size: 13rem;
    line-height: 21rem;
  }
}
.single_product_review .review_writebox {
  max-width: 630px;
  margin: auto;
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .single_product_review .review_writebox {
    max-width: 630rem;
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review .review_writebox {
    margin-top: 40rem;
    max-width: 100%;
  }
}
.single_product_review .reviewform {
  display: none;
  margin-top: 35px;
}
@media screen and (max-width: 1440px) {
  .single_product_review .reviewform {
    margin-top: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review .reviewform {
    margin-top: 30rem;
  }
}
.single_product_review .reviewform_requriedtxt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #707070;
}
@media screen and (max-width: 1440px) {
  .single_product_review .reviewform_requriedtxt {
    font-size: 13rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review .reviewform_requriedtxt {
    font-size: 13rem;
  }
}
.single_product_review .reviewform .requried {
  color: #E74362;
}
.single_product_review .reviewform_item {
  margin-top: 25px;
  display: flex;
}
@media screen and (max-width: 1440px) {
  .single_product_review .reviewform_item {
    margin-top: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review .reviewform_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5rem;
    margin-top: 15rem;
  }
}
.single_product_review .reviewform_item label {
  margin-top: 7px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  color: #222222;
  min-width: 150px;
}
@media screen and (max-width: 1440px) {
  .single_product_review .reviewform_item label {
    font-size: 15rem;
    margin-top: 7rem;
    min-width: 150rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review .reviewform_item label {
    min-width: auto;
    margin-top: 0;
    font-size: 14rem;
  }
}
.single_product_review .reviewform_item input,
.single_product_review .reviewform_item textarea {
  padding: 0 10px;
  max-width: 500px;
  min-width: auto;
  width: 100%;
  height: 40px;
  background: #fff;
}
@media screen and (max-width: 1440px) {
  .single_product_review .reviewform_item input,
  .single_product_review .reviewform_item textarea {
    max-width: 500rem;
    height: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review .reviewform_item input,
  .single_product_review .reviewform_item textarea {
    height: 50rem;
    max-width: 100%;
  }
}
.single_product_review .reviewform_item select {
  color: #cbac2c;
}
@media screen and (max-width: 768px) {
  .single_product_review .reviewform_item select {
    font-size: 14rem;
  }
}
.single_product_review .reviewform_item textarea {
  height: 120px;
}
@media screen and (max-width: 1440px) {
  .single_product_review .reviewform_item textarea {
    height: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review .reviewform_item textarea {
    height: 150rem;
  }
}
.single_product_review .reviewform_cancel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single_product_review .reviewform_cancel a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  text-decoration: underline;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #707070;
  margin-top: 25px;
}
@media screen and (max-width: 1440px) {
  .single_product_review .reviewform_cancel a {
    font-size: 13rem;
    margin-top: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review .reviewform_cancel a {
    font-size: 13rem;
  }
}
.single_product_review .review_link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single_product_review .review_link_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 50px;
  background: #7c8a6d;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .single_product_review .review_link_btn {
    width: 300rem;
    height: 50rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review .review_link_btn {
    width: 250rem;
    height: 50rem;
    font-size: 15rem;
  }
}
.single_product_review .submit_btn {
  margin-top: 25px;
}
@media screen and (max-width: 1440px) {
  .single_product_review .submit_btn {
    margin-top: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .single_product_review .submit_btn {
    margin-top: 30rem;
  }
}

.product-bottomsec {
  padding: 100px 20px;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec {
    padding: 100rem 20rem;
  }
}
.product-bottomsec .container {
  max-width: 800px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec .container {
    max-width: 800rem;
  }
}
@media screen and (max-width: 768px) {
  .product-bottomsec .container {
    max-width: 100%;
  }
  .product-bottomsec {
    padding: 60rem 20rem;
  }
}
.product-bottomsec_itembox {
  margin-bottom: 40px;
}
.product-bottomsec_itembox:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec_itembox {
    margin-bottom: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .product-bottomsec_itembox {
    margin-bottom: 20rem;
  }
}
.product-bottomsec_itembox_head {
  background: #eae8e5;
  padding: 15px 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #222;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec_itembox_head {
    padding: 15rem 30rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .product-bottomsec_itembox_head {
    font-size: 14rem;
    padding: 10rem;
    padding-right: 30rem;
  }
}
.product-bottomsec_itembox_head.active::after {
  height: 15px;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec_itembox_head.active::after {
    height: 15rem;
  }
}
.product-bottomsec_itembox_head::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #7c8a6d;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec_itembox_head::before {
    width: 15rem;
    right: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .product-bottomsec_itembox_head::before {
    right: 10rem;
  }
}
.product-bottomsec_itembox_head::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0px;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #7c8a6d;
  transition: 0.1s;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec_itembox_head::after {
    right: 32rem;
  }
}
@media screen and (max-width: 768px) {
  .product-bottomsec_itembox_head::after {
    right: 17rem;
  }
}
.product-bottomsec_itembox_content {
  margin: 25px auto 0;
  padding: 0px 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 23px;
  text-align: left;
  color: #222;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec_itembox_content {
    margin: 25rem auto 0;
    padding: 0 30rem;
    font-size: 14rem;
    line-height: 23rem;
  }
}
@media screen and (max-width: 768px) {
  .product-bottomsec_itembox_content {
    margin-top: 15rem;
    padding: 0 10rem;
    font-size: 13rem;
    line-height: 21rem;
  }
}
.product-bottomsec_itembox_content ul {
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec_itembox_content ul {
    margin-top: 10rem;
  }
}
.product-bottomsec_itembox_content ul li {
  font-size: 14px;
  line-height: 23px;
  position: relative;
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-bottom: 10px;
}
.product-bottomsec_itembox_content ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec_itembox_content ul li {
    margin-bottom: 10rem;
    font-size: 14rem;
    line-height: 23rem;
  }
}
@media screen and (max-width: 1440px) {
  .product-bottomsec_itembox_content ul li {
    margin-bottom: 5rem;
    font-size: 14rem;
    line-height: 23rem;
  }
}
.product-bottomsec_itembox_content ul li::before {
  content: "■";
  margin-right: 7px;
}
@media screen and (max-width: 1440px) {
  .product-bottomsec_itembox_content ul li::before {
    margin-right: 7rem;
  }
}

.product-faq {
  padding: 0 20px;
}
@media screen and (max-width: 1440px) {
  .product-faq {
    padding: 0 20rem;
  }
}
.product-faq_title h2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .product-faq_title h2 {
    gap: 35rem;
  }
}
.product-faq_title h2 .en {
  font-family: "Bodoni Moda", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #9a9187;
}
@media screen and (max-width: 1440px) {
  .product-faq_title h2 .en {
    font-size: 24rem;
  }
}
.product-faq_title h2 .jp {
  font-weight: 40;
  font-size: 13px;
  text-align: center;
  color: #6a6a6a;
}
@media screen and (max-width: 1440px) {
  .product-faq_title h2 .jp {
    font-size: 13rem;
  }
}
.product-faq_title h2::before {
  position: absolute;
  content: "";
  width: 160px;
  border: 1px solid #9a9187;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .product-faq_title h2::before {
    width: 160rem;
    border-width: 1rem;
  }
}
.product-faq_title h2::after {
  position: absolute;
  content: "";
  width: 20px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  border: 1px solid #9a9187;
}
@media screen and (max-width: 768px) {
  .product-faq_title h2::after {
    width: 20rem;
    border-width: 1rem;
  }
}
.product-faq_box {
  max-width: 800px;
  width: 100%;
  margin: auto;
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .product-faq_box {
    margin-top: 30rem;
    max-width: 800rem;
  }
}
@media screen and (max-width: 768px) {
  .product-faq_box {
    max-width: 100%;
  }
}
.product-faq__itembox {
  margin-bottom: 30px;
  border-bottom: 1px solid #d7d2cb;
  padding-bottom: 10px;
}
@media screen and (max-width: 1440px) {
  .product-faq__itembox {
    margin-bottom: 30rem;
    padding-bottom: 10rem;
  }
}
.product-faq__itembox:last-child {
  margin-bottom: 0;
}
.product-faq__itembox .question {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-right: 30px;
  position: relative;
  cursor: pointer;
}
.product-faq__itembox .question.active::after {
  height: 15px;
}
@media screen and (max-width: 1440px) {
  .product-faq__itembox .question.active::after {
    height: 15rem;
  }
}
.product-faq__itembox .question::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  right: 0;
  top: 10px;
  background-color: #7c8a6d;
}
@media screen and (max-width: 1440px) {
  .product-faq__itembox .question::before {
    width: 15rem;
    top: 10rem;
  }
}
.product-faq__itembox .question::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0px;
  right: 7px;
  top: 3px;
  background-color: #7c8a6d;
  transition: 0.1s;
}
@media screen and (max-width: 1440px) {
  .product-faq__itembox .question::after {
    right: 7rem;
    top: 3rem;
  }
}
.product-faq__itembox .question .q-txt {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  text-align: left;
  color: #7c8a6d;
}
@media screen and (max-width: 1440px) {
  .product-faq__itembox .question .q-txt {
    font-size: 24rem;
  }
}
.product-faq__itembox .question_txt {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  text-align: left;
  color: #222;
}
@media screen and (max-width: 1440px) {
  .product-faq__itembox .question_txt {
    font-size: 15rem;
    line-height: 24rem;
  }
}
.product-faq__itembox .answer {
  margin: 20px auto 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 1440px) {
  .product-faq__itembox .answer {
    gap: 10rem;
    margin: 15rem auto 10rem;
  }
}
.product-faq__itembox .answer .a-txt {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  text-align: left;
  color: #d4b98b;
}
@media screen and (max-width: 1440px) {
  .product-faq__itembox .answer .a-txt {
    font-size: 24rem;
  }
}
.product-faq__itembox .answer_txt {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  color: #222;
}
@media screen and (max-width: 1440px) {
  .product-faq__itembox .answer_txt {
    font-size: 14rem;
    line-height: 22rem;
  }
}
.product-faq__link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1440px) {
  .product-faq__link {
    margin-top: 40rem;
  }
}
.product-faq__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  border: 1px solid #7c8a6d;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #7c8a6d;
}
@media screen and (max-width: 1440px) {
  .product-faq__link a {
    font-size: 15rem;
    width: 250rem;
    height: 50rem;
  }
}

.product_contactlink {
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .product_contactlink {
    margin-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .product_contactlink {
    margin-top: 10rem;
  }
}
.product_contactlink a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  color: #222;
  gap: 7px;
}
@media screen and (max-width: 1440px) {
  .product_contactlink a {
    font-size: 15rem;
    gap: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .product_contactlink a {
    font-size: 13rem;
    gap: 5rem;
  }
}
.product_contactlink a img {
  width: 7px;
}
@media screen and (max-width: 1440px) {
  .product_contactlink a img {
    width: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .product_contactlink a img {
    width: 7rem;
  }
}

.favorite_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  color: #222;
  margin: auto;
  margin-top: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .favorite_btn {
    margin-top: 15rem;
    margin-bottom: 30rem;
    font-size: 15rem;
    gap: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .favorite_btn {
    font-size: 13rem;
    gap: 10rem;
    margin-top: 15rem;
    margin-bottom: 15rem;
  }
}
.favorite_btn img {
  width: 20px;
}
@media screen and (max-width: 1440px) {
  .favorite_btn img {
    width: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .favorite_btn img {
    width: 20rem;
  }
}

.c-product_info__favorite {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 1440px) {
  .c-product_info__favorite {
    margin-top: 20rem;
    margin-bottom: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .c-product_info__favorite {
    margin-top: 10rem !important;
    margin-bottom: 50rem;
  }
}
.c-product_info__favorite__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  color: #222;
  text-decoration: none;
}
@media screen and (max-width: 1440px) {
  .c-product_info__favorite__btn {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .c-product_info__favorite__btn {
    font-size: 13rem;
  }
}
.c-product_info__favorite__btn.on .u-icon--heart::before {
  color: #E74362;
}
@media screen and (max-width: 768px) {
  .c-product_info__favorite__btn .u-icon--heart_blank {
    font-size: 20rem;
  }
}
.c-product_info__favorite__btn .u-icon--heart_blank::before {
  content: "\e90b";
  color: #dedede;
}
@media screen and (max-width: 768px) {
  .c-product_info__favorite__btn .u-icon--heart {
    font-size: 20rem;
  }
}
.c-product_info__favorite__btn .u-icon--heart::before {
  content: "\e90b";
  color: #E74362;
}
.c-product_info__favorite__btn span {
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  color: #222;
  text-decoration: none;
}
@media screen and (max-width: 1440px) {
  .c-product_info__favorite__btn span {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .c-product_info__favorite__btn span {
    font-size: 13rem;
  }
}

body .c-product_info__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 42px;
  text-align: left;
  color: #222;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  body .c-product_info__title {
    font-size: 24rem;
    line-height: 42rem;
  }
}
@media screen and (max-width: 768px) {
  body .c-product_info__title {
    font-size: 20rem;
    line-height: 32rem;
  }
}
body .c-product_info__meta {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  color: #222;
  margin-top: 10px;
}
@media screen and (max-width: 1440px) {
  body .c-product_info__meta {
    font-size: 14rem;
    margin-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  body .c-product_info__meta {
    font-size: 13rem;
  }
}/*# sourceMappingURL=add.css.map */