@charset "UTF-8";
/*======================================================
    1. Reset
    2. Base
    3. Modules
    4. Layouts(common/header/footer)
======================================================*/
/* Reset
------------------------------------------------------*/
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* slick
------------------------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Base
------------------------------------------------------*/
html,
body {
  -webkit-text-size-adjust: 100%;
}

html {
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 12px;
  line-height: 1.8;
  word-wrap: break-word;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  letter-spacing: 0.64px;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.inner-pt-01 {
  padding-bottom: 90px;
}

a {
  text-decoration: none;
  color: #111;
  -webkit-transition: .3s;
  transition: .3s;
}

/* Vendor
------------------------------------------------------*/
.recommended-street-shop-images-slider {
  opacity: 0;
}

.recommended-street-shop-images-slider.slick-initialized {
  opacity: 1;
}

.recommended-street-shop-images-slider .slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.recommended-street-shop-images-slider .slick-dots li:not(:first-of-type) {
  margin-left: 10px;
}

.recommended-street-shop-images-slider .slick-dots li.slick-active button {
  background: #000000;
}

.recommended-street-shop-images-slider .slick-dots li button {
  border: 1px solid #000000;
  background: #ffffff;
  text-indent: -9999px;
  padding: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  outline: none;
  border-radius: 50rem;
}

/* Modules
------------------------------------------------------*/
/* Modules
------------------------------------------------------*/
#wrapper {
  overflow: hidden;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

div img {
  vertical-align: top;
}

img {
  max-width: 100%;
  height: auto;
}

b,
strong,
.bold {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

/* IEだけに適応 */
_:lang(x)::-ms-backdrop,
.selector {
  font-family: "Segoe UI", Meiryo, sans-serif;
}

.bold_ja {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 700;
}

.ico-blank:after {
  content: "";
  position: relative;
  display: inline-block;
  background: url("/memot/_assets/images/common/ico-blank.svg");
  background-size: 13px 13px;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin-left: 5px;
}

.link-bar {
  text-decoration: underline;
}

.rounded-txt {
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 16px 96px;
  text-align: center;
  vertical-align: middle;
  color: #212529;
  border-radius: 50rem;
  border: 2px solid #555;
}

.rounded-txt.ico-fukidashi:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 28px;
  background: url("/memot/_assets/images/common/ico-fukidashi.png");
  position: absolute;
  bottom: -28px;
  right: 72px;
  margin: 0;
  padding: 0;
}

.rounded-btn {
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 16px 96px;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #212529;
  border-radius: 50rem;
  border: 2px solid #555;
  max-width: 1200px;
}

.rounded-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.rounded-btn:hover.ico-chevron-right:before {
  background: url("/memot/_assets/images/common/ico-chevron-right-white.svg");
}

.ico-chevron-right:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("/memot/_assets/images/common/ico-chevron-right.svg");
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  margin: 0;
  padding: 0;
}

.ico-caret-right:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("/memot/_assets/images/common/ico-caret-right-s.svg");
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  margin: 0;
  padding: 0;
}

.ribbon {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  padding: 0;
  font-size: 18px;
  background: #000000;
  color: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ribbon:before {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
  top: 0;
  left: 0;
  border-width: 21px 0px 21px 15px;
  border-color: transparent transparent transparent #ededed;
  border-style: solid;
}

.ribbon:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
  top: 0;
  right: 0;
  border-width: 21px 15px 21px 0px;
  border-color: transparent #ededed transparent transparent;
  border-style: solid;
}

.bottom-arrow {
  position: relative;
  padding-right: 25px;
}

.bottom-arrow:before {
  position: absolute;
  content: '';
  bottom: -1px;
  right: 0;
  width: 0;
  height: 0;
  border: none;
  border-right: solid 21px transparent;
  border-bottom: solid 7px #000000;
}

.bottom-arrow:after {
  position: absolute;
  content: '';
  bottom: -1px;
  right: 10px;
  width: calc(100% - 10px);
  border-bottom: solid 1px #000000;
}

section {
  max-width: 100%;
  padding: 0 15px;
}

