body {
  overflow-x: hidden;
}
.nict-tour-fv {
  position: relative;
  width: 100%;
  height: 600px;
  background-image: linear-gradient(transparent 0, transparent 50%, #fff), url('../images/nict-tour/nict-tour-fv-img.jpg');
  background-position: top center, top center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.nict-tour-fv-img-wrapper img {
  width: 100%;
  height: auto;
}

.nict-tour-fv-chara-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.nict-tour-fv-chara-wrapper img {
  /* min: 200px, max: 560px | min-viewport: 320px, max-viewport: 1600px */
  max-width: clamp(12.5rem, 6.875rem + 28.13vw, 35rem);
  height: auto;
}

.nict-tour-fv-message {
  font-size: var(--heading-size);
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke: 10px var(--main-blue);
  paint-order: stroke;
  margin-top: -88px;
  filter: drop-shadow(0 0 16px #fff);
}

.nict-tour-fv-message span {
  font-size: var(--large-heading-size);
  color: #fdee21;
  margin-left: -56px;
  margin-right: -32px;
}

.nict-tour-fv-chara-wrapper img {
  width: 100%;
  height: auto;
}

.nict-tour-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.nict-tour-info-date {
  font-size: var(--heading-size);
  font-weight: bold;
}

.nict-tour-info-sub-text {
  border-top: dotted 4px var(--dot-color);
  font-size: var(--text-size);
  font-weight: bold;
  padding: 16px 40px 0;
}

.nict-tour-info-main-text {
  font-size: var(--text-size);
  font-weight: bold;
  color: var(--dot-color);
}

/* スライダー */
.nict-tour-slider {
  width: 100vw;
}

.nict-tour-slider-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-color: #ccc;
  background: #fff;
  border-radius: 12px;
  margin: 16px 24px 16px 0;
}

.nict-tour-slider-img {
  width: 100%;
  height: auto;
  flex-shrink: 1;
  border-radius: 12px 12px 0 0;
}

.nict-tour-slider-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  padding: 16px 8px;
  flex-grow: 1;
}

.nict-tour-slider-name {
  width: fit-content;
  text-align: center;
  font-size: var(--text-size);
}

.nict-tour-slider-name--long-text {
  font-size: 16px;
}

.nict-tour-slider-text {
  width: fit-content;
  color: var(--main-blue);
  font-size: var(--mini-text-size);
  text-align: center;
}

.splide__arrows {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.splide__arrow {
  background: none;
  border: none;
  cursor: pointer;
  transition: .3s;
}

.splide__arrow img {
  width: 64px;
  height: auto;
}

.splide__arrow--next {
  transform: rotate(180deg);
}

/* 探検ツアーボックス */
.nict-tour-boxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nict-tour-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 24px;
}

.nict-tour-card-img {
  max-width: 320px;
  height: auto;
  float: right;
  margin: 0 0 8px 16px;
  border-radius: 24px;
}

.nict-tour-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: solid 1px #333;
  padding-top: 16px;
  margin-top: 16px;
  font-weight: bold;
}

.nict-tour-card-details {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  gap: 8px;
}

.nict-tour-name {
  width: fit-content;
  border-radius: 24px;
  color: #fff;
  font-size: var(--text-size);
  font-weight: bold;
  padding: 8px 40px;
  text-align: center;
}

.nict-tour-card--main-blue .nict-tour-name {
  background: var(--main-blue);
}

.nict-tour-card--sub-blue .nict-tour-name {
  background: var(--sub-blue);
}

.nict-tour-card--emerald .nict-tour-name {
  background: var(--emerald);
}

.nict-tour-card--light-green .nict-tour-name {
  background: var(--light-green);
}

.nict-tour-card--lime .nict-tour-name {
  background: var(--lime);
}

.nict-tour-card--yellow .nict-tour-name {
  background: var(--yellow);
}

.nict-tour-card--orange .nict-tour-name {
  background: var(--orange);
}

.nict-tour-card--red .nict-tour-name {
  background: var(--red);
}

.nict-tour-card--purple .nict-tour-name {
  background: var(--purple);
}

.nict-tour-sub-text {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  margin-top: 8px;
  font-size: var(--text-size);
}

