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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "游ゴシック体", "YuGothic", "Yu Gothic Medium", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  width: 100%;
  vertical-align: bottom;
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.site-main {
  margin-bottom: 140px;
}

@media (max-width: 47.9375em) {
  .site-main {
    margin-bottom: 120px;
  }
}

@media (max-width: 48em) {
  .site-aside .o-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 50;
  }
}

@media (min-width: 48.0625em) {
  .site-aside .o-header {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100px;
  }
}

@media (min-width: 48.0625em) {
  .content-container {
    margin-left: 100px;
  }
}

@media (max-width: 48em) {
  .content-container {
    margin-top: 60px;
  }
}

.p-index-supporter {
  margin-top: 70px;
}

@media (min-width: 48em) {
  .p-index-supporter {
    margin-top: 100px;
  }
}

.o-about {
  margin-top: 56px;
}

@media (min-width: 48em) {
  .o-about {
    margin-top: 120px;
    margin-left: 50px;
    margin-right: 50px;
  }
}

.o-about__inner {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 48em) {
  .o-about__logo {
    width: 100%;
    max-width: 630px;
  }
}

@media (max-width: 47.9375em) {
  .o-about__logo {
    margin-left: 24px;
    margin-right: 24px;
  }
}

.o-about__description {
  width: 100%;
  max-width: 630px;
  margin-left: auto;
  margin-right: 0;
  margin-top: -30px;
  position: relative;
  letter-spacing: 0.04em;
}

@media (min-width: 48em) {
  .o-about__description {
    padding: 90px 60px 50px;
  }
}

@media (max-width: 47.9375em) {
  .o-about__description {
    margin-top: -17px;
    padding: 40px 24px 40px;
  }
}

.o-about__description::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  background-color: #EEE;
  z-index: -1;
  top: 0;
}

@media (min-width: 48em) {
  .o-about__description::before {
    left: 0;
    width: 100%;
  }
}

@media (max-width: 47.9375em) {
  .o-about__description::before {
    right: 0;
    width: 88%;
  }
}

.o-about__descriptionText {
  font-weight: 700;
  line-height: 2;
  margin-bottom: 2rem;
}

@media (max-width: 47.9375em) {
  .o-about__descriptionText {
    line-height: 1.8;
  }
}

.a-arrow svg {
  vertical-align: top;
}

.a-arrow path {
  -webkit-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
  fill: transparent;
  stroke: #D7000F;
}

.o-fixedBanner {
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.01;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  width: 255px;
  height: 91px;
  background-color: #000;
}

@media (min-width: 48em) {
  .o-fixedBanner {
    width: 320px;
    height: 100px;
  }
}

.o-fixedBanner.is-show {
  opacity: 1;
  z-index: 10;
}

.o-fixedBanner::before, .o-fixedBanner:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  background-color: rgba(255, 255, 255, 0.6);
}

.o-fixedBanner::after {
  width: 1px;
  top: 0;
  height: 100%;
}

.o-fixedBanner::before {
  height: 1px;
  width: calc(100% + 1px);
}

.o-fixedBanner__linkWrap {
  position: relative;
}

.o-fixedBanner__linkWrap::after, .o-fixedBanner__linkWrap::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.o-fixedBanner__linkWrap::before {
  z-index: 0;
  height: 100%;
  background-color: #222;
}

.o-fixedBanner__linkWrap::after {
  height: 0%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 9;
  background-color: #D7000F;
}

@media (min-width: 48em) {
  .o-fixedBanner__linkWrap:hover::after {
    height: 100%;
  }
  .o-fixedBanner__linkWrap:hover .a-arrow path {
    stroke: #FFF;
  }
}

.o-fixedBanner__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFF;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  position: relative;
  height: 100%;
  z-index: 24;
  width: 100%;
}

@media (min-width: 48em) {
  .o-fixedBanner__link {
    padding: 20px 40px;
  }
}

