@charset "UTF-8";
/* ========================================
   _reset.scss (modern & minimal)
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ol,
ul,
li,
table,
th,
td,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
[type=button],
[type=submit] {
  cursor: pointer;
  background: none;
  border: none;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
body {
  min-height: 100dvh; /* iOSのアドレスバー対策も兼ねる */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/*------------------------------------------
  base.scss
------------------------------------------*/
html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

/* ダーク背景内のリンク（必要ならユーティリティ化も可） */
.bgblack a,
.bgblack02 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}
.bgblack a:hover,
.bgblack02 a:hover {
  opacity: 0.6;
}

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

/*---- responsive helpers ----*/
.pc {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 1280px) {
  .sp {
    display: none !important;
  }
}

/*---------- containers ----------*/
.container__full {
  width: 100%;
}
.container__l {
  max-width: 980px;
  width: 92%;
  margin: 0 auto;
}
.container__m {
  max-width: 780px;
  width: 80%;
  margin: 0 auto;
}
.container__s {
  max-width: 580px;
  width: 65%;
  margin: 0 auto;
}

/*---- page top button (ここに集約) ----*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}
#page-top a {
  width: 16px;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

/*----swiper------*/
.swiper-slide {
  height: auto;
}

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

.hero {
  background: #f5f5f5;
}
.hero__inner {
  width: calc(100% - 120px);
  max-width: 520px;
  margin-inline: auto;
  padding: 54px 0;
}
.hero__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hero__item {
  overflow: hidden;
}
.hero__image {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  transition: none;
}
.hero__title {
  width: min(85%, 320px);
  margin: 40px auto 0;
}
.hero__title img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .hero {
    padding: 24px 0;
  }
  .hero__inner {
    max-width: 920px;
  }
  .hero__images {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .hero__title {
    width: min(100%, 320px);
    margin-top: 64px;
  }
}

.header__lead {
  text-align: center;
  font-size: 1.4rem;
  margin: 80px auto 0;
}
@media screen and (min-width: 768px) {
  .header__lead {
    margin: 100px auto 0;
  }
}

/*---container----*/
.item-list {
  display: grid;
  gap: 64px;
  margin: 80px auto 0;
  max-width: 800px;
  width: 96%;
}
@media screen and (min-width: 768px) {
  .item-list {
    gap: 120px;
    margin: 120px auto 0;
  }
}

.item-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.item-card__left {
  display: flex;
  flex-direction: column;
  align-self: center;
}
.item-card__head-space {
  height: 56px;
}
.item-card__main-image {
  padding: 0 4px;
  margin-bottom: 14px;
}
.item-card__info {
  padding: 0 12px 18px;
}
.item-card__name {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: left;
}
.item-card__color {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #222;
}
.item-card__price {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #222;
}
.item-card__right {
  display: flex;
  flex-direction: column;
}
.item-card__sub-image img {
  display: block;
  width: 100%;
  height: auto;
}
.item-card__sub-image--top {
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .item-card {
    margin: 0 auto;
  }
  .item-card__head-space {
    height: 64px;
  }
  .item-card__main-image {
    padding: 0 4px;
    margin-bottom: 16px;
  }
  .item-card__info {
    padding: 0 12px 22px;
  }
  .item-card__name {
    font-size: 16px;
  }
  .item-card__color, .item-card__price {
    font-size: 13px;
  }
  .item-card__price {
    margin-top: 22px;
  }
  .item-card__sub-image--top {
    margin-bottom: 4px;
  }
}
@media screen and (min-width: 1280px) {
  .item-card__head-space {
    height: 72px;
  }
  .item-card__info {
    padding: 0 14px 28px;
  }
  .item-card__name {
    font-size: 17px;
  }
  .item-card__color, .item-card__price {
    font-size: 14px;
  }
}

