@charset "UTF-8";
@import url(lib/swiper-bundle.min.css);
@import url(lib/remodal.css);
/* ------------------------------------------------
 remodal common
------------------------------------------------ */
.remodal-overlay {
  background-color: #fff;
}
.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}
@media screen and (min-width: 768px) {
  .remodal-overlay {
    background-color: #E5EDF8;
  }
}

body:has(.remodal-is-opened) {
  overflow: hidden;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  scrollbar-width: none;
  box-sizing: border-box;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  overflow-x: clip;
}
/* Default theme styles of the modal dialog */
.remodal {
  overscroll-behavior-y: contain;
}
.remodal.remodal-is-opening, .remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* ----------------------------
 Keyframes
------------------------------*/
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.01);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.99);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* ------------------------------------------------
 remodal
------------------------------------------------ */
.remodal {
  color: var(--color-blue);
  font-family: var(--font-base);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .remodal {
    background-color: transparent;
    padding-top: 3.125em;
    max-width: 62.5em;
  }
  .remodal > .inner {
    border-radius: 3.125em;
    background-color: #fff;
  }
}
/* ----------------------------
 remodal_close
------------------------------*/
button.remodal_close.top {
  background: url(../img/common/icon_close.svg) 0 0/contain no-repeat;
  background-color: transparent !important;
  width: 1em;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  button.remodal_close.top {
    width: 1.875em;
    right: 1.25em;
    top: 0;
  }
}

@media screen and (min-width: 768px) {
  #contents.healty button.remodal_close.bottom {
    margin: 1.875em auto;
    padding: 1.125em 2.5em;
    -moz-column-gap: 0.5em;
         column-gap: 0.5em;
  }
  #contents.healty button.remodal_close.bottom .txt {
    font-size: 0.875em;
  }
  #contents.healty button.remodal_close.bottom::after {
    width: 0.75em;
  }
  #contents.healty button.remodal_close.top {
    height: 3.4375em;
  }
  #contents.healty button.remodal_close.top:hover {
    background-color: transparent;
  }
}

/* ------------------------------------------------
 lineup
------------------------------------------------ */
#lineup {
  background-color: #e5edf8;
  margin-top: -1.5625em;
  position: relative;
  z-index: 2;
}
#lineup > .inner {
  padding: 3.125em 0.9375em 1.875em;
  box-sizing: border-box;
}
#lineup .sheader .title {
  text-align: center;
}
#lineup .sbody {
  margin-top: 4.375em;
}
#lineup .products {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 3.125em;
}
#lineup {
  /* ---- product card ---- */
}
#lineup .product {
  background-color: #fff;
  border: 0.3125em solid #fff;
  border-radius: 1.875em;
  box-sizing: border-box;
}
#lineup .product .head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5625em;
}
#lineup .product .head .img {
  margin-top: -1.25em;
  width: 8.75em;
  flex-shrink: 0;
}
#lineup .product .head .copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625em;
}
#lineup .product .head .copy .line {
  color: var(--color-blue);
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.0625em;
  border-bottom: 2px solid var(--color-blue);
  padding-bottom: 0.15em;
}
#lineup .product .head .copy_note {
  color: var(--color-blue);
  font-size: 0.625em;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
#lineup .product {
  /* ---- colored body ---- */
}
#lineup .product .body {
  color: #fff;
  border-radius: 0 0 1.5625em 1.5625em;
  margin-top: 1.875em;
  padding: 1.5625em 1.5625em 2.1875em;
}
#lineup .product .body .name {
  font-size: 1.875em;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.0625em;
}
#lineup .product .body .research {
  margin-top: 0.9375em;
}
#lineup .product .body .research .heading {
  color: #fff;
  font-size: 0.875em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}
#lineup .product .body .functions {
  margin-top: 0.9375em;
  gap: 0.9375em;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
