@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 .common-page-title {
  background-image: url("../images/shop/shop_header_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.container .shop-contents {
  width: 1120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .container .shop-contents {
    width: calc(100% - 32px * 2);
  }
}
.container .shop-contents .shop-tab-btns {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  outline: 1px solid #f05a78;
}
.container .shop-contents .shop-tab-btns li {
  width: 50%;
  height: 48px;
  position: relative;
  border-right: 1px solid #f05a78;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-btns li {
    width: calc(100% / 2);
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
  }
}
.container .shop-contents .shop-tab-btns li.isClosed {
  pointer-events: none;
}
.container .shop-contents .shop-tab-btns li.isClosed label {
  color: #e1e1e1;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-btns li:nth-of-type(2) {
    width: calc(100% / 2);
  }
}
.container .shop-contents .shop-tab-btns li:last-child {
  border: none;
}
.container .shop-contents .shop-tab-btns li::before {
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: 0 auto;
  border-color: #f05a78 transparent transparent transparent;
  border-style: solid;
  border-width: 14px 14px 0 14px;
  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);
}
.container .shop-contents .shop-tab-btns li label {
  width: 100%;
  height: 100%;
  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;
  font-size: 18px;
  color: #f05a78;
  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 .shop-contents .shop-tab-btns li label {
    font-size: calc( 		var(--cont-resp-w) * 14 / 414 	);
    white-space: nowrap;
  }
}
.container .shop-contents .shop-tab-btns li label:hover {
  color: white;
  background-color: #f05a78;
}
.container .shop-contents .shop-tab-body {
  width: 100%;
  position: relative;
  margin-top: 120px;
  /* ====================== HOWTO ====================== */
  /* ====================== RESERVE ====================== */
  /* ====================== BUNDLE ====================== */
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body {
    margin-top: calc( 		var(--cont-resp-w) * 80 / 414 	);
  }
}
.container .shop-contents .shop-tab-body > li {
  width: 100%;
  height: 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);
  pointer-events: none;
}
.container .shop-contents .shop-tab-body__howto {
  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 .shop-contents .shop-tab-body__howto__content {
  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 .shop-contents .shop-tab-body__howto__content {
    -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 .shop-contents .shop-tab-body__howto__online, .container .shop-contents .shop-tab-body__howto__real {
  width: 540px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__howto__online, .container .shop-contents .shop-tab-body__howto__real {
    width: 100%;
  }
}
.container .shop-contents .shop-tab-body__howto__online h3, .container .shop-contents .shop-tab-body__howto__real h3 {
  width: 100%;
}
.container .shop-contents .shop-tab-body__howto__online > p, .container .shop-contents .shop-tab-body__howto__real > p {
  width: 100%;
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__howto__online > p, .container .shop-contents .shop-tab-body__howto__real > p {
    margin-top: calc( 		var(--cont-resp-w) * 42 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__howto__real {
  margin-top: calc( 		var(--cont-resp-w) * 56 / 414 	);
}
.container .shop-contents .shop-tab-body__howto__btn {
  margin-top: 56px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__howto__btn {
    width: 100%;
    margin-top: calc( 		var(--cont-resp-w) * 56 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-items {
  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 .shop-contents .shop-tab-body__reserve .reserve-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item {
  width: calc((100% - 32px * 2) / 3);
  margin-top: 80px;
  margin-right: 32px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item {
    width: 100%;
    margin-top: calc( 		var(--cont-resp-w) * 80 / 414 	);
    margin-right: 0;
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item--tapestry:nth-child(-n+3) {
  margin-top: 0;
}
.container .shop-contents .shop-tab-body__reserve .reserve-item:nth-of-type(3n) {
  margin-right: 0;
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__text__name {
  font-size: 32px;
  color: #f05a78;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item__text__name {
    font-size: calc( 		var(--cont-resp-w) * 32 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__text__name > span {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item__text__name > span {
    font-size: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__text__name.isLong {
  height: 32px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item__text__name.isLong {
    height: auto;
    font-size: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__text__name.isLong > span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item__text__name.isLong > span {
    font-size: calc( 		var(--cont-resp-w) * 20 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__text__desc {
  margin-top: 16px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item__text__desc {
    margin-top: calc( 		var(--cont-resp-w) * 16 / 414 	);
    font-size: calc( 		var(--cont-resp-w) * 16 / 414 	);
    line-height: calc( 		var(--cont-resp-w) * 28 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__img {
  width: 100%;
  position: relative;
  margin-top: 32px;
  -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 .shop-contents .shop-tab-body__reserve .reserve-item__img {
    margin-top: calc( 		var(--cont-resp-w) * 32 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__img img {
  border-radius: 4px;
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__img__badge {
  width: 120px;
  position: absolute;
  top: -25px;
  right: -20px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item__img__badge {
    width: calc( 		var(--cont-resp-w) * 120 / 414 	);
    top: calc( 		var(--cont-resp-w) * -40 / 414 	);
    right: calc( 		var(--cont-resp-w) * -20 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__link {
  width: 100%;
  height: 48px;
  display: block;
  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;
  margin: 24px auto 0;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item__link {
    height: calc( 		var(--cont-resp-w) * 48 / 414 	);
    margin: calc( 		var(--cont-resp-w) * 24 / 414 	) auto 0;
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__link.isClosed {
  border: none;
  color: #282828;
  background-color: #e1e1e1;
  pointer-events: none;
}
.container .shop-contents .shop-tab-body__reserve .reserve-item__link.isLong {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item__link.isLong {
    font-size: calc( 		var(--cont-resp-w) * 13 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item--sofmap {
  width: 100%;
  margin-top: 0;
  margin-right: 0;
}
.container .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__text {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__text {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    -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 .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__text__desc {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__text__desc {
    margin-top: calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__imgs {
  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 .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__imgs {
    -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 .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__img {
  width: 540px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__img {
    width: 100%;
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__img__badge {
  top: -20px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__img__badge {
    top: calc( 		var(--cont-resp-w) * -20 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__link {
  width: calc( 									(100% - 32px * 2) / 3 								);
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__reserve .reserve-item--sofmap .reserve-item__link {
    width: 100%;
  }
}
.container .shop-contents .shop-tab-body__bundle .bundle-list {
  width: 100%;
}
.container .shop-contents .shop-tab-body__bundle .bundle-list > li {
  width: 100%;
  margin-top: calc(80px - (26px - 14px) / 2);
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__bundle .bundle-list > li {
    margin-top: calc( 								calc( 		var(--cont-resp-w) * 80 / 414 	) - ( 										calc( 		var(--cont-resp-w) * 26 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	) 									) / 2 							);
  }
}
.container .shop-contents .shop-tab-body__bundle .bundle-list > li:first-child {
  margin-top: 0;
}
.container .shop-contents .shop-tab-body__bundle .bundle-list__img {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 12px rgba(40, 40, 40, 0.1);
  box-shadow: 5px 5px 12px rgba(40, 40, 40, 0.1);
}
.container .shop-contents .shop-tab-body__bundle .bundle-list__title {
  margin-top: 40px;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__bundle .bundle-list__title {
    margin-top: calc( 		var(--cont-resp-w) * 32 / 414 	);
    font-size: calc( 		var(--cont-resp-w) * 24 / 414 	);
    line-height: calc( 		var(--cont-resp-w) * 32 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__bundle .bundle-list__text {
  margin-top: calc(32px - (26px - 14px) / 2);
  line-height: 26px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__bundle .bundle-list__text {
    margin-top: calc( 								calc( 		var(--cont-resp-w) * 32 / 414 	) - ( 										calc( 		var(--cont-resp-w) * 26 / 414 	) - calc( 		var(--cont-resp-w) * 14 / 414 	) 									) / 2 							);
    line-height: calc( 		var(--cont-resp-w) * 26 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__bundle .bundle__price-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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__bundle .bundle__price-list {
    -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 .shop-contents .shop-tab-body__bundle .bundle__price-list > li {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__bundle .bundle__price-list > li {
    width: 100%;
    margin-top: calc( 		var(--cont-resp-w) * 32 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__bundle .bundle__price-list > li dl {
  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;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__bundle .bundle__price-list > li dl {
    font-size: calc( 		var(--cont-resp-w) * 24 / 414 	);
  }
}
.container .shop-contents .shop-tab-body__bundle .bundle__price-list > li dl dt {
  color: #f05a78;
}
.container .shop-contents .shop-tab-body__bundle .bundle__price-list > li dl dd {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .container .shop-contents .shop-tab-body__bundle .bundle__price-list > li dl dd {
    margin-top: calc( 		var(--cont-resp-w) * 16 / 414 	);
  }
}
.container .shop-contents #switch-shop-howto:checked ~ .shop-tab-btns .shop-tab-btns__howto::before,
.container .shop-contents #switch-shop-reserve:checked ~ .shop-tab-btns .shop-tab-btns__reserve::before,
.container .shop-contents #switch-shop-bundle:checked ~ .shop-tab-btns .shop-tab-btns__bundle::before {
  bottom: calc(14px * -1);
}
.container .shop-contents #switch-shop-howto:checked ~ .shop-tab-btns .shop-tab-btns__howto label,
.container .shop-contents #switch-shop-reserve:checked ~ .shop-tab-btns .shop-tab-btns__reserve label,
.container .shop-contents #switch-shop-bundle:checked ~ .shop-tab-btns .shop-tab-btns__bundle label {
  color: white;
  background-color: #f05a78;
  pointer-events: none;
}
.container .shop-contents #switch-shop-howto:checked ~ .shop-tab-body .shop-tab-body__howto,
.container .shop-contents #switch-shop-reserve:checked ~ .shop-tab-body .shop-tab-body__reserve,
.container .shop-contents #switch-shop-bundle:checked ~ .shop-tab-body .shop-tab-body__bundle {
  height: auto;
  opacity: 1;
  pointer-events: all;
}