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

main {
  width: 90%;
  margin: 0 auto;
}

/* ダーク背景内のリンク（必要ならユーティリティ化も可） */
.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%;
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .container {
    padding-top: 180px;
  }
}
.container__l {
  max-width: 720px;
  width: 100%;
  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;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  width: 16px;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
#page-top:hover {
  text-decoration: none;
  opacity: 0.5;
}

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

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

header {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.lead {
  text-align: center;
  margin-top: 40px;
}
.lead span {
  font-weight: 700;
  font-size: 120%;
}

.styling__wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.styling__title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  line-height: 1;
}
.styling__title p {
  margin: 0;
  color: #000;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .styling__title p {
    font-size: 5.6rem;
  }
}
.styling__title span {
  display: block;
  margin-bottom: 6px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .styling__title span {
    font-size: 2rem;
  }
}
.styling__img {
  width: 90%;
  max-width: 620px;
  margin: 0 auto;
  padding-top: 39px;
}
@media screen and (min-width: 768px) {
  .styling__img {
    padding-top: 60px;
  }
}
.styling__point {
  text-align: center;
  margin-top: 24px;
}

/*--pickup-------*/
.pickup {
  display: flex;
  align-items: center;
  column-gap: 16px;
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
  font-family: "Roboto Condensed", sans-serif;
}
@media screen and (min-width: 768px) {
  .pickup {
    column-gap: 28px;
  }
}
.pickup__img {
  max-width: 240px;
  width: 30%;
}
.pickup__info {
  flex: 1 1 auto;
  min-width: 0;
}
.pickup__label {
  display: inline;
  padding: 2px 16px;
  background: #8da1b8;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .pickup__label {
    font-size: 1.6rem;
  }
}
.pickup__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 14px;
  margin-top: 8px;
}
.pickup__name {
  margin: 0;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .pickup__name {
    font-size: 2.2rem;
  }
}
.pickup__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 24px;
  padding: 0 12px;
  border: 1px solid #555;
  color: #000;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .pickup__buy {
    font-size: 1.8rem;
  }
}
.pickup__buy:hover {
  background-color: #333;
  color: #fff;
}
.pickup__color {
  color: #333;
  font-size: 1.2rem;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .pickup__color {
    font-size: 1.4rem;
  }
}

.keyitems {
  max-width: 600px;
  margin: 64px auto 0;
  font-family: "Roboto Condensed", sans-serif;
  text-align: left;
}
.keyitems__title {
  font-size: 1.8rem;
  border-bottom: solid 1px #333;
}
@media screen and (min-width: 768px) {
  .keyitems__title {
    font-size: 2.2rem;
  }
}
.keyitems__wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 8px;
  row-gap: 40px;
  margin: 16px auto 0;
}
@media screen and (min-width: 768px) {
  .keyitems__wrap {
    column-gap: 16px;
  }
}
.keyitems__item {
  width: 100%;
}
.keyitems__item a {
  display: flex;
  align-items: center;
  column-gap: 16px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}
.keyitems__item a:hover {
  opacity: 0.7;
}
.keyitems__img {
  flex: 0 0 86px;
  width: 86px;
}
.keyitems__credit {
  flex: 1 1 auto;
  min-width: 0;
  color: #333;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/*----profile---*/
.staff__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 680px;
  margin: 100px auto 0;
}
@media screen and (min-width: 768px) {
  .staff__info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

.profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #444;
  border-radius: 4px;
  background: #fff;
}
.profile__image {
  flex: 0 0 86px;
  width: 86px;
}
@media screen and (min-width: 768px) {
  .profile__image {
    flex: 0 0 96px;
    width: 96px;
  }
}
.profile__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.profile__body {
  flex: 1 1 auto;
  min-width: 0;
}
.profile__name {
  margin-bottom: 14px;
}
.profile__name h2 {
  margin: 0;
  color: #333;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .profile__name h2 {
    font-size: 2rem;
  }
}
.profile__name span {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .profile__name span {
    font-size: 1.5rem;
  }
}
.profile__links p {
  margin: 0;
}
.profile__links a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .profile__links a {
    font-size: 1.4rem;
  }
}
.profile__links a:hover {
  opacity: 0.7;
}

/*--------footer--------*/
footer {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  padding-bottom: 10px;
}

.footer__brandlogo {
  width: 150px;
  margin: 80px auto 10px;
}

.footer__theme {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
}

.footer__message {
  margin-top: 40px;
  text-align: center;
}

small {
  display: block;
  margin: 60px auto 15px;
  font-size: 1rem;
}

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