#lineup .product .body .functions li {
  color: var(--color-purple);
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 0.625em;
  background-color: #fff;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  box-sizing: border-box;
}
#lineup .product .body > .note {
  color: #fff;
  font-size: 0.625em;
  font-weight: 500;
  text-align: right;
  letter-spacing: 0.05em;
  margin-top: 1.4em;
}
#lineup .product {
  /* ---- buy buttons ---- */
}
#lineup .product .buy,
#lineup .product .buy2 {
  border: 2px solid #fff;
  margin: 0 auto;
  width: 21.25em;
  height: 3.75em;
}
#lineup .product .buy .txt,
#lineup .product .buy2 .txt {
  font-size: 1.25em;
  font-weight: bold;
}
#lineup .product .buy {
  margin-top: 1.875em;
  width: 17.5em;
}
#lineup .product .buy2 {
  background-color: #fff;
  border-color: var(--color-blue);
  width: 16.875em;
}
#lineup .product .buy2 .txt {
  color: var(--color-blue);
}
@media screen and (any-hover: hover) {
  #lineup .product .buy2:hover {
    background-color: #e5edf8;
  }
}
#lineup .product {
  /* ---- 初めての方限定 ---- */
}
#lineup .product .first {
  border: 1px solid var(--color-purple);
  border-radius: 0.9375em;
  margin-top: 1.875em;
  width: auto;
  overflow: hidden;
}
#lineup .product .first .ttl {
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  text-align: center;
  line-height: 1.42;
  letter-spacing: 0.05em;
  background-color: var(--color-purple);
  padding: 0.8333333333em;
}
#lineup .product .first .box {
  background-color: #fff;
  padding: 1.5625em 1.125em 1.875em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25em;
}
#lineup .product .first .box > .note {
  color: var(--color-blue);
  font-size: 0.625em;
  text-indent: 0;
  padding-left: 0;
  align-self: flex-start;
}
#lineup .product .first .trial {
  letter-spacing: normal;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625em;
}
#lineup .product .first .trial .limit {
  color: var(--color-blue);
  font-size: 0.875em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  letter-spacing: 0.02em;
  border-radius: 0.5714285714em;
  background-color: #e5edf8;
  width: 9.7142857143em;
  height: 2.1428571429em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
#lineup .product .first .trial .days {
  color: var(--color-blue);
  font-size: 1.125em;
  letter-spacing: 0.0625em;
}
#lineup .product.premium .body {
  background: linear-gradient(90deg, #E4C374 2.09%, #C29731 100%);
}
#lineup .product.basic .head {
  position: relative;
  padding-bottom: 1.875em;
}
#lineup .product.basic .head .copy_note {
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
#lineup .product.basic .price {
  width: 8.125em;
}
#lineup .product.basic .body {
  background: linear-gradient(90deg, #9473B7 2.79%, #7544AC 100%);
}
#lineup .product.basic .price {
  width: 9.1875em;
}
@media screen and (max-width: 767.9px) {
  #lineup {
    /* ---- product card ---- */
  }
  #lineup .product.premium .price {
    width: 100%;
  }
}