.hover-shadow {
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.hover-shadow:hover {
  -webkit-box-shadow: 0 4px 7px 4px rgba(0, 0, 0, 0.25) !important;
          box-shadow: 0 4px 7px 4px rgba(0, 0, 0, 0.25) !important;
  -webkit-transform: translateY(-5px) !important;
          transform: translateY(-5px) !important;
}

.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 3;
  background-color: #444;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  line-height: 60px;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
}

.scroll-top.show-scroll-top {
  height: auto;
  opacity: 0.7;
  visibility: visible;
}

.scroll-top:hover {
  cursor: pointer;
}

.f12 {
  font-size: 12px !important;
}

.f14 {
  font-size: 14px !important;
}

.f16 {
  font-size: 16px !important;
}

.f18 {
  font-size: 18px !important;
}

.f20 {
  font-size: 20px !important;
}

.f22 {
  font-size: 22px !important;
}

.f24 {
  font-size: 24px !important;
}

.text-center {
  text-align: center !important;
}

.horizontal-tb-num {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  line-height: 1;
}

.address-list ul {
  display: table;
  width: 100%;
}

.address-list li {
  list-style: none;
  font-size: 13px;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.address-list li img {
  width: 13px;
  height: 13px;
  margin-right: 6px;
  margin-top: 6px;
}

.address-list li.station {
  margin-bottom: 4px;
}

.address-list li.shop-name {
  line-height: 1.2;
  font-size: 18px;
  font-weight: bold;
}

.address-list li.shop-name + li {
  font-size: 12px;
  margin-bottom: 4px;
}

.address-list li span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: auto;
  word-break: break-all;
}

.cp_box, .cp_box2, .cp_box3 {
  position: relative;
}

.cp_box *, .cp_box2 *, .cp_box3 * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cp_box *:before, .cp_box2 *:before, .cp_box3 *:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cp_box *:after, .cp_box2 *:after, .cp_box3 *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cp_box label, .cp_box2 label, .cp_box3 label {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  /* グラデーションの高さ */
  height: 80px;
  cursor: pointer;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, rgba(255, 255, 255, 0.95)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}

.cp_box label:after, .cp_box2 label:after, .cp_box3 label:after {
  position: absolute;
  font-size: 16px;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  width: 180px;
  content: "…続きを読む";
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  letter-spacing: 0.05em;
  color: #ffffff;
  border-radius: 20px;
  background-color: #1b2538;
  padding: 5px;
}

.cp_box input, .cp_box2 input, .cp_box3 input {
  display: none;
}

.cp_box input:checked + label, .cp_box2 input:checked + label, .cp_box3 input:checked + label {
  /* 開いた時にグラデーションを消す */
  background: inherit;
  /* 閉じるボタンを消す場合解放 */
  /* display: none */
}

.cp_box input:checked + label:after, .cp_box2 input:checked + label:after, .cp_box3 input:checked + label:after {
  content: "閉じる";
}

.cp_box input:checked ~ .cp_container, .cp_box2 input:checked ~ .cp_container, .cp_box3 input:checked ~ .cp_container {
  height: auto;
  /* 閉じるボタンのbottomからの位置 */
  padding-bottom: 80px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cp_box .cp_container, .cp_box2 .cp_container, .cp_box3 .cp_container {
  overflow: hidden;
  /* 開く前に見えている部分の高さ */
  height: 200px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cp_box2 label, .cp_box3 label {
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), color-stop(90%, rgba(255, 255, 255, 0.95)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 90%);
}

.cp_box2 label:after, .cp_box3 label:after {
  font-size: 14px;
  bottom: 0px;
  content: "詳しく見る";
  background-color: #e94f5e;
  border-radius: 8px;
  padding: .125rem 3rem;
  color: #ffffff;
  width: 100%;
  max-width: 150px;
}

.cp_box2 input:checked ~ .cp_container, .cp_box3 input:checked ~ .cp_container {
  padding-bottom: 40px;
}

.cp_box2 .cp_container, .cp_box3 .cp_container {
  height: 40px;
}

.cp_box3 label {
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), color-stop(90%, rgba(255, 255, 255, 0.95)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 90%);
}

