@charset "UTF-8";

/* ✍ Fonts */
/* 📱 Breakpoints (SP First) */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 90%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #ffffff;
  background: #ABA498;
}

main {
  margin-top: 37px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  display: block;
  text-decoration: none;
}

li {
  list-style: none;
}

.btn-group {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  max-width: 485px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .btn-group {
    max-width: 100%;
  }
}

.btn-group .btn--main {
  grid-column: 1/-1;
}

.btn-group .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  background: #2B2016;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-group .btn:hover {
  background: #3a2c23;
}

.btn-group .btn img {
  height: 18px;
}

.btn_contact {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn_contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  max-width: 270px;
  padding: 16px 18px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .btn_contact a {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

.btn_contact a img {
  width: 36px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .btn_contact a {
    max-width: 100%;
    text-align: center;
  }
}

.nav-inner.sp .btn_contact {
  margin: 30px 5% 0;
  width: 92%;
}

.nav-inner ul {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-inner ul {
    display: block;
  }
}

.nav-inner ul li {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .nav-inner ul li {
    margin-left: 0;
    text-align: center;
  }
}

.nav-inner ul li a {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Aboreto", sans-serif;
  color: #ffffff;
}

@media (max-width: 768px) {
  .nav-inner ul li a {
    font-size: 2.6rem;
  }
}

.nav-inner ul li img {
  width: 80%;
}


@media (max-width: 768px) {
  .nav-inner ul li img {
    width: auto;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .nav-inner ul .nav-icon {
    margin: 0 auto;
  }
}

.navi-icon {
  position: relative;
}

.navi-icon .badge {
  position: absolute;
  top: -10px;
  right: -12px;
  background: #2B2016;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 50%;
}

.nav-inner .hamburger-menu {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-inner .hamburger-menu__bar {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.5s;
  z-index: 1000;
}

.nav-inner .hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
  position: absolute;
  width: 60%;
}

.nav-inner .hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: rotate(45deg);
}

.nav-inner .hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: rotate(-45deg);
}

body.top .nav-inner .navigation,
body.other .nav-inner .navigation {
  position: fixed;
  top: 37px;
  left: 0;
  width: 100%;
  background: url(https://d2w53g1q050m78.cloudfront.net/yuranejp/uploads/img/menu_bg.webp) no-repeat center/cover !important;
  z-index: -1;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

body.top .nav-inner .navigation.is-open,
body.other .nav-inner .navigation.is-open {
  height: calc(100vh - 37px);
}

.nav-inner .navigation .nav_footer {
  margin: 24px 5% 12px;
  font-size: 0.9rem;
}

.nav-inner .navigation .nav_footer .icon_sns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.nav-inner .navigation .nav_footer .icon_sns a {
  width: 32px;
}

.nav-inner .navigation .nav_footer .footer_menu {
  margin-top: 32px;
}

.nav-inner .navigation .nav_footer .footer_menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.nav-inner .navigation .nav_footer .footer_menu ul li {
  margin-left: 10px;
}

.nav-inner .navigation .nav_footer .footer_menu ul li a {
  font-size: inherit;
}

.nav-inner .navigation .nav_footer .footer-copy {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  color: #fff;
}

.nav-inner .navigation__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 24px;
  margin-top: 20%;
  padding: 24px 0 32px 0;
}

@media (max-width: 768px) {
  .nav-inner .navigation__list {
    display: block;
    padding-bottom: 0;
    padding-top: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-inner .navigation__list .product img {
    height: 36px;
    margin: 0 auto;
  }
}

.nav-inner .navigation__list .navigation__list-item .navigation__link {
  display: inline-block;
  padding: 24px 0 0 0;
}
.nav-inner .navigation__list .navigation__list-item:first-of-type .navigation__link {
  padding-top: 0;
}

.swiper-pagination {
  display: flex;
  justify-content: left;
  gap: 8px;
  margin: 0 0 30px 60px;
}

@media (max-width: 768px) {
  .swiper-pagination {
    margin: 0 0 50px 30px;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 28px;
  opacity: 1;
  background: none;
  border: 1px solid transparent;
  box-sizing: content-box;
}

.swiper-pagination .swiper-pagination-bullet img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-pagination .swiper-pagination-bullet-active {
  border: 1px solid #ffffff;
  opacity: 1;
}

#header {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 100;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

#header.add-color {
  background-color: #C0B39D !important;
}

#header.top.scrolled {
  background-color: #2B2016B2 !important;
}

body.other #header {
  background-color: #2B2016B2 !important;
}

@media (max-width: 768px) {
  #header.add-bg {
    background-image: url(https://d2w53g1q050m78.cloudfront.net/yuranejp/uploads/img/header_inner_sp.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

#header .line_bar {
  width: 100%;
}

#header .line_bar p {
  background: #2B2016;
  padding: 8px;
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
}

#header .menu {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  z-index: 1000;
  position: relative;
  align-items: center;
}

