@charset "UTF-8";

/* ▼ グローバル ▼ */
/*!
global > color
------------------------------
*/
:root {
  --color-bg-primary: #baa8a2;
  --color-bg-primary-light: rgba(186, 168, 162, 0.15);
  --color-border: #eeeeee;
  --color-font-primary: #baa8a2;
  --color-font-black: #333333;
  --color-font-white: #ffffff;
  --color-font-base: #5d5d5d;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 920px;
  --width-content: 1080px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Serif JP", serif;
  --font-family-english: "Lato", sans-serif;
}

/* ▼ ファンデーション ▼ */
/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  display: block;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
body {
  line-height: 1.8;
  font-size: 14px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

/* ▼ ユーティリティー ▼ */
/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-linebreak {
  display: block;
}

.u-linebreak--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-linebreak--sp {
    display: inline;
  }
}

.u-linebreak--pc {
  display: inline;
}
@media screen and (min-width: 768px) {
  .u-linebreak--pc {
    display: block;
  }
}

/* ▼ コンポーネント ▼ */
/*!
component > button
------------------------------
*/
.c-button {
  background-color: var(--color-bg-primary);
  width: 260px;
  height: 55px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .c-button {
    width: 324px;
  }
}

.c-button--mta {
  margin-top: auto;
}

.c-button-title--ja,
.c-button-title--en {
  letter-spacing: 0.1em;
  font-size: 16px;
  color: var(--color-font-white);
  padding-left: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-button-title--ja,
  .c-button-title--en {
    font-size: 18px;
  }
}

.c-button-title--en {
  font-family: var(--font-family-english);
}

/*!
component > title
------------------------------
*/
.c-section-title-wrapper {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .c-section-title-wrapper {
    gap: 20px;
  }
}

.c-section-title--en,
.c-section-title--ja {
  color: var(--color-font-black);
  line-height: 1;
  text-align: center;
}

.c-section-title--en {
  font-family: var(--font-family-english);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.4em;
  padding-left: 0.4em;
}
@media screen and (min-width: 768px) {
  .c-section-title--en {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  .c-section-title--ja {
    font-size: 18px;
  }
}

/*!
component > item(商品単体)
------------------------------
*/
.c-item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.c-item-title,
.c-item-description {
  text-align: center;
}

.c-item-title {
  color: var(--color-font-black);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .c-item-title {
    font-size: 20px;
  }
}

/*!
component > items(商品複数)
------------------------------
*/
.c-items {
  display: grid;
  gap: 48px 24px;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 600px) {
  .c-items--col2,
  .c-items--col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-items--col2,
  .c-items--col3 {
    gap: 48px 40px;
  }
}
@media screen and (min-width: 1080px) {
  .c-items--col2,
  .c-items--col3 {
    gap: 80px;
  }
}
@media screen and (min-width: 1080px) {
  .c-items--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ▼ レイアウト ▼ */
/*!
layout > header
------------------------------
*/
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .header-wrapper {
    padding: 0 32px;
    height: 80px;
  }
}

.header-logo img {
  width: 70px;
  display: flex;
}
@media screen and (min-width: 768px) {
  .header-logo img {
    width: 85px;
  }
}

.header-cart img {
  width: 26px;
  height: 26px;
  display: flex;
}

/*!
layout > footer
------------------------------
*/
.footer {
  color: var(--color-font-white);
  background-color: var(--color-bg-primary);
  padding: 40px 0 20px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 56px 0 24px;
  }
}

.footer-logo {
  width: 84px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    margin: 0;
  }
}

.footer-logo img {
  display: block;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .footer-nav-list {
    justify-content: left;
    gap: 24px;
  }
}

.footer-nav-list-item {
  font-size: 12px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer-nav-list-item {
    font-size: 14px;
  }
}

.copyright {
  display: block;
  font-size: 12px;
  text-align: center;
  padding-top: 20px;
  margin-top: 24px;
  border-top: solid 1px var(--color-border);
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .copyright {
    padding-top: 24px;
    margin-top: 40px;
  }
}

/*!
layout > container
------------------------------
*/
.l-container,
.l-container-s {
  width: 90%;
  margin: 0 auto;
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container {
  max-width: var(--width-content);
}

/*!
layout > section
------------------------------
*/
.l-section {
  padding: 96px 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 160px 0;
  }
}

/*!
layout > section-body
------------------------------
*/
.l-section-body {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .l-section-body {
    margin-top: 80px;
  }
}

/* ▼ トップページ ▼ */
/*!
page > top
------------------------------
*/
@media screen and (min-width: 768px) {
  .top-keyvisual {
    position: relative;
    height: 689px;
  }
}

.top-keyvisual::before {
  content: "";
  display: block;
  background-image: url(../img/bg-top-kv-sp.png);
  aspect-ratio: 360 / 200;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-keyvisual::before {
    background-image: url(../img/bg-top-kv-pc.png);
    width: calc(95% - 320px);
    height: 100%;
    margin-left: auto;
  }
}
@media screen and (min-width: 1080px) {
  .top-keyvisual::before {
    width: calc(100% - ((100% - 1080px) / 2 + 320px));
  }
}