/* ------------------------------------------------
 remodal stores
------------------------------------------------ */
.remodal.stores > .inner {
  padding: 3.125em 0.9375em 1.875em;
}
.remodal.stores .product_modal {
  display: grid;
  grid-template-columns: 7.9375em 1fr;
  flex-direction: column;
  align-items: center;
  gap: 1.5625em;
}
.remodal.stores {
  /* ---- 商品情報 ---- */
}
.remodal.stores .img {
  grid-row: 1/span 1;
  grid-column: 1/span 1;
}
.remodal.stores .head {
  grid-row: 1/span 1;
  grid-column: 2/span 1;
}
.remodal.stores .head .info {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
.remodal.stores .name {
  display: flex;
  flex-direction: column;
  gap: 0.3125em;
}
.remodal.stores .name .ttl {
  color: var(--color-blue);
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.2857142857;
  letter-spacing: 0.0357142857em;
}
.remodal.stores .name .tag {
  color: var(--color-blue);
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.0833333333em;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  height: 2.5em;
  padding: 0 0.8333333333em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
}
.remodal.stores {
  /* ---- 価格 ---- */
}
.remodal.stores .price {
  display: flex;
  flex-direction: column;
  gap: 0.9375em;
  width: 100%;
}
.remodal.stores .price .row {
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 0.5em;
}
.remodal.stores .price .day {
  flex-shrink: 0;
  background-color: var(--color-blue);
  color: #fff;
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 0.0714285714em;
  border-radius: 0.3571428571em;
  width: 5em;
  height: 2.1428571429em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.remodal.stores .price .yen {
  color: var(--color-blue);
  font-weight: 700;
  display: flex;
  align-items: flex-end;
}
.remodal.stores .price .yen b {
  font-size: 2em;
  line-height: 1;
  letter-spacing: 0.03125em;
  margin-right: -0.09375em;
}
.remodal.stores .price .yen .unit {
  margin-left: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  white-space: nowrap;
}
.remodal.stores .price .yen .unit small {
  font-size: 0.375em;
}
.remodal.stores .price .yen .unit .en {
  font-size: 1.125em;
}
.remodal.stores {
  /* ---- 購入ボタン ---- */
}
.remodal.stores .buy_box {
  background-color: #f2f6fb;
  border-radius: 0.75em;
  width: 100%;
  padding: 0.9375em 0 0.625em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625em;
  box-sizing: border-box;
  grid-row: 2/span 1;
  grid-column: 1/span 2;
}
.remodal.stores .buy_box .buy_ttl {
  color: var(--color-blue);
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}
.remodal.stores .stores_btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3125em;
  width: 21.375em;
}
.remodal.stores .stores_btns li {
  line-height: 0;
}
.remodal.stores .stores_btns a {
  display: block;
}
@media screen and (any-hover: hover) {
  .remodal.stores .stores_btns a {
    transition: opacity 0.3s ease;
  }
  .remodal.stores .stores_btns a:hover {
    opacity: 0.75;
  }
}
.remodal.stores .stores_btns img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .remodal.stores > .inner {
    padding: 0;
  }
  .remodal.stores .product_modal {
    padding: 3.75em;
    grid-template-columns: 16em 1fr;
    gap: 1.5625em 2.8125em;
  }
  .remodal.stores {
    /* ---- 商品情報 ---- */
  }
  .remodal.stores .img {
    grid-row: 1/span 2;
    grid-column: 1/span 1;
  }
  .remodal.stores .head {
    grid-row: 1/span 1;
    grid-column: 2/span 1;
  }
  .remodal.stores .head .info {
    flex-direction: column;
    gap: 0.9375em;
  }
  .remodal.stores .name {
    flex-direction: row;
    align-items: center;
    gap: 0.9375em;
  }
  .remodal.stores .name .ttl {
    font-size: 2.125em;
  }
  .remodal.stores .name .tag {
    font-size: 0.875em;
    height: 2.1428571429em;
    padding: 0 0.7142857143em;
  }
  .remodal.stores {
    /* ---- 価格 ---- */
  }
  .remodal.stores .price {
    flex-direction: row;
    gap: 1.5625em;
  }
  .remodal.stores .price .row {
    gap: 0.625em;
  }
  .remodal.stores .price .day {
    font-size: 1.5em;
    width: 4.5833333333em;
    height: 1.6666666667em;
  }
  .remodal.stores .price .yen b {
    font-size: 2.875em;
  }
  .remodal.stores .price .yen .unit {
    margin-left: 0.25em;
  }
  .remodal.stores .price .yen .unit small {
    font-size: 0.5em;
  }
  .remodal.stores .price .yen .unit .en {
    font-size: 1.375em;
  }
  .remodal.stores {
    /* ---- 購入ボタン ---- */
  }
  .remodal.stores .buy_box {
    border-radius: 1.25em;
    padding: 1.125em 0.75em 0.625em;
    gap: 0.625em;
    box-sizing: border-box;
    grid-row: 2/span 1;
    grid-column: 2/span 1;
  }
  .remodal.stores .buy_box .buy_ttl {
    font-size: 1.375em;
  }
  .remodal.stores .stores_btns {
    gap: 0;
    width: 100%;
  }
}

/* ------------------------------------------------
  interview
------------------------------------------------ */
#interview > .inner {
  color: #fff;
  background: url(../img/interview/bg.png) no-repeat center top;
  background-size: 100% auto;
  min-height: 89.25em;
  box-sizing: border-box;
  overflow: hidden;
}
#interview .intro {
  width: 19em;
  margin: 0 auto;
  padding-top: 6.25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#interview .en {
  width: 11.6875em;
}
#interview .heading {
  margin-top: 2.3125em;
  width: 16.875em;
}
#interview .anime_logo {
  width: 10.0625em;
  margin: 0 auto;
}
#interview .copy {
  position: relative;
  margin-top: 0.5em;
}
#interview .copy .band {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2em;
  background: #0e3887;
  z-index: 0;
}
#interview .copy .band1 {
  top: 0.875em;
}
#interview .copy .band2 {
  top: 4.375em;
}
#interview .copy .txt {
  position: relative;
  z-index: 1;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 2.5em;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