@media (max-width: 768px) {
  #header .menu {
    padding: 16px 0;
  }

  #header .menu .brand_logo {
    max-width: 100%;
    line-height: 1.3;
    margin: 0 auto;
    padding-left: 50px;
  }
}

#header .menu .brand_logo img {
  height: 25px;
}

#header .menu ul li img {
  vertical-align: auto;
  height: 25px;
}

#header .menu ul .product_logo img {
  vertical-align: bottom;
  height: 32px;
}

#footer {
  text-align: center;
  background: #2B2016;
}

#footer .footer_inner {
  padding: 48px 0;
}

#footer .footer_inner .follow {
  margin-top: 40px;
}

#footer .footer_inner .follow img {
  height: 36px;
}

#footer .footer_inner .icon_sns {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
}

#footer .footer_inner .icon_sns img {
  width: 24px;
}

#footer .footer_inner .footer_menu .footer_links {
  display: flex;
  width: 325px;
  height: auto;
  margin: 28px auto 0;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  align-items: center;
  font-weight: 200;
  line-height: 0;
  letter-spacing: 1.5px;
}

#footer .footer_inner .footer_menu .footer_links li a {
  color: #fff;
}

#footer .footer_inner .footer_menu .footer_links a:hover {
  text-decoration: underline;
}

#footer small {
  display: block;
  padding-bottom: 8px;
  letter-spacing: 2px;
  font-weight: 200;
  color: #fff;
}

.wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

#mv {
  position: relative;
}

#mv .swiper-wrapper .swiper-slide img {
  height: calc(100vh - 37px);
  width: 100vw;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 768px) {
  #mv .swiper-wrapper .swiper-slide img {
    height: 100vh;
    width: 100vw;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

#mv .swiper-wrapper .swiper-slide .mv__text {
  position: absolute;
  color: #fff;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 200;
  line-height: 2;
  letter-spacing: 4px;
}

#mv .swiper-wrapper .swiper-slide .mv__text--left {
  top: 42%;
  left: 20%;
  transform: translateY(-50%);
}

#mv .swiper-wrapper .swiper-slide .mv__text--mid {
  top: 40%;
  left: 25%;
  transform: translateY(-50%);
}

#mv .swiper-wrapper .swiper-slide .mv__text--right {
  top: 50%;
  right: 25%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  #mv .swiper-wrapper .swiper-slide .mv__text--left {
    top: 42%;
    left: 10%;
    transform: translateY(-50%);
  }

  #mv .swiper-wrapper .swiper-slide .mv__text--right {
    top: 80%;
    right: 10%;
    transform: translateY(-50%);
  }
}

#mv .mv_content {
  position: absolute;
  top: 45%;
  right: 25%;
}

@media (max-width: 768px) {
  #mv .mv_content {
    right: 12%;
  }
}

#mv .mv_content h2 {
  font-weight: 200;
  font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
  line-height: 2;
  letter-spacing: 3px;
}

#product {
  color: #2B2016;
  background: #E0DBD5;
}

#product .product_inner {
  display: flex;
  gap: 20px;
  margin: 0 auto;
}

#product .product_inner h2.sp {
  margin: 60px auto 25px;
}

#product .product_inner .product_mainimg {
  flex: 1;
}

@media (max-width: 768px) {
  #product .product_inner .product_mainimg {
    padding: 0 5% 0;
  }
}

#product .product_inner .product_mainimg img {
  width: 100%;
  height: auto;
  display: block;
}

#product .product_inner .product_detail {
  flex: 1;
  display: flex;
  padding: 32px 5% 32px;
  justify-content: center;
  align-items: center;
  letter-spacing: 3px;
}

#product .product_inner .product_detail .product_detail_inner {
  width: 100%;
  max-width: 485px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

#product .product_inner .product_detail .product_detail_inner .product_title {
  margin-bottom: 0;
  text-align: left;
}

#product .product_inner .product_detail .product_detail_inner .product_title img {
  width: auto;
  height: 35px;
  display: block;
}

#product .product_inner .product_detail .product_detail_inner h3 {
  font-size: 1.4rem;
  font-weight: normal;
}

#product .product_inner .product_detail .product_detail_inner p {
  line-height: 1.6;
}

