@charset "UTF-8";
/* -------------------------------------------
ベース
------------------------------------------- */
/* 変数 */
:root {
  --font-base: 'LINE Seed JP', sans-serif;
  --font-nav: 'LINE Seed JP', sans-serif;
  --font-secondary: 'Noto Sans JP', sans-serif;
}

html {
  scroll-behavior: smooth;
}

a:hover {
  opacity: 0.7;
}

address {
  font-style: normal;
}

/* 調整 */
.sns {
  z-index: 50;
  --sns-button-group-height: 139px;
}

.sns__image-wrapper--full-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}

.sns__full-icon {
  width: 67%;
  aspect-ratio: 1/1;
}

@media (min-width: 769px) {
  .sns {
    --sns-button-group-bottom-space: 54px;
  }
}

/* -------------------------------------------
 mein-container
------------------------------------------- */

.mein-container-wrap {
  width: 100%;
  overflow-x: hidden;
}

.mein-container {
  position: relative;
  font-family: var(--font-base);
  color: #000000;
  background: #fff;
  padding-top: 64px;
  font-feature-settings: 'palt';
  /* word-break: keep-all;
  overflow-wrap: break-word; */
  letter-spacing: 0.05em;
  clip-path: inset(0);
  overflow: clip;

  &::after {
    content: '';
    display: block;
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: 0;
    background: #be010e;
  }
}

main.mein-container__inner {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 49px;
  margin-block: 0 135px;
  background: transparent;
  /* overflow: visible; */
  margin-inline: auto;
   @media (max-width: 768px) {
    margin-bottom: 0;
    gap: 32px;
   }
}

.mein-container__footer {
  text-align: center;
  padding-bottom: 50px;
  font-size: 12px;
}

@media (min-width: 769px) {
  .mein-container__inner-wrap {
    width: 100%;
    flex-direction: column;
    display: flex;
    gap: 65px;
    padding-top: 65px;
    /* padding-right: max(calc(50% - (min(100%, 780px) / 2)), 400px); */
    /* align-content: flex-start; */
    /* justify-content: flex-end; */
    /* flex-wrap: nowrap; */
  }
}

@media (max-width: 768px) {

  .mein-container__inner-wrap {
    padding-block: 30px;
  }
}

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


/* -------------------------------------------
 nav
------------------------------------------- */

.nav__switch {
  display: none;
}

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

  @media (max-width: 768px) {
    overflow-y: auto;
  }
}

.nav__menu {
  display: flex;
  width: 100%;
  align-items: center;
}

.nav__ttl {
  color: #eb0909;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.6rem;
}

.nav__item {
  font-size: min(1.041vw, 1.25rem);
  font-weight: 800;
  line-height: 150%;
  display: flex;
  /* height: 4em; */
  padding: 0.625em 0.625em 0.625em 0.5em;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  box-sizing: border-box;
  &::after {
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    background: #be010e;
    mask-image: url(../images/arrow-down-s-line.svg);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
  }

  &:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}

.nav__item-sab-text {
  font-weight: 700;
  padding-left: 0.5em;
  display: inline-block;
}

