@charset "UTF-8";

/* ==========================================================================
   Reset & Base
   ========================================================================== */
#special,
#special div,
#special p,
#special ul,
#special li,
#special span,
#special form,
#special input,
#special select,
#special textarea {
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", Helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
  background: #000000;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

#special {
  margin: 0;
  position: relative;
}

#special a {
  color: #ffffff;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fadeIn {
  animation-duration: 3s;
}

/* ==========================================================================
   Header (30th Tour 特有指定)
   ========================================================================== */
.special__header {
  min-height: 100vh;
  padding: 2em 0 1em;
  text-align: center;
}

.special__header__logo {
  width: 240px;
  max-width: 80%;
  padding: 80px 0 0;
  margin: auto;
}

.special__header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.special__header__link {
  padding: 50px 10px 0;
  text-align: right;
}

.special__header__link a {
  display: block;
  font-weight: bold;
}

.special__header__link a + a {
  padding-top: 14px;
}

.special__header__link a span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: rotate(-135deg);
}

.special__header__link a span:nth-of-type(2) {
  margin-left: -3px;
}

.special__header__scroll {
  margin-top: 80px;
  position: relative;
  text-align: center;
}

.special__header__scroll a {
  font-size: 10px;
  color: #C3C3C3 !important;
}

.special__header__scroll a span {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #C3C3C3;
  border-bottom: 1px solid #C3C3C3;
  transform: rotate(-45deg);
  animation: sdb 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

.special__header__scroll a span:nth-of-type(1) { animation-delay: 0s; }
.special__header__scroll a span:nth-of-type(2) { top: 40px; animation-delay: .15s; }
.special__header__scroll a span:nth-of-type(3) { top: 60px; animation-delay: .3s; }

@keyframes sdb {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* ==========================================================================
   Main Content Sections
   ========================================================================== */
.special__contents {
  padding: 30px 16px;
  max-width: 640px;
  margin: 0 auto;
}

.special__contents + .special__contents {
  margin-top: 100px;
}

.special__contents__head {
  text-align: center;
}

.special__contents__head img {
  max-width: 100%;
  height: auto;
}

.special__contents__head__ttl {
  color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  text-align: center;
  padding: 8px 0 20px;
  font-weight: 900;
}

.special__contents__head__ttl::before,
.special__contents__head__ttl::after {
  content: '';
  display: inline-block;
  width: 45px;
  height: 31px;
  background-image: url("images/crown.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: bottom;
}

.special__contents__head__ttl::before { margin-right: 12px; }
.special__contents__head__ttl::after { margin-left: 12px; }

/* ==========================================================================
   Report Section
   ========================================================================== */
.special__contents.report {
  margin-top: 60px;
}

.report__head {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.report__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.report__list + .report__list {
  margin-top: 26px;
}

.report__list__item {
  border: 1px solid #71969B;
  background-color: rgba(113, 150, 155, 0.27);
  position: relative;
}

.report__list__item + .report__list__item {
  border-top: none;
}

.report__list__item::after {
  position: absolute;
  right: 18px;
  top: 40%;
  transform: translateY(-50%);
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #71969B;
  border-right: 1px solid #71969B;
  transform: rotate(45deg);
}

.report__list__item a {
  display: block;
  padding: 13px 23px 13px 13px;
  color: #ffffff;
  font-weight: bold;
}

.report__list__item.wait {
  opacity: 0.5;
}

.report__list__item.wait a {
  pointer-events: none;
}

/* レポート本文記事 */
.report__article {
  padding: 30px 0;
}

.report__article__head {
  color: #71969B;
  margin-bottom: 36px;
  border-bottom: 4px double #71969B;
  padding: 0 6px 16px;
  font-size: 11px;
}

.report__article__head__ttl {
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 6px;
  color: #71969B;
}

.report__article__main {
  padding: 0 6px;
  color: #dddddd;
  line-height: 1.8;
  font-size: 14px;
}

.report__article__main img {
  display: block;
  width: 80%;
  max-width: 100%;
  height: auto;
  margin: 15px auto;
  border: 1px solid #1d2f31;
}

.report__article__main img.vertical {
  width: 60%;
}

.report__article__main h2 {
  font-size: 16px;
  font-weight: bold;
  color: #71969B;
  margin: 20px 0 10px;
}

/* ==========================================================================
   Present Section
   ========================================================================== */
.special__contents.present {
  background-color: #435A5D;
  border-radius: 8px;
  margin-top: 60px;
}

.present__entry {
  text-align: center;
  margin-bottom: 40px;
}

.present__entry__txt {
  font-weight: bold;
  color: #DED590;
  line-height: 1.6;
}

.present__entry__btn {
  display: block;
  border-radius: 13px;
  width: 90%;
  margin: 15px auto;
  padding: 14px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #71969B !important;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
}

.present__entry__btn.wait {
  opacity: 0.3;
  pointer-events: none;
}

.present__ttl {
  font-weight: bold;
  font-size: 16px;
  color: #DED590;
  padding: 30px 0 8px;
  border-bottom: 1px solid #DED590;
  margin-bottom: 15px;
}

.present__step {
  list-style: none;
  padding: 0;
  margin: 0;
}

.present__step li + li {
  margin-top: 15px;
}

.present__step li b {
  font-size: 18px;
  color: #DED590;
}

.present__step li span {
  font-size: 11px;
  color: #cccccc;
}

.present__schedule {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.present__schedule li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 60px;
  border: 1px solid #ffffff;
}

.present__schedule li + li {
  border-top: none;
}

.present__schedule__no {
  width: 80px;
  text-align: center;
  border-right: 1px solid #ffffff;
}

.present__schedule__no p {
  font-size: 10px;
  margin: 0;
}

.present__schedule__no span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.present__schedule__date {
  flex: 1;
  padding: 0 12px;
  font-weight: bold;
}

.present__attention {
  font-size: 11px;
  line-height: 1.7;
  color: #eeeeee;
}

.present__keyword {
  text-align: center;
  padding: 20px 10px;
}

/* キーワード入力リスト */
.present__keylist {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.present__keylist li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #ffffff;
}

.present__keylist li + li {
  border-top: none;
}

.present__keylist__no {
  width: 80px;
  text-align: center;
  border-right: 1px solid #ffffff;
}

.present__keylist__no p {
  font-size: 10px;
  margin: 0;
}

.present__keylist__no span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.present__keylist__key {
  flex: 1;
}

.key__input {
  width: 100%;
  color: #ffffff;
  background-color: transparent;
  border: none;
  outline: none;
  line-height: 1.5;
  font-size: 15px;
  padding: 15px 12px;
  display: block;
  box-sizing: border-box;
}

.key__input::placeholder {
  color: #aaaaaa;
  font-size: 11px;
}

/* フォーム要素 (Form & Input Styles) */
.form__wrap {
  width: 100%;
  max-width: 460px;
  margin: 30px auto;
}

.form__btn {
  display: block;
  background-color: #ffffff;
  border-radius: 13px;
  width: 100%;
  max-width: 240px;
  margin: 30px auto 0;
  padding: 14px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #71969B;
  border: none;
  cursor: pointer;
}

.form__btn__return {
  display: block;
  background-color: #435A5D;
  border-radius: 13px;
  border: 1px solid #cccccc;
  width: 100%;
  max-width: 200px;
  margin: 20px auto 0;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  color: #ffffff;
  cursor: pointer;
}

/* ==========================================================================
   Photo Gallery Section
   ========================================================================== */
.special__contents.gallery {
  margin-top: 60px;
}

.special__contents__gallery {
  position: relative;
  text-align: center;
}

.special__contents__gallery img {
  width: 100%;
  height: auto;
  display: block;
}

a.special__contents__gallery__btn {
  display: block;
  position: absolute;
  width: 50%;
  top: 32%;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 2em;
  text-align: center;
  border: 1px solid #71969B;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 0;
}

.gallery__article {
  padding: 20px 0 0;
}

.gallery__article__head {
  color: #71969B;
  margin: 30px 0 16px;
  border-bottom: 4px double #71969B;
  padding: 0 6px 12px;
  font-size: 11px;
}

.gallery__article__head__ttl {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 4px;
  color: #71969B;
}

/* 2列グリッドレイアウト */
.imageAll {
  clear: both;
  padding: 8px 0 30px;
  overflow: hidden;
  font-size: 0px;
}

.imageBox_unit,
.imageBox_last {
  width: 49%;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  margin-bottom: 2%;
}

.box_left { margin-right: 2%; }
.box_right { margin-right: 0%; }

.image img {
  max-width: 100%;
  height: auto;
  border: 1px #71969B solid;
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.special__footer {
  padding: 0;
  width: 100%;
  margin-top: 50px;
}

.special__footer a:link,
.special__footer a:visited,
.special__footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

.special__footer__set {
  display: table;
  width: 100%;
  background: #000000;
  color: #ffffff;
  line-height: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.special__footer__list {
  padding: 15px 0;
  display: table-cell;
  vertical-align: middle;
}

.home {
  padding-left: 18px;
  font-size: 11px;
  width: 30%;
}

.copy {
  padding-right: 18px;
  text-align: right;
  font-size: 9px;
  width: 70%;
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  object-fit: cover;
}