.cp_box3 label:after {
  content: "もっと見る";
  background-color: #1b2538;
}

.modal {
  visibility: hidden;
  overflow-y: scroll;
  opacity: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s, visibility 0s 0.3s;
  background: rgba(0, 0, 0, 0.8);
}

.modal.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s, visibility 0s 0s;
  transition: opacity 0.3s, visibility 0s 0s;
}

.modal__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__container _:-ms-lang(x)::-ms-backdrop, .modal__container {
  min-height: 100vh;
}

.modal__container::after {
  content: '';
  min-height: inherit;
  font-size: 0;
}

.modal__inner {
  margin: 20px 0;
  width: 100%;
  max-width: 480px;
}

.modal__content {
  display: none;
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  position: relative;
}

.is-active .modal__content {
  display: block;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.modal__close a:after {
  content: "";
  background: url("/memot/_assets/images/common/ico-close.svg");
  background-size: 100%;
  width: 42px;
  height: 42px;
  display: block;
}

.modal__heading {
  text-align: center;
}

.modal__heading img {
  width: 100%;
  max-width: 142px;
}

.modal__body {
  margin-top: 20px;
  text-align: center;
  border-radius: 20px;
  padding: 20px;
  background-color: #e7340c;
  color: #ffffff;
}

.modal__title p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

.modal__text {
  margin-top: 30px;
  text-align: left;
}

.modal__text p {
  font-size: 16px;
  font-weight: bold;
  margin-top: 16px;
}

.modal__text p:first-child {
  margin-top: 0;
}

.modal__date {
  margin-top: 30px;
  border-radius: 50rem;
  padding: 8px 16px;
  background-color: #ffffff;
}

.modal__date p {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
}

.modal__image {
  margin-top: 20px;
}

.modal__note {
  margin-top: 10px;
}

.modal__footer {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 50rem;
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #555555;
}

.modal__footer a.modalClose {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.wrapper.is-locked {
  position: fixed;
  width: 100%;
}

.wrapper.is-locked .header {
  display: none;
}

/* Layouts
------------------------------------------------------*/
.bread-crumb {
  margin-top: 192px;
}

.bread-crumb__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  background-color: #f7f7f7;
}

.bread-crumb__list {
  padding: 6px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bread-crumb__item {
  margin-right: 20px;
  padding-right: 10px;
  position: relative;
}

.bread-crumb__item:not(:last-of-type):after {
  position: absolute;
  top: 8px;
  right: -6px;
  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;
  width: 8px;
  height: 8px;
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  content: "";
}

.bread-crumb__item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bread-crumb__item a:hover {
  opacity: 0.5;
}

.bread-crumb .bread-crumb-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bread-crumb .bread-crumb-menu > span {
  margin-right: 10px;
  display: block;
  font-weight: bold;
}

.bread-crumb .bread-crumb-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bread-crumb .bread-crumb-menu__list li {
  position: relative;
}

.bread-crumb .bread-crumb-menu__list li:first-of-type span {
  position: relative;
}

.bread-crumb .bread-crumb-menu__list li:first-of-type:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 12px;
  background-color: #444444;
}

.bread-crumb .bread-crumb-menu__list li:last-of-type {
  border-right: none;
}

.bread-crumb .bread-crumb-menu__list li.active {
  padding: 0 10px;
}

.bread-crumb .bread-crumb-menu__list li.active span {
  font-weight: bold;
}

.bread-crumb .bread-crumb-menu__list li span {
  position: relative;
}

.bread-crumb .bread-crumb-menu__list li span:after {
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 12px;
  background-color: #444444;
}

.bread-crumb .bread-crumb-menu__list li a {
  padding: 0 10px;
}

.copon {
  width: 100%;
  background-color: #ededed;
}

.copon__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 80px auto 0;
  text-align: center;
  position: relative;
  padding: 36px 0;
}

