@charset "UTF-8";

/* ==========================================================================
   Reset & Base Settings
   ========================================================================== */
#special,
#special div,
#special p,
#special ul,
#special li,
#special span,
#special form,
#special input,
#special select,
#special textarea,
#special label,
#special button {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#special a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  color: #000000;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", Helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
  background: #ffffff !important; /* メインテーマは白背景 */
  color: #000000;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

#special {
  margin: 0;
  position: relative;
  background-color: #ffffff; /* 白背景 */
}

.fadeIn {
  animation-duration: 3s;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes slide1-1 {
  0% { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

@keyframes slide1-2 {
  0% { transform: translateX(0); }
  to { transform: translateX(-200%); }
}

@keyframes slide2-1 {
  0% { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@keyframes slide2-2 {
  0% { transform: translateX(-200%); }
  to { transform: translateX(0); }
}

@keyframes roulette-left {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* ==========================================================================
   Header Area
   ========================================================================== */
.special__header {
  width: 100%;
}

.special__header__logo {
  width: 100%;
  margin: auto;
  background-image: url("images/head_bg.svg");
  background-size: cover;
  background-position: center center;
}

.special__header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.special__header__text__wrap {
  display: flex;
  width: 100vw;
  height: 38px;
  overflow: hidden;
}

.special__header__text__img {
  width: auto;
  height: 100%;
}

.special__header__text__img:first-child {
  animation: slide1-1 60s -30s linear infinite;
}

.special__header__text__img:last-child {
  animation: slide1-2 60s linear infinite;
}

/* ==========================================================================
   Main Layout & Sections
   ========================================================================== */
.special__main {
  margin-top: 48px;
  background-color: #ffffff;
}

.special__main__contents {
  padding: 0;
}

.special__main__contents + .special__main__contents {
  margin-top: 80px;
}

.special__main__contents__ttl {
  position: relative;
  width: 110px;
  padding: 6px 0;
  margin: 0 0 0 16px;
  font-family: 'Playfair Display', 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 700;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  color: #000000;
}

.special__main__contents__ttl--sub {
  position: absolute;
  bottom: -16px;
  right: 0;
  font-size: 10px;
  font-weight: 300;
  margin: 0;
  color: #000000;
}

.special__main__contents__article {
  margin-top: 26px;
  padding: 0 16px;
  font-size: 13px;
  line-height: 1.8;
  color: #000000;
}

/* 特設TOPボタン */
.special__main__contents__btn {
  display: block;
  width: 200px;
  margin: 60px auto 30px;
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid #D8D8D8;
  text-align: center;
  font-size: 15px;
  color: #000000 !important;
  position: relative;
  font-weight: bold;
}

.special__main__contents__btn + .special__main__contents__btn {
  margin: 40px auto 30px;
}

a.special__main__contents__btn.wait {
  color: #666666 !important;
  font-size: 13px !important;
  pointer-events: none;
}

/* 特設TOPボタン（枠＋装飾背景） */
.special__main__contents__btn {
  display: block;
  width: 200px;
  margin: 60px auto 30px;
  padding: 16px 0;
  /* 透過させて背景の擬似要素（インク画像）が見えるように修正 */
  background-color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid #D8D8D8;
  text-align: center;
  font-size: 15px;
  color: #000000 !important;
  position: relative;
  font-weight: bold;
  z-index: 1; /* ボタンテキストを前面に */
}

.special__main__contents__btn + .special__main__contents__btn {
  margin: 40px auto 30px;
}

a.special__main__contents__btn.wait {
  color: #666666 !important;
  font-size: 13px !important;
  pointer-events: none;
}

a.special__main__contents__btn.wait {
  color: #666666 !important;
  font-size: 13px !important;
  pointer-events: none;
}

/* 装飾インク画像 (btn_bg.svg) */
.special__main__contents__btn::after {
  content: "";
  position: absolute;
  background-image: url("images/btn_bg.svg");
  background-size: cover;
  width: 105px;
  height: 105px;
}

.btn-left::after {
  top: -40px;
  left: -50px;
  z-index: -1;
}

.btn-right::after {
  top: -40px;
  right: -50px;
  z-index: -1;
}


/* ==========================================================================
   思い出投稿エリア (ここだけ独立して黒背景)
   ========================================================================== */
.special__main__contents.sp_memorial {
  background-color: #000000 !important;
  color: #ffffff !important;
  padding: 30px 0 60px !important;
  margin-top: 100px !important;
  margin-bottom: 0 !important; /* 最下部の余白をなくしてフッターと連結 */
}

.sp_memorial .special__main__contents__article {
  color: #ffffff !important;
}

.sp_memorial__head {
  position: relative;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp_memorial__head__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.sp_memorial__head__logo {
  width: 130px;
  margin-left: -110px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}

.sp_memorial__head__logo__img {
  width: 130px;
  height: auto;
  animation: roulette-left 30s linear infinite;
}

.sp_memorial__ttl__wrap {
  width: 100%;
  text-align: center;
  z-index: 2;
}

.sp_memorial__ttl {
  font-family: 'Playfair Display', 'Shippori Mincho', serif;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 4px;
  color: #ffffff;
}

.sp_memorial__ttl--sub {
  position: relative;
  display: inline-block;
  padding: 0 65px;
  font-family: 'Playfair Display', 'Shippori Mincho', serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.sp_memorial__ttl--sub::before,
.sp_memorial__ttl--sub::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
}

.sp_memorial__ttl--sub::before { left: 0; }
.sp_memorial__ttl--sub::after { right: 0; }

.sp_memorial__slide__wrap {
  display: flex;
  width: 100vw;
  height: 200px;
  overflow: hidden;
  opacity: 0.5;
}

.sp_memorial__slide__wrap__img {
  width: auto;
  height: 100%;
  filter: blur(1px);
}

.sp_memorial__slide__wrap__img.head:first-child {
  animation: slide1-1 180s -90s linear infinite;
}

.sp_memorial__slide__wrap__img.head:last-child {
  animation: slide1-2 180s linear infinite;
}

.sp_memorial__slide__wrap__img.btn:first-child {
  animation: slide2-1 180s -90s linear infinite;
}

.sp_memorial__slide__wrap__img.btn:last-child {
  animation: slide2-2 180s linear infinite;
}

.sp_memorial__btn__wrap {
  position: relative;
  margin: 40px 0;
}

a.sp_memorial__btn,
.sp_memorial__btn {
  width: 250px;
  padding: 16px 0;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid #ffffff;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.sp_memorial__btn.wait {
  opacity: 0.8;
  pointer-events: none;
}

/* ==========================================================================
   Sub Content Containers (Report / Gallery / Panels)
   ========================================================================== */
.special__contents {
  padding: 0 0 30px;
  background-color: #ffffff;
}

.special__contents__head {
  text-align: center;
  padding: 5px 16px 0;
}

.special__contents__head img {
  max-width: 100%;
  height: auto;
}

.special__contents__head__ttl {
  position: relative;
  width: 100%;
  padding: 6px 0;
  margin: 10px 0 0;
  font-family: 'Playfair Display', 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 700;
  border-top: 2px double #000000;
  border-bottom: 2px double #000000;
  color: #000000;
}

.special__contents__article {
  padding: 30px 16px 0;
  color: #000000;
}

.special__contents__article__attention {
  width: 100%;
  max-width: 400px;
  font-size: 10px;
  margin: 0 auto 30px;
  padding: 3px 6px;
  color: #666666;
  border: 1px solid #999999;
}

/* ライヴレポート記事用 */
.report__ttl,
.gallery__ttl--live {
  color: #000000;
  border-bottom: 4px double #000000;
  padding: 0 6px 10px;
  font-size: 13px;
  font-weight: bold;
}

.report__ttl p,
.gallery__ttl--live p {
  font-size: 10px;
  font-weight: normal;
  margin: 4px 0 0;
}

.gallery__ttl--member {
  color: #000000;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.report__block {
  margin-top: 20px;
  line-height: 1.8;
  color: #000000;
}

.report__block img {
  display: block;
  margin: 15px auto;
  max-width: 100%;
  height: auto;
}

/* ギャラリースタイル */
.gallery__block + .gallery__block {
  margin-top: 40px;
}

.gallery__list {
  width: 100%;
  max-width: 320px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  list-style: none;
}

.gallery__list__item {
  width: 150px;
  height: 150px;
  margin-top: 15px;
}

.gallery__list__item__thum {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

@media screen and (max-width:332px) {
  .gallery__list {
    justify-content: center;
  }
}

.gallery__comment {
  background-color: #000000;
  border-radius: 16px;
  min-height: 150px;
  padding: 16px 12px;
  margin: 20px 0;
  font-size: 11px;
  color: #ffffff;
  line-height: 1.7;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */
.present__form {
  padding: 0 16px;
  color: #000000;
}

.form__wrap {
  width: 100%;
  max-width: 460px;
  margin: 40px auto;
}

.form__btn {
  display: block;
  background-color: #135796;
  border-radius: 13px;
  width: 100%;
  max-width: 240px;
  margin: 40px auto 0;
  padding: 14px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff !important;
  border: none;
  cursor: pointer;
}

.form__btn__return {
  display: block;
  background-color: #ffffff;
  border-radius: 13px;
  border: 1px solid #135796;
  width: 100%;
  max-width: 200px;
  margin: 20px auto 0;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  color: #135796;
  cursor: pointer;
}

.form__head {
  margin: 20px 0 40px;
  color: #000000;
}

.form__head__completed {
  padding: 40px 0;
  text-align: center;
  color: #000000;
}

.form__error {
  color: #ff0000;
  border: 1px solid #ff0000;
  padding: 12px;
  margin-bottom: 40px;
}

.form__error__list {
  margin-top: 12px;
}

.form__error__list::before {
  content: "×";
  font-size: 18px;
  font-weight: bold;
}

.form__item.photoarea {
  margin-top: 40px;
  border: 2px solid #8d2784;
  padding: 8px;
}

.form__item + .form__item {
  margin-top: 40px;
}

.form__item__article {
  padding: 6px;
  color: #666666;
}

.form__block {
  margin-top: 40px;
  text-align: center;
  border: 1px solid #333333;
  background-color: #eeeeee;
  padding: 13px;
  color: #000000;
}

.form__block h1 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.form__item__info {
  margin: 0 auto 10px;
}

.form__item__info > a {
  text-decoration: underline !important;
}

.form__item h2 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.form__item h2 span {
  font-size: 11px;
  color: #666666;
}

.form__item.photoarea h2 {
  font-size: 16px;
  text-align: center;
  margin: 8px 0 30px;
  line-height: 1.3;
}

.form__input__text,
textarea,
select {
  width: 100%;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #333333;
  border-radius: 8px;
  line-height: 1.5;
  font-size: 16px;
  padding: 8px 16px;
  display: block;
  box-sizing: border-box;
}

.form__input__text + .form__input__text {
  margin-top: 12px;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #999999;
  font-size: 12px;
}

/* ラジオボタン・チェックボックス */
input[type='checkbox'],
input[type='radio'] {
  display: none;
}

.checkbox {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 12px 12px 12px 42px;
  border-radius: 8px;
  background-color: #ffffff;
  color: #000000;
  vertical-align: middle;
  cursor: pointer;
}

.checkbox:after {
  position: absolute;
  top: 50%;
  left: 15px;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 6px;
  content: '';
}

.checkbox:before {
  position: absolute;
  top: 50%;
  left: 21px;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #7e7637;
  border-bottom: 3px solid #7e7637;
  content: '';
  opacity: 0;
  transform: rotate(45deg);
}

input[type=checkbox]:checked + .checkbox:before { opacity: 1; }
input[type=checkbox]:checked + .checkbox:after { border-color: #7e7637; }

.radio_table {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.radio_table label {
  display: block;
  cursor: pointer;
  margin: 0;
  padding: 10px 0;
  background: #ffffff;
  color: #333333;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  border: 1px solid #333333;
  flex: 1;
}

.radio_table label:first-of-type { border-radius: 3px 0 0 3px; }
.radio_table label:last-of-type { border-radius: 0 3px 3px 0; }

.radio_table input[type="radio"]:checked + label {
  background-color: #000000;
  color: #ffffff;
}

/* ファイル選択 */
input[type=file] {
  display: none;
}

.form__label__file {
  display: block;
  box-sizing: border-box;
  width: 200px;
  text-align: center;
  padding: 10px 40px;
  color: #ffffff;
  background-color: #8d2784;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 auto 12px;
}

.form__label__file__name {
  position: relative;
  padding: 12px 6px;
  margin-bottom: 12px;
  border: 1px solid #8d2884;
  word-break: break-all;
}

.form__label__file__name::before {
  position: absolute;
  content: "ファイル名";
  color: #8d2784;
  background-color: #ffffff;
  padding: 2px;
  font-size: 10px;
  font-weight: bold;
  top: -12px;
  left: 12px;
}

/* ==========================================================================
   Footer Area
   ========================================================================== */
.special__footer {
  padding: 0;
  width: 100%;
  margin-top: 0; /* 黒背景エリアとシームレスに接合 */
  background-color: #000000;
}

.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;
}

.special__footer__list a {
  display: inline;
  color: #ffffff !important;
}

.home {
  padding-left: 18px;
  font-size: 11px;
  width: 30%;
}

.copy {
  padding-right: 18px;
  text-align: right;
  font-size: 9px;
  width: 70%;
}