@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;
  }
}

/* ------------------------------------------------
 remodal movie
------------------------------------------------ */
.remodal.movie {
  width: 100%;
}
.remodal.movie > .inner {
  padding: 3.125em 0.9375em 1.875em;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.remodal.movie > .inner.show {
  opacity: 1;
}
.remodal.movie .movie {
  margin: 0 auto;
}
.remodal.movie .movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .remodal.movie .movie {
    width: 21.875em;
  }
}
@media screen and (min-width: 768px) {
  .remodal.movie > .inner {
    border-radius: 0;
    padding: 0;
  }
  .remodal.movie .movie {
    max-width: 100%;
    width: 142dvh;
  }
  .remodal.movie button.remodal_close {
    right: 0;
  }
}

/* ------------------------------------------------
 checkpoints
------------------------------------------------ */
#checkpoints {
  background: linear-gradient(180deg, #FFF 0%, #E5EDF8 13.46%);
}
#checkpoints .checkpoints_header {
  color: var(--color-blue);
  font-family: var(--font-mincho);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-top: 3.75em;
}
#checkpoints .checkpoints_header .banzai {
  font-size: 1.25em;
  letter-spacing: 0.15em;
  display: flex;
  justify-content: center;
  align-items: center;
}
#checkpoints .checkpoints_header .banzai::before, #checkpoints .checkpoints_header .banzai::after {
  content: "";
  border-top-width: 1px;
  border-top-style: solid;
  width: 1.4em;
}
#checkpoints .checkpoints_header .banzai::before {
  margin-right: 0.2em;
  transform: rotate(63deg);
}
#checkpoints .checkpoints_header .banzai::after {
  transform: rotate(-63deg);
}
#checkpoints .checkpoints_header .l {
  font-size: 1.75em;
  letter-spacing: 0.0714285714em;
  margin-top: 0.3571428571em;
}

/* ------------------------------------------------
 intro
------------------------------------------------ */
#intro > .inner {
  padding-top: 5em;
}
#intro .sheader .title {
  margin: 0 auto;
  width: 17.875em;
}
#intro .sbody .movie {
  margin: 2.1875em auto 0;
  width: 21.875em;
}
#intro .sbody .copy {
  color: #000;
  font-family: var(--font-mincho);
  font-size: 1.125em;
  text-align: center;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.1111111111em;
  margin-top: 1.6666666667em;
}