#product .product_inner .product_detail .product_detail_inner .product_detail_caption {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

@media (max-width: 768px) {
  #product .product_inner .product_detail .product_detail_inner .product_detail_caption {
    align-items: flex-start;
  }
}

#product .product_inner .product_detail .product_detail_inner .product_detail_caption img {
  width: 30%;
  margin-top: 0.3em;
}

#product .product_inner .product_detail .product_detail_inner .product_detail_caption p {
  letter-spacing: 0.05em;
  margin: 0;
}

#product .product_inner .product_detail .product_detail_inner .product_detail_caption .price {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 1px;
  font-family: Outfit;
  text-align: right;
}

@media (max-width: 1023px) {
  #product .product_inner .product_detail .product_detail_inner .product_detail_caption .price {
     font-size: 1.5rem;
  }
}

#product .product_inner .product_detail .product_detail_inner .product_detail_caption .price span {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .product_inner {
    flex-direction: column;
    gap: 24px;
  }

  .product_inner .product_detail {
    margin: 0 auto;
  }

  .product_inner .product_detail .product_detail_inner .product_title {
    margin: 0 auto;
  }

  .product_inner .product_detail .product_detail_inner .product_detail_caption {
    display: block;
    margin: 0 auto;
  }
  #product .product_inner .product_detail .product_detail_inner .product_detail_caption .price span {
    font-size: 1rem;
  }
}

#about {
  background: url(https://d2w53g1q050m78.cloudfront.net/yuranejp/uploads/img/about_main.webp) no-repeat center/cover;
  text-align: center;
  background-position: top center;
  color: #2B2016;
}

@media (max-width: 768px) {
  #about {
    background: url(https://d2w53g1q050m78.cloudfront.net/yuranejp/uploads/img/about_main_sp.webp) no-repeat center/cover;
    background-position: top center;
  }
}

#about .about_inner {
  padding: 80px 0;
  display: flex;
  justify-content: space-evenly;
}

@media (max-width: 768px) {
  #about .about_inner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  #about .about_inner .about_detail {
    text-align: center;
  }
}

#about .about_inner .about_detail .about_title img {
  width: auto;
  height: 30px;
  margin: 0 auto;
}

#about .about_inner .about_detail h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 40px;
  line-height: 2;
  letter-spacing: 10px;
}

@media (max-width: 768px) {
  #about .about_inner .about_detail h3 {
    font-size: 1.3rem;
  }
}

#about .about_inner .about_detail p {
  font-weight: 400;
  margin: 30px 0 0;
  line-height: 2;
  letter-spacing: 2px;
}

#about .about_inner .about_detail p br.sp {
  display: none !important;
}

@media (max-width: 540px) {
  #about .about_inner .about_detail p {
    font-size: 12px;
  }
  #about .about_inner .about_detail p br.sp {
    display: block !important;
  }
}

#news {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: url(https://d2w53g1q050m78.cloudfront.net/yuranejp/uploads/img/news_main.webp) no-repeat center/cover;
}

#news .news_inner {
  max-width: 1000px;
  text-align: left;
  margin: 0 auto;
}

#news .news_inner .news_title {
  text-align: center;
  margin-bottom: 48px;
  color: #fff;
}

#news .news_inner .news_title img {
  width: auto;
  height: 30px;
  margin: 0 auto;
}

#news .news_inner .news_list .news_item {
  letter-spacing: 3px;
  line-height: 2;
}

#news .news_inner .news_list .news_item .news_date {
  color: #fff;
  padding-top: 16px;
  font-family: "Aboreto", sans-serif;
}

#news .news_inner .news_list .news_item .news_text {
  border-bottom: 1px solid #fff;
  padding: 0 0 12px 0;
  display: flex;
  gap: 6px;
  justify-content: space-between;
  align-items: center;
}

#news .news_inner .news_list .news_item .news_text .news_arrow {
  color: #fff;
}

#news .news_inner .news_list .news_item .news_text span:first-of-type {
  letter-spacing: 3px;
  line-height: 2;
  width: calc(100% - 6px - 1em);
  display: block;
  color: white;
}

.category {
  color: #2B2016;
}

.category .kv {
  margin-top: 37px;
  height: 274px;
  background: url(https://d2w53g1q050m78.cloudfront.net/yuranejp/uploads/img/category_kv.webp) no-repeat center/cover;
}

@media (max-width: 768px) {
  .category .kv {
    background-position: right 25% bottom 45%;
  }
}

.category .kv .product_logo {
  text-align: center;
  padding-top: 100px;
}

.category .kv .product_logo img {
  width: 15%;
  max-width: 150px;
  min-width: 110px;
}

.category #product {
  margin-top: 0;
}

