/* Modal
  =========================================================================================== */
.is-modal-open {
  overflow: hidden;
}

.is-modal-open #oc {
  overflow: visible !important;
}

#c-crewModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

#c-crewModal.is-open {
  pointer-events: auto;
  opacity: 1;
}

#c-crewModal .c-crewModal_overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: pointer;
}

#c-crewModal .c-crewModal_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(886px, calc(886 / 1100 * 100vw));
  max-height: calc(100dvh - 32px);
  margin: auto;
  overflow: hidden;
  background: transparent;
  border-radius: min(0.9vw, 10px);
}

@media screen and (max-width: 767px) {
  #c-crewModal .c-crewModal_inner {
    width: calc(650 / 750 * 100vw);
    border-radius: 1.34vw;
  }
}

#c-crewModal .c-crewModal_close {
  display: block;
  width: min(50px, calc(50 / 1100 * 100vw));
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  right: 0;
  translate: -50% 50%;
  z-index: 1;
}

#c-crewModal .c-crewModal_close:before,
#c-crewModal .c-crewModal_close:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: -45deg;
}

#c-crewModal .c-crewModal_close:after {
  rotate: 45deg;
}

@media screen and (max-width: 767px) {
  #c-crewModal .c-crewModal_close {
    width: calc(60 / 750 * 100vw);
    translate: -30% 30%;
  }
}

#c-crewModal .c-crewModal_bg-blur {
  position: absolute;
  inset: 0;
  z-index: -2;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.2);
  transform: translateZ(0);
  will-change: backdrop-filter;
}

#c-crewModal .c-crewModal_bg-multiply {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(39, 57, 60, 0.8);
  pointer-events: none;
}

#c-crewModal .c-crewModal_contentWrapper {
  flex: 1;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  overflow-y: auto;
  position: relative;
  z-index: 2;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#c-crewModal .c-crewModal_content::-webkit-scrollbar {
  display: none;
}

#c-crewModal .c-crewModal_controller {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(30 / 886 * 100%) 0;
  position: relative;
  z-index: 2;
}

#c-crewModal .c-crewModal_pagination {
  order: 2;
  width: auto;
  margin: 0 calc(40 / 886 * 100%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#c-crewModal .c-crewModal_dot {
  width: min(calc(8 / 1100 * 100vw), 8px);
  aspect-ratio: 1 / 1;
  display: block;
  background: #c9caca;
  background: white;
  border-radius: 50%;
  margin: 0 min(calc(6 / 1100 * 100vw), 6px);
  opacity: 1;
}

#c-crewModal .c-crewModal_dot.is-active {
  background: #000;
}

#c-crewModal .c-crewModal_prev,
#c-crewModal .c-crewModal_next {
  font-size: 0;
  width: min(calc(30 / 1100 * 100vw), 30px);
  aspect-ratio: 1 / 1;
  background: #fff url('/image/jp/feature/community/arrow_03.png') no-repeat center center / 70% auto;
  border-radius: 50%;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: relative;
}

#c-crewModal .c-crewModal_prev {
  transform: scale(-1, 1);
  order: 1;
}

#c-crewModal .c-crewModal_next {
  order: 3;
}

@media screen and (max-width: 767px) {
  #c-crewModal .c-crewModal_controller {
    padding: calc(60 / 650 * 100%) 0;
  }

  #c-crewModal .c-crewModal_pagination {
    margin: 0 calc(40 / 650 * 100%);
  }

  #c-crewModal .c-crewModal_dot {
    width: calc(15 / 750 * 100vw);
    height: calc(15 / 750 * 100vw);
    margin: 0 calc(7 / 750 * 100vw);
  }

  #c-crewModal .c-crewModal_prev,
  #c-crewModal .c-crewModal_next {
    width: calc(65 / 750 * 100vw);
    height: calc(65 / 750 * 100vw);
  }
}

#c-crewModal .p-crewDetail {
  position: relative;
}

#c-crewModal .p-crewDetail img {
  display: block;
  width: 100%;
  height: auto;
}

#c-crewModal .p-crewDetail_thumb {
  width: calc(348 / 886 * 100%);
  margin: calc(65 / 886 * 100%) auto 0 auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

#c-crewModal .p-crewDetail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#c-crewModal .p-crewDetail_text-1 {
  color: #fff;
  font-weight: bold;
  font-size: min(calc(28 / 1100 * 100vw), 28px);
  line-height: 1.4;
  text-align: center;
  margin: 1em 0 0.5em 0;
  padding: 0 5%;
}