#interview .kv {
  margin-top: 2.5em;
  width: 17.5em;
}
#interview .lead {
  margin-top: 2.5em;
  font-weight: 700;
  font-size: 1em;
  line-height: 1.8;
  letter-spacing: 0.125em;
}
#interview .slider {
  position: relative;
  margin-top: 2.1875em;
}
#interview .list {
  transition-timing-function: linear;
}
#interview .list::-webkit-scrollbar {
  display: none;
}
#interview .list li {
  width: 17.25em;
}
#interview .card {
  color: #fff !important;
  font-family: var(--font-mincho);
  flex: 0 0 auto;
  width: 16.25em;
  scroll-snap-align: center;
  position: relative;
}
@media screen and (any-hover: hover) {
  #interview .card {
    transition: opacity 0.4s ease;
  }
  #interview .card:hover {
    color: #fff;
    opacity: 0.8;
  }
}
#interview .num {
  padding-inline: 0.9375em;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1;
  letter-spacing: 0.125em;
}
#interview .figure {
  position: relative;
  margin-top: 0.3125em;
  width: 16.25em;
  height: 16.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}
#interview .photo {
  border-radius: 50%;
  width: 16.25em;
  aspect-ratio: 1/1;
  position: relative;
}
#interview .profile {
  font-weight: 700;
  margin-top: 0.9375em;
  text-align: center;
}
#interview .role {
  font-size: 0.875em;
  letter-spacing: 0.0714285714em;
}
#interview .name {
  font-size: 1.25em;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0.5em;
}
#interview .name .san {
  font-size: 0.875em;
  letter-spacing: 0;
  margin-left: 0.1428571429em;
}
#interview .balloon {
  position: absolute;
  top: -1.375em;
  left: 10em;
  z-index: 2;
  min-width: 6.125em;
  box-sizing: border-box;
  padding: 1em 0.625em;
  background: #fff;
  border: 1px solid var(--color-blue);
}
#interview .balloon::before {
  content: "";
  background: transparent url(../img/interview/balloon_arrow.svg) 0/contain no-repeat;
  width: 1.34375em;
  height: 1.75em;
  position: absolute;
  left: -1.28125em;
  top: 7.5em;
}
#interview .balloon .txt {
  color: var(--color-blue);
  font-weight: 900;
  font-size: 1.125em;
  line-height: 1.4;
  letter-spacing: 0.01em;
  writing-mode: vertical-rl;
}
#interview .arrows {
  margin: 1.5625em 1.25em 0;
  display: flex;
  justify-content: space-between;
}
#interview .arrows .arrow {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
#interview .arrows .arrow svg {
  display: block;
  width: 3.5em;
  height: 2.5em;
}
#interview .arrows .arrow.prev {
  transform: scaleX(-1);
}
@media screen and (any-hover: hover) {
  #interview .arrows .arrow {
    transition: opacity 0.4s ease;
    cursor: pointer;
  }
  #interview .arrows .arrow:hover {
    text-decoration: none;
    opacity: 0.85;
  }
}

/* ------------------------------------------------
 download
------------------------------------------------ */
#download > .inner {
  color: #242424;
  padding-top: 6.25em;
  min-height: 84.25em;
  position: relative;
  overflow: hidden;
}
#download > .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/download/bg.webp) center top/cover no-repeat;
}
#download > .inner > * {
  position: relative;
  z-index: 1;
}
#download {
  /* --- header --- */
}
#download .dhead {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#download .sara {
  width: 8.75em;
}
#download .logo {
  position: relative;
  margin-top: 0.625em;
  width: 16.25em;
}
#download .ttl {
  color: var(--color-blue);
  font-family: var(--font-mincho);
  font-size: 2.5em;
  font-weight: 700;
  margin-top: -0.05em;
  letter-spacing: 0.075em;
}
#download .lead {
  font-weight: 700;
  font-size: 1em;
  line-height: 1.8;
  margin-top: 0.625em;
  letter-spacing: 0.125em;
}
#download .soon {
  color: var(--color-purple);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.125em;
  text-align: center;
  margin-top: 1.875em;
}
#download .btns {
  margin-top: 1.875em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.25em;
}