@media (max-width: 768px) {
  .category #product .product_mainimg {
    margin-top: 24px;
  }
}

.category #product .product_detail {
  margin-top: 40px;
}

.category #point {
  background: #ABA498;
}

.category #point .point_inner .point_detail {
  padding: 100px 40px;
}

.category #point .point_inner .point_detail .point_kv {
  display: flex;
  align-items: center;
  gap: 42px;
}

@media (max-width: 1000px) {
  .category #point .point_inner .point_detail .point_kv {
    flex-direction: column;
    margin: 0 auto;
  }
}

.category #point .point_inner .point_detail .point_kv .point_item {
  position: relative;
  flex: 0 0 35%;
  margin-left: 130px;
}

@media (max-width: 1000px) {
  .category #point .point_inner .point_detail .point_kv .point_item {
    margin-left: 0;
  }
}

.category #point .point_inner .point_detail .point_kv .point_item .point_img {
  min-width: 150px;
  max-width: 360px;
}

@media (max-width: 1000px) {
  .category #point .point_inner .point_detail .point_kv .point_item .point_img {
    margin: 0 auto;
  }
}

.category #point .point_inner .point_detail .point_kv .point_item .point_head {
  position: absolute;
  top: -30px;
  left: -60px;
}

@media (max-width: 768px) {
  .category #point .point_inner .point_detail .point_kv .point_item .point_head {
    left: -10%;
  }
}

.category #point .point_inner .point_detail .point_kv .point_item .point_head img {
  width: 65%;
}

.category #point .point_inner .point_detail .point_kv .point_desc {
  flex: 1;
}

@media (max-width: 1000px) {
  .category #point .point_inner .point_detail .point_kv .point_desc {
    width: 65%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .category #point .point_inner .point_detail .point_kv .point_desc {
    width: 80%;
    font-size: 0.9rem;
  }
}

@media (max-width: 500px) {
  .category #point .point_inner .point_detail .point_kv .point_desc {
    width: 100%;
  }
}

.category #point .point_inner .point_detail .point_kv .point_desc p {
  letter-spacing: 1px;
  line-height: 2;
}

.category #point .point_inner .point_detail .point_kv .point_desc .kabos {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.category #point .point_inner .point_detail .point_kv .point_desc .kabos .kabos_img img {
  width: 100px;
  padding-left: 12px;
}

.category #howto {
  background: #E0DBD5;
  padding: 100px 0 40px;
}

.category #howto .howto_title {
  text-align: center;
  margin-bottom: 40px;
}

.category #howto .howto_title img {
  height: 25px;
}

.category #howto .step_desc .step_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  /* liの間隔 */
  position: relative;
  overflow: visible !important;
}

.category #howto .step_desc .step_item {
  position: relative;
  text-align: center;
  width: 296px;
  z-index: 1;
}

.category #howto .step_desc .step_item p {
  margin-top: 12px;
  font-size: 0.9rem;
}

.category #howto .step_desc .step_item::after {
  z-index: 2;
}

.category #howto .step_desc .step_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("https://d2w53g1q050m78.cloudfront.net/yuranejp/uploads/img/arrow_right.svg") no-repeat center/contain;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.category #howto .step_desc .step_item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .category #howto .step_desc .step_list {
    flex-direction: column;
    gap: 40px;
  }

  .category #howto .step_desc .step_item {
    width: 80%;
    max-width: 300px;
  }

  .category #howto .step_desc .step_item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 105%;
    transform: translateX(-50%) rotate(90deg);
    width: 16px;
    height: 16px;
    background: url("https://d2w53g1q050m78.cloudfront.net/yuranejp/uploads/img/arrow_right.svg") no-repeat center/contain;
  }
}

.category #gift {
  padding: 80px 0;
  background: #E0DBD5;
}

@media (max-width: 768px) {
  .category #gift {
    padding: 80px 40px 0;
  }
}

.category #gift .gift_detail {
  display: flex;
  max-width: 1000px;
  align-items: center;
  margin: 0 auto;
  gap: 60px;
}

@media (max-width: 768px) {
  .category #gift .gift_detail {
    flex-direction: column;
  }
}

.category #gift .gift_detail .gift_index {
  flex: 0 0 50%;
  text-align: center;
}

.category #gift .gift_detail .gift_index h3 {
  margin-top: 24px;
  font-weight: normal;
}

@media (max-width: 768px) {
  .category #gift .gift_detail .gift_index h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 2;
  }
}