#c-crewModal .p-crewDetail_tags {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: min(calc(10 / 1100 * 100vw), 10px);
  padding: 0 10%;
}

#c-crewModal .p-crewDetail_tags > li {
  font-weight: bold;
  font-size: min(calc(17 / 1100 * 100vw), 17px);
  line-height: 1.3;
  color: #fff;
  background: #9fa0a0;
  padding: 0.2em 0.7em 0.1em;
  border-radius: 100vh;
}

#c-crewModal .p-crewDetail_text-2 {
  color: #fff;
  font-size: min(calc(24 / 1100 * 100vw), 24px);
  line-height: 1.5;
  text-align: justify;
  word-break: break-all;
  margin: 1.5em 0 0.5em 0;
  padding: 0 10%;
}

#c-crewModal .p-crewDetail_list {
  font-size: min(calc(24 / 1100 * 100vw), 24px);
  line-height: 1.5;
  text-align: left;
  margin: 1.5em 0 0.5em 0;
  padding: 0 10%;
}

#c-crewModal .p-crewDetail_list > dt,
#c-crewModal .p-crewDetail_list > dd,
#c-crewModal .p-crewDetail_list > dd * {
  color: #fff;
  word-break: break-all;
}

#c-crewModal .p-crewDetail_list > dt:not(:nth-of-type(1)) {
  margin-top: 0.8em;
}

#c-crewModal .p-crewDetail_list > dt {
  font-weight: bold;
  font-size: min(calc(28 / 1100 * 100vw), 28px);
  margin-block: 0.2em;
}

#c-crewModal .p-crewDetail_list > dd > *:not(:first-child) {
  margin-top: 1em;
}

#c-crewModal .p-crewDetail_list > dd a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  #c-crewModal .p-crewDetail_thumb {
    width: calc(400 / 650 * 100%);
    margin: calc(60 / 650 * 100%) auto 0 auto;
  }

  #c-crewModal .p-crewDetail_text-1 {
    font-size: calc(28 / 750 * 100vw);
    margin: 1em 0 0.8em 0;
  }

  #c-crewModal .p-crewDetail_tags {
    gap: min(calc(10 / 1100 * 100vw), 10px);
  }

  #c-crewModal .p-crewDetail_tags > li {
    font-size: calc(20 / 750 * 100vw);
    padding: 0.3em 0.7em;
  }

  #c-crewModal .p-crewDetail_text-2 {
    font-size: calc(24 / 750 * 100vw);
    margin: 2em 0 0.5em 0;
  }

  #c-crewModal .p-crewDetail_list {
    font-size: calc(24 / 750 * 100vw);
    margin: 1.8em 0 0.5em 0;
  }

  #c-crewModal .p-crewDetail_list > dt {
    font-size: calc(28 / 750 * 100vw);
  }
}

/* Hero
  =========================================================================================== */
#oc .p-pageHero {
  height: min(calc(600 / 1300 * 100vw), 600px);
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

#oc .p-pageHero_bg {
  position: absolute;
  inset: 0;
}

#oc .p-pageHero_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#oc .p-pageHero_title-1 {
  color: #fff;
  font-size: min(calc(50 / 1100 * 100vw), 50px);
  letter-spacing: 0.245em;
  line-height: 1;
  position: relative;
  text-shadow: 3px 2px 2px rgba(0, 0, 0, 1);
}

#oc .p-pageHero_title-2 {
  font-weight: bold;
  color: #fff;
  font-size: min(calc(70 / 1100 * 100vw), 50px);
  line-height: 1;
  position: relative;
  margin: 0.8em 0 0 0;
  text-shadow: 3px 2px 2px rgba(0, 0, 0, 1);
}

@media screen and (max-width: 767px) {
  #oc .p-pageHero {
    height: calc(450 / 750 * 100vw);
  }

  #oc .p-pageHero_title-1 {
    font-size: calc(35 / 750 * 100vw);
  }

  #oc .p-pageHero_title-2 {
    font-size: calc(50 / 750 * 100vw);
  }
}

#oc .p-pageOutline {
  padding: min(calc(100 / 1100 * 100%), 100px) min(calc(20 / 1100 * 100%), 20px);
}

#oc .p-pageOutline p {
  font-weight: bold;
  font-size: min(calc(24 / 1100 * 100vw), 24px);
  line-height: 2;
  text-align: center;
  padding: 0 1em;
}

@media screen and (max-width: 767px) {
  #oc .p-pageOutline {
    padding: calc(75 / 750 * 100%) calc(20 / 750 * 100%);
  }

  #oc .p-pageOutline p {
    font-size: calc(28 / 750 * 100vw);
  }
}
