@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line-heightの上下をなくす
===================================================== */
/* letter-spacingの文末をなくす
===================================================== */
/* clearfix
===================================================== */
/* hover
===================================================== */
/* linkcolor
===================================================== */
/* z-index
===================================================== */
/* rem変換
===================================================== */
/* %変換
===================================================== */
/* vh変換(SP用)
===================================================== */
/* vw変換(SP用)
===================================================== */
/* vw変換(PC用) minとmax
===================================================== */
/* spサイズをpcへ引き伸ばし
===================================================== */
/* ラインハイト計算
===================================================== */
/* レタースペーシング計算
===================================================== */
/* right-arrow
===================================================== */
/* aspect-area(padding-top)
===================================================== */
/* aspect-area-h(height)
===================================================== */
/* youtube
===================================================== */
/* margin: 0 auto
===================================================== */
/* color
===================================================== */
/* font-size
===================================================== */
/* font-family
===================================================== */
/* コンテンツ幅
===================================================== */
/* 余白
===================================================== */
/* メディアクエリー
===================================================== */
/* loopslide_x
============================================ */
/* loopslide_y
============================================ */
/* speed
============================================ */
/* fadeIn
============================================ */
.fadeIn {
  opacity: 0;
  transition: opacity 0.8s;
}
.fadeIn.on {
  opacity: 1;
}

.animeWrap .animeWrap_item__in {
  opacity: 0;
  transition: opacity 0.8s;
}
.animeWrap.on .animeWrap_item__in {
  opacity: 1;
}

/* fadeUp
============================================ */
.fadeUp {
  opacity: 0;
  transform: translateY(7%);
  transition: opacity 0.8s, transform 0.8s;
}
.fadeUp.on {
  opacity: 1;
  transform: translateY(0);
}

.animeWrap .animeWrap_item__up {
  opacity: 0;
  transform: translateY(7%);
  transition: opacity 0.8s, transform 0.8s;
}
.animeWrap.on .animeWrap_item__up {
  opacity: 1;
  transform: translateY(0);
}

/* fadeDown
============================================ */
.fadeDown {
  opacity: 0;
  transform: translateY(-7%);
  transition: opacity 0.8s, transform 0.8s;
}
.fadeDown.on {
  opacity: 1;
  transform: translateY(0);
}

.animeWrap .animeWrap_item__down {
  opacity: 0;
  transform: translateY(-7%);
  transition: opacity 0.8s, transform 0.8s;
}
.animeWrap.on .animeWrap_item__down {
  opacity: 1;
  transform: translateY(0);
}

/* fadeLeft
============================================ */
.fadeLeft {
  opacity: 0;
  transform: translateX(7%);
  transition: opacity 0.8s, transform 0.8s;
}
.fadeLeft.on {
  opacity: 1;
  transform: translateX(0);
}

.animeWrap .animeWrap_item__left {
  opacity: 0;
  transform: translateX(7%);
  transition: opacity 0.8s, transform 0.8s;
}
.animeWrap.on .animeWrap_item__left {
  opacity: 1;
  transform: translateX(0);
}

/* fadeRight
============================================ */
.fadeRight {
  opacity: 0;
  transform: translateX(-7%);
  transition: opacity 0.8s, transform 0.8s;
}
.fadeRight.on {
  opacity: 1;
  transform: translateX(0);
}

.animeWrap .animeWrap_item__right {
  opacity: 0;
  transform: translateX(-7%);
  transition: opacity 0.8s, transform 0.8s;
}
.animeWrap.on .animeWrap_item__right {
  opacity: 1;
  transform: translateX(0);
}

/* colorBeta
============================================ */
.colorBeta {
  opacity: 0;
  position: relative;
  transition: opacity 0.8s;
}
.colorBeta::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 1s;
  transition-delay: 0.5s;
  opacity: 1;
}
.colorBeta.on {
  opacity: 1;
}
.colorBeta.on::before {
  opacity: 0;
}