/* ----------------------------
 待ち受け（スマホ）
------------------------------*/
#download .machiuke {
  background: url(../img/download/phone.svg) 0 0/contain no-repeat;
  margin: 1.875em auto 0;
  width: 18.75em;
  height: 37.9375em;
}

/* ----------------------------
 slider
------------------------------*/
#download_wp_slider .swiper-wrapper {
  margin: 0 auto;
  width: 16.125em;
}
#download_wp_slider li {
  padding-top: 2.5em;
}
#download_wp_slider li .wp {
  border-radius: 1.5em;
  width: 16.125em;
  height: 33.875em;
  overflow: hidden;
}
#download_wp_slider li .wp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
#download_wp_slider li .tag {
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  background: #e07b61;
  writing-mode: vertical-rl;
  padding: 0.6em 0.5em;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0.5em;
  z-index: 3;
  filter: drop-shadow(0.25em 0.25em 0.125em rgba(0, 0, 0, 0.1));
}

/* ----------------------------
 pagenation
------------------------------*/
#download .pagination {
  display: none;
}
#download .pagination.swiper-pagination-bullets {
  margin-top: 1.375em;
  justify-content: center;
  -moz-column-gap: 1.25em;
       column-gap: 1.25em;
  display: flex;
}
#download .pagination .swiper-pagination-bullet {
  border: 1px solid var(--color-blue);
  border-radius: 50%;
  background: #e9f1ff;
  margin: 0;
  width: 0.75em;
  height: 0.75em;
  opacity: 1;
}
#download .pagination .swiper-pagination-bullet-active {
  background: var(--color-blue);
}

/* ------------------------------------------------
 kv
------------------------------------------------ */
#kv .inner {
  position: relative;
}
#kv .period, #kv .copyright {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#kv .period {
  bottom: 3.375em;
}
#kv .copyright {
  color: var(--color-blue);
  font-size: 0.625em;
  font-weight: bold;
  bottom: 2.4em;
  white-space: nowrap;
}

/* ------------------------------------------------
 intro
------------------------------------------------ */
#intro > .inner {
  color: var(--color-blue);
  padding: 3.125em 0 1.875em;
}
#intro .pk {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1.5625em;
       column-gap: 1.5625em;
  padding-left: 2.5em;
}
#intro .img {
  width: 6.125em;
}
#intro .img img {
  width: 100%;
}
#intro .txt {
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}
#intro .txt .catch {
  font-size: 1.625em;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.0769230769em;
}
#intro .txt .name {
  font-size: 0.875em;
  letter-spacing: 0.0714285714em;
  margin-top: 0.4285714286em;
}
#intro .txt .tag {
  font-size: 0.625em;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-blue);
  border-radius: 0.2em;
  white-space: nowrap;
  margin-top: 0.5em;
  padding: 0 0.5em;
  width: -moz-fit-content;
  width: fit-content;
  height: 2em;
  align-content: center;
}

/* ------------------------------------------------
  interview
------------------------------------------------ */
#interview > .inner {
  color: #fff;
  background: url(../img/interview/bg.png) no-repeat center top;
  background-size: 100% auto;
  min-height: 86.125em;
  min-height: 89.25em;
  box-sizing: border-box;
  overflow: hidden;
}
#interview .intro {
  width: 19em;
  margin: 0 auto;
  padding-top: 6.25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#interview .intro .en {
  width: 11.6875em;
}
#interview .intro .heading {
  margin-top: 2.3125em;
  width: 16.875em;
}
#interview .intro .anime_logo {
  width: 10.0625em;
  margin: 0 auto;
}
#interview .intro .copy {
  position: relative;
  margin-top: 0.5em;
}
#interview .intro .copy .band {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2em;
  background: #0e3887;
  z-index: 0;
}
#interview .intro .copy .band1 {
  top: 0.875em;
}
#interview .intro .copy .band2 {
  top: 4.375em;
}
#interview .intro .copy .txt {
  position: relative;
  z-index: 1;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 2.5em;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
#interview .intro .kv {
  margin-top: 2.5em;
  width: 17.5em;
}
#interview .intro .lead {
  margin-top: 2.5em;
  font-weight: 700;
  font-size: 1em;
  line-height: 1.8;
  letter-spacing: 0.125em;
}