.nav__banner-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav__banner {
  max-width: 340px;
  margin-inline: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

@media (min-width: 769px) {
  [id^='n_'] {
    scroll-margin-top: calc(82px + 64px + 32px);
  }

  .nav {
    top: calc(64px + 32px);
    right: 0;
    position: sticky;
    z-index: 50;
    width: 100%;
    display: flex;
    /* font-size: clamp(11px,calc(11px + (18 - 11) * (100vw - 375px) / (1300 - 375)),18px); */
    height: calc(100% - 64px);
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    /* padding: 48px 10px 58px; */
    align-items: center;
  }

  .nav__content {
    position: relative;
    gap: 1.5rem;
    width: 100%;
    pointer-events: all;
    align-items: center;
  }

  .nav__menu {
    /* border-radius: 1.25rem; */
    /* flex-direction: column; */
    /* padding: 2.5rem 2rem; */
    /* background: #fff; */
    display: flex;
    /* box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25); */
    gap: 20px;
    justify-content: center;
  }

  .nav__ttl {
    font-size: min(4.083vh, 2.5rem);
  }

  .nav__item {
    font-size: min(2.041vh, 1.25rem);
    flex: 1;
    background: #fff;
    display: flex;
    width: 100%;
    max-width: 480px;
    min-height: 80px;
    box-sizing: border-box;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 100px;
    border: 3px solid #be010e;
    background: #f4f5f7;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
    color: #be010e;
    text-align: center;
    font-family: var(--font-base);
    font-size: 1.5rem;
    font-weight: 700;
    gap: 1em;
    &:not(:last-child) {
      border: 3px solid #be010e;
    }
  }

  .nav__item:hover {
    opacity: 0.7;
  }

  .nav__item-sab-text {
    font-size: min(1.429vh, 0.875rem);
  }
}

@media (max-width: 768px) {
  .nav-sp-header {
    background: #be010e;
    width: 100%;
    height: 50px;
  }
  [id^='n_'] {
    scroll-margin-top: 64px;
  }

  .nav {
    top: 64px;
    z-index: 51;
    position: sticky;
  }

  .nav__logo {
    display: none;
  }

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

  .nav__ttl {
    font-size: min(10.256vw, 2.5rem);
  }

  .nav__item {
    font-size: min(5.128vw, 20px);
    color: #fff;
    &::after {
      background: #fff;
    }
  }

  .nav__item:hover {
    opacity: 0.7;
  }

  .nav__item-sab-text {
    font-size: min(3.589vw, 0.875rem);
  }

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

  .nav__bg {
    background: #be010e;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 64px;
    left: 0;
    opacity: 0;
    transition: all 0.5s;
    pointer-events: none;
    z-index: 50;
    backdrop-filter: blur(2px);
  }

  .nav__switch:checked ~ .nav__bg {
    opacity: 1;
    pointer-events: all;
  }

  .nav__menu {
    flex-direction: column;
  }

  .nav__hamburger {
    background: #be010e;
    width: 50px;
    display: block;
    height: 50px;
    margin-left: auto;
    position: fixed;
    top: 64px;
    right: 0;
    z-index: 52;
  }

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

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

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

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

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

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

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

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

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

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

  .nav__hamburger {
    top: 48px;
  }

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

  .nav__bg {
    top: 48px;
  }
}

/* -------------------------------------------
 page-decoration
------------------------------------------- */
.page-decoration {
  font-family: var(--font-base);
  background: #000;
  color: #fff;
  font-weight: 800;
  overflow: hidden;
  width: 100%;
  clip-path: inset(0);
  min-height: 1.2em;
  z-index: 1;
  text-transform: uppercase;
}

.page-decoration__content {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.page-decoration__text {
  padding-inline: 0.5em;
  flex: 0 0 auto;
}

@media screen and (min-width: 1250px) {
  .page-decoration {
    z-index: 52;
  }
}

@media (min-width: 769px) {
  .page-decoration {
    font-size: 40px;
  }

  .page-decoration--top {
    position: sticky;
    top: 64px;
  }

  .page-decoration--bottom {
    position: fixed;
    bottom: 0;
  }
}

@media (min-width: 769px) {
  .page-decoration {
    font-size: 30px;
  }
}

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

.main-header__mv {
  width: 100%;
}

/* -------------------------------------------
 main-section
------------------------------------------- */
.main-section-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 32px 64px;
  background: #fff;
  @media (max-width: 768px) {
    padding: 20px;
    width: 88%;
    margin-inline: auto;
  }
}
.main-section-wrap--padding-none{
  padding: 0;
}

.main-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-family: var(--font-base);
  color: #000;
  width: 100%;
  max-width: 896px;
  margin-inline: auto;
}

.main-section--secondary {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
   @media (min-width: 769px) {
    padding-bottom: 110px;
   }
}

.main-section--event-space {
  padding-top: 60px;
  background: #000;
  color: #fff;
}

.main-section__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
  margin-inline: auto;
  @media (max-width: 768px) {
    gap: 30px;
  }
}

.main-section__text-block {
  font-weight: 700;
  line-height: 180%;
  word-break: break-all;
  overflow-wrap: break-word;
  font-size: 1.25rem;
  position: relative;
  @media (max-width: 768px) {
    font-size: 0.8125rem;
  }
  &::before,
  &::after {
    content: '';
    display: block;
  }
  &::before {
    margin-top: -0.4em;
  }
  &::after {
    margin-bottom: -0.4em;
  }
}