.colorBetaWrap .colorBetaWrap_item {
  opacity: 0;
  position: relative;
  transition: opacity 0.8s;
}
.colorBetaWrap .colorBetaWrap_item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity 1s;
  transition-delay: 0.5s;
  opacity: 1;
}
.colorBetaWrap.on .colorBetaWrap_item {
  opacity: 1;
}
.colorBetaWrap.on .colorBetaWrap_item::before {
  opacity: 0;
}

/* blur
===================================================== */
.blur {
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.02);
}
.blur.on {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.animeWrap .animeWrap_item__blur {
  opacity: 0;
  filter: blur(5px);
  transform: scale(1.02);
}
.animeWrap.on .animeWrap_item__blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

@-webkit-keyframes blurAnime {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes blurAnime {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
/* .big
===================================================== */
.big {
  transform: scale(1);
}
.big.on {
  -webkit-animation-name: big;
          animation-name: big;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
}
@-webkit-keyframes big {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
  40% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes big {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
  40% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/* .bigInfinite
===================================================== */
.bigInfinite {
  -webkit-animation-name: bigInfinite;
          animation-name: bigInfinite;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes bigInfinite {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.3);
  }
  40% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bigInfinite {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.3);
  }
  40% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

/* 読み込み
===================================================== */
/* common
===================================================== */
html,
body {
  background-color: #fff;
  color: #333;
  letter-spacing: 0;
  line-height: 1.6;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  html,
body {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  html,
body {
    font-size: 16px;
  }
}

.wrapper {
  width: 100%;
}

* {
  box-sizing: border-box;
}

[v-cloak] {
  opacity: 0;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: #333;
}
a[href=""] {
  pointer-events: none;
}

img,
video {
  width: 100%;
  display: block;
}

@media screen and (min-width: 768px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .spNone {
    display: none;
  }
}

/* .blockHead 
===================================================== */
.blockHead {
  color: #919191;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .blockHead {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .blockHead {
    margin-bottom: 22px;
  }
}
.blockHead.blockHead__en {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.071em;
}

/* .wrapper
===================================================== */
.wrapper {
  background: rgb(253, 139, 170);
  background: linear-gradient(-90deg, rgb(253, 139, 170) 0%, rgb(253, 146, 123) 100%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wrapper .wrapper_inner {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* .main
===================================================== */
@media screen and (min-width: 768px) {
  .main {
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }
}
@media screen and (max-width: 1100px) {
  .main {
    justify-content: flex-end;
  }
}
.main .center {
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .main .center {
    width: 375px;
  }
}
@media screen and (min-width: 768px) {
  .main .left,
.main .right {
    height: 100vh;
    width: calc((100% - 375px) / 2);
    z-index: 1;
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .main .left,
.main .right {
    width: calc(100% - 375px);
  }
}
@media screen and (min-width: 768px) {
  .main .left .left_inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 1100px) {
  .main .right {
    display: none;
  }
}
.main .right .left_inner {
  position: relative;
}

/* .inner 
===================================================== */
.inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 343px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 91.4666666667vw;
  }
}

.inner__min {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .inner__min {
    width: 290px;
  }
}
@media screen and (max-width: 767px) {
  .inner__min {
    width: 77.3333333333vw;
  }
}

/* .load
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

/* .kv
===================================================== */
.kv {
  position: relative;
}
@media screen and (min-width: 768px) {
  .kv {
    height: 100vh;
    max-height: 750px;
  }
}
@media screen and (max-width: 767px) {
  .kv {
    height: calc(100vh - 40px);
    height: calc(100svh - 40px);
    margin-top: 40px;
  }
}
.kv .kvImg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
.kv .kvImg img {
  height: 51%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kv .kvImg img:first-of-type {
  -o-object-position: right 30%;
     object-position: right 30%;
}
.kv .kvImg img:last-of-type {
  -o-object-position: center top;
     object-position: center top;
}
.kv .infiniteSlider {
  position: absolute;
  z-index: 2;
  left: 0;
  transform: translateY(-50%);
  transition-timing-function: linear;
  width: 100%;
}
.kv .infiniteSlider .swiper-wrapper {
  transition-timing-function: linear;
}
.kv .infiniteSlider .swiper-slide {
  width: auto !important;
}
@media screen and (min-width: 768px) {
  .kv .infiniteSlider .swiper-slide {
    max-height: 175px;
    height: 22vh;
  }
}
@media screen and (max-width: 767px) {
  .kv .infiniteSlider .swiper-slide {
    max-height: 170px;
    height: 22vh;
    height: 22svh;
  }
}
.kv .infiniteSlider img {
  height: 100%;
  width: auto;
}
.kv .infiniteSlider.infiniteSlider__1 {
  top: 25%;
}
.kv .infiniteSlider.infiniteSlider__2 {
  top: 75%;
}

.kvTitle {
  position: absolute;
  top: 50.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .kvTitle {
    width: 270px;
  }
}
@media screen and (max-width: 767px) {
  .kvTitle {
    max-height: 137px;
    height: 18.2vh;
    height: 18.2svh;
    min-height: 120px;
  }
}
@media screen and (min-width: 768px) {
  .kvTitle img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .kvTitle img {
    height: 100%;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .kvLogo {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    left: 30px;
    width: 38px;
  }
}
@media screen and (max-width: 767px) {
  .kvLogo {
    position: absolute;
    right: 16px;
    bottom: 27px;
    width: 28px;
  }
}

/* .lead
===================================================== */
@media screen and (min-width: 768px) {
  .lead {
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 1100px) {
  .lead {
    margin: 80px auto;
  }
}
@media screen and (max-width: 767px) {
  .lead {
    margin: 80px auto;
  }
}

.lead_text {
  font-size: 16px;
  letter-spacing: 0.0625em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .lead_text {
    color: #fff;
    max-width: 413px;
    width: 100%;
    padding: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1100px) {
  .lead_text {
    display: block;
    color: #333;
    position: static;
    transform: translate(0, 0);
    padding: 0;
  }
}

/* .prof
===================================================== */
.prof {
  margin-bottom: 80px;
}
.prof .profBody {
  position: relative;
}
.prof .profBody .profBody_bg {
  width: 100%;
}
.prof .profBody .profBody_inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.prof .profBody .profName .profName_sub {
  display: block;
  line-height: 1;
  font-size: 10px;
  margin-bottom: -6px;
}
.prof .profBody .profName .profName_main {
  letter-spacing: 0.083em;
  font-size: 30px;
}
.prof .profBody .profName .profName_age {
  display: inline-block;
  font-size: 24px;
  margin-left: 5px;
  transform: translateY(2px);
}
.prof .profBody .profInst {
  display: flex;
  align-items: center;
  gap: 0 5px;
  margin-bottom: 13px;
}
.prof .profBody .profInst img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(316deg) brightness(102%) contrast(101%);
  width: 16px;
}
.prof .profBody .profInst span {
  font-family: "kepler-std", serif;
  font-weight: 300;
  font-style: normal;
  text-decoration: underline;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
}
.prof .profBody dl {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 4px;
}
.prof .profBody dl:last-of-type {
  margin-bottom: 13px;
}
.prof .profBody dl dt {
  width: 20px;
}
.prof .profBody dl dd {
  font-size: 12px;
}
.prof .profBody .profCome {
  line-height: 1.75;
  word-break: break-all;
  font-size: 16px;
}
.prof .profBody .profCome span {
  display: block;
}

/* .nav
===================================================== */
@media screen and (max-width: 1100px) {
  .nav {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .nav {
    margin-bottom: 90px;
  }
}

@media screen and (min-width: 768px) {
  .nav_content {
    padding: 30px;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 403px;
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .nav_content {
    display: block;
    position: static;
    transform: translate(0, 0);
    width: 100%;
    padding: 0;
  }
}
.nav_content .blockHead {
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .nav_content .blockHead {
    color: #fff;
  }
}
@media screen and (max-width: 1100px) {
  .nav_content .blockHead {
    color: #919191;
  }
}
.nav_content li {
  padding: 10px 0;
  position: relative;
}
.nav_content li:not(:last-of-type)::before {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .nav_content li:not(:last-of-type)::before {
    width: calc(100% - 90px);
    background-color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .nav_content li:not(:last-of-type)::before {
    width: calc(100% - 75px);
  }
}
@media screen and (max-width: 1100px) {
  .nav_content li:not(:last-of-type)::before {
    background-color: #333;
  }
}
@media screen and (max-width: 767px) {
  .nav_content li:not(:last-of-type)::before {
    width: calc(100% - 24vw);
    background-color: #333;
  }
}
.nav_content a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .nav_content a {
    color: #fff;
  }
}
@media screen and (max-width: 1100px) {
  .nav_content a {
    color: #333;
  }
}
.nav_content a.selected .nav_text {
  opacity: 1;
}
.nav_content a.selected .nav_icon::before {
  opacity: 0;
}
.nav_content .nav_icon {
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .nav_content .nav_icon {
    width: 60px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .nav_content .nav_icon {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .nav_content .nav_icon {
    width: 16vw;
    margin-right: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .nav_content .nav_icon::before {
    content: "";
    display: block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
  }
}
@media screen and (max-width: 1100px) {
  .nav_content .nav_icon::before {
    content: none;
  }
}
.nav_content .nav_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav_content .nav_text {
  margin-right: 12px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .nav_content .nav_text {
    opacity: 0.3;
    transition: opacity 0.3s;
  }
}
@media screen and (max-width: 1200px) {
  .nav_content .nav_text {
    font-size: 18px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1100px) {
  .nav_content .nav_text {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .nav_content .nav_more {
    width: 58px;
    border: 1px solid #fff;
    border-radius: 18px;
  }
}
@media screen and (max-width: 767px) {
  .nav_content .nav_more {
    width: 15.4666666667vw;
  }
}

/* .sec
===================================================== */
.sec {
  margin-bottom: 120px;
}
.sec h2 {
  border: 1px solid #333;
  text-align: center;
  font-size: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 40px;
  border-radius: 25px;
  margin-bottom: 24px;
}
.sec .secMain {
  position: relative;
  margin-bottom: 23px;
}
.sec .secMain::before {
  content: "";
  display: block;
  padding-top: 141.0666666667%;
}
.sec .secMain .secMain_img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sec .secMain .secMain_img__2 {
  display: none;
}
.sec .secMain .secMain_icon,
.sec .secMain .secMain_on,
.sec .secMain .secMain_name,
.sec .secMain .secMainDots {
  z-index: 3;
}
.sec .secMain .secMain_icon {
  position: absolute;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .sec .secMain .secMain_icon {
    width: 60px;
    bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .sec .secMain .secMain_icon {
    width: 16vw;
    bottom: 6.4vw;
  }
}
.sec .secMain .secMain_icon.none {
  pointer-events: none;
}
.sec .secMain .secMain_on {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 100vw), -50%);
}
@media screen and (min-width: 768px) {
  .sec .secMain .secMain_on {
    width: 302px;
  }
}
@media screen and (max-width: 767px) {
  .sec .secMain .secMain_on {
    width: 80.5333333333vw;
  }
}
.sec .secMain .secMain_on.on {
  transform: translate(calc(-50% - 0vw), -50%);
  transition: transform 0.4s;
}
@media screen and (min-width: 768px) {
  .sec .secMain .secMain_icon__bad {
    left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .sec .secMain .secMain_icon__bad {
    left: 13.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .sec .secMain .secMain_icon__good {
    right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .sec .secMain .secMain_icon__good {
    right: 13.3333333333vw;
  }
}
.sec .secMain .secMain_name {
  text-align: center;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .sec .secMain .secMain_name {
    bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sec .secMain .secMain_name {
    bottom: 8vw;
  }
}
.sec .secMain .secMainDots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
@media screen and (min-width: 768px) {
  .sec .secMain .secMainDots {
    top: 24px;
    gap: 0 8px;
  }
}
@media screen and (max-width: 767px) {
  .sec .secMain .secMainDots {
    top: 6.4vw;
    gap: 0 2.1333333333vw;
  }
}
.sec .secMain .secMainDots .secMainDots_item {
  border: 1px solid #fff;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .sec .secMain .secMainDots .secMainDots_item {
    width: 30px;
    height: 6px;
    border-radius: 6px;
  }
}
@media screen and (max-width: 767px) {
  .sec .secMain .secMainDots .secMainDots_item {
    width: 8vw;
    height: 1.6vw;
    border-radius: 1.6vw;
  }
}
.sec .secMain .secMainDots .secMainDots_item.active {
  background-color: #fff;
}
.sec .secCome {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 23px;
  padding-bottom: 5px;
  margin-bottom: 70px;
}
.sec .secCome .secCome_left {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.071em;
  flex-shrink: 0;
  font-size: 16px;
}
.sec .secCome .secCome_right {
  line-height: 1.7142857143;
  position: relative;
  width: 100%;
  font-size: 14px;
  word-break: break-all;
}
.sec .secCome .secCome_right .secCome_rightInner {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s;
  opacity: 0;
}
.sec .secCome .secCome_right .secCome_rightInner.show {
  opacity: 1;
}
.sec .secCome .secCome_right .secCome_rightInner.secCome_rightInner__bad span {
  color: #75AAC6;
}
.sec .secCome .secCome_right .secCome_rightInner.secCome_rightInner__good span {
  color: #EAE449;
}
.sec .secCome .secCome_right span {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  line-height: 1;
  font-size: 24px;
  margin-bottom: 10px;
}
.sec .secCome .secMainDots {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 0 5px;
}
@media screen and (min-width: 768px) {
  .sec .secCome .secMainDots {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sec .secCome .secMainDots {
    right: 4vw;
  }
}
.sec .secCome .secMainDots .secMainDots_item {
  border: 1px solid #707070;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}
.sec .secCome .secMainDots .secMainDots_item.active {
  background-color: #707070;
}
.sec .secCode {
  margin-bottom: 60px;
}
.sec .secCode .secCode_slide {
  margin-bottom: 8px;
  padding-bottom: 15px;
}
.sec .secCode .secCode_slide .swiper-pagination {
  bottom: 0 !important;
  left: 0 !important;
  text-align: left !important;
  line-height: 1 !important;
}
.sec .secCode .secCode_slide .swiper-pagination .swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  margin-right: 4px !important;
  margin-left: 0 !important;
  opacity: 1 !important;
  background-color: transparent !important;
  border: 1px solid #707070 !important;
}
.sec .secCode .secCode_slide .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #707070 !important;
}
.sec .secCode .secCode_come {
  line-height: 1.7142857143;
  letter-spacing: 0.071em;
  font-size: 14px;
}
.sec .secCode .secCode_come span {
  display: block;
}
.sec .secCredit ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .sec .secCredit ul {
    gap: 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .sec .secCredit ul {
    gap: 5.3333333333vw 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .sec .secCredit li {
    width: 125px;
  }
}
@media screen and (max-width: 767px) {
  .sec .secCredit li {
    width: 33.3333333333vw;
  }
}
.sec .secCredit .secCredit_img {
  margin-bottom: 7px;
  position: relative;
}
.sec .secCredit img {
  border-radius: 15px;
}
.sec .secCredit .secCredit_btn {
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  border-radius: 50%;
  font-family: nimbus-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  background: rgb(253, 139, 170);
  background: linear-gradient(180deg, rgb(253, 139, 170) 0%, rgb(253, 146, 123) 100%);
  width: 30px;
  line-height: 30px;
  font-size: 8px;
}
.sec .secCredit .secCredit_data {
  color: #5C5C5C;
  line-height: 1.75;
  font-size: 11px;
  padding: 0 3px;
}
.sec .secCredit .secCredit_data span {
  font-size: 12px;
}

/* .movie
===================================================== */
.movie {
  margin-bottom: 90px;
  text-align: center;
}
.movie h3 {
  font-size: 33px;
  margin-bottom: -2px;
}
.movie p {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 22px;
}
.movie video {
  width: 100%;
}

/* .staffCredit
===================================================== */
.staffCredit {
  font-family: nimbus-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  text-align: center;
  margin-bottom: 90px;
  font-size: 12px;
}

/* .footer
===================================================== */
footer {
  position: relative;
  z-index: 2;
}/*# sourceMappingURL=style.css.map */