.top-keyvisual-wrapper {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .top-keyvisual-wrapper {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0;
  }
}

.top-keyvisual-catchphrase {
  color: var(--color-font-black);
  font-size: 24px;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .top-keyvisual-catchphrase {
    font-size: 40px;
    margin-bottom: 96px;
  }
}

@media screen and (min-width: 768px) {
  .top-button {
    width: 360px;
  }
}

/*!
page > top > feature
------------------------------
*/
.top-feature-main-item {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .top-feature-main-item {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    place-items: center;
  }
}

@media screen and (min-width: 1130px) {
  .top-feature-main-item-img {
    width: 540px;
    height: 400px;
  }
}

.top-feature-other-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .top-feature-other-item-wrapper {
    flex-direction: initial;
    gap: 60px;
    margin-top: 80px;
  }
}

.top-feature-title-en {
  color: var(--color-font-primary);
  font-family: var(--font-family-english);
  letter-spacing: 0.12em;
  padding-left: 0.12em;
  font-size: 14px;
}

.top-feature-title-ja {
  color: var(--color-font-black);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .top-feature-title-ja {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .top-feature-main-item .top-feature-title-en {
    font-size: 16px;
  }
}

.top-feature-other-item .top-feature-item-text-wrapper {
  margin-top: 20px;
}

/*!
page > top > lineup
------------------------------
*/
.top-section-top-background-image {
  background-image: url(../img/bg-lineup-sp.png);
  width: 100%;
  height: 180px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 400px) and (max-width: 1199px) {
  .top-section-top-background-image {
    background-image: url(../img/bg-lineup.png);
    background-position: center;
    height: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .top-section-top-background-image {
    background-image: url(../img/bg-lineup.png);
    height: 640px;
  }
}

.top-section-bottom-background-image {
  background-image: url(../img/bg-instagram-sp.png);
  width: 100%;
  height: 180px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 400px) and (max-width: 1199px) {
  .top-section-bottom-background-image {
    background-image: url(../img/bg-instagram.png);
    background-position: center;
    height: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .top-section-bottom-background-image {
    background-image: url(../img/bg-instagram.png);
    height: 640px;
  }
}

/*!
page > top > instagram
------------------------------
*/
.top-instagram-post-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
@media screen and (min-width: 768px) {
  .top-instagram-post-item {
    gap: 24px;
  }
}

.top-instagram-post-item-wrapper .c-button {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .top-instagram-post-item-wrapper .c-button span {
    font-size: 16px;
  }
}

/* ▼ 商品詳細ページ ▼ */
/*!
page > product
------------------------------
*/
.product-page-keyvisual {
  background-image: url(../img/bg-product-kv-sp.png);
  width: 100%;
  height: 170px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .product-page-keyvisual {
    background-image: url(../img/bg-product-kv.png);
    height: 300px;
  }
}

.product-main-wrapper {
  display: grid;
  gap: 24px;
}
@media (min-width: 650px) {
  .product-main-wrapper {
    grid-template-columns: 300px auto;
    gap: 24px;
    place-items: center;
  }
}
@media screen and (min-width: 1000px) {
  .product-main-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    place-items: center;
  }
}

.product-main-item-title {
  font-size: 22px;
  color: var(--color-font-black);
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .product-main-item-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
}

.product-main-item-description {
  margin-bottom: 24px;
}

.product-main-item-description span:first-of-type {
  margin-bottom: 2rem;
}

.product-main-button {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .product-main-button {
    margin: initial;
  }
}

/*!
page > product > related-products
------------------------------
*/
.related-products {
  background-color: var(--color-bg-primary-light);
}

.related-products-title--en {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .related-products-title--en {
    line-height: 1;
  }
}

.related-products-item-wrapper {
  max-width: 1078px;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .related-products-item-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .related-products-item-order {
    order: -1;
  }
}

@media screen and (min-width: 768px) {
  .related-products-button {
    max-width: 306px;
  }
}

/* ▼ エラー404ページ ▼ */
/*!
page > error
------------------------------
*/
.error-page-keyvisual {
  background-image: url(../img/bg-error-kv-sp.png);
  width: 100%;
  height: 170px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .error-page-keyvisual {
    background-image: url(../img/bg-error-kv.png);
    height: 300px;
  }
}

.error-title-wrapper {
  gap: 0;
}

.error-text-wrapper {
  display: grid;
  place-items: center;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .error-text-wrapper {
    gap: 40px;
  }
}

.error-text-title--en {
  font-size: 24px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .error-text-title--en {
    font-size: 36px;
  }
}

@media screen and (min-width: 768px) {
  .error-text-title--ja {
    font-size: 16px;
  }
}

.error-text-description {
  text-align: center;
}