.main-section__text:not(:last-child) {
  padding-bottom: 1em;
}


/* -------------------------------------------
 ttl
------------------------------------------- */
/* ttl */

.ttl__main {
  font-weight: 700;
  line-height: 110%;
  margin-inline: auto;
  min-height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ttl__main--img {
  min-height: auto;
}

.ttl__additional {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  max-width: 896px;
  margin-inline: auto;
}

@media (min-width: 769px) {
  .ttl {
    background: no-repeat bottom right / auto min(100%, 152px) url(../images/deco-cloud.svg);
  }

  .ttl__main {
    font-size: 89px;
  }
}

@media (max-width: 768px) {
  .ttl__main {
    font-size: 40px;
  }
}

/* ttl-secondary */
.ttl-secondary {
  display: flex;
  font-weight: 800;
  box-sizing: border-box;
  align-items: center;
  line-height: 1.2;
  flex-wrap: wrap;
  color: #be010e;
  font-size: 3rem;
  font-family: var(--font-secondary);
  font-weight: 900;
      word-break: break-all;
    overflow-wrap: break-word;
  &::before,
  &::after {
    content: '';
  }
  &::before {
    margin-top: -0.1em;
  }
  &::after {
    margin-bottom: -0.1em;
  }
   @media (max-width: 768px) {
    font-size: 1.625rem;
   }
}

/* -------------------------------------------
btn
------------------------------------------- */

.btn {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  padding: 14px 2em;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: var(--font-base);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  background: #BE010E;
}

.btn--large {
display: flex;
width: 100%;
max-width: 640px;
padding: 8px 20px;
min-height: 61px;
margin-inline: auto;
justify-content: center;
align-items: center;
gap: 10px;
font-size: 1.75rem;
line-height: 1.2;
font-weight: bold;
 @media (max-width: 768px) {
  font-size: 1rem;
  min-height: 45px;
 }
}

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

.sns-list {
  display: flex;
  min-height: 143px;
  padding: 1em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  background: #fff;
  color: #222;
  @media (max-width: 768px) {
    min-height: 46px;
    padding: 0 10px 6px;
    flex-direction: row;
  }
}

.sns-list__ttl {
  text-align: center;
  font-weight: 400;
  line-height: 150%;
}

.sns-list__list {
  display: flex;
  gap: 32px;
}

.sns-list__link {
  max-width: 44px;
  aspect-ratio: 1/1;
  display: block;
}

.sns-list__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 769px) {
  .sns-list__list {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .sns-list__list {
    gap: 20px;
  }
}

/* -------------------------------------------
 term
------------------------------------------- */
/* term-list */
.term-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* term */
.term {
  display: grid;
  background: #fff;
  color: #222;
  font-family: var(--font-base);
  font-weight: 700;
  line-height: 1;
  width: fit-content;
  margin-inline: auto;
  min-height: 35px;
  align-items: center;
  gap: 24px;
  @media (min-width: 769px) {
    grid-template-columns: 1fr auto;
  }
  @media (max-width: 768px) {
    justify-items: center;
    gap: 15px;
  }
}

.term__ttl {
  background: #be010e;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  line-height: 1;
  font-weight: 400;
  font-size: 1.25rem;
  @media (max-width: 768px) {
    padding-block: 0;
    font-size: 0.8125rem;
  }
}

.term__detail {
  display: flex;
  justify-content: center;
  align-items: center;
  word-break: break-all;
  overflow-wrap: break-word;
  flex-wrap: wrap;
  width: fit-content;
  font-size: 1.5rem;
  line-height: 1.2;
  @media (max-width: 768px) {
    font-size: 0.8125rem;
  }
}

/* -------------------------------------------
sample-tmb
------------------------------------------- */
.sample-tmb {
  position: relative;
  &::after {
    content: '';
    display: block;
    width: 32px;
    aspect-ratio: 1/1;
    background: no-repeat center/contain url(../images/icon-zoom.svg);
    bottom: 5px;
    left: 5px;
    position: absolute;
  }
}

@media (max-width: 768px) {
  .sample-tmb::after {
    width: 24px;
  }
}

/* -------------------------------------------
モーダル
------------------------------------------- */

.modal {
  width: 100%;
  height: 100dvh;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  font-family: var(--font-base);

  &:target {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
}

/* モーダル表示中スクロール不可 */
html:has(.modal:target) {
  overflow: hidden;
}

.modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: block;
  background: #000000cc;

  &:hover {
    opacity: 1;
  }
}

.modal__content {
  background: #fff;
  width: 90vw;
  max-width: 1100px;
  max-height: 90dvh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
}

.modal__close-button {
  display: flex;
  position: sticky;
  bottom: 0;
  left: 0;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1rem;
  background: #eb0909;
  color: #fff;
  min-height: 55px;
  width: 100%;
  padding: 0.3em 0.8em;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------
 banner
------------------------------------------- */

.banner{
  display: block;
}

.banner--sp-drop-shadow{
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25);
}

/* -------------------------------------------
 shop-info
------------------------------------------- */
.shop-info-wrap {
  gap: 12px;
}

.shop-info {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}
.shop-info__item {
  display: grid;
  grid-template-columns: 5em auto;
  min-height: 80px;
  box-sizing: border-box;
  padding-block: 1em;
  font-family: var(--font-base);
  line-height: 1.5;
  border-bottom: 1px solid #000;
  gap: 2em;

  /* &:first-child {
    border-top: 1px solid #000;
  } */
}

.shop-info__ttl {
  font-weight: 700;
  align-items: center;
  display: flex;
  justify-content: flex-start;
}

.shop-info__detail {
  font-weight: 400;
  display: flex;
  align-items: center;
  word-break: break-word;
}

.shop-info__text:not(:last-child) {
  padding-bottom: 1em;
}

.shop-info__address {
  display: flex;
  width: fit-content;
  gap: 0.5em;
  align-items: center;
}

.shop-info__address-link {
  width: 1em;
  flex: 0 0 auto;
  aspect-ratio: 1/1;
}

@media (min-width: 769px) {
  .shop-info__item {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .shop-info__item {
    font-size: 13px;
  }
}

/* -------------------------------------------
fair-contents-list
------------------------------------------- */
.fair-contents-list {
  display: flex;
  flex-direction: column;
  gap: 62px;
  padding-bottom: 62px;
  @media (max-width: 768px) {
    gap: 15px;
    padding-bottom: 0;
  }
}

/* -------------------------------------------
fair-contents
------------------------------------------- */
.fair-contents {
  display: grid;
  grid-template-columns: 30.52% auto;
  grid-template-rows: auto 1fr;
  gap: 40px;
  padding-inline: 10px;
  width: 100%;
  max-width: 819px;
  margin-inline: auto;
  
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.fair-contents__sample-area {
  display: block;
}

@media (min-width: 769px) {
  .fair-contents__sample-area {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
@media (max-width: 768px) {
  .fair-contents__sample-area {
    width: 82.78%;
    margin-inline: auto;
  }
}

.fair-contents__sample {
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25));
}
.fair-contents__block {
  display: flex;
  flex-direction: column;
  gap: 40px;
   @media (max-width: 768px) {
    gap: 30px;
   }
}
.fair-contents__catch-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
   @media (max-width: 768px) {
    gap: 10px;
   }
}
.fair-contents__catch {
  font-family: var(--font-secondary);
  width: 100%;
  background: #be010e;
  color: #fff;
  word-break: break-all;
  display: flex;
  max-width: 509px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 61px;
  color: #f4f5f7;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.0525rem;
   @media (max-width: 768px) {
    font-size: 1rem;
    padding: 0.5em;
    min-height: 30px;
   }
}

.fair-contents__catch--em{
color: #FAC71A;
}

.fair-contents__catch-attention {
  color: #000;
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02625rem;
   @media (max-width: 768px) {
    font-size: 0.6563rem;
   }
}

/* -------------------------------------------
event-contents
------------------------------------------- */
.event-contents{
  display: flex;
  flex-direction: column;
  gap: 40px;
   @media (max-width: 768px) {
    gap: 16px;
    padding-bottom: 32px;
   }
}

/* -------------------------------------------
レスポンシブ対応
------------------------------------------- */

@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

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