.category #gift .gift_detail .gift_index p {
  margin-top: 24px;
  font-size: 0.9rem;
  line-height: 2;
}

.category #gift .accordion {
  max-width: 1000px;
  margin: 100px auto 0;
}

@media (max-width: 768px) {
  .category #gift .accordion {
    margin: 60px auto 0;
    padding-bottom: 55px;
  }
}

.category #gift .accordion dl {
  border-top: 1px solid #2B2016;
  letter-spacing: 1.7px;
  color: #fff;
}

.category #gift .accordion dl:last-child {
  border-bottom: 1px solid #2B2016;
}

.category #gift .accordion dl dt {
  position: relative;
  padding: 1rem;
  font-weight: 500;
  cursor: pointer;
  color: #2B2016;
}

.category #gift .accordion dl dt .arrow {
  position: absolute;
  right: 3%;
  top: 33%;
  display: inline-block;
  width: 13px;
  height: 13px;
  border-right: 1px solid #2B2016;
  border-bottom: 1px solid #2B2016;
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}

.category #gift .accordion dl dt.active .arrow {
  transform: rotate(-135deg);
}

.category #gift .accordion dl dd {
  max-height: 0;
  overflow: hidden;
  color: #2B2016;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  padding: 0 2rem;
  transition: max-height 0.6s ease, padding 0.3s ease;
}

.category #gift .accordion dl dd.open {
  max-height: 200px;
  padding: 0 2rem 1rem;
}

@media (max-width: 768px) {
  .category #gift .accordion dl dd.open {
    max-height: 500px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category #review {
  padding: 40px 0 80px;
  background: #6B6A62;
}

.category #review .review_inner .review_wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 0;
}

.category #review .review_inner .review_wrap .review_head {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
}

@media (max-width: 768px) {
  .category #review .review_inner .review_wrap .review_head {
    display: block;
  }
}

@media (max-width: 768px) {
  .category #review .review_inner .review_wrap .review_head .review_title {
    text-align: center;
    margin-bottom: 12px;
  }
}

.category #review .review_inner .review_wrap .review_head .star {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .category #review .review_inner .review_wrap .review_head .star {
    margin-bottom: 24px;
  }
}

.category #review .review_inner .review_wrap .review {
  /* ▼ ここを変更！ */
  /* ▲ ここまで調整 */
}

.category #review .review_inner .review_wrap .review__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  margin-top: 40px;
}

.category #review .review_inner .review_wrap .review__item {
  background: #f9f8f7;
  border: 1px solid #c8c1b7;
  padding: 24px;
  position: relative;
}

.category #review .review_inner .review_wrap .review__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  /* 左側グループを明示的にflexにして寄せる */
}

.category #review .review_inner .review_wrap .review__header .review__stars,
.category #review .review_inner .review_wrap .review__header .review__buyer {
  display: inline-block;
  vertical-align: middle;
}

.category #review .review_inner .review_wrap .review__header .review__stars {
  font-size: 20px;
  color: #2d241f;
  letter-spacing: 1px;
  margin-right: 6px;
}

.category #review .review_inner .review_wrap .review__header .review__buyer {
  font-size: 14px;
  color: #2d241f;
}

.category #review .review_inner .review_wrap .review__header .review__date {
  font-size: 14px;
  color: #6b5d53;
}

.category #review .review_inner .review_wrap .review__meta {
  font-size: 14px;
  color: #2d241f;
  margin-bottom: 16px;
  line-height: 1.8;
}

.category #review .review_inner .review_wrap .review__headline {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: #2d241f;
}

.category #review .review_inner .review_wrap .review__text {
  font-size: 14px;
  line-height: 1.8;
  color: #2d241f;
}

.category #review .review_inner .review_wrap .review__btns {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .category #review .review_inner .review_wrap .review__btns {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.category #review .review_inner .review_wrap .review__btn {
  display: inline-block;
  padding: 20px 48px;
  background: #2d241f;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1.5px;
  font-weight: 300;
  transition: 0.3s;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .category #review .review_inner .review_wrap .review__btn {
    width: 260px;
    text-align: center;
  }
}

.category #review .review_inner .review_wrap .review__btn:hover {
  opacity: 0.8;
}

.company .company_inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px;
}

.company .company_inner h2 {
  text-align: center;
  margin: 120px 0 80px;
}

.company .company_inner h2 img {
  min-width: 150px;
  height: 80px;
  width: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .company .company_inner h2 img {
    height: 60px;
  }
}

.company .company_inner dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
  border-top: 1px solid #2B2016;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .company .company_inner dl {
    font-size: 1rem;
  }
}

