@charset "UTF-8";

/**** lity ****/
.lity {
  background-color: rgba(255, 255, 255, 0.5607843137) !important;
}

.lity-content {
  padding: 4% 3%;
  background-color: #ffffff;
}

.lity-image img {
  height: 80vh;
  max-height: 100%;

  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 769px) {
  .lity-image img {
    height: auto;
  }
}

.lity {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

[data-lity] {
  cursor: pointer;
}

[data-lity]:hover {
  opacity: 0.5;
  transition: 0.3s;
}

html:has(.lity-content) {
  overflow: hidden;
  background-color: #3b3b3b;

  scrollbar-gutter: stable;
}

/* -------------------------------------------
 ベース
------------------------------------------- */
/* 変数 */
:root {
  --font-base: 'Noto Sans JP', sans-serif;
  --font-ttl: 'Noto Sans JP', serif;
  --font-nav: 'Noto Sans JP', sans-serif;
}

html {
  scroll-behavior: smooth;
}

a:hover {
  opacity: 0.7;
}

address {
  font-style: normal;
}

/* 調整 */
.sns {
  z-index: 1;
}

@media (min-width: 1252px) {
  .sns {
    right: calc(50% - (min(80%, 1000px) / 2) - var(--sns-icon-width) - var(--sns-left-space));
  }
}

/* -------------------------------------------
 mein-container
------------------------------------------- */
main {
  max-width: none;
  margin-top: 0;
  background-color: unset;
}

.mein-container {
  position: relative;
  position: relative;
  padding-top: 64px;
  font-family: var(--font-base);
  letter-spacing: 0.05em;

  font-feature-settings: 'palt';
}

.mein-container::after {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background: no-repeat center top/cover url(../images/bg.webp);
  content: '';
}

.mein-container__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: transparent;
  word-break: keep-all;
  overflow-wrap: break-word;
  padding-top: clamp(40px, calc(40px + (90 - 40) * (100vw - 375px) / (1000 - 375)), 90px);
  gap: clamp(40px, calc(40px + (80 - 40) * (100vw - 375px) / (1000 - 375)), 80px);
}

@media (max-width: 768px) {
  .mein-container {
    padding-top: 104px;
  }

  .mein-container::after {
    background:
      repeat top center/contain url(../images/bg-sp.webp),
      #000;
  }

  main.mein-container__inner {
    margin-top: 28px;

    gap: 28px;
  }
}

@media (max-width: 428px) {
  .mein-container {
    padding-top: 48px;
  }
}

/* -------------------------------------------
 main-header
------------------------------------------- */
.main-header {
  position: relative;
  width: 100%;
}

/* -------------------------------------------
 nav
------------------------------------------- */
.nav__switch {
  display: none;
}

.nav__content {
  display: flex;
  color: #606060;
  line-height: 1.2;
  font-family: var(--font-nav);
  letter-spacing: 0.1em;
}

@media (min-width: 769px) {
  [id^='n_'] {
    scroll-margin-top: 131px;
  }

  .nav {
    display: flex;
    align-items: center;
    position: sticky;
    top: 64px;
    z-index: 50;
    width: 100%;
    height: 67px;
    padding: 0.3em 1em;
    border-top: 1px solid #d8cde0;
    border-bottom: 1px solid #d8cde0;
    box-sizing: border-box;
    background: #ffffff;
    font-size: clamp(11px, 11px + 11 * (100vw - 375px) / 925, 22px);
  }

  .nav__content {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 1300px;

    margin-inline: auto;
  }

  .nav__item {
    display: block;
    position: relative;
    text-align: center;

    padding-inline: 1.5em;
  }

  .nav__item:not(:last-child)::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #606060;
    content: '';
  }

  .nav__item:hover {
    color: rgba(97, 97, 97, 0.7019607843);
  }
}