/* ------------------------------------------------
 point
------------------------------------------------ */
.section.point {
  margin-top: 3.125em;
}
.section.point h2, .section.point h3, .section.point h4, .section.point p {
  margin: 0;
}
.section.point > .inner {
  position: relative;
}
.section.point .sheader {
  width: 10.625em;
  margin: 0 2.1875em 0 auto;
  position: relative;
  z-index: 2;
}
.section.point .sheader .num {
  color: var(--color-blue);
  font-family: var(--font-mincho);
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1428571429em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.4285714286em;
       column-gap: 0.4285714286em;
}
.section.point .sheader .num .ico {
  background: url(../img/common/icon_square_blue.svg) 50% 50%/contain no-repeat;
  width: 0.8571428571em;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.section.point .sheader .title {
  color: var(--color-purple2);
  font-family: var(--font-mincho);
  font-size: 1em;
  font-weight: 700;
  line-height: 1.1;
  width: 10.625em;
  margin-top: 1.0625em;
  padding: 2.0625em 0 2.8125em;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5em;
  position: relative;
}
.section.point .sheader .title::before {
  content: "";
  border: 2.25em solid transparent;
  -o-border-image: url(../img/points/title_frame.svg) 36 stretch;
     border-image: url(../img/points/title_frame.svg) 36 fill stretch;
  position: absolute;
  inset: 0;
}
.section.point .sheader .title .line {
  font-size: 1.75em;
  letter-spacing: 0.1071428571em;
  flex-shrink: 0;
  position: relative;
}
.section.point .sheader .title .l1 {
  font-size: 1.5em;
}
.section.point .sheader .title .l2, .section.point .sheader .title .l3 {
  background: linear-gradient(rgba(78, 13, 148, 0.1), rgba(78, 13, 148, 0.1)) no-repeat;
  padding-bottom: 0.1071428571em;
}
.section.point .sheader .title .kuten {
  background-size: 100% calc(100% - 0.5714285714em);
}
.section.point .sheader .title .ur {
  font-style: normal;
  margin-top: 0;
  padding-left: 0;
}
.section.point .sbody {
  background: #eff4fb;
  margin-top: -1.5em;
  padding: 3.125em 0;
  position: relative;
  overflow-x: clip;
}
.section.point .deco {
  position: relative;
  z-index: 1;
}
.section.point .deco .lantern {
  width: 24.375em;
  position: absolute;
  left: 0;
  top: -0.3125em;
}
.section.point .deco .chara.jinshi {
  width: 7.5em;
  position: absolute;
  left: 2em;
}
.section.point .deco .chara.jinshi::before {
  content: "";
  background: url(../img/points/chara_jinshi_bg.svg) 0 0/contain no-repeat;
  width: 8.125em;
  aspect-ratio: 1/1;
  position: absolute;
  left: -0.3125em;
  top: 1.75em;
}
.section.point .deco .chara.jinshi img {
  position: relative;
}
.section.point .chara.maomao {
  position: absolute;
  z-index: 1;
}
.section.point .note {
  font-size: 0.625em;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-indent: 0;
  padding-left: 0;
}
.section.point .summary {
  color: #000;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.0277777778em;
  text-align: center;
  margin-top: 1.6666666667em;
  position: relative;
}
.section.point .summary b {
  color: var(--color-blue);
  font-weight: 700;
  background-color: #DDE8FB;
  padding: 0 0.2em;
  margin: 0 -0.2em;
  position: relative;
}
.section.point .summary b.inline {
  margin-left: 0;
}
.section.point .summary::before, .section.point .summary::after {
  content: "";
  background-image: url(../img/points/comment_line.svg);
  background-position: 50% 50%;
  background-size: 0.8333333333em 13.8888888889em;
  background-repeat: no-repeat;
  width: 0.8333333333em;
  position: absolute;
}
.section.point .summary::before {
  left: 1.2222222222em;
}
.section.point .summary::after {
  right: 1.4444444444em;
}

/* ----------------------------
 point1
------------------------------*/
#point1 .deco .chara.jinshi {
  top: 10.3125em;
}
#point1 .troubles {
  width: 20.3125em;
  height: 4.125em;
  margin: 0 auto;
  position: relative;
}
#point1 .troubles .balloon {
  background: #eff4fb;
  padding: 0.25em;
  position: absolute;
}
#point1 .troubles .balloon .txt {
  color: var(--color-blue);
  font-size: 1em;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03125em;
  text-align: center;
  border: 1px dashed var(--color-blue);
  border-radius: 6.25em;
  padding: 0.375em 1.25em;
  display: block;
}
#point1 .troubles .b1 {
  left: 0;
  top: 0;
}
#point1 .troubles .b1 .txt {
  width: 10.625em;
}
#point1 .troubles .b2 {
  left: 9.8125em;
  top: 1.0625em;
}
#point1 .troubles .b2 .txt {
  width: 10em;
}
#point1 .cause {
  width: 17.1875em;
  margin: 0.375em auto 0;
  text-align: center;
}
#point1 .cause .lead {
  color: #000;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.0357142857em;
}
#point1 .cause .ttl {
  color: var(--color-blue);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.0416666667em;
  border-bottom: 1px solid var(--color-blue);
  margin-top: -0.1666666667em;
  padding-bottom: 0.0833333333em;
}
#point1 .arrow {
  background: #c3d6f2;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 2.1875em;
  height: 1.03125em;
  margin: 1em auto 0;
}
#point1 .nutrients {
  background: #fff;
  border-radius: 1.25em;
  width: 21.25em;
  margin: 2.75em auto 0;
  padding: 0 1.25em 1.25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}
#point1 .nutrients .label {
  color: #fff;
  background: var(--color-blue);
  border-radius: 7.1428571429em;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.0714285714em;
  text-align: center;
  margin-top: -2em;
  padding: 0.7142857143em 2.1428571429em 0.8571428571em;
}
#point1 .nutrients .balls {
  width: 17.1875em;
  margin-top: 0.8125em;
  margin-bottom: -0.875em;
}
#point1 .nutrients .chara.maomao {
  width: 7.3125em;
  left: 15.625em;
  top: 8.625em;
}
#point1 .summary::before, #point1 .summary::after {
  height: calc(100% + 0.4444444444em);
  top: -0.2222222222em;
}