/*------------------
item list
---------------------*/
.look-section {
  padding: 120px 0;
}
.look-section__inner {
  width: min(100% - 40px, 800px);
  margin-inline: auto;
}
.look-section__title {
  margin-bottom: 32px;
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.look-grid__item {
  min-width: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.look-grid__item.is-show {
  opacity: 1;
  transform: translateY(0);
}

.look-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: none;
  cursor: pointer;
}
.look-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.look-card__label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.look-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  --swiper-navigation-size: 18px;
  --swiper-navigation-color: #333;
}
.look-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.look-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.look-modal__content {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(100% - 40px, 900px);
  max-height: calc(100vh - 80px);
  background: #fff;
  overflow: hidden;
}
.look-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.look-modal__slider {
  width: 100%;
}
.look-modal__prev, .look-modal__next {
  width: 40px;
  height: 40px;
  color: #333;
}
.look-modal__prev::after, .look-modal__next::after {
  color: #333;
  font-size: 18px;
}
.look-modal__pagination {
  position: static;
  padding: 16px 0;
}

.look-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 48px;
}
.look-detail__image-wrap {
  overflow: hidden;
}
.look-detail__image {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.look-detail__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.look-detail__name {
  font-size: 22px;
  font-weight: 500;
}
.look-detail__text {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 14px;
}
.look-detail__price {
  font-size: 18px;
}

body.is-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .look-section {
    padding: 80px 0;
  }
  .look-section__inner {
    width: min(100% - 24px, 1080px);
  }
  .look-grid {
    gap: 12px;
  }
  .look-grid__item {
    transform: translateY(18px);
  }
  .look-modal {
    --swiper-navigation-size: 16px;
  }
  .look-modal__content {
    width: calc(100% - 48px);
    max-width: 390px;
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
  }
  .look-modal__close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .look-modal__prev, .look-modal__next {
    width: 32px;
    height: 32px;
  }
  .look-modal__prev::after, .look-modal__next::after {
    font-size: 16px;
    color: #333;
  }
  .look-modal__prev {
    left: 4px;
  }
  .look-modal__next {
    right: 4px;
  }
  .look-detail {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 20px 36px;
  }
  .look-detail__image-wrap {
    width: 82%;
    margin: 0 auto;
  }
  .look-detail__name {
    font-size: 18px;
  }
  .look-detail__text {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .look-detail__price {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .look-section {
    padding: 80px 0;
  }
  .look-section__inner {
    width: min(100% - 24px, 1080px);
  }
  .look-grid {
    gap: 12px;
  }
  .look-modal {
    --swiper-navigation-size: 16px;
  }
  .look-modal__content {
    width: calc(100% - 48px);
    max-width: 390px;
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
  }
  .look-modal__close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .look-modal__prev, .look-modal__next {
    width: 32px;
    height: 32px;
  }
  .look-modal__prev::after, .look-modal__next::after {
    font-size: 16px;
    color: #333;
  }
  .look-modal__prev {
    left: 4px;
  }
  .look-modal__next {
    right: 4px;
  }
  .look-detail {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 20px 36px;
  }
  .look-detail__image-wrap {
    width: 82%;
    margin: 0 auto;
  }
  .look-detail__name {
    font-size: 18px;
  }
  .look-detail__text {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .look-detail__price {
    font-size: 16px;
  }
}
/*-----footer------*/
footer {
  padding: 0 0 20px;
}

.footer__sns {
  max-width: 35px;
  margin: 0 auto;
  width: 20%;
}
.footer__galena {
  max-width: 140px;
  margin: 40px auto 0;
  width: 30%;
}
.footer__logo {
  max-width: 120px;
  margin: 100px auto 0;
}
.footer__copy {
  font-size: 1rem;
  text-align: center;
  margin-top: 24px;
}

/*------------------------------------------
  animation.scss
------------------------------------------*/
.fadein,
.fadein--up,
.fadein--down,
.fadein--left,
.fadein--right {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  will-change: opacity, transform;
}

.fadein.animated {
  opacity: 1;
}

.fadein--up {
  transform: translate3d(0, 24px, 0);
}

.fadein--down {
  transform: translate3d(0, -24px, 0);
}

.fadein--left {
  transform: translate3d(-24px, 0, 0);
}

.fadein--right {
  transform: translate3d(24px, 0, 0);
}

.fadein--up.animated,
.fadein--down.animated,
.fadein--left.animated,
.fadein--right.animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 動きを苦手とするユーザ設定に追従 */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}/*# sourceMappingURL=style.css.map */