@charset "UTF-8";

/* ==========================================================================
   Reset & Base Settings
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  visibility: hidden;
}

html.wf-active,
html.wfno-load {
  visibility: visible;
}

body {
  font-family: hiragino-mincho-pron, "Shippori Mincho", "Yu Mincho", serif;
  font-weight: 300;
  font-style: normal;
  background: #253032;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:link,
a:visited,
a:hover {
  color: #ffffff;
  text-decoration: none;
}

#wrap {
  margin: 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes bg {
  0%   { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.slide-in {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s ease-out;
}

.slide-in.show {
  opacity: 1;
  transform: translateX(0);
}

.blink {
  animation: blinkAnimation 1.5s infinite;
}

@keyframes blinkAnimation {
  0%   { opacity: 1; }
  50%  { opacity: 0.2; }
  100% { opacity: 1; }
}

/* ==========================================================================
   Header Area (TOP Page)
   ========================================================================== */
.sp__header {
  max-width: 420px;
  margin: 0 auto 40px;
  position: relative;
}

.sp__header__cover {
  width: 100%;
  height: auto;
  display: block;
}

.sp__header__inner {
  width: 100%;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.sp__header__logo {
  width: min(280 / 390 * 100vw, 280px);
  margin-left: 10px;
}

.sp__header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.sp__header__title {
  width: min(202 / 390 * 100vw, 202px);
  margin: -10px 0 0 auto;
}

.sp__header__title img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   TOP Main Content
   ========================================================================== */
.sp__wrap {
  position: relative;
  opacity: 0;
  animation: fadeIn 2.2s 0s forwards;
}

.sp__wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  animation: bg 1s ease-in-out 0.5s forwards;
  transform-origin: right center;
  background-color: #253032;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.top__main__section__wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 62px;
}

.contents__inner {
  padding: 0 16px;
  max-width: 420px;
  min-width: 370px;
  margin: 0 auto;
}

.top__map {
  text-align: center;
}

.top__map p {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

a.map_link {
  text-decoration: underline !important;
}

.top__schedule {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.top__schedule__item {
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.top__schedule__item img {
  height: 14px;
  width: auto;
}

.top__schedule__item__data {
  font-size: 12px;
  padding-left: 14px;
}

.top__schedule__item__data span {
  font-size: 18px;
}

.top__official-link {
  width: 168px;
  margin: 32px 0 0 auto;
  position: relative;
  z-index: 2;
}

.top__official-link a {
  display: block;
  text-align: center;
  font-weight: 600;
}

.top__official-link__bg {
  position: absolute;
  top: 12px;
  left: 0;
  z-index: -1;
  width: 100%;
}

.top__linklist {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 248px;
  margin: auto;
  padding: 0;
  list-style: none;
}

.top__linklist li {
  width: 100%;
}

.top__linklist__item {
  border: 1px solid #ffffff;
  background: rgba(217, 217, 217, 0.50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 10px 0;
}

.top__linklist__item p {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.top__linklist__item p.top__linklist__item__sub {
  font-size: 12px;
}

/* Member's Menu Section (Photo Question) */
.member__contents {
  background-color: #D9D9D9;
  color: #000000;
  width: 100%;
}

.top__member__title__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  padding: 32px 0;
}

.top__member__title__wrap p {
  line-height: 1;
  color: #253032;
  margin: 0;
}

.top__member__title {
  font-family: "gajraj-one", sans-serif;
  font-weight: 400;
  font-size: 24px;
}

.top__member__title__sub {
  font-size: 12px;
}

.top__member__inner {
  padding-bottom: 62px;
  max-width: 420px;
  min-width: 370px;
  margin: auto;
}

.top__member__inner.pq {
  background-image: url("images/pq_bg.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
}

.top__member__contents {
  padding-top: 20px;
  position: relative;
}

.top__member__contents p {
  text-align: center;
  margin: 0;
  padding: 0 16px;
}

.top__member__button__wrap {
  margin: 42px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top__member__button {
  background-color: #8C002F;
  border: 1px solid #6C090A;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  width: 248px;
  height: 60px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}

.top__member__button::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

/* ==========================================================================
   Photo Question Page (photo.html)
   ========================================================================== */
.member__wrap {
  position: relative;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
  z-index: 10;
}

.member__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("images/member_contents_bg.svg");
  background-size: 250px;
  background-position: center center;
  background-repeat: no-repeat;
}

.member__header {
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}

.member__header__bg {
  min-width: 330px;
}

.member__header__bg .line1,
.member__header__bg .line4 {
  transform: translateX(-100%);
  animation: slideInLeft 1.1s 1s ease-out forwards;
}

.member__header__bg .line2,
.member__header__bg .line3 {
  transform: translateX(100%);
  animation: slideInRight 1.2s 1s ease-out forwards;
}

.member__header__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 310px;
  opacity: 0;
  animation: fadeIn 0.8s 1.8s ease-in forwards;
}

.member__contents__wrap {
  opacity: 0;
  animation: fadeIn 0.8s 1.8s ease-in forwards;
  max-width: 420px;
  margin: auto;
}

.member__contents__title {
  display: block;
  height: 30px;
  margin: 42px auto;
}

.member__contents__description {
  text-align: center;
  padding: 0 16px;
  text-shadow: 1px 1px 3px #000000;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.member__contents__description .caution {
  font-weight: 300;
  font-size: 12px;
  padding: 8px;
  border: 1px solid #cccccc;
  margin: 24px 0 0;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.2);
}

.question__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 140px;
  margin: 62px auto;
}

.question__item__no {
  height: 40px;
  display: block;
}

.question__item__img {
  display: block;
  max-width: 320px;
  border: 1px solid #ffffff;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.70);
  margin: auto;
}

.question__item__answer {
  margin: 12px auto 0;
  max-width: 320px;
}

.answer__trigger {
  display: block;
  width: 148px;
  margin: 0 0 4px auto;
  cursor: pointer;
}

.answer__contents {
  background-color: #DBDBDB;
  color: #000000;
  text-align: center;
}

.answer__contents .inner {
  padding: 24px 12px;
}

.answer__contents .inner h1 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #8C002F;
  font-size: 16px;
}

.answer__contents .inner p {
  text-align: left;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.js-answerContents {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.js-answerContents.is-open {
  max-height: 800px;
  opacity: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.sp__footer.top {
  padding-top: 42px;
  background-color: #D9D9D9;
}

.sp__footer {
  background-color: #253032;
}

.sp__footer__wrap {
  display: flex;
  width: 100%;
  max-width: 420px;
  min-width: 370px;
  margin: auto;
  padding: 0;
  list-style: none;
}

.sp__footer__wrap li {
  padding-top: 16px;
  padding-bottom: 16px;
  display: table-cell;
  vertical-align: middle;
  line-height: 1;
}

.sp__footer-home {
  padding-left: 18px;
  width: 30%;
  font-size: 12px;
}

.sp__footer.top .sp__footer-home a {
  color: #253032 !important;
}

.sp__footer-copyright {
  padding-right: 18px;
  text-align: right;
  flex: 1;
  font-size: 9px;
  font-family: "Hiragino Kaku Gothic Pro", Helvetica, sans-serif;
}

.sp__footer.top .sp__footer-copyright {
  color: #253032;
}