@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: #424242;
  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 {
  color: #ff9291;
}

/* ダーク背景内のリンク（必要ならユーティリティ化も可） */
.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__wrap {
  width: 100%;
  max-width: 720px;
  background-color: #fafafa;
  margin: 0 auto;
}

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

.hero {
  width: 100%;
  height: auto;
}

.heading__01 {
  max-width: 80%;
  margin: 40px auto 24px;
}
.heading__02 {
  max-width: 80%;
  margin: 120px auto 24px;
}

.line__01 {
  border: dashed 1px #424242;
  width: 60%;
  margin: 0 auto;
}
.line__02 {
  border-bottom: solid 2px #fe9290;
  width: 90%;
  margin: 16px auto 0;
}

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

.leeeps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 16px;
  margin: 64px auto 0;
  width: 90%;
  color: #fe9290;
}
@media (max-width: 360px) {
  .leeeps {
    grid-template-columns: 1fr;
    gap: 64px 24px;
  }
}
.leeeps__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.leeeps__meta {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
}
.leeeps__meta--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.leeeps__meta--bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.leeeps__name {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
}
.leeeps__more {
  grid-column: 3;
  justify-self: end;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0;
}
.leeeps__more:hover {
  opacity: 0.7;
}
.leeeps__more:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.leeeps__movie {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #f3f3f3;
}
.leeeps__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.leeeps__embed iframe, .leeeps__embed video, .leeeps__embed img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  display: block;
  object-fit: cover;
  border: 0;
}

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

.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal__panel {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(92vw, 560px);
  max-height: min(82vh, 720px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.modal__body {
  padding: 10% 10%;
  max-height: inherit;
  overflow: auto;
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}
.modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.8);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}
.modal__nav:disabled {
  opacity: 0.3;
  cursor: default;
}
.modal__nav--prev {
  left: 10px;
}
.modal__nav--next {
  right: 10px;
}

.detail__staff {
  font-size: 18px;
  font-weight: 600;
  color: #fe9290;
  text-decoration: dashed;
}
.detail__message {
  margin-top: 10px;
  white-space: pre-wrap;
  line-height: 1.5;
  font-size: 1.4rem;
}
.detail__heading {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 600;
}
.detail__items {
  margin-top: 8px;
}
.detail__items li a {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.detail__img {
  width: 20%;
}
.detail__link {
  width: 75%;
}
.detail__sns {
  margin-top: 40px;
  display: grid;
  gap: 10px;
  font-size: 1.2rem;
}
.detail__snsItem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.detail__snsItem span {
  background-color: #fe9290;
  padding: 2px 8px;
  color: #fff;
  margin-right: 4px;
  font-size: 1.2rem;
  min-width: 130px;
  text-align: center;
}
.detail__snsItem img {
  width: 18px;
  height: 18px;
  display: block;
}

footer {
  padding: 120px 0 24px;
  margin: 0 auto;
}

.footer__logo {
  max-width: 120px;
  width: 50%;
  margin: 0 auto;
}
.footer__copy {
  font-size: 1rem;
  text-align: center;
  color: #333;
  margin-top: 16px;
}

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