.o-fixedBanner__icon {
  margin-right: 16px;
  z-index: 11;
  -ms-flex-preferred-size: 38px;
      flex-basis: 38px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 47.9375em) {
  .o-fixedBanner__icon {
    -ms-flex-preferred-size: 30px;
        flex-basis: 30px;
  }
}

.o-fixedBanner__closeButton {
  z-index: 25;
  position: absolute;
  cursor: pointer;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background-color: #444;
}

@media (min-width: 48em) {
  .o-fixedBanner__closeButton {
    width: 30px;
    height: 30px;
  }
}

.o-fixedBanner__closeButton::after, .o-fixedBanner__closeButton::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 1px;
  background-color: #fff;
}

.o-fixedBanner__closeButton::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.o-fixedBanner__closeButton::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.o-fixedBanner__catch {
  position: relative;
  z-index: 11;
}

.o-fixedBanner__linkText {
  margin-bottom: 6px;
  line-height: 1.25;
  font-weight: 700;
}

@media (max-width: 47.9375em) {
  .o-fixedBanner__linkText {
    font-size: 0.8125rem;
  }
}

.o-fixedBanner__linkText.-link {
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 0;
}

@media (max-width: 47.9375em) {
  .o-fixedBanner__linkText.-link {
    font-size: 0.75rem;
  }
}

.o-fixedBanner__linkText.-link .a-arrow {
  margin-left: 7px;
  width: 53px;
  display: inline-block;
}

@media (max-width: 47.9375em) {
  .o-fixedBanner__linkText.-link .a-arrow {
    width: 38px;
  }
}

.o-fixedBanner__linkText.-link .a-arrow svg {
  max-width: 100%;
}

.o-footer {
  margin-top: 180px;
  position: relative;
  padding-bottom: 30px;
}

@media (max-width: 47.9375em) {
  .o-footer {
    margin-top: 100px;
    padding-bottom: 100px;
  }
}

.o-footer__schoolList {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 48em) {
  .o-footer__schoolList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 560px;
  }
}

@media (min-width: 73.75em) {
  .o-footer__schoolList {
    max-width: 870px;
  }
}

.o-footer__schoolItem {
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
}

@media (min-width: 48em) {
  .o-footer__schoolItem .o-footer__schoolLink:hover {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.6;
  }
}

@media (max-width: 73.6875em) {
  .o-footer__schoolItem:first-child {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .o-footer__schoolItem:first-child .o-footer__schoolLink {
    display: block;
    width: 250px;
    margin: 0 auto 40px;
  }
}

@media (max-width: 47.9375em) {
  .o-footer__schoolItem:first-child .o-footer__schoolLink {
    margin: 0 auto;
  }
}

@media (max-width: 47.9375em) {
  .o-footer__schoolItem .o-footer__schoolLink {
    display: block;
    width: 250px;
    margin: 50px auto 0;
  }
}

.o-footer__toTopButton {
  display: block;
  width: 100%;
  height: 100%;
}

.o-footer__copy {
  font-size: 0.625rem;
  margin-top: 70px;
  text-align: center;
}

@media (min-width: 48em) {
  .o-footer__copy {
    margin-top: 110px;
    margin-right: 100px;
    text-align: right;
  }
}

.o-footer__toTop {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
}

.o-footer__toTop::after, .o-footer__toTop::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.o-footer__toTop::after {
  height: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #D7000F;
}

.o-footer__toTop::before {
  height: 100%;
  z-index: -1;
  background-color: #222;
}

@media (min-width: 48em) {
  .o-footer__toTop:hover::after {
    height: 100%;
  }
}

.o-footer__toTop .a-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.o-footer__toTop .a-arrow path {
  stroke: #FFF;
}

.o-header {
  background-color: #222;
}

@media (max-width: 48em) {
  .o-header::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    bottom: -1px;
    left: 0;
  }
}

.o-header__inner {
  position: relative;
  height: 100%;
}

@media (max-width: 48em) {
  .o-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 24px;
    padding-right: 20px;
  }
}

@media (max-width: 48em) {
  .o-header__titleWrap {
    width: 214px;
  }
}