@media (max-width: 768px) {
  [id^='n_'] {
    scroll-margin-top: 104px;
  }

  .nav {
    top: 64px;
  }

  .nav::after {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    z-index: 40;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #d8cde0;
    background: #ffffff;
    content: '';
  }

  .nav__logo {
    display: none;
  }

  .nav__content {
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 64px;
    right: 0;
    z-index: 51;
    transform: translateX(100%);
    width: 80%;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    background: #ffffff;
    font-size: 24px;
    text-align: center;
    transition: all 0.5s;

    gap: 1em;
    padding-block: 64px 1em;
    padding-inline: 1em;
  }

  .nav__switch:checked ~ .nav__content {
    transform: translateX(0%);
  }

  .nav__bg {
    opacity: 0;
    position: fixed;
    top: 64px;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2823529412);
    transition: all 0.5s;

    pointer-events: none;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .nav__switch:checked ~ .nav__bg {
    opacity: 1;

    pointer-events: all;
  }

  .nav__hamburger {
    display: block;
    position: fixed;
    top: 64px;
    right: 5px;
    z-index: 52;
    height: 40px;
    margin-left: auto;
  }

  .nav__hamburger::before,
  .nav__hamburger::after {
    content: '';
  }

  .nav__hamburger .nav__hamburger-equipment,
  .nav__hamburger::before,
  .nav__hamburger::after {
    display: block;
    position: absolute;
    right: 10px;
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background-color: #606060;
    transition: 0.3s;
  }

  .nav__hamburger::before {
    top: 8px;
  }

  .nav__hamburger .nav__hamburger-equipment {
    top: calc(50% - 1.5px);
  }

  .nav__hamburger::after {
    top: calc(100% - 11px);
  }

  .nav__switch:checked ~ .nav__hamburger::before {
    top: calc(50% - 1.5px);
    transform: rotate(45deg);
  }

  .nav__switch:checked ~ .nav__hamburger .nav__hamburger-equipment {
    opacity: 0;
  }

  .nav__switch:checked ~ .nav__hamburger::after {
    top: calc(50% - 1.5px);
    transform: rotate(-45deg);
  }

  /* ナビゲーションメニューオープン時スクロール不可 */
  html:has(.nav__switch:checked) {
    overflow: hidden;
  }
}

@media (max-width: 428px) {
  [id^='n_'] {
    scroll-margin-top: 48px;
  }

  .nav::after {
    top: 48px;
  }

  .nav__hamburger {
    top: 48px;
  }

  .nav__content {
    top: 48px;
    height: calc(100vh - 48px);
    height: calc(100dvh - 48px);
  }

  .nav__bg {
    top: 48px;
  }
}

/* -------------------------------------------
main-section
------------------------------------------- */
.main-section {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 80px;
  box-sizing: border-box;
  background: #ffffff;
  gap: 64px;
}

.main-section--none-bg {
  background: transparent;
  --ttl-color: #fff;
}

@media (max-width: 768px) {
  .main-section {
    width: 98%;
    padding: 40px;
    gap: 32px;
    margin-inline: auto;
  }
}

.main-section__block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* -------------------------------------------
ttl
------------------------------------------- */
:root {
  --ttl-color: #000;
}