/* ------------------------------------------------
 present
------------------------------------------------ */
#present > .inner {
  background: #fff;
  color: #242424;
  padding: 6.25em 0 4.375em;
}
#present .shead .en {
  color: var(--color-purple);
}
#present .shead .en::after {
  background-image: url(../img/present/title_line.svg);
}
#present .shead .ttl {
  color: var(--color-blue);
}
#present .shead .lead {
  margin-top: 1.25em;
}
#present {
  /* --- prizes --- */
}
#present .prizes {
  margin-top: 4.375em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.75em;
}
#present .prize {
  position: relative;
  width: 22.5em;
}
#present .badge {
  width: 5em;
  position: absolute;
  top: -2.0625em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
#present .frame {
  border: 2.1875em solid transparent;
  -o-border-image: url(../img/present/frame_a.svg) 35 stretch;
     border-image: url(../img/present/frame_a.svg) 35 stretch;
  padding: 1.25em 0 1.25em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#present .prize_ttl {
  color: var(--color-blue);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.0416666667em;
  text-align: center;
}
#present .prize_info {
  margin-top: 1.25em;
  width: 18.125em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  gap: 1.125em;
  position: relative;
  z-index: 1;
}
#present .prize_info.col {
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-top: 0;
  row-gap: 0.9375em;
}
#present {
  /* 抽選で 00名様 */
}
#present .numAward {
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--color-blue);
  border-radius: 6.25em;
  padding: 0.125em;
}
#present .numAward_in {
  width: 5.875em;
  height: 5.875em;
  background: #e9f1ff;
  border: 1px solid var(--color-blue);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  font-weight: 700;
  letter-spacing: 0.0714285714em;
  line-height: 1.4;
}
#present .numAward_in .t1 {
  font-size: 0.875em;
}
#present .numAward_in .t2 {
  font-size: 0.75em;
  display: flex;
  align-items: flex-end;
  margin-top: -0.3333333333em;
}
#present .numAward_in .t2 b {
  font-size: 2.5em;
  line-height: 1;
}
#present {
  /* LED / スマホ 訴求（ブラケット付き） */
}
#present .point {
  color: var(--color-purple);
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.0714285714em;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
#present .point::before, #present .point::after {
  content: "";
  width: 1em;
  height: 3.4375em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#present .point::before {
  background-image: url(../img/present/bracket_l.svg);
}
#present .point::after {
  background-image: url(../img/present/bracket_r.svg);
}
#present .point .point_img {
  width: 2.1428571429em;
}
#present .prize_img {
  margin-top: 1.25em;
  width: 18.125em;
}
#present .prize_img img {
  width: 100%;
}
#present .prize_img.stickers {
  margin: 1.125em -0.125em 0;
  width: 18.375em;
}
#present .prize_txt {
  margin-top: 1.5625em;
  display: flex;
  flex-direction: column;
  row-gap: 1.5625em;
}
#present .prize_txt .desc {
  font-weight: 700;
  font-size: 0.875em;
  line-height: 1.8;
  letter-spacing: 0.1428571429em;
  text-align: center;
}
#present .spec {
  background: #f4f8ff;
  padding: 0.625em;
}
#present .spec p {
  font-weight: 500;
  font-size: 0.8125em;
  line-height: 1.6;
  letter-spacing: 0.0769230769em;
}
#present .spec .label {
  color: var(--color-blue);
}
#present .note {
  font-size: 0.625em;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-indent: -1em;
  padding-left: 1em;
}
#present {
  /* B賞のレイアウト */
}
#present .prize_b, #present .prize_header {
  margin-top: 1.25em;
  width: 18.125em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.125em;
}
#present .prize_b .point .point_txt, #present .prize_header .point .point_txt {
  -moz-text-align-last: left;
       text-align-last: left;
}
#present .prize_b .pkg, #present .prize_header .pkg {
  width: 6.375em;
  align-self: flex-end;
}
#present {
  /* --- buttons --- */
}
#present .btns {
  margin: 2.5em auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.25em;
}