@media (min-width: 48.0625em) {
  .o-header__titleWrap {
    position: absolute;
    max-width: 40px;
    width: 3.6vh;
    top: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.o-header__title {
  width: 100%;
}

.o-header__catch {
  margin-top: 30px;
  width: 100%;
}

@media (max-width: 48em) {
  .o-header__catch {
    display: none;
  }
}

@media (min-width: 48.0625em) {
  .o-header__socialLinks {
    text-align: center;
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.o-header__socialLinksTitle {
  color: #FFF;
  font-size: 0.6875rem;
}

.o-header__socialLinksTitle .inner {
  font-family: "Josefin Sans", sans-serif;
}

.o-header__socialLinksTitle .inner::after {
  content: "";
  margin-top: 6px;
  display: block;
  width: 12px;
  height: 1px;
  background-color: #D7000F;
  margin: 4px auto 0;
}

@media (max-width: 48em) {
  .o-header__socialLinksTitle {
    cursor: pointer;
    font-size: 0.625rem;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #FFF;
    border-radius: 50%;
    position: relative;
  }
  .o-header__socialLinksTitle .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .o-header__socialLinksTitle::after, .o-header__socialLinksTitle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: block;
    width: 12px;
    height: 1px;
    background-color: #D7000F;
    visibility: hidden;
  }
  .o-header__socialLinksTitle::after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .o-header__socialLinksTitle::before {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .o-header__socialLinksTitle.is-show .inner {
    visibility: hidden;
  }
  .o-header__socialLinksTitle.is-show::after, .o-header__socialLinksTitle.is-show::before {
    visibility: visible;
  }
}

@media (min-width: 48.0625em) {
  .o-header__socialLinkList {
    width: 30px;
    margin: 15px auto 0;
  }
}

@media (max-width: 48em) {
  .o-header__socialLinkList {
    height: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    width: 80px;
    position: absolute;
    right: 0;
    top: 59px;
    background-color: #222;
    z-index: 50;
  }
  .o-header__socialLinkList .o-header__socialLinkItem {
    visibility: hidden;
    opacity: 0;
  }
  .o-header__socialLinkList.is-show {
    height: 190px;
  }
  .o-header__socialLinkList.is-show .o-header__socialLinkItem {
    visibility: visible;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transition-delay: 0.1s;
         -o-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
}

.o-header__socialLinkItem {
  margin-bottom: 16px;
}

.o-header__socialLinkItem:last-child {
  margin-bottom: 0;
}

@media (max-width: 48em) {
  .o-header__socialLinkItem {
    width: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  .o-header__socialLinkItem:first-child {
    padding-top: 10px;
  }
  .o-header__socialLinkItem:last-child {
    padding-bottom: 20px;
  }
}

.js-fadeIn-target {
  opacity: 0.01;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.js-fadeIn-target.is-show {
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.-nofadein .js-fadeIn-target {
  opacity: 1;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}

.js-blurShowTarget {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 1;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  background-color: #fff;
}

.js-blurShowTarget.is-show {
  -webkit-transition-delay: 0.8s;
       -o-transition-delay: 0.8s;
          transition-delay: 0.8s;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
}

.lazyload {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.lazyloaded {
  opacity: 1;
}

.m-shopCard {
  position: relative;
}

@media (min-width: 48em) {
  .m-shopCard {
    max-height: 800px;
    min-height: 576px;
    overflow: hidden;
  }
}

@media (min-width: 48em) {
  .m-shopCard .m-shopCardMeta {
    position: absolute;
    top: 0;
    left: 20px;
    width: 130px;
  }
}

@media (max-width: 47.9375em) {
  .m-shopCard .m-shopCardMeta__inner {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

@media (max-width: 47.9375em) {
  .m-shopCard .m-shopCardMeta__logo {
    position: absolute;
    left: 0;
    top: 0;
  }
}

.m-shopCard.-mystandard .m-shopCardMeta__title {
  word-break: break-all;
}

.m-shopCard__thumb {
  position: relative;
  width: 100%;
  max-height: 100%;
  padding-top: 100%;
}

@media (min-width: 73.75em) {
  .m-shopCard__thumb {
    min-height: 576px;
    padding-top: 100%;
  }
}

.m-shopCard__thumb > picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}

.m-shopCard__discription {
  position: relative;
}

@media (min-width: 48em) {
  .m-shopCard__discription {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.m-shopCard__storeLinkWrap {
  position: relative;
  display: block;
}

@media (max-width: 47.9375em) {
  .m-shopCard__storeLinkWrap {
    width: 100%;
    height: 4rem;
  }
  .m-shopCard__storeLinkWrap .a-arrow svg {
    vertical-align: baseline;
    margin-bottom: 3px;
  }
}

@media (min-width: 48em) {
  .m-shopCard__storeLinkWrap {
    -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
  }
}

.m-shopCard__storeLinkWrap .m-shopCard__storeLink {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 3;
  position: relative;
}

.m-shopCard__storeLinkWrap .m-shopCard__storeLinkText {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 700;
  z-index: 3;
  font-family: "Josefin Sans", sans-serif;
}

@media (min-width: 48em) {
  .m-shopCard__storeLinkWrap .m-shopCard__storeLinkText {
    margin-top: 4px;
    margin-left: 3px;
  }
}

.m-shopCard__storeLinkWrap::after, .m-shopCard__storeLinkWrap::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.m-shopCard__storeLinkWrap::before {
  z-index: 0;
  height: 100%;
  background-color: #222;
}

@media (min-width: 48em) {
  .m-shopCard__storeLinkWrap::before {
    background-color: rgba(34, 34, 34, 0.85);
  }
}

.m-shopCard__storeLinkWrap::after {
  height: 0%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
  background-color: #D7000F;
}

@media (min-width: 48em) {
  .m-shopCard__storeLinkWrap:hover::after {
    height: 100%;
  }
  .m-shopCard__storeLinkWrap:hover .a-arrow path {
    stroke: #FFF;
  }
}

.m-shopCard__shopIntroduction {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding: 24px;
}

.m-shopCard__discriptionInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 30px;
}

@media (max-width: 47.9375em) {
  .m-shopCard__discriptionInner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.m-shopCard__title {
  font-size: 0.75rem;
  display: block;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
}

@media (min-width: 48em) {
  .m-shopCard__title {
    height: 3.4375rem;
  }
}

@media (max-width: 47.9375em) {
  .m-shopCard__title {
    font-size: 15px;
  }
}

.m-shopCard__title::before {
  content: "";
  margin-bottom: 8px;
  display: block;
  width: 12px;
  height: 1px;
  background-color: #D7000F;
}

.m-shopCard__titleText {
  letter-spacing: 0.06em;
}

@media (min-width: 48em) {
  .m-shopCard__titleText {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}

.m-shopCard__item {
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif;
  padding-left: 2.25rem;
  position: relative;
}

.m-shopCard__itemTitle {
  font-family: "Josefin Sans", sans-serif;
  position: absolute;
  left: 0;
  top: 0;
}

.m-shopCard__interviewLinkText {
  font-family: "Josefin Sans", sans-serif;
}

.m-shopCard__interviewLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
  width: 8.125rem;
  padding: 0.625rem 0rem 0.4375rem 1rem;
  font-size: 0.8125rem;
  position: relative;
  z-index: 3;
}

.m-shopCard__interviewLink .a-arrow {
  margin-left: 6px;
}

.m-shopCard__interviewLink::after, .m-shopCard__interviewLink::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.m-shopCard__interviewLink::after {
  width: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #D7000F;
}

.m-shopCard__interviewLink::before {
  width: 100%;
  z-index: -1;
  background-color: #222;
}

@media (min-width: 48em) {
  .m-shopCard__interviewLink:hover::after {
    width: 100%;
  }
  .m-shopCard__interviewLink:hover .a-arrow path {
    stroke: #FFF;
  }
}

.m-shopCardMeta {
  color: #FFF;
}

.m-shopCardMeta p {
  display: block;
  line-height: 1.32;
  font-family: "Josefin Sans", sans-serif;
}

.m-shopCardMeta__inner {
  padding: 1.5rem 1.25rem 1.875rem;
  background-color: rgba(34, 34, 34, 0.85);
}

@media (max-width: 47.9375em) {
  .m-shopCardMeta__inner {
    display: inline-block;
  }
}

.m-shopCardMeta__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (min-width: 48em) {
  .m-shopCardMeta__title {
    text-align: center;
  }
}

@media (max-width: 47.9375em) {
  .m-shopCardMeta__title {
    margin-bottom: 18px;
    font-size: 1.25rem;
  }
}

@media (max-width: 47.9375em) {
  .m-shopCardMeta__logo {
    width: 110px;
  }
}

.m-shopCardMeta__belongs {
  font-size: 0.625rem;
  font-weight: 700;
}

.m-shopCardMeta__belongs::after {
  content: "";
  margin-top: 6px;
  display: block;
  width: 12px;
  height: 1px;
  background-color: #D7000F;
  margin-bottom: 22px;
}

@media (max-width: 47.9375em) {
  .m-shopCardMeta__belongs::after {
    margin-bottom: 10px;
  }
}

.m-shopCardMeta__depart {
  font-size: 0.625rem;
  margin-bottom: 20px;
}

@media (max-width: 47.9375em) {
  .m-shopCardMeta__depart {
    margin-bottom: 10px;
  }
}

.m-shopCardMeta__name {
  font-size: 0.75rem;
  font-weight: 700;
}

@media (min-width: 48em) {
  .m-shopCardMeta__name {
    text-align: center;
  }
}

.m-shopCardMeta__name.-co {
  margin-top: 10px;
}

@media (min-width: 48em) {
  .o-shops {
    margin: 120px 50px 0;
  }
}

@media (max-width: 47.9375em) {
  .o-shops {
    margin-top: 70px;
  }
}

.o-shops__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -50px;
}

@media (max-width: 73.6875em) {
  .o-shops__list {
    margin-bottom: -70px;
  }
}

.o-shops__item {
  margin-bottom: 50px;
}

@media (max-width: 73.6875em) {
  .o-shops__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 70px;
  }
}

@media (min-width: 73.75em) {
  .o-shops__item {
    -ms-flex-preferred-size: calc((100% - 50px) /2);
        flex-basis: calc((100% - 50px) /2);
  }
  .o-shops__item:nth-child(2n) {
    margin-left: 50px;
  }
}

.m-snsLink img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media (min-width: 48em) {
  .m-snsLink:hover img {
    -webkit-transform: scale(1.33);
            transform: scale(1.33);
  }
}

.m-supporterLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.m-supporterLogo__supportText {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  margin-right: 24px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
}

.m-supporterLogo__logo {
  width: 155px;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (min-width: 48em) {
  .m-supporterLogo__logo:hover {
    opacity: 0.6;
  }
}

.o-swiper__heroTitle {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  width: calc(100% - 20px);
  max-width: 1100px;
  top: calc(50% - 12px);
}

.o-swiper__heroImage {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

@media (min-width: 48.0625em) {
  .o-swiper__heroImage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.o-swiper__scrollIcon {
  position: absolute;
  width: 64px;
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

@media (max-width: 48em) {
  .swiper-container {
    width: 100%;
    height: 50%;
  }
}

@media (min-width: 48.0625em) {
  .swiper-container {
    width: 50%;
    height: 100%;
  }
}

.swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}

.swiper-container.-sub {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-container.-sub .swiper-wrapper .swiper-slide {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 48em) {
  .u-br-narrow {
    display: none;
  }
}

@media (max-width: 47.9375em) {
  .u-br-wide {
    display: none;
  }
}

.u-object-fit__cover {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}

.u-object-fit__contain {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain";
}

.u-sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 0.0625rem;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 0.0625rem;
}
