@charset "UTF-8";
/* Reset */
body, h1, h2, h3, h4, p, ul, button {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-weight: 200;
}

body {
  background-color: #F4F3EE;
  color: #000;
  font-size: clamp(13px, 2vw, 20px);
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

p {
  font-size: clamp(16px, 2vw, 20px);
}

ul {
  list-style: none;
}

div {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
.header__logo img {
  width: 230px;
}
.header__scroll {
  line-height: 1;
  white-space: nowrap;
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
}
.header__scroll::-webkit-scrollbar {
  display: none;
}
.header__nav ul {
  display: flex;
}
.header__nav li {
  margin-left: 20px;
}
.header__nav a {
  font-family: "OptimaProRoman", serif;
  font-size: 24px;
}
.header__nav a:before {
  display: inline-block;
  content: "∨";
  font-size: 10px;
  margin-right: 10px;
  vertical-align: middle;
}
.header__share {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.header__share span {
  font-family: "OptimaProRoman", serif;
  margin-right: 10px;
}

.social-links {
  display: flex;
}
.social-links li {
  margin-left: 15px;
  width: 16px;
}
.social-links img {
  width: 16px;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: end;
  text-align: center;
  color: #fff;
  background-image: url(../img/hero_bg.png);
  background-size: cover;
  background-position: center center;
}
.hero__content {
  margin-bottom: 10%;
}
.hero__logo {
  max-width: 710px;
  margin: 0 auto 20px;
}
.hero__text {
  font-size: clamp(20px, 3.3vw, 32px);
  letter-spacing: 0.05em;
}

/* About */
.about {
  display: flex;
  background: linear-gradient(180deg, #E7DBC5 0%, #E8DECA 34%, #EAE3D1 66%, #E9E1D0 100%);
}
.about__image {
  width: 45%;
  display: flex;
  align-items: center;
}
.about__image img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
}
.about__content {
  width: 55%;
  padding: 80px 60px;
  box-sizing: border-box;
}
.about__content h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.about__content h2 {
  font-size: clamp(24px, 3.3vw, 32px);
  margin-bottom: 40px;
}

/* Elaskin Info */
.elaskin-info {
  padding: 120px 0;
  background: #504236;
  background-image: url(../img/elaskin_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.elaskin-info__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  color: #FFF;
}
.elaskin-info__text-content {
  width: 55%;
  padding-right: 40px;
}
.elaskin-info__text-content h3 {
  font-size: clamp(20px, 3.3vw, 32px);
  margin-bottom: 30px;
}
.elaskin-info__graph {
  width: 45%;
  position: relative;
}

/* Product */
.product {
  padding: 120px 0;
}
.product__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.product__main-content {
  display: flex;
  margin-bottom: 80px;
}
.product__gallery {
  width: 40%;
}
.product__main-image {
  margin-bottom: 20px;
}
.product__thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.product__details {
  width: 60%;
  padding-left: 60px;
}
.product__details h2 {
  font-size: clamp(24px, 3.3vw, 32px);
  margin-bottom: 10px;
}
.product__subtitle {
  font-size: clamp(12px, 1.8vw, 16px);
  margin-bottom: 20px;
}
.product__options {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 10px;
}
.product__option {
  border: 1px solid #AAA;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  width: calc(50% - 10px);
}
.product__purchase-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 20px 80px;
  cursor: pointer;
  width: 100%;
  font-size: clamp(13px, 2vw, 20px);
}
.product__data .data-item {
  border-top: 0.5px solid #000;
  padding: 20px 0;
}
.product .data-title {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.product .accordion-trigger {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.product .accordion-arrow {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}
.product .accordion-trigger[aria-expanded=true] .accordion-arrow {
  transform: rotate(0deg);
}
.product .data-content {
  overflow: hidden;
  transition: grid-template-rows 0.5s ease, opacity 0.2s ease;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
}
.product .data-content > * {
  min-height: 0;
}
.product .data-content[hidden] {
  display: none;
  grid-template-rows: 0fr;
  opacity: 0;
}
.product .data-content.is-open {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  margin: 30px 0;
  overflow: visible;
}
.product .review__inner {
  width: 100%;
}
.product .review__box {
  background-color: #E8DECA;
  padding: 10px;
}
.product .review__box .reviewer {
  border-top: 1px solid #000;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
}
.product .review .review-carousel {
  position: relative;
}
.product .review .review-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
}
.product .review .review-track::-webkit-scrollbar {
  display: none;
}
.product .review .review__inner {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.product .review .review-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}
.product .review .review-dots button {
  inline-size: 8px;
  block-size: 8px;
  border-radius: 9999px;
  border: none;
  background: #E8DECA;
  cursor: pointer;
}
.product .review .review-dots button[aria-current=true] {
  background: #000;
}

/* Ingredients */
.ingredients {
  padding: 120px 0;
  background: linear-gradient(128deg, #F1EEEE 15%, #E4E1DF 80%);
}
.ingredients__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.ingredients__image {
  width: 60%;
  margin: 0 auto 60px;
}

.ingredient-item {
  margin-bottom: 40px;
}
.ingredient-item__title {
  font-size: clamp(24px, 3.3vw, 32px);
  font-weight: 700;
}
.ingredient-item__subtitle {
  font-size: 20px;
  margin-left: 30px;
  display: inline-block;
  font-weight: 100;
}
.ingredient-item__number {
  font-size: 48px;
  font-family: "Playfair Display", serif;
}
.ingredient-item__text {
  padding-left: 12%;
}

/* Philosophy */
.philosophy {
  padding: 120px 0;
}
.philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.philosophy__inner h3 {
  font-size: clamp(20px, 3.3vw, 32px);
  margin-bottom: 40px;
}
.philosophy__author {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.philosophy__author-image {
  width: 40%;
  margin-right: 40px;
}
.philosophy__author-info {
  width: 60%;
}
.philosophy__author-info__data {
  display: inline-block;
}

.author-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.author-name {
  font-size: 32px;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px;
  text-align: center;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 30px;
}
.footer__logo img {
  width: 230px;
}
.footer__nav ul {
  display: flex;
}
.footer__nav li {
  margin: 0 15px;
}
.footer__nav a {
  font-family: "OptimaProRoman", serif;
  font-size: 24px;
}
.footer__share {
  display: flex;
  align-items: center;
}
.footer__share span {
  font-family: "OptimaProRoman", serif;
  margin-right: 10px;
}

/* common */
.section-title {
  font-family: "OptimaProRoman", serif;
  font-size: 96px;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.25rem;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .flex .sp_col1 {
    width: 100%;
  }
}

.italic {
  font-style: italic;
}

.text-right {
  text-align: right;
}

.img-right {
  margin-left: auto;
}

.text-center {
  text-align: center;
}

.textXL {
  font-size: clamp(24px, 3.3vw, 32px);
}

.textL {
  font-size: clamp(18px, 2.5vw, 24px);
}

.textS {
  font-size: clamp(12px, 1.8vw, 16px);
}

.sp_show {
  display: none;
}

.f_serif {
  font-family: "Shippori Mincho", serif;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 48px;
  }
  .header__logo {
    width: 100%;
  }
  .header__logo img {
    margin: 0 auto;
    width: 150px;
  }
  .header__inner {
    flex-wrap: wrap;
    padding: 10px 20px;
  }
  .hero {
    background-position: 65% center;
  }
  .hero__logo {
    width: 360px;
  }
  .hero__content {
    margin-bottom: 20%;
  }
  .hero__text {
    font-size: 24px;
  }
  .about {
    flex-direction: column;
    flex-flow: column-reverse;
  }
  .about__image, .about__content {
    width: 100%;
  }
  .about__image {
    transform: rotate(90deg);
  }
  .about__content {
    padding: 40px 20px;
  }
  .elaskin-info {
    background-image: none;
  }
  .elaskin-info__inner {
    flex-direction: column;
    padding: 0 20px;
  }
  .elaskin-info__text-content, .elaskin-info__graph {
    width: 100%;
  }
  .elaskin-info__text-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .product__inner {
    padding: 0 20px;
  }
  .product__main-content {
    flex-direction: column;
    margin: 0;
  }
  .product__gallery, .product__details {
    width: 100%;
  }
  .product__details {
    padding-left: 0;
    margin-top: 40px;
  }
  .ingredients__inner {
    padding: 0 20px;
  }
  .ingredients__image {
    width: 100%;
  }
  .ingredient-item__title {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0px;
  }
  .ingredient-item__number {
    font-size: 42px;
    align-self: end;
    grid-row: span 2/span 2;
  }
  .ingredient-item__subtitle2 {
    grid-column: span 4/span 4;
  }
  .ingredient-item__subtitle {
    margin: 0;
    grid-column: span 4/span 4;
    grid-column-start: 2;
    grid-row-start: 2;
  }
  .ingredient-item__text {
    padding: 0;
  }
  .philosophy__inner {
    padding: 0 20px;
  }
  .philosophy__subtitle {
    display: inline-flex;
    width: 85%;
  }
  .philosophy__author {
    flex-direction: column;
  }
  .philosophy__author-image, .philosophy__author-info {
    width: 100%;
  }
  .philosophy__author-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .footer {
    padding: 10px;
  }
  .footer__inner {
    display: none;
  }
  .sp_show {
    display: block;
  }
  .sp_hide {
    display: none;
  }
  .sp_center {
    text-align: center;
  }
}
/* mixin */
.mb5 {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .mb5 {
    margin-bottom: 3px;
  }
}

.mb10 {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .mb10 {
    margin-bottom: 6px;
  }
}

.mb15 {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .mb15 {
    margin-bottom: 9px;
  }
}

.mb20 {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .mb20 {
    margin-bottom: 12px;
  }
}

.mb25 {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .mb25 {
    margin-bottom: 15px;
  }
}

.mb30 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .mb30 {
    margin-bottom: 18px;
  }
}

.mb35 {
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .mb35 {
    margin-bottom: 21px;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mb40 {
    margin-bottom: 24px;
  }
}

.mb45 {
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .mb45 {
    margin-bottom: 27px;
  }
}

.mb50 {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .mb50 {
    margin-bottom: 30px;
  }
}

.mb55 {
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .mb55 {
    margin-bottom: 33px;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .mb60 {
    margin-bottom: 36px;
  }
}

.mb65 {
  margin-bottom: 65px;
}
@media (max-width: 768px) {
  .mb65 {
    margin-bottom: 39px;
  }
}

.mb70 {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .mb70 {
    margin-bottom: 42px;
  }
}

.mb75 {
  margin-bottom: 75px;
}
@media (max-width: 768px) {
  .mb75 {
    margin-bottom: 45px;
  }
}

.mb80 {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .mb80 {
    margin-bottom: 48px;
  }
}

.mb85 {
  margin-bottom: 85px;
}
@media (max-width: 768px) {
  .mb85 {
    margin-bottom: 51px;
  }
}

.mb90 {
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .mb90 {
    margin-bottom: 54px;
  }
}

.mb95 {
  margin-bottom: 95px;
}
@media (max-width: 768px) {
  .mb95 {
    margin-bottom: 57px;
  }
}

.mb100 {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .mb100 {
    margin-bottom: 60px;
  }
}

.mb105 {
  margin-bottom: 105px;
}
@media (max-width: 768px) {
  .mb105 {
    margin-bottom: 63px;
  }
}

.mb110 {
  margin-bottom: 110px;
}
@media (max-width: 768px) {
  .mb110 {
    margin-bottom: 66px;
  }
}

.mb115 {
  margin-bottom: 115px;
}
@media (max-width: 768px) {
  .mb115 {
    margin-bottom: 69px;
  }
}

.mb120 {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .mb120 {
    margin-bottom: 72px;
  }
}

.mb125 {
  margin-bottom: 125px;
}
@media (max-width: 768px) {
  .mb125 {
    margin-bottom: 75px;
  }
}

.mb130 {
  margin-bottom: 130px;
}
@media (max-width: 768px) {
  .mb130 {
    margin-bottom: 78px;
  }
}

.mb135 {
  margin-bottom: 135px;
}
@media (max-width: 768px) {
  .mb135 {
    margin-bottom: 81px;
  }
}

.mb140 {
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  .mb140 {
    margin-bottom: 84px;
  }
}

.mb145 {
  margin-bottom: 145px;
}
@media (max-width: 768px) {
  .mb145 {
    margin-bottom: 87px;
  }
}

.mb150 {
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .mb150 {
    margin-bottom: 90px;
  }
}

.mb155 {
  margin-bottom: 155px;
}
@media (max-width: 768px) {
  .mb155 {
    margin-bottom: 93px;
  }
}

.mb160 {
  margin-bottom: 160px;
}
@media (max-width: 768px) {
  .mb160 {
    margin-bottom: 96px;
  }
}

.mb165 {
  margin-bottom: 165px;
}
@media (max-width: 768px) {
  .mb165 {
    margin-bottom: 99px;
  }
}

.mb170 {
  margin-bottom: 170px;
}
@media (max-width: 768px) {
  .mb170 {
    margin-bottom: 102px;
  }
}

.mb175 {
  margin-bottom: 175px;
}
@media (max-width: 768px) {
  .mb175 {
    margin-bottom: 105px;
  }
}

.mb180 {
  margin-bottom: 180px;
}
@media (max-width: 768px) {
  .mb180 {
    margin-bottom: 108px;
  }
}

.mb185 {
  margin-bottom: 185px;
}
@media (max-width: 768px) {
  .mb185 {
    margin-bottom: 111px;
  }
}

.mb190 {
  margin-bottom: 190px;
}
@media (max-width: 768px) {
  .mb190 {
    margin-bottom: 114px;
  }
}

.mb195 {
  margin-bottom: 195px;
}
@media (max-width: 768px) {
  .mb195 {
    margin-bottom: 117px;
  }
}

.mb200 {
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .mb200 {
    margin-bottom: 120px;
  }
}/*# sourceMappingURL=style.css.map */