/* ----------------------------
 point2
------------------------------*/
#point2 .sheader .title {
  padding-bottom: 0.9375em;
}
#point2 .deco .chara.jinshi {
  top: 11.5em;
}
#point2 .summary {
  margin-top: 0;
}
#point2 .summary::before, #point2 .summary::after {
  height: 8.7777777778em;
  top: 0.0555555556em;
}
#point2 .balance {
  line-height: 1.4;
  text-align: center;
  margin-top: 1.5em;
}
#point2 .foods {
  width: 21.5em;
  margin: 1.875em auto 0;
  position: relative;
}
#point2 .foods .list {
  display: flex;
  justify-content: space-between;
}
#point2 .foods .card {
  width: 6.5625em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#point2 .foods .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.25em;
  position: relative;
  z-index: 1;
}
#point2 .foods .ing {
  color: var(--color-blue);
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 -1em;
  white-space: nowrap;
}
#point2 .foods .mg {
  color: #fff;
  background: var(--color-blue);
  border-radius: 7.1428571429em;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 1.7142857143em;
  padding: 0 1.0714285714em 0.2142857143em;
  align-content: center;
  white-space: nowrap;
}
#point2 .foods .box {
  background: #fff;
  border-radius: 0.625em;
  width: 100%;
  height: 9.375em;
  margin-top: -0.78125em;
  position: relative;
}
#point2 .foods .pic {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#point2 .foods .card:nth-child(1) .pic {
  width: 3.7375em;
  top: 1.08125em;
}
#point2 .foods .card:nth-child(2) .pic {
  width: 3.9375em;
  top: 1.33125em;
}
#point2 .foods .card:nth-child(3) .pic {
  width: 4.5875em;
  top: 2.0875em;
}
#point2 .foods .food {
  width: 5.0625em;
  position: absolute;
  left: 50%;
  top: 5.5em;
  transform: translateX(-50%);
  text-align: center;
}
#point2 .foods .card:nth-child(3) .food {
  width: 4.375em;
}
#point2 .foods .fname {
  font-size: 0.625em;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: -0.3em;
  white-space: nowrap;
}
#point2 .foods .amount {
  color: var(--color-purple2);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.0208333333em;
  border-bottom: 1px solid var(--color-purple2);
  padding-bottom: 1px;
  white-space: nowrap;
}
#point2 .foods .amount .unit {
  font-size: 0.5em;
  margin-left: 0.1666666667em;
}
#point2 .foods .amount .ast {
  font-size: 0.3225em;
}
#point2 .foods .note {
  width: 34em;
  margin: 1em auto 0;
}
#point2 .foods .note .src {
  width: 25.7em;
  margin-top: 1em;
}
#point2 .foods .chara.maomao {
  width: 7.3125em;
  left: 15.625em;
  top: 12.875em;
}

/* ----------------------------
 point3
------------------------------*/
#point3 .sheader .title {
  padding-bottom: 2em;
}
#point3 .sheader .title .l1 {
  font-size: 1.75em;
}
#point3 .deco .lantern {
  left: -0.25em;
}
#point3 .deco .chara.jinshi {
  top: 12.125em;
}
#point3 .reasons {
  background: #fff;
  border-radius: 1.25em;
  width: 21.25em;
  margin: 0 auto;
  padding: 1.5625em 1.875em 1.875em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5625em;
  overflow-x: clip;
}
#point3 .reasons .h {
  color: var(--color-blue);
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.0454545455em;
  text-align: center;
  border-bottom: 1px solid var(--color-blue);
  padding-bottom: 0.0909090909em;
  white-space: nowrap;
}
#point3 .reasons .list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.875em;
}
#point3 .reasons .item + .item {
  border-top: 1px dashed rgba(30, 77, 158, 0.3);
  padding-top: 0.875em;
}
#point3 .reasons .item {
  min-height: 6.25em;
  position: relative;
}
#point3 .reasons .txt {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.0625em;
  white-space: nowrap;
  padding-left: 1.875em;
  position: relative;
  z-index: 1;
}
#point3 .reasons .txt::before {
  content: "";
  background: url(../img/points/icon_check.svg) 0 0/contain no-repeat;
  width: 1.25em;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 0.1875em;
}
#point3 .reasons .txt .mk {
  color: var(--color-purple2);
}
#point3 .reasons .pic {
  width: 6.25em;
  position: absolute;
  right: 0;
  top: 0;
}
#point3 .summary {
  letter-spacing: 0.0555555556em;
  padding-right: 1em;
}
#point3 .summary::before, #point3 .summary::after {
  height: 10.6666666667em;
  top: 0;
}
#point3 .summary .chara.maomao {
  width: 6.5em;
  left: 15.2777777778em;
  top: 4.3333333333em;
}