/* ------------------------------------------------
 oubo
------------------------------------------------ */
#oubo {
  margin-top: -1.875em;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 1.875em);
}
#oubo > .inner {
  background: #fff url(../img/oubo/bg.png) 0/100% auto repeat-y;
  color: #1e4d9e;
  padding-top: 6.25em;
  padding-bottom: 5em;
}
#oubo .shead .en {
  color: var(--color-purple);
}
#oubo .shead .en::after {
  background-image: url(../img/oubo/title_line.svg);
}
#oubo .shead .catch {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.0555555556em;
  margin-top: 2.7777777778em;
  padding: 0 1em;
  display: inline-block;
  position: relative;
}
#oubo .shead .catch::before, #oubo .shead .catch::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.0625em;
  height: 1.125em;
  background: var(--color-blue);
}
#oubo .shead .catch::before {
  left: 0.25em;
  transform: translateY(-50%) rotate(-22deg);
}
#oubo .shead .catch::after {
  right: 0.25em;
  transform: translateY(-50%) rotate(22deg);
}
#oubo .shead .ttl {
  line-height: 1.5;
  margin-top: 0.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#oubo .shead .ttl .s {
  letter-spacing: -0.02em;
}
#oubo .shead .lead {
  margin-top: 1.875em;
}
#oubo .oubo_h2 {
  font-family: var(--font-mincho);
  font-size: 1.75em;
  line-height: 1.8;
  letter-spacing: 0.0714285714em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625em;
}
#oubo .oubo_h2 .orn {
  width: 0.6428571429em;
  aspect-ratio: 10/15;
  background: url(../img/oubo/ornament.svg) center/contain no-repeat;
  margin-bottom: -0.1785714286em;
  transform: rotate(-90deg);
}
#oubo .flow {
  margin-top: 2.5em;
}
#oubo .flow_inner {
  background: url(../img/oubo/flow_frame.svg) 0% 0%/100% auto no-repeat;
  position: relative;
  width: 22.5em;
  min-height: 105em;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 2.9375em 1.6875em 2.5em;
}
#oubo .period {
  border-width: 0;
  border-radius: 0;
  background: url(../img/oubo/period_frame.svg) 0% 0%/100% auto no-repeat;
  margin: 1.75em auto 0;
  width: 18.75em;
  min-height: 7.0625em;
  position: relative;
  align-content: center;
  box-sizing: border-box;
  text-align: center;
}
#oubo .period .label {
  color: #fff;
  font-weight: 700;
  font-size: 0.875em;
  letter-spacing: 0.0714285714em;
  border-radius: 6.25em;
  background: var(--color-blue);
  margin: 0 auto 0.2857142857em;
  width: 15.625em;
  height: 2.1428571429em;
  display: block;
  align-content: center;
}
#oubo .steps {
  margin-top: 2.1875em;
  display: flex;
  flex-direction: column;
  row-gap: 2.75em;
}
#oubo .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#oubo .step .label span {
  color: var(--color-blue);
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 0.1em;
  background: #CDDCF6;
  width: 6.8em;
  height: 1.8em;
  align-content: center;
  display: inline-block;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}
#oubo .step .txt {
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.8;
  letter-spacing: normal;
  margin-top: 1.2222222222em;
}
#oubo .step .note {
  font-size: 0.625em;
  line-height: 1.4;
  letter-spacing: 0;
  margin-top: 1em;
}
#oubo .phone_card {
  margin-top: 1.5625em;
  width: 16.6875em;
}
#oubo .rules {
  margin-top: 2.5em;
}
#oubo .rules_box {
  color: var(--color-black);
  position: relative;
  margin: 1.25em auto 0;
  width: 22.5em;
  max-height: 12.875em;
  box-sizing: border-box;
  padding: 0.9375em 1.25em;
  padding: 0.625em 0.625em;
  background: #fff;
  border: 1px solid #cdcdcd;
  overflow: hidden;
}
#oubo .rules_box .inner {
  padding-right: 0.5em;
  width: 100%;
  height: 100%;
  width: 21.25em;
  height: 11.625em;
  overflow-y: auto;
}
#oubo .rules_box .inner::-webkit-scrollbar {
  width: 0.5em;
}
#oubo .rules_box .inner::-webkit-scrollbar-thumb {
  background: #DEDEDE;
}
#oubo .rules_box .pg {
  font-size: 0.75em;
  letter-spacing: 0.0416666667em;
  line-height: 1.6;
}
#oubo .rules_box .pg + .pg {
  margin-top: 1.5em;
}
#oubo .rules_box .pg > * {
  font-size: 1em;
  font-weight: normal;
}
#oubo .rules_box .pg h4 {
  font-weight: bold;
}
#oubo .rules_box .pg p + p,
#oubo .rules_box .pg .list + p {
  margin-top: 1em;
}
#oubo .rules_box .pg ol li + li, #oubo .rules_box .pg ul li + li {
  margin-top: 0.25em;
}
#oubo .rules_box .pg .list li {
  text-indent: -1em;
  padding-left: 1em;
}
#oubo .rules_box .pg .num li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
#oubo .btns {
  margin-top: 2.5em;
  display: flex;
  justify-content: center;
}

