* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  background: #ffc332 url(/static/macaroniempitsu/fanclub/feature/okkake_5thAnniversary_specialsite/img/FiSsnj99_macaroni_back.jpg) center 60px / 100% auto repeat;
}

/* 画像共通 */
img {
  max-width: 100%;
  height: auto;
  display: block;

  /* ドラッグ・長押し保存対策 */
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  pointer-events: none;
}

/* 背景画像の右クリック対策を少し強める */
body {
  -webkit-touch-callout: none;
  user-select: none;
}

.pc-br {
  display: block;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1900;
  width: 100%;
  padding: 24px 32px;
  background: #ffc400;
}

.site-header__inner {
  position: relative;
  margin: 0 auto;
}

.site-header__logo {
  width: 90px;
  margin: 0 auto;
}

.hamburger {
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger span + span {
  margin-top: 10px;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(25deg);
}

.hamburger.is-open span:nth-child(2) {
  transform: translateY(-6px) rotate(-25deg);
}

.global-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: rgba(255, 195, 50, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.global-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.global-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  max-width: 750px;
}

.global-nav li + li {
  margin-top: 20px;
}

.global-nav a {
  font-size: 22px;
  font-weight: 900;
}

.main {
  width: min(100%, 965px);
  margin: 0 auto;
  padding: 88px 32px 80px;
}

.kv {
  padding: 22% 0 22%;
  min-height: 100%;
}

.kv__inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.section-box {
  position: relative;
  width: 100%;
  margin: 0 auto 100px;
  padding: 40px 55px;
  background: #fff;
  border-radius: 20px;
}

.section-box--about {
  width: min(100%, 901px);
  margin-bottom: 120px;
  text-align: center;
}

.section-title {
  margin: 0 0 24px;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.section-text,
.project-box__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.project-box__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.project-box__num {
    width: 60px;
    flex-shrink: 0;
    height: 50px;
}

.project-box__title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}

.project-box__body {
  /* display: grid; */
  grid-template-columns: 1fr 220px;
  align-items: center;
}

.project-box__text p {
  padding: 0 20px;
}

.project-box__image {
  width: 100%;
}

.project-box__btn-wrap {
  margin-top: 15px;
  text-align: center;
}

.project-box__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 60px;
  padding: 12px 28px;
  border-radius: 15px;
  background: #ffc400;
  border: #000 solid 1px;
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-box__btn:hover {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #d99a00;
}

.cloud {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}

.cloud--lt {
  top: -44px;
  left: -52px;
  width: 170px;
  animation: floatCloudDrift 12s ease-in-out infinite;
}

.cloud--rc {
  top: 45%;
  right: -70px;
  width: 180px;
  animation: floatCloudDrift 16s ease-in-out infinite;
  animation-delay: 2s;
}

.cloud--lb {
  bottom: -38px;
  left: -64px;
  width: 170px;
  animation: floatCloudDrift 14s ease-in-out infinite;
  animation-delay: 1s;
}

.site-footer {
  position: relative;
  width: 100%;
  padding: 80px 0 80px;
  background: #ffc400;
  z-index: 10;
}

.site-footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer__logo {
  width: 160px;
}

.project-notes li {
    list-style: none;
    font-size: 16px;
}
.project-address-link,
.project-note-text,
.project-schedule
 {
font-size: 16px;
}


/* SP */
@media screen and (max-width: 768px) {
  .global-nav ul {
    margin: 0 30px;
  }
  .site-header {
    padding: 18px 20px;
  }
  
.project-address-link, .project-note-text, .project-schedule {
    font-size: 14px;
}
.project-notes li {
    list-style: none;
    font-size: 14px;
}

  .site-header__logo {
    width: 74px;
    margin: 0;
  }

  .hamburger {
    right: 0;
    width: 34px;
  }

  .main {
    padding: 72px 24px 56px;
  }

  .kv {
    padding-bottom: 48px;
  }
.kv {
  padding: 70% 0 0;
  min-height: 100%;
}
  .section-box {
    margin-bottom: 78px;
    padding: 32px 24px;
    border-radius: 10px;
  }

  .section-box--about {
    margin-bottom: 88px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-text,
  .project-box__text {
    font-size: 14px;
    line-height: 1.8;
  }

  .project-box__head {
    gap: 6px;
    margin-bottom: 18px;
  }

  .project-box__num {
    width: 42px;
    height: 35px;
  }

  .project-box__title {
    font-size: 20px;
  }

  .project-box__body {
    grid-template-columns: 1fr 92px;
    gap: 16px;
  }

  .project-box__btn-wrap {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .project-box__btn {
    min-width: 220px;
        min-height: 52px;
        font-size: 16px;
  }

  .cloud--lt {
    top: -30px;
    left: -28px;
    width: 92px;
  }

  .cloud--rc {
    right: -36px;
    width: 96px;
  }

  .cloud--lb {
    bottom: -26px;
    left: -32px;
    width: 92px;
  }

  .site-footer__inner {
    min-height: 60px;
  align-items: end;
}

  .site-footer__logo {
    width: 120px;
  }

  .site-footer {
  position: relative;
  padding: 0 0 50px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffc400;
  z-index: -1;
}
}


@keyframes floatCloudDrift {
  0%   { transform: translate(0px, 0px); }
  20%  { transform: translate(-6px, -8px); }
  40%  { transform: translate(4px, -16px); }
  60%  { transform: translate(8px, -10px); }
  80%  { transform: translate(-4px, -6px); }
  100% { transform: translate(0px, 0px); }
}


.project-box__body--single {
  display: block;
}

.project-detail {
  margin-top: 36px;
}

.project-detail:first-child {
  margin-top: 0;
}

.project-detail__title {
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #111;
  font-size: 22px;
  font-weight: 900;
}

.project-prize-list,
.serial-notes,
.project-notes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-schedule {
  margin-top: 18px;
}

.project-schedule__head {
  margin: 0 0 8px !important;
  font-weight: 900;
}

.project-schedule dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 6px 16px;
  margin: 0;
}

.project-schedule dt,
.project-schedule dd {
  margin: 0;
}

.serial-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.serial-box__list dl {
  margin: 0;
}

.serial-box__list dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
}

.serial-box__list dt {
  color: #004aa0;
  font-weight: 900;
}

.serial-box__list dd {
  margin: 0;
}

.serial-notes {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.8;
}

.project-box__btn-wrap--double {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.project-address-link {
  margin: 16px 0 0 !important;
  color: #004aa0;
  font-weight: 900;
  text-decoration: underline;
}

.project-note-text {
  margin-top: 12px !important;
}

@media screen and (max-width: 768px) {
  .project-detail {
    margin-top: 28px;
  }

  .project-detail__title {
    font-size: 16px;
  }

  .project-schedule dl {
    grid-template-columns: 78px 1fr;
    gap: 4px 10px;
  }

  .serial-box {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .serial-box__list dl > div {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 8px;
  }

  .serial-notes {
    font-size: 12px;
  }

  .project-box__btn-wrap--double {
    flex-direction: column;
    align-items: center;
  }
}

.project-prize-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.project-prize-list li {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border: 2px dashed #111;
  border-radius: 16px;
  background: #fff7d7;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

/* SP調整 */
@media screen and (max-width: 768px) {
  .project-prize-list {
    gap: 10px;
  }

  .project-prize-list li {
    border-radius: 10px;
    font-size: 16px;
  }
  /* 左 */
body::before {
  left: 14px !important;
}

/* 右 */
body::after {
  right: 14px !important;
}
}


body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 1;
  pointer-events: none;

  background-image: repeating-linear-gradient(
    to bottom,
    #fff 0,
    #fff 8px,
    transparent 8px,
    transparent 16px
  );

  opacity: 1;
}

/* 左 */
body::before {
  left: 24px;
}

/* 右 */
body::after {
  right: 24px;
}

.project-box__body--comingsoon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0px;
  padding: 10px 10px 30px;
  text-align: center;
}

.comingsoon-text {
  font-size: clamp(1.5rem, 1.7vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #000;
  opacity: 0.7;
}


.project-box__info {

  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}

.project-box__info li {
  display: flex;
  gap: 16px;
  padding: 10px 0 5px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.project-box__info li:last-child {
  border-bottom: none;
}

.project-box__info .label {
  flex-shrink: 0;
  width: 64px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #000;
}

.project-box__info .value {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.7;
  color: #000;
}

@media screen and (max-width: 768px) {
  .project-box__info {
    padding: 16px;
  }
  .project-box__text p {
    padding: 0 16px;
    font-size: 1rem;
  }

  .project-box__info li {
    gap: 12px;
  }

  .project-box__info .label {
    width: 52px;
    font-size: 1rem;
  }

  .project-box__info .value {
    font-size: 1rem;
  }
}

@media screen and (min-width: 961px) {
    .copyright {
                margin-top: 20px;
        font-size: 15px;
        line-height: 1;
                text-align: center;
                color: #fff;

    }
}

@media screen and (min-width: 1px) and (max-width: 960px) {
    .copyright {
                margin-top: 2.333333vw;
        font-size: 3.4vw;
        color: #fff;
        text-align: center;
  
    }
}

