@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap);@import url(https://cdn.jsdelivr.net/npm/yakuhanjp@3.2.0/dist/css/yakuhanjp.min.css);@charset "UTF-8";
/* Reset margin, padding, border
 * *********************************** */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  padding: 0;
  margin: 0;
  border: 0;
}

/* Typography
  * *********************************** */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
}

a {
  color: inherit;
}

/* Layout
  * *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* Elements
  * *********************************** */
input,
button,
select,
textarea {
  border: none;
  border-radius: 0;
  font: inherit;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

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

button {
  display: block;
  padding: 0;
  border: none;
  text-align: inherit;
  background-color: transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

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

/* ClearFix
  * *********************************** */
/* for modern brouser */
.clearfix::after {
  height: 0;
  clear: both;
  display: block;
  content: ".";
  visibility: hidden;
}

/* IE7,MacIE5 */
.clearfix {
  display: inline-block;
}

/* WinIE6 below, Exclude MacIE5 \ */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* ================== Z-INDEX ================== */
/* ==================TRANSITION =================== */
/* =================== COLOR =================== */
/* =================== FONT =================== */
/* =================== SIZE =================== */
/* ====== CSS custom property(レスポンシブ対応変数) ====== */
body {
  --stroke-color: white;
  --shadow-color: white;
  /* コンテンツ最外マージン */
  --cont-outer-m: $m-cont;
  /* レスポンシブコンテンツ幅 */
  --cont-resp-w: $w-cont;
  /* フォント */
  --font-size: 14px;
  --line-height: 28px;
}
@media (max-width: 768px) {
  body {
    --cont-outer-m: $m-sp;
  }
}
@media (max-width: calc( calc( 1120px + 40px * 2 ) * 100 / (100 - 40 * 2) )) {
  body {
    --cont-resp-w: calc(
    	100vw - var(--cont-outer-m) * 2
    );
  }
}
@media (max-width: 768px) {
  body {
    --cont-resp-w: 100vw;
  }
}
@media (max-width: 768px) {
  body {
    --font-size: 12px;
    --line-height: 20px;
  }
}

html {
  width: 100%;
}

body {
  width: 100%;
  height: 100%;
  min-width: calc( 	1120px + 40px * 2 );
  position: relative;
  font-family: YakuHanJP, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", Hiragino Kaku Gothic ProN, Arial, "\30E1\30A4\30EA\30AA", Meiryo, sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  font-weight: 700;
  letter-spacing: 0;
  color: #282828;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
    min-width: unset;
    font-size: calc( 		var(--cont-resp-w) * 14 / 414 	);
  }
}
body.isFixed {
  position: fixed;
  left: 0;
}

.container {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 240px;
  margin-top: 100px;
  overflow: hidden;
  /* background-image: url('../images/common/common_bg-left.png'),
  	url('../images/common/common_bg-right.png');
  background-position: top left, top right;
  background-repeat: repeat-y;
  background-size: 300px; */
}
@media screen and (max-width: 768px) {
  .container {
    padding-bottom: calc( 		var(--cont-resp-w) * 160 / 414 	);
    margin-top: 0;
    /* background-position: top 0 left -160px,
    	top 0 right -160px;
    background-size: 240px; */
  }
}
.container .contents__bg {
  width: 100%;
  height: 150%;
  position: absolute;
  top: -50%;
  background-repeat: repeat-y;
  background-size: 300px;
}
@media screen and (max-width: 768px) {
  .container .contents__bg {
    background-size: 240px;
  }
}
.container .contents__bg--left {
  background-position: top left;
}
@media screen and (max-width: 768px) {
  .container .contents__bg--left {
    background-position: top 0 left -160px;
  }
}
.container .contents__bg--left--back {
  background-image: url("../images/common/common_bg-left_back.png");
}
.container .contents__bg--left--front {
  background-image: url("../images/common/common_bg-left_front.png");
}
.container .contents__bg--right {
  background-position: top right;
}
@media screen and (max-width: 768px) {
  .container .contents__bg--right {
    background-position: top 0 right -160px;
  }
}
.container .contents__bg--right--back {
  background-image: url("../images/common/common_bg-right_back.png");
}
.container .contents__bg--right--front {
  background-image: url("../images/common/common_bg-right_front.png");
}
.container .common-page-title {
  width: 100%;
  height: 320px;
  position: relative;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: -60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .container .common-page-title {
    height: calc( 		var(--cont-resp-w) * 320 / 414 	);
    margin-bottom: calc( 		var(--cont-resp-w) * -100 / 414 	);
  }
}
.container .common-page-title::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), color-stop(80%, white));
  background: linear-gradient(rgba(255, 255, 255, 0.4), white 80%);
  content: "";
}
.container .common-page-title img {
  width: auto;
  height: 78px;
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .container .common-page-title img {
    height: calc( 		var(--cont-resp-w) * 60 / 414 	);
    margin-top: calc( 		var(--cont-resp-w) * 80 / 414 	);
  }
}

.nanase-color {
  color: #46c3f0;
}

.towako-color {
  color: #916e6e;
}

.ayame-color {
  color: #f06991;
}

.hinata-color {
  color: #f5aa4b;
}

.an-color {
  color: #6eaaf0;
}

.junko-color {
  color: #a57dc3;
}

.ikue-color {
  color: #9999e5;
}

.riko-color {
  color: #ff9982;
}

.nao-color {
  color: #ffd261;
}

.maju-color {
  color: #6ebe50;
}

.eita-color {
  color: #c8c8c8;
}

span.common-curtain {
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #46c3f0;
}

.common-btn {
  width: 280px;
  height: 48px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #46c3f0;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: white;
  background-color: #46c3f0;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .common-btn {
    width: calc( 		var(--cont-resp-w) * 280 / 414 	);
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
    border-radius: calc( 		var(--cont-resp-w) * 24 / 414 	);
    font-size: calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
}
.common-btn:hover {
  color: #46c3f0;
  background-color: white;
}