.company .company_inner dl dt,
.company .company_inner dl dd {
  padding: 16px 12px;
  border-bottom: 1px solid #2B2016;
}

.company .company_inner dl dt {
  flex: 0 0 30%;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
}

.company .company_inner dl dd {
  flex: 0 0 70%;
  margin: 0;
}

@media (max-width: 768px) {
  .company .company-inner dl {
    display: block;
  }

  .company .company-inner dl dt,
  .company .company-inner dl dd {
    width: 100%;
    padding: 12px 0;
  }

  .company .company-inner dl dt {
    border-bottom: none;
    font-weight: bold;
    color: #555;
  }

  .company .company-inner dl dd {
    padding-bottom: 16px;
  }
}

.login {
  color: #2B2016;
  background: url(https://d2w53g1q050m78.cloudfront.net/yuranejp/uploads/img/login_bg.webp) no-repeat center/cover;
}

.login h2 {
  text-align: center;
  padding: 120px 0 0;
}

.login h2 img {
  max-width: 160px;
  min-width: 110px;
  width: 15%;
}

.login .login-section {
  padding: 64px 0 100px;
}

.login .login-section .login-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .login .login-section .login-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.login .login-section .login-block {
  width: 100%;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.login .login-section .login-block .login-title {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: #fff;
}

@media (max-width: 768px) {
  .login .login-section .login-block .login-title {
    font-size: 1rem;
  }
}

.login .login-section .login-block a {
  display: inline-block;
  color: #2B2016;
  margin: 16px 0 0;
  border-bottom: 1px solid #2B2016;
  padding-bottom: 4px;
  font-size: 0.8rem;
}

.login .login-section .login-box,
.login .login-section .signup-box {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.login .login-section .login-box button,
.login .login-section .signup-box button {
  font-weight: normal;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.login .login-section .login-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  text-align: left;
  color: #2B2016;
}

.login .login-section .login-form input[type=email],
.login .login-section .login-form input[type=password] {
  width: 100%;
  padding: 7px;
  border: 1px solid #ccc;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.login .login-section .login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.login .login-section .btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  border: none;
}

.login .login-section .btn--dark {
  background: #2d241f;
  color: #fff;
}

.login .login-section .btn--line {
  background: #06c755;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.login .login-section .btn--line img {
  width: 20px;
  height: 20px;
}

.login .login-section .btn:hover {
  opacity: 0.85;
}

.login .login-section .signup-info {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}

.login .login-section .signup-info h3 {
  border-top: 1px dashed #2B2016;
  padding-top: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-align: center;
  color: #2B2016;
}

.login .login-section .signup-info ul {
  list-style-type: disc;
  font-size: 0.7rem;
  color: #2B2016;
}

.policy .policy_inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .policy .policy_inner {
    padding: 40px 0;
  }
}

.policy .policy_inner h2 {
  text-align: center;
  margin: 120px 0 80px;
}

.policy .policy_inner h2 img {
  min-width: 300px;
  width: 35%;
  height: auto;
  margin: 0 auto;
}

.policy .policy_inner .policy_detail {
  max-width: 980px;
  letter-spacing: 3px;
}

.policy .policy_inner .policy_detail h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .policy .policy_inner .policy_detail h3 {
    font-size: 1.15rem;
  }
}

.policy .policy_inner .policy_detail h4 {
  margin-top: 40px;
  font-size: 1.3rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .policy .policy_inner .policy_detail h4 {
    font-size: 1.15rem;
  }
}

.policy .policy_inner .policy_detail p {
  margin-top: 24px;
  padding: 0 20px 40px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

@media (max-width: 768px) {
  .policy .policy_inner .policy_detail p {
    padding: 0 0 40px;
  }
}

.faq .faq_inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

@media (max-width: 768px) {
  .faq .faq_inner {
    padding: 40px 0 60px;
  }
}

.faq .faq_inner h2 {
  text-align: center;
  margin: 120px 0 80px;
  color: #2B2016;
}

.faq .faq_inner h2 img {
  min-width: 200px;
  width: 25%;
  height: auto;
  margin: 0 auto;
}

.faq .faq_inner .link_list a {
  color: #2B2016;
  padding-bottom: 5px;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-decoration: underline;
  width: fit-content;
}

.faq .faq_inner .policy_detail {
  max-width: 980px;
  letter-spacing: 3px;
  color: #2B2016;
}

.faq .faq_inner .policy_detail h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .faq .faq_inner .policy_detail h3 {
    font-size: 1.15rem;
  }
}

.faq .faq_inner .policy_detail h3#products {
  padding-top: 100px;
}

