@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;
}

.header__lead {
  margin-top: 40px;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .header__lead {
    font-size: 1.8rem;
    margin-top: 60px;
  }
}

.mv {
  max-width: 1200px;
  margin: 0 auto;
}
.mv__image {
  display: block;
  width: 100%;
}
.mv__image img {
  display: block;
  width: 100%;
  height: auto;
}

/*---container----*/
.item-list {
  display: grid;
  gap: 64px;
  margin: 64px 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;
  }
}

/*--brand------*/
.brand {
  margin: 80px auto 0;
}
.brand__bg {
  background: url("../img/background-img.jpg") no-repeat center/cover;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0;
}
.brand__inner {
  background: rgba(255, 255, 255, 0.8);
  padding: 64px 0;
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.brand__logo {
  margin-bottom: 20px;
}
.brand__logo img {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.brand__catch {
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 600;
}
.brand__catch span {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.brand__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}
.brand__instagram {
  margin-top: 20px;
}
.brand__instagram a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.brand__instagram img {
  width: 16px;
  height: auto;
  display: block;
}

.staff-profile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 90%;
  margin: 60px auto 0;
}
.staff-profile__image {
  flex: 0 0 84px;
  width: 30%;
  max-width: 120px;
}
.staff-profile__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
.staff-profile__body {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}
.staff-profile__name {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.staff-profile__name span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.staff-profile__meta {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.staff-profile__text {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}
.staff-profile__text br {
  display: none;
}

@media screen and (min-width: 768px) {
  .staff-profile {
    gap: 24px;
    max-width: 540px;
    margin: 0 auto;
    margin: 120px auto 0;
    line-height: 1.5;
  }
  .staff-profile__image {
    flex: 0 0 120px;
    width: 120px;
  }
  .staff-profile__name {
    font-size: 2.2rem;
    font-weight: 700;
  }
  .staff-profile__name span {
    display: inline;
    margin-top: 0;
    margin-left: 6px;
    font-size: 1.4rem;
  }
  .staff-profile__meta {
    margin-top: 6px;
    font-size: 15px;
  }
  .staff-profile__text {
    margin-top: 20px;
    font-size: 14px;
  }
  .staff-profile__text br {
    display: block;
  }
}
footer {
  padding: 100px 0 20px;
}

.footer__logo {
  max-width: 200px;
  margin: 0 auto 40px;
}
.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 */