.common-arrow--left, .common-arrow--right, .common-arrow--top, .common-arrow--bottom {
  width: 64px;
  height: 64px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid white;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .common-arrow--left, .common-arrow--right, .common-arrow--top, .common-arrow--bottom {
    width: calc( 		var(--cont-resp-w) * 64 / 414 	);
    height: calc( 		var(--cont-resp-w) * 64 / 414 	);
  }
}
.common-arrow--left span, .common-arrow--right span, .common-arrow--top span, .common-arrow--bottom span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -5%;
  display: block;
  margin: auto;
}
.common-arrow--left span::before, .common-arrow--left span::after, .common-arrow--right span::before, .common-arrow--right span::after, .common-arrow--top span::before, .common-arrow--top span::after, .common-arrow--bottom span::before, .common-arrow--bottom span::after {
  width: 34%;
  height: 3px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  border-radius: 1.5px;
  background-color: #46c3f0;
  content: "";
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.common-arrow--left span::before, .common-arrow--right span::before, .common-arrow--top span::before, .common-arrow--bottom span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
.common-arrow--left span::after, .common-arrow--right span::after, .common-arrow--top span::after, .common-arrow--bottom span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.common-arrow--left:hover, .common-arrow--right:hover, .common-arrow--top:hover, .common-arrow--bottom:hover {
  background-color: #46c3f0;
}
.common-arrow--left:hover span::before,
.common-arrow--left:hover span::after, .common-arrow--right:hover span::before,
.common-arrow--right:hover span::after, .common-arrow--top:hover span::before,
.common-arrow--top:hover span::after, .common-arrow--bottom:hover span::before,
.common-arrow--bottom:hover span::after {
  background-color: white;
}
.common-arrow--right {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.common-arrow--left {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.common-arrow--top {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.common-arrow--bottom {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.slick-slide,
.slick-slide * {
  outline: none !important;
}

.slick-list {
  overflow: unset;
}

::-moz-selection {
  color: white;
  background: #f05a78;
}

::selection {
  color: white;
  background: #f05a78;
}

::-moz-selection {
  color: white;
  background: #f05a78;
}

.stroke {
  text-shadow: 1px 1px 0 var(--stroke-color), -1px -1px 0 var(--stroke-color), -1px 1px 0 var(--stroke-color), 1px -1px 0 var(--stroke-color), 0 1px 0 var(--stroke-color), 0 -1px 0 var(--stroke-color), -1px 0 0 var(--stroke-color), 1px 0 0 var(--stroke-color);
}
@media screen and (max-width: 768px) {
  .stroke {
    text-shadow: calc( 		var(--cont-resp-w) * 1 / 414 	) calc( 		var(--cont-resp-w) * 1 / 414 	) 0 var(--stroke-color), calc( 		var(--cont-resp-w) * -1 / 414 	) calc( 		var(--cont-resp-w) * -1 / 414 	) 0 var(--stroke-color), calc( 		var(--cont-resp-w) * -1 / 414 	) calc( 		var(--cont-resp-w) * 1 / 414 	) 0 var(--stroke-color), calc( 		var(--cont-resp-w) * 1 / 414 	) calc( 		var(--cont-resp-w) * -1 / 414 	) 0 var(--stroke-color), 0 calc( 		var(--cont-resp-w) * 1 / 414 	) 0 var(--stroke-color), 0 calc( 		var(--cont-resp-w) * -1 / 414 	) 0 var(--stroke-color), calc( 		var(--cont-resp-w) * -1 / 414 	) 0 0 var(--stroke-color), calc( 		var(--cont-resp-w) * 1 / 414 	) 0 0 var(--stroke-color);
  }
}

.shadow {
  text-shadow: 2px 2px 2px var(--shadow-color), -2px -2px 2px var(--shadow-color), -2px 2px 2px var(--shadow-color), 2px -2px 2px var(--shadow-color), 0 2px 2px var(--shadow-color), 0 -2px 2px var(--shadow-color), -2px 0 2px var(--shadow-color), 2px 0 2px var(--shadow-color);
}
@media screen and (max-width: 768px) {
  .shadow {
    text-shadow: calc( 		var(--cont-resp-w) * 2 / 414 	) calc( 		var(--cont-resp-w) * 2 / 414 	) calc( 		var(--cont-resp-w) * 2 / 414 	) var(--shadow-color), calc( 		var(--cont-resp-w) * -2 / 414 	) calc( 		var(--cont-resp-w) * -2 / 414 	) calc( 		var(--cont-resp-w) * 2 / 414 	) var(--shadow-color), calc( 		var(--cont-resp-w) * -2 / 414 	) calc( 		var(--cont-resp-w) * 2 / 414 	) calc( 		var(--cont-resp-w) * 2 / 414 	) var(--shadow-color), calc( 		var(--cont-resp-w) * 2 / 414 	) calc( 		var(--cont-resp-w) * -2 / 414 	) calc( 		var(--cont-resp-w) * 2 / 414 	) var(--shadow-color), 0 calc( 		var(--cont-resp-w) * 2 / 414 	) calc( 		var(--cont-resp-w) * 2 / 414 	) var(--shadow-color), 0 calc( 		var(--cont-resp-w) * -2 / 414 	) calc( 		var(--cont-resp-w) * 2 / 414 	) var(--shadow-color), calc( 		var(--cont-resp-w) * -2 / 414 	) 0 calc( 		var(--cont-resp-w) * 2 / 414 	) var(--shadow-color), calc( 		var(--cont-resp-w) * 2 / 414 	) 0 calc( 		var(--cont-resp-w) * 2 / 414 	) var(--shadow-color);
  }
}

.rotate {
  -webkit-transform: rotate(0.028deg);
  transform: rotate(0.028deg);
}

.red {
  color: #cd2332;
}

.blue {
  color: blue;
}

.green {
  color: green;
}

.yellow {
  color: #ffd750;
}

.pink {
  color: #f05a78;
}

.lightblue {
  color: #46c3f0;
}

.isHidden {
  opacity: 0;
  -webkit-animation: none;
  animation: none;
  pointer-events: none;
}

.isVisible {
  opacity: 1;
  pointer-events: all;
}

a {
  text-decoration: none;
}

p > a {
  color: #46c3f0;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
p > a:hover {
  opacity: 0.6;
}

img {
  pointer-events: none;
}

.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: white;
  opacity: 1;
}
.loading__logo {
  width: 400px;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .loading__logo {
    width: 80%;
  }
}
.loading__logo::before {
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  position: absolute;
  top: -18px;
  left: -18px;
  display: block;
  background-image: url("../images/top/movie_dot.png");
  background-repeat: repeat;
  background-size: 18px;
  content: "";
  opacity: 1;
  -webkit-animation: stripe 1s linear infinite;
  animation: stripe 1s linear infinite;
}
@-webkit-keyframes stripe {
  0% {
    top: -18px;
    left: -18px;
  }
  100% {
    top: 0;
    left: 0;
  }
}
@keyframes stripe {
  0% {
    top: -18px;
    left: -18px;
  }
  100% {
    top: 0;
    left: 0;
  }
}
.loading__logo__progress {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.6s 0s;
  transition: all 0.6s 0s;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.modal {
  --btn-width: 64px;
  --btn-height: var(--btn-width);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
}
@media (max-width: 1408px) {
  .modal {
    --btn-width: 48px;
    --btn-height: var(--btn-width);
  }
}
.modal__close-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.modal__close-btn {
  width: var(--btn-width);
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 2;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.modal__close-btn:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .modal__close-btn {
    top: calc( 		var(--cont-resp-w) * 24 / 414 	);
    right: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.modal--movie {
  width: 100%;
  height: auto;
  max-width: 1200px;
  position: relative;
  z-index: 1;
  display: none;
}
.modal--movie__cont {
  width: 100%;
  height: 0;
  position: relative;
  display: block;
  padding-bottom: 56.25%;
  background-color: black;
}
.modal--movie__cont iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
}
.modal--image {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  display: none;
  /* &__cont {
  	background-color: white;
  } */
}
.modal--image img {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  max-height: calc( 				100vh - (var(--btn-height) + 20px) * 2 			);
  -o-object-fit: contain;
  object-fit: contain;
}
.modal__text {
  z-index: 1;
  font-size: 24px;
}
.modal__btn-wrap {
  width: calc(100% + 40px * 2 + var(--btn-width) * 2);
  max-width: calc( 			1200px + 40px * 2 + var(--btn-width) * 2 		);
  position: absolute;
  top: 0;
  right: calc(-40px - var(--btn-width));
  bottom: 0;
  left: calc(-40px - var(--btn-width));
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: auto;
  pointer-events: none;
}
@media (max-width: 1408px) {
  .modal__btn-wrap {
    width: calc(var(--btn-width) * 2 + 24px);
    top: auto;
    right: 0;
    bottom: calc(var(--btn-height) * -1 - 20px);
    left: 0;
  }
}
.modal__btn {
  width: var(--btn-width);
  height: var(--btn-height);
  border-radius: calc(var(--btn-width) / 2);
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}
.modal__btn.isVisible {
  opacity: 1;
  pointer-events: all;
}
.modal__btn:hover {
  opacity: 0.6;
}
.modal.isScrollable {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow-y: scroll;
}
.modal.isScrollable .modal__close-bg {
  height: 100%;
}
.modal.isScrollable .modal--image {
  width: auto;
  height: auto;
  max-width: 640px;
  max-height: unset;
  margin-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .modal.isScrollable .modal--image {
    margin-top: calc( 		var(--cont-resp-w) * 80 / 414 	);
  }
}
.modal.isScrollable .modal--image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: unset;
  -o-object-fit: unset;
  object-fit: unset;
}

.header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: calc(100px * -1);
  left: 0;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: white;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .header {
    width: 78px;
    height: 64px;
    top: 14px;
    right: -78px;
    left: auto;
    border-radius: 4px 0 0 4px;
    -webkit-box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
    box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  }
}
.header.isVisible {
  top: 0;
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .header.isVisible {
    top: 14px;
    right: 0;
  }
}
.header__inner {
  width: 100%;
  max-width: calc( 	1120px + 40px * 2 );
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__inner {
    width: calc(100% - 40px * 2);
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    width: 100%;
  }
}
.header__logo {
  height: 64px;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__logo:hover {
  opacity: 0.6;
}
.header__logo img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__logo {
    display: none;
  }
}
.header__gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__gnav {
    display: none;
  }
}
.header__gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.header__gnav__items > li {
  height: 64px;
  position: relative;
  margin-right: 40px;
}
.header__gnav__items > li > a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header__gnav__items > li img {
  width: auto;
  height: 38px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}
.header__gnav__items > li img.isHover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}
.header__gnav__items > li:hover img:not(.isHover) {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}
.header__gnav__items > li:hover img.isHover {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header__gnav__items > li.isActive img:not(.isHover) {
  opacity: 0;
}
.header__gnav__items > li.isActive img.isHover {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header__gnav__items > li.isClosed {
  opacity: 0.6;
  pointer-events: none;
}
.header__gnav__twitter {
  width: 48px;
  position: relative;
}
.header__gnav__twitter > img {
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__gnav__twitter > img.isHover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  opacity: 0;
}
.header__gnav__twitter:hover img:not(.isHover) {
  opacity: 0;
}
.header__gnav__twitter:hover img.isHover {
  opacity: 1;
}
.header__sp-menu-btn {
  display: none;
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu-btn {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 10;
    display: block;
    margin-left: 16px;
    -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .header__sp-menu-btn span {
    width: 28px;
    height: 2px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #46c3f0;
    opacity: 1;
    -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .header__sp-menu-btn span:first-child {
    top: 4px;
    bottom: auto;
  }
  .header__sp-menu-btn span:nth-child(2) {
    top: 0;
    bottom: 0;
  }
  .header__sp-menu-btn span:last-child {
    top: auto;
    bottom: 4px;
  }
  .header__sp-menu-btn:hover {
    opacity: 0.5;
  }
}
.header__sp-menu {
  display: none;
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: white;
    background-image: url("../images/common/common_menu-bg_sp.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    pointer-events: none;
  }
  .header__sp-menu.isOpen {
    opacity: 1;
    pointer-events: all;
  }
  .header__sp-menu .header__sp-menu__gnav {
    width: auto;
    height: 90%;
    max-height: 560px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 80px;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) and (max-width: 768px) {
  .header__sp-menu .header__sp-menu__gnav {
    height: calc( 		var(--cont-resp-w) * 496 / 414 	);
    max-height: 70%;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    margin-left: calc( 		var(--cont-resp-w) * 32 / 414 	);
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu .header__sp-menu__gnav__items {
    height: 90%;
    max-height: calc(560px - 48px - 40px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) and (max-width: 768px) {
  .header__sp-menu .header__sp-menu__gnav__items {
    height: calc( 		var(--cont-resp-w) * 416 / 414 	);
    max-height: 85%;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu .header__sp-menu__gnav__items > li {
    height: 40px;
    position: relative;
  }
  .header__sp-menu .header__sp-menu__gnav__items > li:hover img.isHover {
    opacity: 1;
  }
  .header__sp-menu .header__sp-menu__gnav__items > li:hover img:not(.isHover) {
    opacity: 0;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) and (max-width: 768px) {
  .header__sp-menu .header__sp-menu__gnav__items > li {
    height: calc( 		var(--cont-resp-w) * 28 / 414 	);
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu .header__sp-menu__gnav__items > li:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu .header__sp-menu__gnav__items > li img {
    width: auto;
    height: 100%;
    -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .header__sp-menu .header__sp-menu__gnav__items > li img.isHover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu .header__sp-menu__gnav__items > li.isActive img.isHover {
    opacity: 1;
  }
  .header__sp-menu .header__sp-menu__gnav__items > li.isActive img:not(.isHover) {
    opacity: 0;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu .header__sp-menu__gnav__items > li.isClosed {
    opacity: 0.5;
    pointer-events: none;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu .header__sp-menu__gnav__twitter {
    width: 48px;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) and (max-width: 768px) {
  .header__sp-menu .header__sp-menu__gnav__twitter {
    width: calc( 		var(--cont-resp-w) * 48 / 414 	);
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu .header__sp-menu__gnav__reserve {
    display: none;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) and (max-width: 768px) {
  .header__sp-menu .header__sp-menu__gnav__reserve {
    width: calc( 		var(--cont-resp-w) * 200 / 414 	);
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 4px;
    font-size: calc( 		var(--cont-resp-w) * 16 / 414 	);
    color: white;
    background-color: #46c3f0;
  }
  .header__sp-menu .header__sp-menu__gnav__reserve::before {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background-image: url("../images/common/common_stripe.png");
    background-repeat: repeat;
    background-size: calc( 		var(--cont-resp-w) * 32 / 414 	);
    content: "";
    opacity: 0.14;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) {
  .header__sp-menu .header__sp-menu__gnav__share {
    display: none;
  }
}
@media screen and (max-width: calc( 1120px + 40px * 2 )) and (max-width: 768px) {
  .header__sp-menu .header__sp-menu__gnav__share {
    width: calc( 		var(--cont-resp-w) * 28 / 414 	);
    height: calc( 		var(--cont-resp-w) * 198 / 414 	);
    position: absolute;
    right: 32px;
    bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header__sp-menu .header__sp-menu__gnav__share .header__sp-menu__gnav__share__text {
    width: calc( 		var(--cont-resp-w) * 10 / 414 	);
  }
  .header__sp-menu .header__sp-menu__gnav__share .header__sp-menu__gnav__share__list {
    width: 100%;
  }
  .header__sp-menu .header__sp-menu__gnav__share .header__sp-menu__gnav__share__list > li {
    margin-top: calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
  .header__sp-menu .header__sp-menu__gnav__share .header__sp-menu__gnav__share__list > li:first-child {
    margin-top: 0;
  }
}
.header__reserve {
  width: calc(56px + 10px);
  height: 200px;
  position: fixed;
  top: 50%;
  left: calc(-56px - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0 4px 4px 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background-color: #46c3f0;
  opacity: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .header__reserve {
    display: none;
  }
}
.header__reserve span {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.header__reserve::before {
  width: 10px;
  height: 100%;
  display: inline-block;
  content: "";
}
.header__reserve::after {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background-image: url("../images/common/common_stripe.png");
  background-repeat: repeat;
  background-size: 32px;
  content: "";
  opacity: 0.14;
}
.header__reserve.isVisible {
  left: -10px;
  opacity: 1;
  pointer-events: all;
}
.header__reserve.isVisible:hover {
  left: 0;
}
.header__reserve.isVisible:hover::after {
  -webkit-animation: stripeAnime 1s linear infinite;
  animation: stripeAnime 1s linear infinite;
}
@-webkit-keyframes stripeAnime {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 32px;
  }
}
@keyframes stripeAnime {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 32px;
  }
}
.header__share {
  width: 32px;
  position: fixed;
  top: 50%;
  right: -32px;
  opacity: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .header__share {
    display: none;
  }
}
.header__share.isVisible {
  right: 40px;
  opacity: 1;
  pointer-events: all;
}
.header__share__text {
  width: 10px;
  display: block;
  margin: 0 auto;
}
.header__share__list {
  width: 100%;
  margin-top: 30px;
}
.header__share__list > li {
  width: 100%;
  margin-top: 12px;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__share__list > li:first-child {
  margin-top: 0;
}
.header__share__list > li:hover {
  opacity: 0.6;
}
.header__go-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  border: 2px solid #f05a78;
  background-color: #f05a78;
  opacity: 0;
  -webkit-transform: translateY(20px) rotate(-90deg);
  transform: translateY(20px) rotate(-90deg);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .header__go-top {
    width: calc( 		var(--cont-resp-w) * 48 / 414 	);
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
    right: 24px;
    bottom: 24px;
  }
}
.header__go-top span::before, .header__go-top span::after {
  background-color: white;
}
.header__go-top.isVisible {
  opacity: 1;
  -webkit-transform: translateY(0) rotate(-90deg);
  transform: translateY(0) rotate(-90deg);
  pointer-events: all;
}
.header__go-top.isVisible:hover {
  background-color: white;
}
.header__go-top.isVisible:hover span::before,
.header__go-top.isVisible:hover span::after {
  background-color: #f05a78;
}

.footer {
  width: 100%;
  height: 120px;
  z-index: 8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f05a78;
}
@media screen and (max-width: 768px) {
  .footer {
    height: calc( 		var(--cont-resp-w) * 120 / 414 	);
  }
}
.footer__brand {
  width: 106px;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer__brand:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .footer__brand {
    width: calc( 		var(--cont-resp-w) * 106 / 414 	);
  }
}
.footer__copyright {
  margin-top: 16px;
  font-size: 12px;
  color: white;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: calc( 		var(--cont-resp-w) * 16 / 414 	);
    font-size: calc( 		var(--cont-resp-w) * 12 / 414 	);
  }
}

.container {
  margin-top: 0;
  /* ====================== MV ====================== */
  /* ====================== CONTENTS ====================== */
}
.container .mv {
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .container .mv {
    background-color: transparent;
  }
}
.container .mv__bg {
  position: relative;
}
@media screen and (max-width: 768px) {
  .container .mv__bg {
    width: 100%;
    height: 100vh;
  }
  .container .mv__bg::before {
    width: 100%;
    height: calc( 		var(--cont-resp-w) * 200 / 414 	);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 7;
    display: block;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.4)), color-stop(75%, white));
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4) 50%, white 75%);
    content: "";
  }
  .container .mv__bg.is-nanase .mv__bg__base {
    background-image: url("../images/top/mv_bg-nanase.png");
  }
  .container .mv__bg.is-nanase .mv__bg__dot {
    background-image: url("../images/top/mv_dot-nanase.png");
  }
  .container .mv__bg.is-nanase .mv__bg__deco {
    background-image: url("../images/top/mv_deco-nanase.png");
  }
  .container .mv__bg.is-nanase .mv__bg__chara > li:not(.is-nanase) {
    display: none;
  }
  .container .mv__bg.is-towako .mv__bg__base {
    background-image: url("../images/top/mv_bg-towako.png");
  }
  .container .mv__bg.is-towako .mv__bg__dot {
    background-image: url("../images/top/mv_dot-towako.png");
  }
  .container .mv__bg.is-towako .mv__bg__deco {
    background-image: url("../images/top/mv_deco-towako.png");
  }
  .container .mv__bg.is-towako .mv__bg__chara > li:not(.is-towako) {
    display: none;
  }
  .container .mv__bg.is-ayahina .mv__bg__base {
    background-image: url("../images/top/mv_bg-ayahina.png");
  }
  .container .mv__bg.is-ayahina .mv__bg__dot {
    background-image: url("../images/top/mv_dot-ayahina.png");
  }
  .container .mv__bg.is-ayahina .mv__bg__deco {
    background-image: url("../images/top/mv_deco-ayahina.png");
  }
  .container .mv__bg.is-ayahina .mv__bg__chara > li:not(.is-ayahina) {
    display: none;
  }
  .container .mv__bg.is-an .mv__bg__base {
    background-image: url("../images/top/mv_bg-an.png");
  }
  .container .mv__bg.is-an .mv__bg__dot {
    background-image: url("../images/top/mv_dot-an.png");
  }
  .container .mv__bg.is-an .mv__bg__deco {
    background-image: url("../images/top/mv_deco-an.png");
  }
  .container .mv__bg.is-an .mv__bg__chara > li:not(.is-an) {
    display: none;
  }
  .container .mv__bg.is-junko .mv__bg__base {
    background-image: url("../images/top/mv_bg-junko.png");
  }
  .container .mv__bg.is-junko .mv__bg__dot {
    background-image: url("../images/top/mv_dot-junko.png");
  }
  .container .mv__bg.is-junko .mv__bg__deco {
    background-image: url("../images/top/mv_deco-junko.png");
  }
  .container .mv__bg.is-junko .mv__bg__chara > li:not(.is-junko) {
    display: none;
  }
}
.container .mv__bg__base {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .container .mv__bg__base {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    outline: 10px solid white;
    outline-offset: -10px;
  }
  .container .mv__bg__base img {
    display: none;
  }
}
.container .mv__bg__dot, .container .mv__bg__deco, .container .mv__bg__chara, .container .mv__bg__chara > li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.container .mv__bg__dot {
  top: -15%;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .container .mv__bg__dot {
    width: 100%;
    height: calc(100% + (100% * 168 / 736));
    top: calc(100% * 168 / -736);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .container .mv__bg__dot img {
    display: none;
  }
}
.container .mv__bg__deco {
  top: -15%;
}
@media screen and (max-width: 768px) {
  .container .mv__bg__deco {
    width: 100%;
    height: calc(100% + (100% * 168 / 736));
    top: calc(100% * 168 / -736);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .container .mv__bg__deco img {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .container .mv__bg__chara {
    width: 100%;
    height: 100%;
  }
}
.container .mv__bg__chara > li:nth-child(1) {
  z-index: 2;
}
.container .mv__bg__chara > li:nth-child(2) {
  z-index: 4;
}
.container .mv__bg__chara > li:nth-child(3) {
  z-index: 3;
}
.container .mv__bg__chara > li:nth-child(4) {
  z-index: 5;
}
.container .mv__bg__chara > li:nth-child(5) {
  z-index: 6;
}
@media screen and (max-width: 768px) {
  .container .mv__bg__chara > li {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .container .mv__bg__chara > li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.container .mv__logo {
  width: 30%;
  position: absolute;
  bottom: 15%;
  left: 5%;
  z-index: 7;
}
@media screen and (max-width: 768px) {
  .container .mv__logo {
    width: calc( 		var(--cont-resp-w) * 300 / 414 	);
    bottom: calc( 		var(--cont-resp-w) * 16 / 414 	);
    left: calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
}
.container .mv__onsale {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 7;
}
@media screen and (max-width: 768px) {
  .container .mv__onsale {
    width: calc(100% - 32px * 2);
    position: relative;
    bottom: unset;
    left: unset;
    margin: calc( 		var(--cont-resp-w) * 10 / 414 	) auto 0;
  }
}
.container .mv__zero {
  width: 18%;
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 7;
  opacity: 1;
  -webkit-box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .container .mv__zero {
    width: calc(100% - 32px * 2);
    position: relative;
    right: unset;
    bottom: unset;
    display: block;
    margin: calc( 		var(--cont-resp-w) * 40 / 414 	) auto 0;
  }
}
.container .mv__zero:hover {
  opacity: 0.8;
}
.container .reserve-date {
  width: 672px;
  margin: 64px auto 0;
}
@media screen and (max-width: 768px) {
  .container .reserve-date {
    display: none;
  }
}
.container .reserve-date--onlySp {
  display: none;
}
@media screen and (max-width: 768px) {
  .container .reserve-date--onlySp {
    width: 70%;
    display: block;
    margin: calc( 		var(--cont-resp-w) * 40 / 414 	) auto 0;
  }
}
.container .contents {
  width: 100%;
  /* ====================== NEWS ====================== */
  /* ====================== TWITTER ====================== */
  /* ====================== MOVIE ====================== */
  /* ====================== INTRODUCTION ====================== */
  /* ====================== CHARACTER ====================== */
  /* ====================== SPECIAL ====================== */
  /* ====================== SHOP ====================== */
  /* ====================== SPEC ====================== */
}
.container .contents > section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .container .contents > section {
    padding-top: calc( 		var(--cont-resp-w) * 160 / 414 	);
  }
}
.container .contents > section > h2 {
  height: 78px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .container .contents > section > h2 {
    height: calc( 		var(--cont-resp-w) * 60 / 414 	);
    margin-bottom: calc( 		var(--cont-resp-w) * 64 / 414 	);
  }
}
.container .contents > section > h2 img {
  width: auto;
  height: 100%;
}
.container .contents .news {
  width: 100%;
}
.container .contents .news__content {
  width: 1120px;
  height: 390px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .container .contents .news__content {
    width: calc(100% - 32px * 2);
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }
}
.container .contents .news__content__list {
  width: 736px;
  height: 100%;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  overflow-y: auto;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .container .contents .news__content__list {
    width: 100%;
    height: calc( 		var(--cont-resp-w) * 340 / 414 	);
  }
}
.container .contents .news__content__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 32px;
  border-top: 1px solid #dcdcdc;
}
@media screen and (max-width: 768px) {
  .container .contents .news__content__list > li {
    padding: calc( 		var(--cont-resp-w) * 24 / 414 	) calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
}
.container .contents .news__content__list > li:first-child {
  border: none;
}
.container .contents .news__content__list > li time {
  margin: calc((24px - 14px) / -2) 0;
  margin-right: 32px;
  line-height: 24px;
  color: #f05a78;
}
@media screen and (max-width: 768px) {
  .container .contents .news__content__list > li time {
    margin: calc( 										(calc( 		var(--cont-resp-w) * 24 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	)) / -2 									) 0;
    margin-right: calc( 		var(--cont-resp-w) * 16 / 414 	);
    line-height: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .news__content__list > li p {
  margin: calc((24px - 14px) / -2) 0;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .container .contents .news__content__list > li p {
    margin: calc( 										(calc( 		var(--cont-resp-w) * 24 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	)) / -2 									) 0;
    line-height: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .news__content__list > li p a {
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.container .contents .news__content__list > li p a:hover {
  opacity: 0.8;
}
.container .contents .news__content__banner {
  width: 352px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .container .contents .news__content__banner {
    width: 100%;
    height: auto;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    margin-top: calc( 		var(--cont-resp-w) * 32 / 414 	);
  }
}
.container .contents .news__content__banner > li {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.container .contents .news__content__banner > li:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .container .contents .news__content__banner > li {
    margin-top: calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
  .container .contents .news__content__banner > li:first-child {
    margin-top: 0;
  }
}
.container .contents .twitter {
  width: 100%;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .container .contents .twitter {
    padding-bottom: calc( 		var(--cont-resp-w) * 160 / 414 	);
  }
}
.container .contents .twitter__content {
  width: 1120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .container .contents .twitter__content {
    width: calc(100% - 32px * 2);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }
}
.container .contents .twitter__content__item {
  width: calc((100% - 32px * 2) / 3);
  margin-right: 32px;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .container .contents .twitter__content__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: calc( 		var(--cont-resp-w) * 64 / 414 	);
  }
}
.container .contents .twitter__content__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .container .contents .twitter__content__item:last-child {
    margin-bottom: 0;
  }
}
.container .contents .twitter__content__item__title {
  width: 100%;
  background-color: #f05a78;
}
.container .contents .twitter__content__item__text {
  width: 100%;
  height: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .container .contents .twitter__content__item__text {
    height: calc( 		var(--cont-resp-w) * 88 / 414 	);
    font-size: calc( 		var(--cont-resp-w) * 16 / 414 	);
    line-height: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .twitter__content__item__widget {
  width: 100%;
  height: 400px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .container .contents .twitter__content__item__widget {
    height: calc( 		var(--cont-resp-w) * 400 / 414 	);
  }
}
.container .contents .movie {
  --movie-width: 960px;
  --movie-height: calc(var(--movie-width) * 9 / 16);
  width: 100%;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .container .contents .movie {
    --movie-width: calc(
    	var(--cont-resp-w) * 352 / 414
    );
  }
}
.container .contents .movie__content {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.container .contents .movie__content::before {
  width: 100%;
  height: 382px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  background-color: #f05a78;
  content: "";
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content::before {
    height: calc( 		var(--cont-resp-w) * 274 / 414 	);
  }
}
.container .contents .movie__content::after {
  width: 100%;
  height: 382px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  background-image: url("../images/common/common_grid.png");
  background-repeat: repeat;
  background-size: 20px;
  content: "";
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content::after {
    height: calc( 		var(--cont-resp-w) * 226 / 414 	);
    background-size: calc( 		var(--cont-resp-w) * 10 / 414 	);
  }
}
.container .contents .movie__content__list-wrap {
  width: 100%;
  position: relative;
  z-index: 2;
}
.container .contents .movie__content__list {
  width: 100%;
  height: var(--movie-height);
}
.container .contents .movie__content__item {
  width: var(--movie-width);
  height: var(--movie-height);
  position: relative;
  margin: 0 40px;
  overflow: hidden;
  background-color: black;
  -webkit-box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__item {
    margin: 0 calc( 		var(--cont-resp-w) * 8 / 414 	);
  }
}
.container .contents .movie__content__item.slick-current:hover .movie__content__item__play {
  width: calc(120px * 1.2);
  height: calc(120px * 1.2);
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__item.slick-current:hover .movie__content__item__play {
    width: calc(calc( 		var(--cont-resp-w) * 48 / 414 	) * 1.4);
    height: calc(calc( 		var(--cont-resp-w) * 48 / 414 	) * 1.4);
  }
}
.container .contents .movie__content__item.slick-current:hover .movie__content__item__play--deco {
  width: calc(200px * 1.2);
  height: calc(200px * 1.2);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__item.slick-current:hover .movie__content__item__play--deco {
    width: calc(calc( 		var(--cont-resp-w) * 80 / 414 	) * 1.4);
    height: calc(calc( 		var(--cont-resp-w) * 80 / 414 	) * 1.4);
  }
}
.container .contents .movie__content__item::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  background-color: white;
  content: "";
  opacity: 0.6;
}
.container .contents .movie__content__item:last-child {
  margin-right: 0;
}
.container .contents .movie__content__item > iframe {
  width: var(--movie-width);
  height: calc(var(--movie-height) + 200px);
  margin-top: -100px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__item > iframe {
    display: none;
  }
}
.container .contents .movie__content__item__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: 0.6s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.6s cubic-bezier(0.87, 0, 0.13, 1);
  -o-object-fit: cover;
  object-fit: cover;
}
.container .contents .movie__content__item__img.isHidden {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__item__img.isHidden {
    opacity: 1;
  }
}
.container .contents .movie__content__item__text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__item__text {
    display: none;
  }
}
.container .contents .movie__content__item__text__category {
  position: relative;
  display: inline-block;
  padding: 4px 8px;
  color: transparent;
  background-color: transparent;
}
.container .contents .movie__content__item__text__title {
  position: relative;
  padding: 8px 16px;
  margin-top: 16px;
  font-size: 32px;
  white-space: nowrap;
  color: transparent;
  background-color: transparent;
}
.container .contents .movie__content__item__play {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin: auto;
  border-radius: 50%;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__item__play {
    width: calc( 		var(--cont-resp-w) * 48 / 414 	);
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
  }
}
.container .contents .movie__content__item__play--deco {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin: auto;
  opacity: 0;
  -webkit-animation: rotateAnime 8s linear infinite;
  animation: rotateAnime 8s linear infinite;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__item__play--deco {
    width: calc( 		var(--cont-resp-w) * 80 / 414 	);
    height: calc( 		var(--cont-resp-w) * 80 / 414 	);
    opacity: 1;
  }
}
@-webkit-keyframes rotateAnime {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotateAnime {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.container .contents .movie__content__btns {
  --btn-width: 48px;
  width: calc( 						960px + (var(--btn-width) + 16px) * 2 					);
  height: var(--btn-width);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: auto;
  pointer-events: none;
}
.container .contents .movie__content__btns .slick-arrow {
  width: var(--btn-width);
  height: var(--btn-width);
  border-radius: 50%;
  background-color: white;
  pointer-events: all;
}
.container .contents .movie__content__btns .slick-arrow:hover {
  background-color: #46c3f0;
}
.container .contents .movie__content__btns .slick-arrow:hover span::before, .container .contents .movie__content__btns .slick-arrow:hover span::after {
  background-color: white;
}
.container .contents .movie__content__btns .slick-prev {
  left: calc( 							50% - (var(--movie-width) / 2) - var(--btn-width) - 16px 						);
}
.container .contents .movie__content__btns .slick-next {
  right: calc( 							50% - (var(--movie-width) / 2) - var(--btn-width) - 16px 						);
}
.container .contents .movie__content__dots {
  z-index: 2;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__dots {
    margin-top: calc( 		var(--cont-resp-w) * 32 / 414 	);
  }
}
.container .contents .movie__content__dots .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.container .contents .movie__content__dots .slick-dots > li {
  width: 10px;
  height: 10px;
  margin: 0 8px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.6;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__dots .slick-dots > li {
    width: 8px;
    height: 8px;
    margin: 0 7px;
  }
}
.container .contents .movie__content__dots .slick-dots > li.slick-active {
  opacity: 1;
}
.container .contents .movie__content__more {
  width: 240px;
  height: 48px;
  z-index: 2;
  margin-top: 64px;
  margin-bottom: 48px;
  border: 2px solid white;
  border-radius: 24px;
  color: #46c3f0;
  background-color: white;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .container .contents .movie__content__more {
    width: calc( 		var(--cont-resp-w) * 320 / 414 	);
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
    margin-top: calc( 		var(--cont-resp-w) * 40 / 414 	);
    margin-bottom: calc( 		var(--cont-resp-w) * 48 / 414 	);
    border-radius: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .movie__content__more:hover {
  color: white;
  background-color: #46c3f0;
}
.container .contents .intro {
  width: 100%;
  position: relative;
  padding-bottom: 240px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro {
    padding-bottom: calc( 		var(--cont-resp-w) * 80 / 414 	);
  }
}
.container .contents .intro::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  display: block;
  background-color: #f8f8f8;
  content: "";
}
.container .contents .intro__content {
  width: 1120px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__content {
    width: calc(100% - 32px * 2);
  }
}
.container .contents .intro__content > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.container .contents .intro__content > li::before {
  width: 1400px;
  position: absolute;
  left: 50%;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .container .contents .intro__content > li::before {
    display: none;
  }
}
.container .contents .intro__content > li > figure:nth-child(1) {
  width: 770px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__content > li > figure:nth-child(1) {
    width: 100%;
  }
}
.container .contents .intro__content > li > div {
  width: 540px;
  position: relative;
  padding: 40px;
  border-radius: 4px;
  background-color: white;
  -webkit-box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
}
@media screen and (max-width: 768px) {
  .container .contents .intro__content > li > div {
    width: 100%;
    padding: 0;
    background-color: unset;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.container .contents .intro__content > li > div > h3 {
  width: auto;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__content > li > div > h3 {
    height: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .intro__content > li > div > h3 img {
  width: auto;
  height: 100%;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__content > li > div > h3 img {
    margin-right: calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
}
.container .contents .intro__content > li > div > h3 span {
  color: #f05a78;
}
.container .contents .intro__content > li > div > p {
  margin: calc(32px - (30px - 14px) / 2) 0;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__content > li > div > p {
    margin: calc( 										calc( 		var(--cont-resp-w) * 32 / 414 	) - ( 												calc( 		var(--cont-resp-w) * 30 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	) 											) / 2 									) 0;
    line-height: calc( 		var(--cont-resp-w) * 30 / 414 	);
  }
}
.container .contents .intro__content > li > div > a {
  width: 240px;
  height: 48px;
  border: 2px solid #46c3f0;
  border-radius: 24px;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .container .contents .intro__content > li > div > a {
    width: calc( 		var(--cont-resp-w) * 320 / 414 	);
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
    margin: 0 auto;
    border-radius: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .intro__content > li > div > a:hover {
  color: #46c3f0;
  background-color: white;
}
.container .contents .intro__point {
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__point {
    margin-top: 0;
  }
}
.container .contents .intro__point::before {
  height: 748px;
  bottom: 0;
  background-image: url("../images/top/intro_point-bg.png");
}
.container .contents .intro__point__main-img {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.container .contents .intro__point__main {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-top: -104px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__point__main {
    margin-top: calc( 		var(--cont-resp-w) * 108 / 414 	);
  }
}
.container .contents .intro__point__sub-img {
  position: absolute;
}
.container .contents .intro__point__sub-img--1 {
  width: 460px;
  bottom: 58px;
  left: -40px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__point__sub-img--1 {
    width: calc( 		var(--cont-resp-w) * 184 / 414 	);
    top: calc( 		var(--cont-resp-w) * 166 / 414 	);
    bottom: unset;
    left: calc( 		var(--cont-resp-w) * -14 / 414 	);
  }
}
.container .contents .intro__point__sub-img--2 {
  width: 270px;
  top: -72px;
  right: 144px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__point__sub-img--2 {
    width: calc( 		var(--cont-resp-w) * 96 / 414 	);
    top: calc( 		var(--cont-resp-w) * 132 / 414 	);
    right: calc( 		var(--cont-resp-w) * -20 / 414 	);
  }
}
.container .contents .intro__point__sub-img--3 {
  width: 206px;
  top: 66px;
  right: 8px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__point__sub-img--3 {
    width: calc( 		var(--cont-resp-w) * 80 / 414 	);
    top: calc( 		var(--cont-resp-w) * 198 / 414 	);
    right: calc( 		var(--cont-resp-w) * 70 / 414 	);
  }
}
.container .contents .intro__story {
  margin-top: 240px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__story {
    margin-top: calc( 		var(--cont-resp-w) * 64 / 414 	);
  }
}
.container .contents .intro__story::before {
  height: 900px;
  top: -144px;
  background-image: url("../images/top/intro_story-bg.png");
}
.container .contents .intro__story__main-img {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.container .contents .intro__story__main {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: -104px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__story__main {
    margin-top: calc( 		var(--cont-resp-w) * 108 / 414 	);
  }
}
.container .contents .intro__story__sub-img {
  position: absolute;
}
.container .contents .intro__story__sub-img--1 {
  width: 460px;
  right: 80px;
  bottom: -32px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__story__sub-img--1 {
    width: calc( 		var(--cont-resp-w) * 184 / 414 	);
    top: calc( 		var(--cont-resp-w) * 166 / 414 	);
    right: calc( 		var(--cont-resp-w) * -14 / 414 	);
    bottom: unset;
  }
}
.container .contents .intro__story__sub-img--2 {
  width: 270px;
  top: 16px;
  left: 54px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__story__sub-img--2 {
    width: calc( 		var(--cont-resp-w) * 130 / 414 	);
    left: calc( 		var(--cont-resp-w) * -20 / 414 	);
    margin-top: calc( 		var(--cont-resp-w) * 132 / 414 	);
  }
}
.container .contents .intro__world {
  margin-top: 268px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__world {
    margin-top: calc( 		var(--cont-resp-w) * 64 / 414 	);
  }
}
.container .contents .intro__world::before {
  height: 848px;
  top: -80px;
  background-image: url("../images/top/intro_world-bg.png");
}
.container .contents .intro__world__main-img {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.container .contents .intro__world__main {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-top: -78px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__world__main {
    margin-top: calc( 		var(--cont-resp-w) * 108 / 414 	);
  }
}
.container .contents .intro__world__sub-img {
  position: absolute;
}
.container .contents .intro__world__sub-img--1 {
  width: 460px;
  bottom: 0;
  left: 84px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__world__sub-img--1 {
    width: calc( 		var(--cont-resp-w) * 184 / 414 	);
    top: calc( 		var(--cont-resp-w) * 166 / 414 	);
    right: calc( 		var(--cont-resp-w) * -14 / 414 	);
    bottom: unset;
    left: unset;
  }
}
.container .contents .intro__world__sub-img--2 {
  width: 294px;
  top: -54px;
  right: 94px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__world__sub-img--2 {
    width: calc( 		var(--cont-resp-w) * 96 / 414 	);
    top: calc( 		var(--cont-resp-w) * 132 / 414 	);
    left: calc( 		var(--cont-resp-w) * -20 / 414 	);
  }
}
.container .contents .intro__world__sub-img--3 {
  width: 270px;
  bottom: 94px;
  left: -100px;
}
@media screen and (max-width: 768px) {
  .container .contents .intro__world__sub-img--3 {
    width: calc( 		var(--cont-resp-w) * 80 / 414 	);
    top: calc( 		var(--cont-resp-w) * 198 / 414 	);
    left: calc( 		var(--cont-resp-w) * 70 / 414 	);
  }
}
.container .contents .chara {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .container .contents .chara {
    padding-top: calc( 		var(--cont-resp-w) * 80 / 414 	);
  }
}
.container .contents .chara__content {
  width: 1120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .container .contents .chara__content {
    width: 100%;
  }
}
.container .contents .chara__content .chara__main,
.container .contents .chara__content .chara__sub {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.container .contents .chara__content .chara__main h3,
.container .contents .chara__content .chara__sub h3 {
  height: 18px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .container .contents .chara__content .chara__main h3,
.container .contents .chara__content .chara__sub h3 {
    height: calc( 		var(--cont-resp-w) * 18 / 414 	);
  }
}
.container .contents .chara__content .chara__main h3 img,
.container .contents .chara__content .chara__sub h3 img {
  width: auto;
  height: 100%;
}
.container .contents .chara__content .chara__main h3::after,
.container .contents .chara__content .chara__sub h3::after {
  width: 100%;
  height: 1px;
  display: block;
  margin-top: 10px;
  background-color: #282828;
  content: "";
}
@media screen and (max-width: 768px) {
  .container .contents .chara__content .chara__main h3::after,
.container .contents .chara__content .chara__sub h3::after {
    margin-top: calc( 		var(--cont-resp-w) * 8 / 414 	);
  }
}
.container .contents .chara__main .chara__list li.is-nanase {
  --chara-color: #46c3f0;
}
.container .contents .chara__main .chara__list li.is-towako {
  --chara-color: #916e6e;
}
.container .contents .chara__main .chara__list li.is-ayahina {
  --chara-color: linear-gradient(
  	to right,
  	#f5aa4b 50%,
  	#f06991 50%
  );
}
.container .contents .chara__main .chara__list li.is-an {
  --chara-color: #6eaaf0;
}
.container .contents .chara__main .chara__list li.is-junko {
  --chara-color: #a57dc3;
}
.container .contents .chara__sub {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .container .contents .chara__sub {
    margin-top: calc( 		var(--cont-resp-w) * 64 / 414 	);
  }
}
.container .contents .chara__sub .chara__list li.is-ikue {
  --chara-color: #9999e5;
}
.container .contents .chara__sub .chara__list li.is-riko {
  --chara-color: #ff9982;
}
.container .contents .chara__sub .chara__list li.is-nao {
  --chara-color: #ffd261;
}
.container .contents .chara__sub .chara__list li.is-maju {
  --chara-color: #6ebe50;
}
.container .contents .chara__sub .chara__list li.is-eita {
  --chara-color: #c8c8c8;
}
.container .contents .chara__list {
  width: 100%;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .container .contents .chara__list {
    margin-top: calc( 		var(--cont-resp-w) * 80 / 414 	);
  }
}
.container .contents .chara__list li {
  width: 212px;
  position: relative;
  margin: 0 8px;
}
@media screen and (max-width: 768px) {
  .container .contents .chara__list li {
    width: calc( 		var(--cont-resp-w) * 212 / 414 	);
    margin: 0 calc( 		var(--cont-resp-w) * 8 / 414 	);
  }
  .container .contents .chara__list li.slick-current .chara__box__img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  .container .contents .chara__list li.slick-current .chara__catch {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.container .contents .chara__list li:hover .chara__box__img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
.container .contents .chara__list li:hover .chara__catch {
  opacity: 1;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.container .contents .chara__list li .chara__box {
  width: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--chara-color);
}
.container .contents .chara__list li .chara__box::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-image: url("../images/common/common_grid.png");
  background-repeat: repeat;
  background-size: 20px;
  content: "";
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .container .contents .chara__list li .chara__box::before {
    background-size: calc( 		var(--cont-resp-w) * 20 / 414 	);
  }
}
.container .contents .chara__list li .chara__box__name-eng {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.container .contents .chara__list li .chara__box__img {
  width: 100%;
  position: relative;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.container .contents .chara__list li .chara__name {
  height: 52px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .container .contents .chara__list li .chara__name {
    height: calc( 		var(--cont-resp-w) * 52 / 414 	);
    margin-top: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .chara__list li .chara__name img {
  width: auto;
  height: 100%;
}
.container .contents .chara__list li .chara__catch {
  width: 174px;
  position: absolute;
  top: -44px;
  left: -24px;
  opacity: 0;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}
@media screen and (max-width: 768px) {
  .container .contents .chara__list li .chara__catch {
    width: calc( 		var(--cont-resp-w) * 174 / 414 	);
    top: calc( 		var(--cont-resp-w) * -44 / 414 	);
    left: calc( 		var(--cont-resp-w) * -24 / 414 	);
    opacity: 0;
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}
.container .contents .chara__list li .chara__badge {
  width: 128px;
  position: absolute;
  right: -16px;
  bottom: 64px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .container .contents .chara__list li .chara__badge {
    width: calc( 		var(--cont-resp-w) * 128 / 414 	);
    right: calc( 		var(--cont-resp-w) * -16 / 414 	);
    bottom: calc( 		var(--cont-resp-w) * 64 / 414 	);
  }
}
.container .contents .special {
  width: 100%;
}
.container .contents .special__content {
  width: 1120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .container .contents .special__content {
    width: calc(100% - 32px * 2);
  }
}
.container .contents .special__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .container .contents .special__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.container .contents .special__list > li {
  width: 352px;
  margin-right: calc((100% - 352px * 3) / 2);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.container .contents .special__list > li:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .container .contents .special__list > li {
    width: 100%;
    margin-top: calc( 		var(--cont-resp-w) * 40 / 414 	);
    margin-right: 0;
  }
  .container .contents .special__list > li:first-child {
    margin-top: 0;
  }
}
.container .contents .special__list > li:nth-child(3n) {
  margin-right: 0;
}
.container .contents .special__list > li:nth-child(n+4) {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .container .contents .special__list > li:nth-child(n+4) {
    margin-top: calc( 		var(--cont-resp-w) * 40 / 414 	);
  }
}
.container .contents .special__thumb {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
}
.container .contents .special__sup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 24px;
  color: #282828;
}
@media screen and (max-width: 768px) {
  .container .contents .special__sup {
    margin-top: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .special__sup__date {
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .container .contents .special__sup__date {
    margin-right: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .special__sup__category {
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.container .contents .special__title {
  margin-top: 16px;
  font-size: 20px;
  line-height: 28px;
  color: #282828;
}
@media screen and (max-width: 768px) {
  .container .contents .special__title {
    margin-top: calc( 		var(--cont-resp-w) * 16 / 414 	);
    font-size: calc( 		var(--cont-resp-w) * 20 / 414 	);
    line-height: calc( 		var(--cont-resp-w) * 28 / 414 	);
  }
}
.container .contents .special__more {
  width: 240px;
  height: 48px;
  margin-top: 80px;
  border: 2px solid #46c3f0;
  border-radius: 24px;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.container .contents .special__more:hover {
  color: #46c3f0;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .container .contents .special__more {
    width: calc( 		var(--cont-resp-w) * 320 / 414 	);
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
    margin-top: calc( 		var(--cont-resp-w) * 64 / 414 	);
    border-radius: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .shop {
  width: 100%;
  position: relative;
  padding-top: 80px;
  padding-bottom: 144px;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .container .contents .shop {
    padding-top: calc( 		var(--cont-resp-w) * 80 / 414 	);
    padding-bottom: calc( 		var(--cont-resp-w) * 80 / 414 	);
    margin-top: calc( 		var(--cont-resp-w) * 160 / 414 	);
  }
}
.container .contents .shop::before {
  width: 1600px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  margin: auto;
  background-color: #46c3f0;
  content: "";
}
@media screen and (max-width: 768px) {
  .container .contents .shop::before {
    width: 100%;
  }
}
.container .contents .shop::after {
  width: 1600px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  margin: auto;
  background-image: url("../images/common/common_grid.png");
  background-repeat: repeat;
  background-size: 20px;
  content: "";
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .container .contents .shop::after {
    width: 100%;
    background-size: calc( 		var(--cont-resp-w) * 20 / 414 	);
  }
}
.container .contents .shop__content {
  width: 1120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__content {
    width: calc(100% - 24px * 2);
  }
}
.container .contents .shop__editions {
  width: 100%;
}
.container .contents .shop__editions > li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 32px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: calc( 		var(--cont-resp-w) * 40 / 414 	);
  }
}
.container .contents .shop__editions > li:first-child {
  margin-top: 0;
}
.container .contents .shop__editions__img {
  width: 736px;
  height: 540px;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__img {
    width: 100%;
    height: auto;
  }
}
.container .contents .shop__editions__text {
  width: calc(100% - 736px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 32px 24px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__text {
    width: 100%;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    padding: calc( 		var(--cont-resp-w) * 32 / 414 	) calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
}
.container .contents .shop__editions__text dl dt {
  margin-top: 32px;
  color: #f05a78;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__text dl dt {
    margin-top: calc( 		var(--cont-resp-w) * 32 / 414 	);
  }
}
.container .contents .shop__editions__text dl dt:first-of-type {
  margin-top: 0;
}
.container .contents .shop__editions__text dl dd {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__text dl dd {
    margin-top: calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
}
.container .contents .shop__editions__text__name {
  font-size: 32px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__text__name {
    font-size: calc( 		var(--cont-resp-w) * 20 / 414 	);
  }
}
.container .contents .shop__editions__text__name.isLong {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__text__name.isLong {
    font-size: calc( 		var(--cont-resp-w) * 20 / 414 	);
  }
}
.container .contents .shop__editions__text__price {
  margin-top: calc(16px - (28px - 14px) / 2);
  margin-bottom: calc((28px - 14px) / -2);
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__text__price {
    margin-top: calc( 								calc( 		var(--cont-resp-w) * 16 / 414 	) - ( 										calc( 		var(--cont-resp-w) * 28 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	) 									) / 2 							);
    margin-bottom: calc( 								(calc( 		var(--cont-resp-w) * 28 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	)) / -2 							);
    line-height: calc( 		var(--cont-resp-w) * 28 / 414 	);
  }
}
.container .contents .shop__editions__text__privilege > ul > li {
  margin-top: calc(14px - (28px - 14px) / 2);
  margin-bottom: calc((28px - 14px) / -2);
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__text__privilege > ul > li {
    margin-top: calc( 										calc( 		var(--cont-resp-w) * 14 / 414 	) - ( 												calc( 		var(--cont-resp-w) * 28 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	) 											) / 2 									);
    margin-bottom: calc( 										(calc( 		var(--cont-resp-w) * 28 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	)) / -2 									);
    line-height: calc( 		var(--cont-resp-w) * 28 / 414 	);
  }
}
.container .contents .shop__editions__text__privilege > ul > li:first-child {
  margin-top: calc((28px - 14px) / -2);
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__text__privilege > ul > li:first-child {
    margin-top: calc( 											(calc( 		var(--cont-resp-w) * 28 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	)) / -2 										);
  }
}
.container .contents .shop__editions__text__links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__text__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    margin-top: calc( 		var(--cont-resp-w) * 32 / 414 	);
  }
}
.container .contents .shop__editions__text__link {
  width: calc((100% - 16px) / 2);
  height: 48px;
  border: 2px solid #46c3f0;
  border-radius: 24px;
  font-size: 14px;
  letter-spacing: 0;
  text-indent: 0;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .container .contents .shop__editions__text__link {
    width: 100%;
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
    border-radius: calc( 		var(--cont-resp-w) * 24 / 414 	);
    font-size: calc( 		var(--cont-resp-w) * 16 / 414 	);
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  .container .contents .shop__editions__text__link:first-child {
    margin-bottom: calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
}
.container .contents .shop__editions__text__link:hover {
  color: #46c3f0;
  background-color: white;
}
.container .contents .shop__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__links {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: calc( 		var(--cont-resp-w) * 64 / 414 	);
  }
}
.container .contents .shop__links > li {
  width: 240px;
  height: 48px;
  margin-right: 32px;
  border: 2px solid white;
  border-radius: 24px;
  color: #46c3f0;
  background-color: white;
  -webkit-box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  box-shadow: 6px 6px 30px rgba(40, 40, 40, 0.1);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 768px) {
  .container .contents .shop__links > li {
    width: calc( 		var(--cont-resp-w) * 320 / 414 	);
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
    margin-right: 0;
    margin-bottom: calc( 		var(--cont-resp-w) * 24 / 414 	);
    border-radius: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .shop__links > li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .container .contents .shop__links > li:last-child {
    margin-bottom: 0;
  }
}
.container .contents .shop__links > li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.container .contents .shop__links > li:hover {
  background-color: #46c3f0;
}
.container .contents .shop__links > li:hover a {
  color: white;
}
.container .contents .spec {
  width: 100%;
}
.container .contents .spec__content {
  width: 1120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .container .contents .spec__content {
    width: calc(100% - 32px * 2);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }
}
.container .contents .spec__content > div {
  width: 540px;
}
@media screen and (max-width: 768px) {
  .container .contents .spec__content > div {
    width: 100%;
  }
  .container .contents .spec__content > div:first-child {
    margin-bottom: calc( 		var(--cont-resp-w) * 64 / 414 	);
  }
}
.container .contents .spec__content > div h3 {
  margin-left: 24px;
  color: #f05a78;
}
@media screen and (max-width: 768px) {
  .container .contents .spec__content > div h3 {
    margin-left: calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
}
.container .contents .spec__content > div ul {
  height: 400px;
  padding: 40px 24px;
  margin-top: 24px;
  border-top: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .container .contents .spec__content > div ul {
    height: auto;
    padding: calc( 		var(--cont-resp-w) * 32 / 414 	) calc( 		var(--cont-resp-w) * 16 / 414 	);
    margin-top: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .spec__content > div ul li {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .container .contents .spec__content > div ul li {
    margin-top: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .spec__content > div ul li:first-child {
  margin-top: 0;
}
.container .contents .spec__content > div ul li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.container .contents .spec__content > div ul li dl dt {
  width: 132px;
  margin: calc((24px - 14px) / -2) 0;
  line-height: 24px;
  color: #f05a78;
}
@media screen and (max-width: 768px) {
  .container .contents .spec__content > div ul li dl dt {
    width: calc( 		var(--cont-resp-w) * 132 / 414 	);
    margin: calc( 												(calc( 		var(--cont-resp-w) * 24 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	)) / -2 											) 0;
    line-height: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .contents .spec__content > div ul li dl dd {
  width: calc(100% - 132px);
  margin: calc((24px - 14px) / -2) 0;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .container .contents .spec__content > div ul li dl dd {
    width: calc(100% - spper(132));
    margin: calc( 												(calc( 		var(--cont-resp-w) * 24 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	)) / -2 											) 0;
    line-height: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}