.faq .faq_inner .policy_detail h3#return {
  padding-top: clamp(90px, calc((100vw / 1440) * 90), 100px);
}

.faq .faq_inner .policy_detail h4 {
  font-size: 1.3rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .faq .faq_inner .policy_detail h4 {
    font-size: 1.15rem;
  }
}

.faq .faq_inner .policy_detail p {
  margin-top: 20px;
  padding: 0 20px 24px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq .faq_inner .policy_detail p {
    padding: 0 0 24px;
  }
}

/* .news .kv {
  margin-top: 36px;
  height: 274px;
  background: url(https://d2w53g1q050m78.cloudfront.net/yuranejp/uploads/img/news_kv.webp) no-repeat left/cover;
}

@media (max-width: 768px) {
  .news .kv {
    background-position: left 20% bottom 45%;
  }
}

.news .kv .news_logo {
  text-align: center;
  padding-top: 100px;
} */

/* .news .kv .news_logo img {
  width: 20%;
  max-width: 100px;
  margin: 0 auto;
  height: auto;
} */

.news #news_detail {
  padding: 20px 0 80px;
  background: #E0DBD5;
  line-height: 2;
  letter-spacing: 2px;
}

.news #news_detail .news__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.news #news_detail .news__list {
  max-width: 600px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.news #news_detail .news__item {
  border: 1px solid #ddd;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news #news_detail .news__thumb {
  width: 100%;
  overflow: hidden;
}

.news #news_detail .news__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

a:hover .news #news_detail .news__thumb img {
  transform: scale(1.05);
}

.news #news_detail .news__meta {
  padding: 16px 0;
}

.news #news_detail .news__date {
  display: block;
  font-size: 0.85rem;
  color: #6B6A62;
  margin-bottom: 8px;
}

.news #news_detail .news__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2B2016;
  margin: 0 0 12px;
}

.news #news_detail .news__excerpt {
  font-size: 0.95rem;
  color: #000;
}

main {
  background: #E0DBD5;
  color: #2B2016;
}



main .regulations .regulations_inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px;
}

main .regulations .regulations_inner h2 {
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  margin: 120px 0 50px;
}

main .regulations .regulations_inner h2 img {
  min-width: 300px;
  width: 35%;
}

main .regulations .regulations_inner .policy_detail {
  max-width: 980px;
  letter-spacing: 3px;
}

main .regulations .regulations_inner .policy_detail h3 {
  font-size: 1.3rem;
  font-weight: bold;
}

main .regulations .regulations_inner .policy_detail p {
  margin-top: 24px;
  padding-bottom: 40px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

main .regulations .regulations_inner .policy_detail .policy-contact__info {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  color: #2B2016;
  margin-top: 24px;
  margin-bottom: 16px;
}

main .regulations .regulations_inner .policy_detail .policy-contact__info a {
  display: inline-block;
  color: #2B2016;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

main .regulations .regulations_inner .policy_detail .policy-contact__info a:hover {
  opacity: 0.7;
}

main .regulations .regulations_inner .policy_detail .policy-contact__info span {
  display: inline-block;
  margin-right: 4px;
}

main .regulations .regulations_inner .policy_detail .policy-contact__person {
  font-size: 14px;
  color: #2B2016;
  line-height: 1.8;
}

.wrapper {
  width: 100%;
  padding: 0 5%;
}

.policy_content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 125px 20px;
}

@media (max-width: 768px) {
  .policy_content {
    padding: 80px 20px;
  }
}

.policy_content_title {
  font-size: 36px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 3px;
  margin: 0px 0 46px;
}

@media (max-width: 768px) {
  .policy_content_title {
    font-size: 24px;
    margin: 0px 0 20px;
  }
}

.policy_content_head {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 4px;
}

.policy_content_head_date {
  margin: 0 0 54px;
}

@media (max-width: 768px) {
  .policy_content_head_date {
    margin: 0 0 30px;
  }
}

.policy_content_inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 60px 0 30px;
}

@media (max-width: 768px) {
  .policy_content_inner {
    margin: 40px 0 20px;
  }
}

.policy_content_item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy_content_item_title {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 1.8;
}

.policy_content_item_text {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 4px;
  white-space: pre-line;
}

.policy_content_item_list {
  list-style: decimal;
  margin: 0;
}

.policy_content_item_list li {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 4px;
}

.policy_content .btn_contact .policy_content_btn {
  border-color: #2B2016;
  color: #2B2016;
}

#product .product_inner .product_mainimg img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.u-color__text--alert {
  color: #2B2016;
}

