@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 Serif JP", 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 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container {
    padding-top: 180px;
  }
}
.container__xl {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
.container__l {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.container__m {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.container__m--w80sp {
  max-width: 800px;
  width: 80%;
  margin: 0 auto;
}
.container__s {
  max-width: 480px;
  width: 80%;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .container__s {
    padding: 0;
  }
}
.container__s--w100sp {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .container__s--w100sp {
    padding: 0;
  }
}
.container__xs {
  max-width: 400px;
  width: 80%;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .container__xs {
    padding: 0;
  }
}
.container__xs--w100sp {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .container__xs--w100sp {
    padding: 0;
  }
}

.split01 {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .split01 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.split01--space {
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .split01--space {
    padding: 0;
  }
}

.split02 {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .split02 {
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    align-items: start;
  }
}

@media (min-width: 768px) {
  .split02__item:nth-child(2) {
    margin-top: 120px;
  }
}
.split03 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .split03 {
    padding: 0;
  }
}
.split03__item {
  max-width: 60%;
}
.split03__item--right {
  align-self: flex-end;
}
.split03__item--left {
  align-self: flex-start;
}

.split04 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .split04 {
    margin-top: 0;
  }
}

.split04__item--inset {
  max-width: 82%;
  margin: 0 auto;
}

.split04__item--full {
  width: 100%;
  margin: 0;
}

/* PCで少しだけ世界観を広げたい場合 */
@media screen and (min-width: 768px) {
  .split04 {
    gap: 80px;
  }
  .split04__item--inset {
    max-width: 80%;
  }
}
.split05 {
  display: flex;
  flex-direction: column;
}
.split05--left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .split05--left {
    width: 60%;
    margin: 0 auto 0 0;
  }
}
.split05--right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .split05--right {
    width: 60%;
    margin: 40px 0 0 auto;
  }
}

/* ==========
  Look Card
========== */
.look-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  font-size: 1.4rem;
}

.look-card__img {
  display: block;
  width: 100%;
  height: auto;
}

/* overlay（クレジット＋ボタンの入れ物）
   ★ここを absolute にして「画像の上だけ」に固定 */
.look-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* hover / focus時だけ有効化 */
.look-card--has-credit:hover .look-card__overlay,
.look-card--has-credit:focus-within .look-card__overlay {
  pointer-events: auto;
}

/* 暗くするレイヤー：クレジットありの時だけ使う（画像の上だけ） */
.look-card--has-credit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* クレジット */
.look-card__credit {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.look-card__credit,
.look-card__credit a {
  color: #fff;
  transition: opacity 0.2s ease;
}

.look-card__credit a {
  text-decoration: none;
}

.look-card__credit a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

/* Detailボタン（右下） */
.look-card__detail {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 35px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  z-index: 2;
}

/* hover / focus（キーボード操作でも出る） */
.look-card--has-credit:hover::after,
.look-card--has-credit:focus-within::after {
  opacity: 1;
}

.look-card--has-credit:hover .look-card__credit,
.look-card--has-credit:focus-within .look-card__credit {
  opacity: 1;
  transform: translateY(0);
}

.look-card--has-credit:hover .look-card__detail,
.look-card--has-credit:focus-within .look-card__detail {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

/*---- page top button (ここに集約) ----*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.4rem;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #72c7ca;
  color: #fff;
  text-decoration: none;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

.mt-s {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .mt-s {
    margin-top: 0;
  }
}

/*---- heroimage ----*/
.hero {
  width: 100%;
  height: auto;
}

footer {
  padding: 100px 0 20px;
}

.footer__logo {
  max-width: 200px;
  margin: 0 auto 40px;
}
.footer__staff {
  font-size: 1.2rem;
  text-align: center;
}
.footer__copy {
  font-size: 1rem;
  text-align: center;
  margin-top: 40px;
}

/*------------------------------------------
  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 */