.nict-tour-sub-text p {
  line-height: 1.6;
}

.nict-tour-sub-text .text-indent {
  text-indent: -20px;
  padding-left: var(--text-size);
}

.nict-tour-message-text {
  margin-top: 16px;
  line-height: 1.6;
}

.nict-tour-card--main-blue .nict-tour-card-color {
  color: var(--main-blue);
}

.nict-tour-card--sub-blue .nict-tour-card-color {
  color: var(--sub-blue);
}

.nict-tour-card--emerald .nict-tour-card-color {
  color: var(--emerald);
}

.nict-tour-card--light-green .nict-tour-card-color {
  color: var(--light-green);
}

.nict-tour-card--lime .nict-tour-card-color {
  color: var(--lime);
}

.nict-tour-card--yellow .nict-tour-card-color {
  color: var(--yellow);
}

.nict-tour-card--orange .nict-tour-card-color {
  color: var(--orange);
}

.nict-tour-card--red .nict-tour-card-color {
  color: var(--red);
}

.nict-tour-card--purple .nict-tour-card-color {
  color: var(--purple);
}

.nict-tour-card-cautions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #e6e6e6;
  border-radius: 24px;
  padding: 16px;
}

.nict-tour-card-caution-text {
  text-indent: -1rem;
  padding-left: 1rem;
}

.nict-tour-card-caution-text--sub {
  text-indent: initial;
}

.nict-tour-card-detail-text span.caution,
.nict-tour-card-caution-text span {
  color: #d13155;
}

.nict-tour-card-detail-text span.notice {
  font-size: var(--mini-text-size);
}

.nict-tour-virtual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-bottom: 120px;
}

.nict-tour-virtual-sub-text {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.nict-tour-virtual-title {
  background: #fff;
  border: solid 8px var(--main-blue);
  border-radius: 9999px;
  color: var(--main-blue);
  font-weight: bold;
  font-size: var(--heading-size);
  padding: 16px 24px;
  text-align: center;
}

.nict-tour-virtual-link {
  width: 100%;
}

.nict-tour-virtual-link img {
  width: 100%;
  height: auto;
}

/* ホバー時 */
@media (hover:hover) {
  .nict-tour-virtual-link:hover {
    opacity: .7;
  }
  .splide__arrow:hover {
    filter: brightness(1.3);
  }
}
/* アクティブ時 */
@media (hover:none) {
  .nict-tour-virtual-link:active {
    opacity: .7;
  }
  .splide__arrow:active {
    filter: brightness(1.3);
  }
}

@media screen and (max-width:1100px) {
  .nict-tour-inner {
    padding: 24px;
  }
  .nict-tour-slider-box {
    margin: 16px 16px 16px 0;
  }
}
/* レスポンシブ */
.sp-break {
  display: none;
}
@media screen and (max-width:960px) {
  .nict-tour-fv {
    height: 50vw;
  }
  .nict-tour-fv-message {
    font-size: 5vw;
    margin-top: -10vw;
    -webkit-text-stroke: 8px var(--main-blue);
  }
  .nict-tour-fv-message span {
    font-size: 7vw;
    margin-left: -5vw;
    margin-right: -4vw;
  }
  .splide__arrows {
    padding: 0 24px;
  }
  .splide__arrows img {
    width: 40px;
  }
  .nict-tour-card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .nict-tour-card-img {
    max-width: 100%;
    margin: 0;
    align-self: center;
  }
  .nict-tour-name {
    align-self: center;
    margin-top: 16px;
    clear: both;
  }
}

@media screen and (max-width: 600px) {
  .nict-tour-card {
    padding: 16px;
  }
  .nict-tour-card-details {
    grid-template-columns: 1fr;
  }
  .nict-tour-card-details > * {
    grid-column: 1;
  }
  .nict-tour-name {
    padding: 8px 24px;
  }
  .nict-tour-sub-text {
    margin-top: 16px;
  }
  .nict-tour-virtual-title {
    font-size: 24px;
    padding: 8px 16px;
  }
  .nict-tour-virtual-sub-text {
    font-size: 16px;
  }
  .nict-tour-info-date {
    font-size: 24px;
    text-align: center;
  }
  .sp-break {
    display: block;
  }
}