.copon__image {
  position: absolute;
  top: 50%;
  left: 3%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.copon__image img {
  width: 129px;
  height: 129px;
}

.copon__text {
  margin-top: 30px;
}

.copon__text p {
  font-size: 18px;
}

.nikko-maas {
  width: 100%;
  background-color: #ededed;
}

.nikko-maas__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 80px auto 0;
  text-align: center;
  position: relative;
  padding: 70px 0;
}

.nikko-maas__image {
  position: absolute;
  top: 50%;
  left: 3%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.nikko-maas__image img {
  width: 129px;
  height: 129px;
}

.nikko-maas__text p {
  font-size: 18px;
}

.present-box {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.present-box__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 80px auto 0;
  text-align: center;
  position: relative;
}

.present-box__summary {
  text-align: right;
  font-size: 18px;
}

.present-box__content {
  border: 1px solid #555555;
  padding: 36px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.present-box__title {
  font-size: 24px;
  border-left: 8px solid #000000;
  padding-left: 18px;
  text-align: left;
}

.present-box__text {
  text-align: left;
  text-align: left;
  width: calc(100% - 360px);
}

.present-box__lead {
  font-size: 18px;
  margin-top: 18px;
  padding: 0 36px;
}

.present-box__btn {
  text-align: center;
  margin-top: 50px;
}

.present-box__btn .present-btn {
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 8px;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #212529;
  border: 1px solid #555;
  width: 100%;
  max-width: 330px;
}

.present-box__btn .present-btn:after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("/memot/_assets/images/common/ico-caret-right-s.svg");
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  margin: 0;
  padding: 0;
}

.present-box__btn .present-btn span {
  position: relative;
  z-index: 3;
  color: #333;
}

.present-box__btn .present-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.present-box__btn .present-btn:hover span {
  color: #fff;
}

.present-box__btn .present-btn:hover:after {
  background: url("/memot/_assets/images/common/ico-caret-right-s-white.svg");
  z-index: 3;
}

.present-box__image {
  width: 100%;
  max-width: 360px;
  min-height: 0%;
}

.arrow-link__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 120px auto 0;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.arrow-link__link {
  width: 100%;
  max-width: 360px;
}

.arrow-link__link a {
  display: inline-block;
  font-size: 24px;
  width: 100%;
}

.more-check__inner {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 120px auto 0;
  text-align: center;
}

.more-check__box {
  margin-top: 36px;
}

.ticket__inner {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 60px auto 0;
  text-align: center;
}

.ticket__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 36px;
  border-radius: 12px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.ticket__left {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 24px;
}

.ticket__title {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 12px 0;
  border-top: 2px solid #005baf;
  border-bottom: 2px solid #005baf;
}

.ticket__text {
  width: 100%;
  margin-top: 18px;
  text-align: left;
  font-size: 18px;
}

.ticket__image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 45%;
  height: 300px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.ticket-list__inner {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 60px auto 0;
  text-align: center;
}

/* fixed-shrink */
#header__outer {
  -webkit-transition: -webkit-transform .6s ease-in-out;
  transition: -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out;
  transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
}

#header__outer.hide {
  -webkit-transform: translateY(-204px);
          transform: translateY(-204px);
}

#header__outer.fixed-shrink {
  position: fixed;
}

#header__outer.fixed-shrink .header__inner {
  height: 80px;
}

#header__outer.fixed-shrink .header__intro-image {
  display: none;
}

#header__outer.fixed-shrink .header__logo {
  width: 100%;
  max-width: 150px;
  height: auto;
}

#header__outer.fixed-shrink .header__item a {
  height: 36px;
  font-size: 16px;
}

.header__outer {
  width: 100%;
  z-index: 1001;
  color: #1d1d1d;
  position: fixed;
  top: 0;
}

.header__wrapper {
  background: #ffffff;
}