/* ----------------------------
 point4
------------------------------*/
#point4 .sheader .title {
  padding-bottom: 2.4375em;
}
#point4 .sheader .title .l1 {
  line-height: 1.05;
}
#point4 .deco .lantern {
  left: -0.25em;
}
#point4 .deco .chara.jinshi {
  top: 10.875em;
}
#point4 .emulsify {
  width: 21.25em;
  margin: 0 auto;
}
#point4 .emulsify .h {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.1875em;
}
#point4 .emulsify .h .tag {
  color: #fff;
  background: #7e9bcc;
  border-radius: 7.1428571429em;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.0714285714em;
  text-align: center;
  padding: 0 1.4285714286em 0.2142857143em;
}
#point4 .emulsify .h .ttl {
  color: var(--color-blue);
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.0416666667em;
  text-align: center;
  white-space: nowrap;
}
#point4 .emulsify .compare {
  margin-top: 1.25em;
  display: flex;
  justify-content: space-between;
}
#point4 .emulsify .col {
  width: 10em;
}
#point4 .emulsify .ch {
  color: #fff;
  border-radius: 0.9375em 0.9375em 0 0;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.0714285714em;
  text-align: center;
  height: 2.5em;
  align-content: center;
}
#point4 .emulsify .no .ch {
  background: #97a0ae;
}
#point4 .emulsify .yes .ch {
  background: var(--color-blue);
}
#point4 .emulsify .box {
  background: #fff;
  border-radius: 0 0 1.25em 1.25em;
  padding-top: 1.5625em;
  height: 14.6875em;
  position: relative;
}
#point4 .emulsify .yes .box {
  border: 2px solid var(--color-blue);
}
#point4 .emulsify .pic {
  width: 7.375em;
}
#point4 .emulsify .no .pic {
  margin-left: 1.875em;
}
#point4 .emulsify .yes .pic {
  margin-left: 1.625em;
}
#point4 .emulsify .txt {
  color: #4a4f58;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
#point4 .emulsify .txt b {
  font-size: 1.2857142857em;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
#point4 .emulsify .txt b::after {
  content: "";
  border-top-width: 2px;
  border-top-style: solid;
  width: 100%;
  display: block;
}
#point4 .emulsify .yes .txt {
  color: var(--color-purple2);
}
#point4 .emulsify .note {
  margin-top: 1em;
}
#point4 .summary {
  letter-spacing: 0.0555555556em;
  padding-right: 2em;
}
#point4 .summary::before, #point4 .summary::after {
  height: 7.2222222222em;
  top: 0;
}
#point4 .summary .chara.maomao {
  width: 6.5em;
  left: 15.1666666667em;
  top: 1.1111111111em;
}

/* ------------------------------------------------
 lineup
------------------------------------------------ */
#lineup {
  background-color: #e5edf8;
  margin-top: -1.5625em;
  position: relative;
  z-index: 2;
}
#lineup > .inner {
  padding: 5.625em 0.9375em 1.875em;
  box-sizing: border-box;
}
#lineup .sheader .title {
  text-align: center;
}
#lineup .products {
  margin-top: 4.375em;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 3.125em;
}
#lineup .product {
  background-color: #fff;
  border: 0.3125em solid #fff;
  border-radius: 1.875em;
  box-sizing: border-box;
}
#lineup .product .head {
  margin: 0 1.25em;
  display: grid;
  grid-template-columns: 8.625em 1fr;
  align-items: center;
  justify-content: center;
  gap: 0.9375em 1.25em;
}
#lineup .product .head .img {
  margin-top: -1.25em;
  flex-shrink: 0;
  grid-row: 1/span 1;
  grid-column: 1/span 1;
}
#lineup .product .head .txt .copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625em;
  grid-row: 1/span 1;
  grid-column: 2/span 1;
}
#lineup .product .head .txt .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 .txt .badge {
  margin: 1.25em auto 0;
}
#lineup .product .head .copy_note {
  color: var(--color-blue);
  font-size: 0.625em;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: normal;
  grid-row: 2/span 1;
  grid-column: 1/span 2;
}
#lineup .product .body {
  color: #fff;
  border-radius: 0 0 1.5625em 1.5625em;
  margin-top: 1.875em;
  padding: 2.1875em 1.25em 2.1875em;
}
#lineup .product .body .label {
  font-size: 0.6875em;
  line-height: 1;
  border: 1px solid #fff;
  margin: 0 auto 0.4545454545em;
  padding: 0.2727272727em 0.5454545455em 0.3636363636em;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