.padding--100-0 {
  padding: 100px 0;
}

/* 新規会員登録 */
.c-form_table__checkbox__text {
  display: flex;
}

.c-form_table__checkbox__text a {
  color: #2b2016 !important;
  text-decoration: underline;
}

.c-steps_to_order__number::before,
.c-steps_to_order__number::after {
  border-color: white;
}

.footer_banner_container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  .footer_banner_container {
    bottom: 10px;
    left: 10px;
  }
}

.close_btn {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 12px;
  height: 12px;
  cursor: pointer;
  z-index: 99;
  box-sizing: content-box;
  padding: 5%;
}

.footer_banner {
	width: 240px;
	position: relative;
	transition: opacity 0.3s;
	opacity: 1;
}

@media screen and (max-width: 767px) {
	.footer_banner {
		width: 150px;
	}
}
.footer_banner img {
	width: 100%;
}

.footer_banner:hover {
	opacity: 0.7;
}

.top_sec_ttl {
  font-size: 2.6rem;
  font-weight: 400;
  font-family: "Aboreto", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 768px) {
  .top_sec_ttl {
    font-size: 1.4rem;
  }
}

.page_ttl {
  font-size: 2.6rem;
  font-weight: 400;
  font-family: "Aboreto", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page_ttl span {
  font-size: 1.1rem;
  font-family: inherit;
}

@media (max-width: 768px) {
  .page_ttl {
    font-size: 1.4rem;
  }
}

.c-account_menu__content.--sub-heading,
.c-account_menu__text {
  color: #2B2016;
}

.c-account_menu__logout {
  background-color: #2B2016;
}

.c-account_menu__logout .c-account_menu__text {
  color: white;
}

.c-account_menu__content.--main-heading {
  background-color: white;
  border: 1px solid #2B2016;
  padding-left: 10px;
  padding-right: 10px;
}

.line_new_ec {
  max-width: 300px;
}

.p-mypage .line_new_ec {
  max-width: 300px;
  margin: 0;
}

.c-breadcrumbs__item a {
  color: #2B2016;
}

.c-form_table > tbody > tr > td input[type=text], .c-form_table--confirm > tbody > tr > td input[type=text], .c-form_table > tbody > tr > td input[type=email], .c-form_table--confirm > tbody > tr > td input[type=email], .c-form_table > tbody > tr > td input[type=tel], .c-form_table--confirm > tbody > tr > td input[type=tel], .c-form_table > tbody > tr > td input[type=number], .c-form_table--confirm > tbody > tr > td input[type=number], .c-form_table > tbody > tr > td input[type=password], .c-form_table--confirm > tbody > tr > td input[type=password] {
  background-color: white;
}

.c-form_table__select > * {
  background-color: white;
}

.c-form_table__checkbox input {
  background-color: white;
}

.u-padding-bottom--100 {
  padding-bottom: 100px;
}

.c-form_table .formError, .c-form_table--confirm .formError {
  background-color: rgba(148, 134, 97, 0.8);
}

.p-checkout__bottom__submit,
.c-cart_submit__block__submit,
.c-cart_item__info__quantity__submit,
.p-page_header__inner__btn,
.c-cart_list__text a,
.p-checkout_confirm__inner__list__block__submit,
.p-account__inner__content__form__bottom__btn,
.p-address_list__add,
.p-payment_list__add__btn,
.p-account__inner__content__form__bottom__btn {
  background-color: #2B2016;
  color: white;
}

.c-cart_list__text a {
  padding: 4px 10px;
  display: inline-block;
}

.c-cart_item_payment {
  
}

.c-cart_item_payment__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: #F4F8FA;
  max-width: 500px;
  padding: 30px;
  margin: 0 auto;
}

.c-cart_item_payment__inner_ap {
  width: fit-content;
  object-fit: contain;
  background-color: #333E48;
  padding: 20px;
}

.c-cart_item_payment__inner_ap img {
  width: 100%;
  object-fit: contain;
  max-width: 200px;
}

.c-cart_item_payment__inner_cards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.c-cart_item_payment__inner_cards img {
  max-width: 80px;
  object-fit: contain;
}

.c-cart_item_payment__inner_text {
  line-height: 1.8;
  text-align: center;
  color: #2B2016;
}

@media (max-width: 768px) {
  .c-cart_item_payment__inner {
    padding: 20px;
  }

  .c-cart_item_payment__inner_ap {
    padding: 12px;
  }
  
  .c-cart_item_payment__inner_ap img {
    max-width: 140px;
  }

  .c-cart_item_payment__inner_cards img {
    max-width: 65px;
  }
}