/* ------------------------------------------------
 message
------------------------------------------------ */
#message > .inner {
  color: var(--color-black);
  background: url(../img/message_kv.webp) 0 0/100% auto no-repeat;
  padding-left: 1.25em;
  min-height: 23.75em;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
#message .msg_row {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 1.875em;
       column-gap: 1.875em;
}
#message .copy {
  display: flex;
  -moz-column-gap: 0.375em;
       column-gap: 0.375em;
  flex-shrink: 0;
  align-items: start;
}
#message .copy .line {
  color: #fff;
  font-size: 1.25em;
  font-family: var(--font-mincho);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  background: var(--color-purple);
  writing-mode: vertical-rl;
  padding: 0.7em 0.55em;
}
#message .msg_txt {
  font-size: 1em;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.125em;
}
#message .period {
  color: var(--color-purple);
  margin-top: 1.875em;
}
#message .period .label {
  font-size: 0.75em;
  letter-spacing: 0.1666666667em;
  display: block;
}

/* ------------------------------------------------
 action
------------------------------------------------ */
#action > .inner {
  color: #fff;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  min-height: 51.75em;
  align-content: center;
}
#action .act_ttl {
  font-family: var(--font-mincho);
  font-size: 1.875em;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
#action .act_txt {
  margin-top: 2.5em;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.0625em;
}
#action .act_txt p + p {
  margin-top: 1.5em;
}
#action .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#action .bg .img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  animation: actionFade 12s infinite ease-in-out;
}
#action .bg .img:nth-child(1) {
  animation-delay: 0s;
}
#action .bg .img:nth-child(2) {
  animation-delay: -8s;
}
#action .bg .img:nth-child(3) {
  animation-delay: -4s;
}

@keyframes actionFade {
  0% {
    z-index: 2;
    opacity: 1;
  } /* 次として背面で待機 → 前面が1秒かけてフェードして見え始める */
  11.10% {
    z-index: 2;
    opacity: 1;
  }
  11.11% {
    z-index: 3;
    opacity: 1;
  } /* 最前面（表示中）へ */
  33.33% {
    z-index: 3;
    opacity: 1;
  } /* 表示（切替間隔3秒・うち静止 約2秒） */
  44.44% {
    z-index: 3;
    opacity: 0;
  } /* 自分だけ1秒かけてフェードアウト（最前面のまま） */
  44.45% {
    z-index: 1;
    opacity: 0;
  } /* 透明なうちに最背面へ */
  55.55% {
    z-index: 1;
    opacity: 1;
  } /* 背面で不透明に戻す（前面に隠れて見えない） */
  77.77% {
    z-index: 1;
    opacity: 1;
  }
  77.78% {
    z-index: 2;
    opacity: 1;
  } /* 次の番に備えて1つ前へ */
  100% {
    z-index: 2;
    opacity: 1;
  }
}
/* ------------------------------------------------
 lineup
------------------------------------------------ */
#lineup .sheader {
  overflow: hidden;
}
#lineup .sheader .title {
  color: var(--color-blue);
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: normal;
  margin-left: -1em;
  margin-right: -1em;
}
#lineup aside {
  margin: 1.25em 0.625em 0;
}
#lineup aside .note {
  font-size: 0.625em;
  line-height: 1.4;
}
#lineup aside .note li {
  text-indent: -1em;
  padding-left: 1em;
}

/* ------------------------------------------------
 左右壁（PCのみ）
------------------------------------------------ */
/* ----------------------------
 wall / navi
------------------------------*/
@media screen and (min-width: 768px) {
  .wall.left::before {
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .wall.left.show::before {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  #contents_header .navi .list, #contents_header .navi .btns {
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  #contents_header .navi.show .list, #contents_header .navi.show .btns {
    opacity: 1;
  }
}