#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.5555555556em;
  background-color: #fff;
  min-height: 2.2222222222em;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  box-sizing: border-box;
}
#lineup .product .body .functions li.wide {
  background-color: #EEE7F5;
  font-size: 1.375em;
  min-height: 2.2727272727em;
}
#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 {
  font-family: inherit;
  border: 2px solid #fff;
  margin: 0 auto;
  margin-top: 1.875em;
  width: 17.5em;
  height: 3.75em;
}
#lineup .product .buy .txt {
  font-size: 1.25em;
  font-weight: bold;
}
#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: 1em;
}
#lineup .product .first .box > .note {
  color: var(--color-blue);
  font-size: 0.625em;
  letter-spacing: normal;
  text-indent: 0;
  padding-left: 0;
  align-self: flex-start;
}
#lineup .product .first .box > .note .list + .list {
  margin-top: 1em;
}
#lineup .product .first .box > .note .list.num li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
#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 .first .cartbtns .cv_btn .buy {
  font-weight: 700;
  margin-top: 0;
}
#lineup .product .first .cartbtns .cv_btn.firsttime .buy {
  font-size: 1.125em;
  width: 15em;
  height: 3.3333333333em;
}
#lineup .product .first .cartbtns .cv_btn.member {
  margin-top: 1em;
}
#lineup .product .first .cartbtns .cv_btn.member .buy {
  color: var(--color-blue);
  font-size: 0.875em;
  border-color: var(--color-blue);
  background-color: #fff;
  width: 17.1428571429em;
  height: 3.2142857143em;
}
#lineup .product.premium .head .txt {
  align-self: end;
  padding-bottom: 0.625em;
}
#lineup .product.premium .body {
  background: linear-gradient(90deg, #E4C374 2.09%, #C29731 100%);
}
#lineup .product.premium .body .first .trial + .price {
  margin-top: -0.3125em;
}
#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;
}
#lineup aside {
  margin: 1.25em 0.625em 0;
}
#lineup aside .note {
  color: var(--color-black);
  font-size: 0.625em;
}
/* ------------------------------------------------
 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 .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 .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 .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 .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 .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 .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 .team_logo {
  text-align: center;
  background-color: #fff;
  margin: 1.25em auto 0;
  padding: 0.875em 0 0.75em;
  width: 11.875em;
}
#interview .team_logo img {
  width: 10em;
}
#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 .card.interview2 .balloon::before, #interview .card.interview3 .balloon::before, #interview .card.interview5 .balloon::before {
  top: 8.125em;
}
#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: 10.3125em;
  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: 10.3125em;
}
#interview .balloon .txt {
  color: var(--color-blue);
  font-weight: 900;
  font-size: 1.125em;
  line-height: 1.4;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
#interview .arrows {
  margin: 0.625em 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;
  }
}

/* ----------------------------
 newマーク
------------------------------*/
/* ------------------------------------------------
 download
------------------------------------------------ */
#download {
  margin-top: 5em;
}
#download > .inner {
  color: #242424;
  padding-top: 6.5625em;
  min-height: 76.625em;
  position: relative;
  overflow: hidden;
}
#download > .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/download/bg.webp) center top/100% auto 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 .dhead .heading {
  text-align: center;
  line-height: 1;
  position: relative;
}
#download .dhead .heading::after {
  content: "";
  background: url(../img/download/h_brushline.svg) 0 0/contain no-repeat;
  width: 11.625em;
  aspect-ratio: 186/29;
  position: absolute;
  left: 50%;
  top: 0.625em;
  transform: translateX(-50%);
}
#download .dhead .heading .en {
  font-size: 1.25em;
  display: block;
}
#download .logo {
  position: relative;
  margin-top: 1.875em;
  width: 16.25em;
}
#download .ttl {
  color: var(--color-blue);
  font-family: var(--font-mincho);
  font-size: 1.875em;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#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 {
  margin: 2.5em auto 0;
}