.ttl {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--ttl-color, #000);
  font-weight: 700;
  font-size: clamp(22px, 3.1vw, 32px);
  display: flex;
  gap: 0.5em;
  margin-inline: auto;
  align-items: center;
  text-align: center;
  line-height: 1.3;

  &::before,
  &::after {
    content: '';
    background: var(--ttl-color, #000);
    display: block;
    width: 1em;
    height: 1em;
    mask-image: url(../images/icon-shining.svg);
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
  }
}

.text--wrapper {
  display: flex;
  flex-direction: column;

  gap: 0.5rem;
}

/* -------------------------------------------
 .btn-area
------------------------------------------- */
.btn-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* sp */
@media (max-width: 768px) {
  .btn-area {
    gap: 16px;
  }
}

/* -------------------------------------------
 btn
------------------------------------------- */
.btn {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 496px;
  min-height: 54px;
  padding-inline: 2em;
  border-radius: 999px;
  box-sizing: border-box;
  box-shadow: 0px 4px 6px 0px #00000040;
  background: #000000;
  color: #e9ff71;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.btn::after {
  display: block;
  position: absolute;
  top: calc(50% - 0.5em);
  right: 14px;
  width: 1em;
  height: 1em;
  background: no-repeat center/contain url(../images/icon-arrow-right-s-line.svg);
  content: '';
}

.btn-center {
  margin-inline: auto;
}

.btn--no-arrow {
  padding-right: 14px;
}

.btn--no-arrow::after {
  display: none;
}

.btn__inner {
  position: relative;
}

.btn__inner--x {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn__inner--x::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background: no-repeat center/contain url(../images/icon-x.svg);
  content: '';
}

@media (max-width: 768px) {
  .btn {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 70%;
    min-height: 36px;
    font-size: 0.875rem;

    margin-block: auto;
  }

  .btn::after {
    right: 14px;
  }
}

/* -------------------------------------------
 sns-account-list
------------------------------------------- */

.sns-account-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.sns-account-link {
  background: #fff;
  color: #000;
  width: fit-content;
  min-height: 58px;
  border-radius: 999px;
  padding: 16px 32px;
  display: flex;
  gap: 16px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  align-items: center;
  text-align: center;
}

.sns-account-link--x::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: #000;
  mask-image: url(../images/icon-x.svg);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}

/* -------------------------------------------
text-main
------------------------------------------- */

.text-main {
  color: #000000;
  font-size: clamp(14px, calc(14px + (16 - 14) * (100vw - 375px) / (1000 - 375)), 16px);
  text-align: center;
}

.text-main--size-s {
  font-size: 14px;
}

.text-main--color-01 {
  color: #b63857;
}

.text-main__font-em {
  font-size: clamp(18px, calc(18px + (18 - 20) * (100vw - 375px) / (1000 - 375)), 20px);
  font-style: normal;
  font-weight: bold;
}

/* -------------------------------------------
fair-schedule
------------------------------------------- */
.fair-schedule {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  font-size: clamp(14px, calc(14px + (16 - 14) * (100vw - 375px) / (1000 - 375)), 16px);
}

.fair-schedule__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fair-schedule__ttl,
.fair-schedule__detail {
  font-weight: 500;
  font-size: 16px;

  line-height: 1.5;
}

@media (max-width: 768px) {
  .fair-schedule {
    gap: 16px;
  }
  .fair-schedule__item {
    gap: 0;
  }
  .fair-schedule__ttl,
  .fair-schedule__detail {
    font-size: 14px;
    line-height: 2;
  }
}

/* -------------------------------------------
writer-list
------------------------------------------- */
.writer-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.writer-list__item {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  .writer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* -------------------------------------------
product-list
------------------------------------------- */
.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card__ttl {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  color: #000000;
}

@media (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* -------------------------------------------
attention
------------------------------------------- */
.foot-attention {
  max-width: fit-content;
  margin-inline: auto;
  margin-top: 5rem;

  padding-block: 3rem;
}

/* ///// attention ///////////////////////////////// */
.attention-wrapper {
  margin-top: 1rem;
}

.attention-wrapper--noMargin {
  margin-top: 0;
}

.attention {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: fit-content;
  gap: 0.4em 0;
}

@media (max-width: 769px) {
  .attention {
    width: 90%;
  }
}

.attention__text {
  margin-top: 0.1em;
  margin-left: 1em;
  color: #000000;
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.2;
  text-align: left;
  text-indent: -1em;
  word-break: break-all;
}

.attention__text::before {
  content: '※';
}

.btn.attention-btn {
  border: 1px solid #e9ff71;
  max-width: 350px;
}

/* -------------------------------------------
 レスポンシブ対応
------------------------------------------- */
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