.header__inner {
  max-width: 1200px;
  height: 146px;
  background: #ffffff;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.header__intro-image {
  width: 100%;
  max-width: 90px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.header__logo a {
  display: block;
}

.header__menu {
  max-width: 1200px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__item {
  width: 100%;
  height: auto;
  font-size: 20px;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  cursor: pointer;
}

.header__item:first-child a {
  border-left: solid 1px #444444;
}

.header__item a {
  height: 46px;
  color: #444444;
  display: block;
  border-top: solid 1px #444444;
  border-right: solid 1px #444444;
  border-bottom: solid 1px #444444;
}

.header__item a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #444444;
  width: 100%;
  height: 0;
  -webkit-transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.header__item a:hover:before {
  height: 100%;
  background-color: #444444;
}

.header__item span {
  position: relative;
  z-index: 3;
  vertical-align: middle;
}

.header__item:hover a span {
  color: #fff;
}

.header__item--active {
  background-color: #444444;
}

.header__item--active a {
  color: #ffffff;
  display: block;
}

.header__item--active span {
  position: relative;
  z-index: 3;
  vertical-align: middle;
}

.footer {
  width: 100%;
  background-color: #ffffff;
}

.footer__line {
  width: 100%;
  padding: 0 15px;
}

.footer__line-inner {
  max-width: 1000px;
  height: auto;
  margin: 88px auto 0;
  padding: 0;
  text-align: center;
}

.footer__line-box {
  position: relative;
  margin: 0;
  padding: 52px 24px 36px;
  border: solid 2px #555555;
  border-radius: 28px;
}

.footer__line-title {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 56px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 12px 12px;
  font-size: 18px;
  background: #06c755;
  color: #ffffff;
  border-radius: 28px;
  border: 2px solid #555555;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40%;
}

.footer__line-title span.ml-4 {
  margin-left: 1rem;
}

.footer__line__content {
  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;
}

.footer__line-text {
  margin-right: 16px;
}

.footer__line-text p {
  font-size: 18px;
}

.footer__line-friend-code img {
  width: 100%;
  max-width: 120px;
}

.footer__top {
  width: 100%;
  background-color: #444444;
  color: #ffffff;
}

.footer__top-inner {
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 46px;
  text-align: center;
}

.footer__top-title {
  font-size: 28px;
}

.footer__top-text {
  font-size: 16px;
  padding-top: 36px;
  line-height: 2;
}

.footer__bootom {
  width: 100%;
}

.footer__bottom-inner {
  max-width: 1200px;
  height: auto;
  margin: 60px auto 0;
  padding: 46px 0;
  text-align: center;
}

.footer__submenu-list {
  font-size: 16px;
}

.footer__submenu-item {
  position: relative;
  display: inline-block;
}

.footer__submenu-item:not(:first-child):before {
  content: "│";
  padding: 0 4px;
}

.footer__copyright {
  margin-top: 18px;
}

.footer__copyright p {
  color: #888888;
}

.footer__logo {
  padding: 36px 0;
}

.footer__logo img {
  width: 100%;
  max-width: 228px;
  height: auto;
}

@media (min-width: 768px) {
  body {
    font-size: 14px;
  }
  .c-inner {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
  .is-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .c-inner {
    margin: 0 15px;
  }
  .is-pc {
    display: none !important;
  }
  .rounded-txt {
    padding: 12px;
    width: 100%;
  }
  .rounded-btn {
    padding: 12px;
    width: 100%;
  }
  .f10-sp {
    font-size: 10px !important;
  }
  .modal__text p {
    font-size: 14px;
  }
  .modal__date p {
    font-size: 12px;
  }
  .bread-crumb {
    margin-top: 101px;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }
  .bread-crumb__item {
    font-size: 11px;
  }
  .bread-crumb__item:not(:last-of-type):after {
    top: 5px;
  }
  .copon__inner {
    margin: 40px auto 0;
  }
  .copon__image {
    top: 65%;
    left: 0;
  }
  .copon__image img {
    width: 72px;
    height: 72px;
  }
  .copon__text {
    width: calc(100% - 90px);
    margin-left: auto;
  }
  .copon__text p {
    text-align: left;
    font-size: 14px;
  }
  .nikko-maas__inner {
    margin: 40px auto 0;
    padding: 36px 0;
  }
  .nikko-maas__image {
    left: 0;
  }
  .nikko-maas__image img {
    width: 72px;
    height: 72px;
  }
  .nikko-maas__text {
    width: calc(100% - 90px);
    margin-left: auto;
  }
  .nikko-maas__text p {
    text-align: left;
    font-size: 14px;
  }
  .present-box__inner {
    margin: 60px auto 0;
  }
  .present-box__content {
    padding: 18px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
  }
  .present-box__title {
    margin-bottom: 18px;
  }
  .present-box__text {
    width: 100%;
  }
  .present-box__lead {
    font-size: 16px;
    padding: 0 18px;
  }
  .present-box__btn {
    padding: 0 18px;
    margin-top: 25px;
  }
  .present-box__image {
    width: 100%;
    max-width: 100%;
  }
  .arrow-link__inner {
    margin: 60px auto 0;
  }
  .arrow-link__link {
    width: 100%;
    max-width: 100%;
  }
  .more-check__inner {
    margin: 60px auto 0;
  }
  .ticket__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ticket__left {
    width: 100%;
    padding: 24px 24px 0;
  }
  .ticket__text {
    font-size: 16px;
  }
  .ticket__image {
    margin-top: 16px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    background-size: cover;
    width: 100%;
  }
  #header__outer.fixed-shrink {
    height: 68px;
  }
  #header__outer.fixed-shrink .header__inner {
    height: 40px;
  }
  #header__outer.fixed-shrink .header__logo {
    width: 100%;
    max-width: 75px;
    height: auto;
  }
  #header__outer.fixed-shrink .header__item a {
    height: 28px;
    font-size: 12px;
  }
  .header__outer {
    height: 101px;
  }
  .header__inner {
    height: 73px;
  }
  .header__intro-image {
    width: 100%;
    max-width: 45px;
    height: auto;
    left: 2%;
  }
  .header__logo {
    width: 100%;
    max-width: 130px;
    height: auto;
  }
  .header__item a {
    height: 28px;
    font-size: 12px;
  }
  .footer__line-box {
    padding: 52px 24px 36px;
  }
  .footer__line-title {
    width: 85%;
  }
  .footer__line__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__line-text {
    width: 100%;
    margin-right: 0;
  }
  .footer__line-text p {
    font-size: 16px;
    text-align: left;
  }
  .footer__line-friend-code {
    margin-top: 24px;
  }
  .footer__line-friend-code img {
    width: 100%;
    max-width: 200px;
  }
  .footer__top-inner {
    padding: 36px;
  }
  .footer__top-text {
    font-size: 14px;
    padding-top: 24px;
    line-height: 1.8;
    text-align: left;
  }
  .footer__bottom-inner {
    padding: 0;
    margin: 0 auto;
  }
  .footer__submenu-list {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
  .footer__submenu-item {
    width: 50%;
    border-bottom: 1px solid #ddd;
    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;
  }
  .footer__submenu-item:not(:first-child):before {
    content: "";
  }
  .footer__submenu-item:last-child {
    width: 100%;
  }
  .footer__submenu-item:nth-of-type(even) {
    border-left: 1px solid #ddd;
  }
  .footer__submenu-item a {
    display: block;
    width: 100%;
    padding: 15px 10px;
  }
  .footer__logo img {
    max-width: 200px;
  }
}

@media (min-width: 768px) and (max-width: 63em) {
  .is-tablet {
    display: none !important;
  }
  .copon__image {
    top: 69%;
    left: 2%;
  }
  .copon__image img {
    width: 72px;
    height: 72px;
  }
  .copon__text p {
    font-size: 14px;
  }
  .nikko-maas__image {
    top: 69%;
    left: 2%;
  }
  .nikko-maas__image img {
    width: 72px;
    height: 72px;
  }
  .nikko-maas__text p {
    font-size: 14px;
  }
  .present-box__lead {
    font-size: 16px;
    padding: 0 18px;
  }
  .present-box__btn {
    padding: 0 18px;
    margin-top: 25px;
  }
  .ticket__text {
    font-size: 16px;
  }
  .footer__top-inner {
    padding: 36px 16px;
  }
}

@media (min-width: 74.9375em) {
  .scroll-top {
    right: calc(50% - 600px);
  }
}
/*# sourceMappingURL=../maps/common/style.css.map */