/* ----------------------------
 slider
------------------------------*/
#download_wp_slider .swiper-wrapper {
  margin: 0 auto;
  height: 37.9375em;
}
#download_wp_slider li {
  background: url(../img/download/phone.svg) 50% 0/contain no-repeat;
  position: relative;
}
#download_wp_slider li .wp {
  border-radius: 1.5em;
  margin: 2.5625em auto 0;
  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: 3.8em;
  z-index: 3;
  filter: drop-shadow(0.25em 0.25em 0.125em rgba(0, 0, 0, 0.1));
}
#download_wp_slider li.wp_2 .tag {
  background-color: #7FAA7A;
}
#download_wp_slider li.wp_3 .tag {
  background-color: #A174BD;
}
#download_wp_slider li.wp_4 .tag {
  background-color: #62AACE;
}

/* ----------------------------
 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);
}

/* ------------------------------------------------
 top common
------------------------------------------------ */
.section .movie_thumb {
  position: relative;
}
.section .movie_thumb::after {
  content: "";
  background: url(../img/common/icon_movieplay.svg) 0 0/contain no-repeat;
  width: 4.375em;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
}
@media screen and (any-hover: hover) {
  .section .movie_thumb {
    overflow: hidden;
  }
  .section .movie_thumb img {
    transition: transform 0.2s ease;
  }
  .section .movie_thumb:hover img {
    transform: scale(1.04);
  }
}

/* ------------------------------------------------
 kv
------------------------------------------------ */
#kv .inner {
  position: relative;
}
#kv .kv .copyright {
  font-size: 0.625em;
  font-weight: 500;
  line-height: 1;
  text-align: right;
  margin-top: 1em;
  margin-right: 1em;
  display: block;
}
#kv .enkin {
  margin: 2.5em auto 0;
  width: 21.3125em;
}

/* ------------------------------------------------
 story
------------------------------------------------ */
#story {
  margin-top: 3.75em;
  position: relative;
}
#story::after {
  border-radius: 50%;
  width: 66.0625em;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
#story > .inner {
  color: #fff;
  background-color: var(--color-blue);
  padding: 6.25em 0;
  clip-path: shape(from 0% 2.375em, curve to 100% 2.375em with 50% -2.375em, vline to calc(100% - 2.375em), curve to 0% calc(100% - 2.375em) with 50% calc(100% + 2.375em), vline to 2.375em, close);
  position: relative;
}
#story > .inner::before {
  content: "";
  background: url(../img/eye_pupil.svg) 0 0/contain no-repeat;
  width: 16.25em;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  bottom: 23em;
  transform: translateX(-50%);
  z-index: -1;
}
#story .sheader .title {
  text-align: center;
  line-height: 1;
  position: relative;
}
#story .sheader .title::after {
  content: "";
  background: url(../img/common/h_brushline.svg) 0 0/contain no-repeat;
  width: 11.625em;
  aspect-ratio: 186/29;
  position: absolute;
  left: 50%;
  top: 0.625em;
  transform: translateX(-50%);
}
#story .sheader .title .en {
  font-size: 1.25em;
  display: block;
}
#story .sheader .logo {
  margin: 3.625em auto 0;
  width: 20.125em;
}
#story .sheader .summary {
  font-size: 0.875em;
  font-weight: bold;
  text-align: center;
  line-height: 1.9;
  margin-top: 1.4285714286em;
}
#story .sbody {
  font-weight: 700;
  text-align: center;
}
#story .sbody .movie {
  margin: 2.5em auto 0;
  width: 21.875em;
}
#story .sbody .copy {
  font-size: 1.875em;
  letter-spacing: 0.0666666667em;
  line-height: 1.6;
  margin-top: 2em;
}
#story .sbody .txt {
  font-size: 1em;
  letter-spacing: 0.0625em;
  line-height: 2;
  margin-top: 2.5em;
}
@media screen and (min-width: 768px) {
  #story {
    margin-top: 0;
  }
  #story > .inner {
    padding-top: 4.6875em;
    clip-path: shape(from 0% 0%, hline to 100%, vline to calc(100% - 2.375em), curve to 0% calc(100% - 2.375em) with 50% calc(100% + 2.375em), vline to 2.375em, close);
  }
}

/* ------------------------------------------------
  interview
------------------------------------------------ */
#interview > .inner {
  color: #fff;
  background: url(../img/interview/bg.webp) no-repeat center top;
  background-size: 100% auto;
  min-height: 91.5625em;
  box-sizing: border-box;
  position: relative;
}
#interview > .inner::before {
  content: "";
  background: #E5EDF8;
  width: 100%;
  height: 6.25em;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#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;
}

/* ------------------------------------------------
 banner
------------------------------------------------ */
#banner {
  margin-top: 5em;
}
#banner > .inner {
  margin: 0 auto;
  width: 21.875em;
}
#banner .banner a {
  display: block;
}
#banner .txt {
  font-weight: 500;
  text-align: center;
  margin-top: 1.875em;
}
#banner .txt .date {
  font-size: 0.75em;
  letter-spacing: 0.0833333333em;
}
#banner .txt .detail {
  font-size: 0.875em;
  letter-spacing: 0.0416666667em;
  margin-top: 0.8333333333em;
}
#banner .txt .note {
  color: var(--color-blue);
  font-size: 0.875em;
  font-weight: bold;
  line-height: 1.7;
  border-width: 1px;
  border-style: solid;
  margin: 1.4285714286em 1.0714285714em 0;
  padding: 0.7142857143em 0;
}

/* ------------------------------------------------
 message
------------------------------------------------ */
#message {
  margin-top: 3.125em;
}
#message > .inner {
  text-align: center;
  border-radius: 1.25em;
  border: 0.25em solid #CDDCF6;
  background: #E1EBFD;
  margin: 0 auto;
  padding-top: 2.5em;
  padding-bottom: 2.1875em;
  width: 21.875em;
}
#message .sheader .banzai {
  color: var(--color-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.125em;
}
#message .sheader .banzai .line {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.0357142857em;
}
#message .sheader .banzai::before, #message .sheader .banzai::after {
  content: "";
  border-left-width: 1px;
  border-left-style: solid;
  height: 2.9375em;
  display: block;
}
#message .sheader .banzai::before {
  transform: rotate(-26deg);
}
#message .sheader .banzai::after {
  transform: rotate(26deg);
}
#message .sheader .txt {
  color: #FFF;
  font-family: var(--font-mincho);
  font-size: 1.75em;
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0.0357142857em;
  line-height: 1;
  background-color: var(--color-blue);
  margin-top: 0.5em;
  padding: 0.0714285714em 0.1785714286em 0.1428571429em;
  display: inline-block;
}
#message .sbody .img {
  border-radius: 10px;
  margin: 2.125em auto 0;
  width: 19.375em;
  overflow: hidden;
}
#message .sbody .message {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.0625em;
  margin-top: 1.5625em;
}
#message .sbody .note {
  font-size: 0.625em;
  font-weight: 500;
  margin-top: 1em;
}

/* ------------------------------------------------
 lineup
------------------------------------------------ */
#lineup {
  z-index: 0;
}
#lineup .sheader {
  margin: 0 1.5625em;
  display: flex;
  align-items: center;
}
#lineup .sheader .title {
  color: var(--color-blue);
  font-family: var(--font-mincho);
  font-size: 1.625em;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
  letter-spacing: 0.0384615385em;
}
#lineup .sheader .img {
  width: 7.5em;
}

/* ------------------------------------------------
 左右壁（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;
  }
}

/* ------------------------------------------------
 lineup
------------------------------------------------ */
#lineup .product .body {
  padding-bottom: 1.25em;
}
#lineup .product .body .note.bottom {
  color: var(--color-blue);
  border-radius: 1em;
  background-color: #fff;
  text-align: left;
  text-indent: 0;
  margin-top: 3em;
  padding: 1.5em;
}
#lineup .product .body .note.bottom b {
  font-weight: bold;
}
#lineup .product .body .note.bottom u {
  text-decoration: none;
  background: linear-gradient(transparent 60%, rgba(255, 210, 0, 0.4) 60%);
}