/* ------------------------
	header
------------------------ */
header {
  display: flex;
  justify-content: space-between;
  color: #fff;
  width: 100%;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 100;
}

@media screen and (max-width: 768px) {
  header {
    width: 100%;
    /* height: 80px; */
    height: 50px;
    background-color: #2a2a2a;
  }
}

header .link {
  position: relative;
}

header .link:hover::before {
  transform: scaleX(1);
  transform-origin: right;
}

header .link:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: all 0.3s;
  transform-origin: left;
}

@media screen and (max-width: 768px) {
  header .link:before {
    display: none;
  }
}

header > .logo-wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2a2a2a;
  padding: 0 18px;
  min-width: 210px;
  /* min-width: 196px; */
}

@media screen and (max-width: 768px) {
  header > .logo-wrap {
    width: 50vw;
    min-width: auto;
  }
}

header > .logo-wrap .logo-link {
  width: 100%;
}

header > .logo-wrap .logo-link .logo {
  width: 160px;
}

@media screen and (max-width: 768px) {
  header > .logo-wrap .logo-link .logo {
    /* width: 100%; */
    max-width: 117px;
  }
}

header .nav {
  width: 100%;
  position: relative;
}

header .nav > .nav-wrap {
  width: 100%;
  max-width: 1240px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1090px) {
  header .nav > .nav-wrap {
    display: none;
  }
}

header .nav > .nav-wrap > ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

header .nav > .nav-wrap > ul li .link {
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  white-space: nowrap;
}

header .nav > .nav-wrap > ul li .link .theater {
  color: #000;
}

/* monet */
header .nav > .nav-wrap > ul li .mn {
  font-size: 12px;
}

header .nav > .nav-wrap > ul:first-of-type {
  width: 100%;
  padding: 0 90px 0;
  margin-bottom: 0;
  box-sizing: border-box;
}

header .nav > .nav-wrap > ul:first-of-type .link {
  font-weight: bold;
}

header .nav-sp {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  padding: 90px 40px 20px;
  z-index: 999;
}

header .nav-sp > .nav-wrap > ul:first-of-type {
  margin-bottom: 20px;
}

header .nav-sp > .nav-wrap > ul:first-of-type .link {
  font-size: 16px;
  font-weight: bold;
}

header .nav-sp > .nav-wrap > ul li {
  margin-bottom: 10px;
}

header .nav-sp .link {
  color: #fff;
}

/* ------------------------
	footer
------------------------ */
footer .go-top {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 130px;
  transition: 0.2s all;
}

@media screen and (max-width: 960px) {
  footer .go-top {
    right: 15px;
    bottom: 15px;
  }
}

footer .go-top #pagetop {
  background: #666666;
  border-radius: 100px;
  display: inline-block;
  height: 48px;
  overflow: hidden;
  position: relative;
  transition: 0.2s all;
  width: 48px;
  z-index: 99;
}

footer .go-top #pagetop:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  footer .go-top #pagetop:hover {
    opacity: 1;
  }
}

footer .go-top #pagetop::before {
  border-bottom: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  content: "";
  display: block;
  height: 12px;
  left: 50%;
  margin-left: -7px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  transform: rotate(-135deg);
  width: 12px;
  will-change: transform;
}

footer .offer {
  width: 100%;
  padding: 170px 0 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  footer .offer {
    height: auto;
    padding: 90px 0 50px;
  }
}

footer .offer > .logo {
  width: 680px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  footer .offer > .logo {
    width: 86vw;
    margin-bottom: 40px;
  }
}

footer .offer > .logo.ntt {
  width: 200px;
}

@media screen and (max-width: 768px) {
  footer .offer > .logo.ntt {
    width: 54vw;
  }
}

footer .footer-wrap {
  width: 100%;
  height: 120px;
  background-color: #2a2a2a;
  color: #fff;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

@media screen and (max-width: 1090px) {
  footer .footer-wrap {
    padding: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-wrap {
    flex-direction: column;
    height: auto;
    padding: 20px 0 20px;
  }
}

footer .footer-wrap > .nav-wrap {
  width: 770px;
  min-width: 770px;
  height: 75px;
}

@media screen and (max-width: 1090px) {
  footer .footer-wrap > .nav-wrap {
    width: calc(100% - 20em;);
    min-width: 1px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-wrap > .nav-wrap {
    width: 100%;
    min-width: auto;
    height: auto;
  }
}

footer .footer-wrap > .nav-wrap > .nav {
  display: flex;
  flex-wrap: wrap;
}

footer .footer-wrap > .nav-wrap > .nav:first-of-type {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  footer .footer-wrap > .nav-wrap > .nav:first-of-type {
    margin: auto;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-wrap > .nav-wrap > .nav li {
    margin-bottom: 8px;
  }
}

footer .footer-wrap > .nav-wrap > .nav li .link {
  padding: 8px 22px;
  border-left: solid 1px #fff;
  color: #fff;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  footer .footer-wrap > .nav-wrap > .nav li .link {
    justify-content: center;
    padding: 0 14px;
    height: 16px;
    line-height: 1.5;
    font-size: 0.75rem;
  }
}

footer .footer-wrap > .nav-wrap > .nav li:last-of-type .link {
  border-right: solid 1px #fff;
}

footer .footer-wrap > .copy-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  footer .footer-wrap > .copy-wrap {
    margin-top: 5px;
  }
}

footer .footer-wrap > .copy-wrap > .txt {
  font-size: 12px;
  white-space: nowrap;
}



/* movieguide.css */

#wrap {
  z-index: 0;
}
#wrap .link-line {
  display: inline-block;
  color: #e3d875;
  position: relative;
  letter-spacing: 1px;
}
#wrap .link-line::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #e3d875;
  position: absolute;
  bottom: 8px;
  left: 0;
}
#wrap .section {
  width: 100%;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #wrap .section {
    padding: 50px 20px 20px;
  }
}
#wrap .section .inner{
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #wrap .section .inner{
    width: 100%;
    overflow-x: hidden;
  }
}

#wrap .section .inner > .title-wrap .title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #wrap .section .inner > .title-wrap .title {
    font-size: 30px;
  }
}
#wrap .section .inner .arrow-wrap {
  display: flex;
  align-items: center;
}
#wrap .section .inner .arrow-wrap > .arrow {
  margin-right: 0.5em;
}
#wrap #main-wrap {
  display: flex;
  /* color: #fff; */
  justify-content: center;
  flex-direction: column;
  /* top: 180px; */
  /* padding: 180px 0 50px 0; */
  /* margin-bottom: 30px; */
}

@media screen and (max-width: 768px) {
  #wrap #main-wrap {
    flex-direction: column;
    /* padding-top: 110px; */
    margin-bottom: 0;
    /* top:100px; */
  }
}

#wrap #main-wrap .inner .tel-wrap {
  display: flex;
  align-items: center;
}
#wrap #main-wrap .inner .tel-wrap > .txt {
  margin-right: 0.5em;
}
#wrap #main-wrap .inner .mail {
  display: flex;
}
#wrap #main-wrap .inner .mail > .txt {
  margin-right: 0.5em;
}
/* 
#wrap #main-wrap .inner > .title-wrap {
  margin-bottom: 55px;
}*/
@media screen and (max-width: 768px) {
  #wrap #main-wrap .inner > .title-wrap {
    margin-bottom: 32px;
  }
}
#wrap #main-wrap .inner .txt-wrap {
  font-size: 16px;
  line-height: 32px;
}
#wrap #main-wrap .inner .txt-wrap .img-box {
  display: block;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #wrap #main-wrap .inner .txt-wrap .img-box {
    margin-bottom: 16px;
  }
}

#wrap #main-wrap .inner .txt-wrap .img-box + .txt {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  #wrap #main-wrap .inner .txt-wrap .img-box + .txt {
    margin-bottom: 2em;
  }
}
#wrap #main-wrap .inner .txt-wrap .title-wrap {
  margin-bottom: 45px;
}
#wrap #main-wrap .inner .txt-wrap .title-wrap .title {
    font-size: 28px;
  /* color: #FFF; */
}

@media screen and (max-width: 768px) {
  #wrap #main-wrap .inner .txt-wrap .title-wrap .title {
    font-size: 24px;
  }
}

#wrap #main-wrap .inner .txt-wrap .txt-box .caption {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #wrap #main-wrap .inner .txt-wrap .txt-box .caption {
    line-height: 1.5;
  }
}
#wrap #main-wrap .inner .txt-wrap .txt-box + .txt-box {
  margin-top: 30px;
}
#wrap #main-wrap .inner .txt-wrap .txt-box .txt {
  line-height: 32px;
  letter-spacing: 1px;
}

#wrap #guide-wrap {
  background-color: #242424;
  padding: 48px 0 0;
}

/* movie.css */

/* html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
} */

body {
  margin: 0;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

img {
  border: 0;
  vertical-align: top;
}

/* svg:not(:root) {
  overflow: hidden;
} */

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  margin: 0;
  color: inherit;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid silver;
}

legend {
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

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

legend,
td,
th {
  padding: 0;
}
*/ *,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

blockquote,
dd,
dl,
dt,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
table,
ul {
  margin: 0;
  padding: 0;
}

dl,
ol,
ul {
  list-style: none;
}

/* button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
} */

body,
html {
  height: 100%;
}

body {
  font-family: Verdana, "游ゴシック体", "Yu Gothic", YuGothic, sans-serif; 
  font-size: 16px;
   line-height: 1.5; 
  color: #212121;
  /* background-color: #f5f5f5; */
}

/* body.modal_fixed {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}

body.bg_mbt {
  background: #c8e8fc;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
  line-height: 1.2;
}

a,
button,
img {
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color, opacity;
  transition-property: color, background-color, opacity;
}

a {
  text-decoration: none;
  /* color: #0d47a1; */
}

a:focus,
a:hover {
  color: #b71c1c;
}

.group:after,
.modal-content-wrap.linepayLayout
  .modal-content
  .modal-linepay
  ul.imageArea:after,
.movie-banners:after {
  display: table;
  clear: both;
  content: "";
}

.fluid-image {
  max-width: 100%;
  height: auto;
  border: solid 1px #fff;
}

html:not(.android):not(.iOS) ::-webkit-scrollbar-track,
html:not(.android):not(.iOS)::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

html:not(.android):not(.iOS) ::-webkit-scrollbar,
html:not(.android):not(.iOS)::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb,
html:not(.android):not(.iOS)::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
}

.header .header-button {
  line-height: 1;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #212121;
}

.header .header-button a {
  font-size: 10px;
  width: 100px;
  height: 50px;
  color: #fff;
}

.header .header-button a.is-open .line:nth-child(1) {
  top: 25px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header .header-button a.is-open .line:nth-child(2) {
  display: none;
}

.global {
  font-size: 12px;
  font-weight: 700;
  height: 100%;
  color: #fff;
}

.global .global-empty {
  position: relative;
  height: 10px;
}

.global .global-main {
  position: relative;
  z-index: 120;
  overflow-x: auto;
  overflow-y: scroll;
  width: 210px;
  background-color: #3f3f3f;
}

.global .global-main.is-fixed {
  position: fixed;
  z-index: 200;
  top: 0;
  bottom: 0;
  left: 0;
}

.global .global-main .glyphicon {
  line-height: 1;
}

.global .global-pseudo-overlay {
  position: fixed;
  z-index: 30;
  top: 0;
  width: 210px;
  height: 100%;
  background-color: #292929;
}

.global a {
  display: block;
  color: #fff;
}

.global .global-home {
  margin: 1px 0;
  padding: 10px 20px;
  background-color: #292929;
}

.box.is-banner li + li,
.global .global-home li + li,
.global .global-secondary li + li,
.global .global-tab-panel li + li {
  margin-top: 20px;
}

.global .global-home a {
  position: relative;
  padding: 10px 10px 10px 30px;
  border-radius: 4px;
}

.global .global-home a.is-current {
  background-color: #b71c1c;
}

.global .global-home a:focus,
.global .global-home a:hover {
  opacity: 0.4;
}

.global .global-home .glyphicon {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -0.5em;
}

.global .global-home .glyphicon.glyphicon-icon_home {
  font-size: 22px;
  padding-top: 3px;
}

.global .global-tab-nav ul {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.global .global-tab-nav li {
  display: table-cell;
  vertical-align: middle;
}

.global .global-tab-nav li.is-current a {
  cursor: default;
  pointer-events: none;
  opacity: 1;
  background-color: #292929;
}

.global .global-tab-nav a {
  padding: 25px 0;
  text-align: center;
  background-color: #3f3f3f;
}

.global .global-tab-nav a:focus,
.global .global-tab-nav a:hover {
  opacity: 0.6;
}

.global .global-tab-nav .text {
  font-size: 12px;
  display: block;
  margin-top: 3px;
}

.global .global-tab-nav .sub {
  font-size: 8px;
  font-weight: 400;
  display: block;
}

.global .global-tab-nav .glyphicon {
  font-size: 30px;
  display: block;
  margin: 0 auto -2px;
}

.global .global-tab-panel {
  display: none;
  margin-bottom: 1px;
  background-color: #292929;
}

.global .global-tab-panel.is-current {
  display: block;
}

.global .global-tab-panel ul {
  padding: 30px 10px;
}

.global .global-tab-panel li.search-theater-screen a {
  position: relative;
}

.global .global-tab-panel li.search-theater-screen a img {
  position: absolute;
  top: 24%;
  left: 9px;
}

.global .global-tab-panel a {
  position: relative;
  padding: 10px 10px 10px 45px;
  border-radius: 4px;
}

.global .global-tab-panel .search-dolby-cinema a.is-current,
.global .global-tab-panel a.is-current {
  background-color: #b71c1c;
}

.global .global-tab-panel .search-dolby-cinema a:focus,
.global .global-tab-panel .search-dolby-cinema a:hover,
.global .global-tab-panel a:focus,
.global .global-tab-panel a:hover {
  opacity: 0.4;
}

.global .global-tab-panel .search-dolby-atmos a,
.global .global-tab-panel .search-dolby-cinema a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 10px 10px 12px;
  border-radius: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.global .global-tab-panel .search-dolby-atmos a span,
.global .global-tab-panel .search-dolby-cinema a span {
  display: inline-block;
  padding-left: 4px;
}

.global .global-tab-panel .search-dolby-atmos a.is-current {
  background-color: #b71c1c;
}

.global .global-tab-panel .search-dolby-atmos a:focus,
.global .global-tab-panel .search-dolby-atmos a:hover {
  opacity: 0.4;
}

.global .global-tab-panel .glyphicon {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  margin-top: -0.5em;
}

.global .global-primary,
.global .global-sns {
  background-color: #292929;
}

.global .global-primary li,
.global .global-sns li {
  display: table;
  float: left;
  width: 50%;
  height: 120px;
  border-top: 1px solid #383838;
  border-radius: 3px;
}

.global .global-primary li:nth-child(odd),
.global .global-sns li:nth-child(odd) {
  border-right: 1px solid #383838;
}

.global .global-primary li:nth-child(-n + 2),
.global .global-sns li:nth-child(-n + 2) {
  border-top: none;
}

.global .global-primary .sns-area .sns-area-item a,
.global .global-primary a,
.global .global-sns .sns-area .sns-area-item a,
.global .global-sns a {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  background-color: #292929;
}

.global .global-primary .sns-area .sns-area-item a:focus,
.global .global-primary .sns-area .sns-area-item a:hover,
.global .global-primary a:focus,
.global .global-primary a:hover,
.global .global-sns .sns-area .sns-area-item a:focus,
.global .global-sns .sns-area .sns-area-item a:hover {
  opacity: 0.6;
}

.global .global-primary .sns-area,
.global .global-sns .sns-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 17px 0 14px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.global .global-primary .sns-area .sns-area-item,
.global .global-sns .sns-area .sns-area-item {
  display: inline-block;
  float: none;
  width: auto;
  height: 100%;
  border-top: none;
  border-radius: 3px;
}

.footer.is-normal .footer-link .sns-area .sns-area-item:nth-child(odd),
.global .global-primary .sns-area .sns-area-item:nth-child(odd),
.global .global-sns .sns-area .sns-area-item:nth-child(odd) {
  border-right: none;
}

.footer.is-normal .footer-link .sns-area .sns-area-item:nth-child(-n + 2),
.global .global-primary .sns-area .sns-area-item:nth-child(-n + 2),
.global .global-sns .sns-area .sns-area-item:nth-child(-n + 2) {
  border-top: none;
}

.footer.is-normal .footer-link .sns-area .sns-area-item a .glyphicon,
.footer.is-normal
  .footer-link
  .sns-area
  .sns-area-item
  a
  .glyphicon-icon_youtube,
.global .global-primary .sns-area .sns-area-item a .glyphicon,
.global .global-sns .sns-area .sns-area-item a .glyphicon {
  font-size: 20px;
}

.global .global-primary .sns-area .sns-area-item a .glyphicon-icon_line,
.global .global-sns .sns-area .sns-area-item a .glyphicon-icon_line {
  font-size: 22.5px;
}

.global .global-primary .sns-area .sns-area-item a img.youtube_img,
.global .global-sns .sns-area .sns-area-item a img.youtube_img {
  line-height: 1;
  display: inline-block;
  width: 28px;
  vertical-align: text-top;
}

.global .global-primary .global-event .text,
.global .global-primary .global-news .text {
  padding-top: 6px;
}

.global .global-primary .text {
  line-height: 1.3;
  display: block;
  height: 2.6em;
  margin-top: 13px;
}

.global .global-primary .glyphicon {
  font-size: 28px;
  display: block;
  margin: 0 auto;
}

.global .global-secondary {
  margin: 1px 0;
  padding: 30px 20px;
  background-color: #292929;
}

.global .global-secondary a {
  position: relative;
  padding: 5px 5px 5px 30px;
}

.global .global-secondary a:focus,
.global .global-secondary a:hover {
  opacity: 0.4;
}

.global .global-secondary .global-food-drink svg,
.global .global-secondary .glyphicon {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -0.5em;
}

.global .global-secondary .global-food-drink svg {
  width: 20px;
  height: 20px;
}

.global .global-secondary .global-application img {
  margin-top: -9.5px;
}

.global .global-secondary .global-dreampass img {
  margin-top: -7.5px;
}

.global .global-secondary img {
  position: absolute;
  top: 50%;
  left: 0;
}

.footer.is-normal .footer-link .sns-area .sns-area-item span,
.global .global-sns .text {
  display: block;
  overflow: hidden;
  width: 0;
  height: 0;
}

.global .global-sns a {
  color: #fff;
}

.footer .footer-link a:focus,
.footer .footer-link a:hover,
.footer .footer-pagetop a:focus,
.footer .footer-pagetop a:hover,
.footer.is-normal .footer-link .sns-area .sns-area-item a:focus,
.footer.is-normal .footer-link .sns-area .sns-area-item a:hover,
.global .global-sns a:focus,
.global .global-sns a:hover {
  opacity: 0.6;
}

.global .global-sns .glyphicon {
  font-size: 26px;
}

.android:not(.tablet) .page-seat .footer,
.android:not(.tablet) .page-seat .footer-copyright-movie,
.iOS:not(.tablet) .page-seat .footer,
.iOS:not(.tablet) .page-seat .footer-copyright-movie {
  display: none;
}

.footer {
  position: relative;
  z-index: 100;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: margin-left;
  transition-property: margin-left;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  background-color: #424242;
}

.is-has-menu .footer,
.is-menu-open .footer {
  margin-left: 210px;
}

.is-menu-close .footer {
  margin-left: 0;
}

.footer.is-normal .footer-link {
  font-size: 0;
  line-height: 70px;
  position: relative;
  text-align: center;
}

.footer.is-normal .footer-link li {
  font-size: 12px;
  display: inline-block;
}

.footer.is-normal .footer-link .sns-area {
  position: absolute;
  top: 48%;
  top: -webkit-calc(50% - 10px);
  top: calc(50% - 10px);
  right: 2.94%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 160px;
  height: 20px;
  padding: 0;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.footer.is-normal .footer-link .sns-area .sns-area-item {
  display: inline-block;
  float: none;
  width: auto;
  height: 100%;
  border-top: none;
  border-right: none;
  border-radius: 3px;
}

.footer.is-normal .footer-link .sns-area .sns-area-item a {
  display: table-cell;
  padding-right: 0;
  text-align: center;
  vertical-align: middle;
  border-right: none;
}

.footer.is-normal
  .footer-link
  .sns-area
  .sns-area-item
  a
  .glyphicon-icon_youtube:before {
  margin-top: 0;
}

.footer.is-normal .footer-link .sns-area .sns-area-item a .glyphicon-icon_line {
  font-size: 19px;
}

.footer.is-normal
  .footer-link
  .sns-area
  .sns-area-item
  a
  .glyphicon-icon_facebook,
.footer.is-normal
  .footer-link
  .sns-area
  .sns-area-item
  a
  .glyphicon-icon_instagram,
.footer.is-normal .footer-link .sns-area .sns-area-item a .glyphicon-icon_x {
  font-size: 18px;
}

.footer.is-normal .footer-copyright {
  font-size: 11px;
  line-height: 40px;
  text-align: center;
  border-top: 1px solid #383838;
}

.footer.is-simple .footer-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.footer.is-simple .footer-copyright,
.footer.is-simple .footer-link {
  line-height: 50px;
}

.footer.is-simple .footer-link {
  font-size: 12px;
  float: left;
}

.footer.is-simple .footer-link li {
  float: left;
}

.footer.is-simple .footer-copyright:not(:only-child) {
  float: right;
}

.footer.is-simple .footer-copyright:only-child {
  text-align: center;
}

.footer .footer-link {
  font-weight: 700;
}

.footer .footer-link li {
  margin-right: 15px;
}

.footer .footer-link li a {
  padding-right: 15px;
  border-right: 1px solid #616161;
}

.footer .footer-link li:last-child {
  margin-right: 0;
}

.footer .footer-link li:last-child a {
  padding-right: 0;
  border-right: none;
}

.footer .footer-link a {
  line-height: 1;
  color: #fff;
}

.footer .footer-copyright {
  color: #a1a1a1;
}

.footer .footer-pagetop a {
  font-size: 12px;
  font-weight: 700;
  position: relative;
  display: block;
  height: 60px;
  padding-top: 30px;
  text-align: center;
  color: #fff;
  background-color: #373737;
}

.footer .footer-pagetop a:after,
.footer .footer-pagetop a:before {
  position: absolute;
  top: 19px;
  left: 50%;
  display: block;
  width: 14px;
  height: 3px;
  content: "";
  border-radius: 3px/50%;
  background-color: #fff;
}

.footer .footer-pagetop a:before {
  margin-left: -10px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.footer .footer-pagetop a:after {
  margin-left: -2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.footer-copyright-movie {
  font-size: 11px;
  line-height: 1.3636363636;
  margin-top: 40px;
  padding: 20px;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: margin-left;
  transition-property: margin-left;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  color: #9e9e9e;
  background-color: #e5e5e5;
}

.is-has-menu .footer-copyright-movie,
.is-menu-open .footer-copyright-movie {
  margin-left: 210px;
}

.is-menu-close .footer-copyright-movie {
  margin-left: 0;
}

.footer-copyright-movie.is-simple p {
  max-width: 960px;
}

.footer-copyright-movie p {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.footer-copyright-movie p small {
  display: inline-block;
  word-break: break-all;
}

.footer-copyright-movie:empty {
  padding: 0;
}

.nav.is-home {
  margin-top: 20px;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.05);
}

.nav-local ul,
.nav.is-home ul,
.tab .tab-nav ul {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.nav.is-home li {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.nav.is-home li + li:before,
.nav.is-home.s-film-festival ul li + li:before {
  position: absolute;
  top: 0;
  bottom: 4px;
  left: 0;
  display: block;
  width: 1px;
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fafafa),
    to(#e4e4e4)
  );
  background: linear-gradient(#fafafa 0%, #e4e4e4 100%);
}

.nav-local li:first-child,
.nav-local-aria .nav-local-block .nav-local-theater li:first-child,
.nav.is-home li:first-child a {
  border-radius: 4px 0 0 0;
}

.nav-local li:last-child,
.nav-local-aria .nav-local-block .nav-local-theater li:last-child,
.nav.is-home li:last-child a {
  border-radius: 0 4px 0 0;
}

.nav.is-home a {
  font-size: 15px;
  font-weight: 700;
  display: block;
  padding: 10px 0;
  text-align: center;
  color: #424242;
  border-bottom: 4px solid #bdbdbd;
  background-color: #fff;
}

.nav.is-home a.is-current {
  color: #b71c1c;
  border-bottom-color: #b71c1c;
}

.nav.is-home.s-film-festival ul li a {
  height: 66px;
}

.nav.is-home.s-film-festival ul li:nth-child(3) > a,
.nav.is-home.s-film-festival ul li:nth-child(4) > a {
  line-height: 66px;
  display: block;
  padding: 0;
}

.nav.is-home.s-film-festival ul li:nth-child(3) > a:hover span,
.nav.is-home.s-film-festival ul li:nth-child(4) > a:hover span {
  color: #b71c1c;
}

.nav-local {
  font-size: 13px;
  line-height: 1.3846153846;
  margin-top: 30px;
  text-align: center;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.05);
}

.nav-local-bg,
.schedule .schedule-tab.is-simple .schedule-tab-item .is-selected:after {
  display: none;
}

.nav-local li,
.nav-local-aria .nav-local-block .nav-local-theater li {
  position: relative;
  display: table-cell;
  overflow: hidden;
  height: -webkit-calc(100% + 40px);
  height: calc(100% + 40px);
  vertical-align: middle;
  border-bottom: 4px solid #bdbdbd;
  background: #fff;
}

.nav-local li.is-current,
.nav-local-aria .nav-local-block .nav-local-theater li.is-current {
  border-bottom-color: #b71c1c;
}

.nav-local li.is-current a,
.nav-local-aria .nav-local-block .nav-local-theater li.is-current a {
  color: #b71c1c;
}

.nav-local li + li:before,
.nav-local-aria .nav-local-block .nav-local-theater li + li:before {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 1px;
  height: -webkit-calc(100% + 40px);
  height: calc(100% + 40px);
  margin-top: -20px;
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f8f8f8),
    to(#e1e1e1)
  );
  background: linear-gradient(#f8f8f8 0%, #e1e1e1 100%);
}

.nav-local a,
.nav-local-aria .nav-local-block .nav-local-theater a {
  font-weight: 700;
  display: block;
  padding: 20px 0;
  color: #616161;
}

.nav-local a:focus,
.nav-local a:hover,
.nav-local-aria .nav-local-block .nav-local-theater a:focus,
.nav-local-aria .nav-local-block .nav-local-theater a:hover {
  color: #b71c1c;
}

.nav-local .noLink,
.nav-local-aria .nav-local-block .nav-local-theater .noLink {
  display: block;
  padding: 20px 0;
}

.nav-local span,
.nav-local-aria .nav-local-block .nav-local-theater span {
  display: inline-block;
  text-align: left;
}

.nav-local-en {
  font-size: 8px;
  font-weight: 400;
}

.nav-local-aria {
  position: relative;
}

.nav-local-aria .nav-local-block .nav-local-theater {
  font-size: 13px;
  line-height: 1.3846153846;
  margin-top: 30px;
  text-align: center;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.05);
}

.nav-local-aria .nav-local-block .nav-local-theater::-webkit-scrollbar {
  display: none;
}

.nav-local-aria .nav-local-block .nav-local-theater ul {
  display: table;
  overflow: hidden;
  width: 100%;
  table-layout: fixed;
}

.heading.is-lv-02 {
  font-size: 20px;
  line-height: 1;
  margin: 40px 20px 0;
  padding-left: 6px;
  border-left: 5px solid #b71c1c;
}

.heading.is-lv-02.is-inner {
  margin: 0 0 30px;
}

.heading.is-lv-02 .en {
  font-size: 16px;
  display: block;
  margin-top: 4px;
  color: #616161;
}

.heading.is-lv-02.category-a {
  margin: 0 0 16px;
}

.heading.is-lv-02.category-b {
  margin: 16px 0;
}

.heading.is-lv-02-02 {
  font-size: 18px;
  margin-top: 50px;
  padding: 10px 20px;
  color: #fff;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 100%
  );
  background-color: #424242;
}

.heading.coming-soon-ttl {
  margin: 0 20px;
}

.button,
.button02 {
  display: inline-block;
  padding: 8px 10px;
  text-align: center;
  border: 1px solid;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
}

.button02 {
  padding: 5px 6px;
}

.button-large {
  font-size: 20px;
  font-weight: 700;
  line-height: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

.button-auto {
  width: 100%;
  padding: 0;
}

a.button-line-02 {
  padding-top: 8px;
}

a.button-line-02.is-contract {
  padding-top: 4px;
}

a.button-line-03 {
  padding-top: 3px;
}

.button-line-02,
.button-line-03 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  height: 60px;
  vertical-align: top;
}

.button-line-02 span,
.button-line-03 span {
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.button-line-02 .button-en,
.button-line-03 .button-en {
  font-size: 12px;
}

.button-normal {
  color: #0d47a1;
  border-color: #bdbdbd;
  background-color: #fff;
}

.button-normal:focus,
.button-normal:hover {
  color: #fff;
  background-color: #0d47a1;
}

.button-sub {
  color: #616161;
  border-color: #bdbdbd;
  background-color: #fff;
}

.button-sub:focus,
.button-sub:hover {
  color: #fff;
  background-color: #616161;
}

.button-au01 {
  color: #fff;
  border: none;
  background-color: none;
}

.button-au01:focus,
.button-au01:hover {
  opacity: 0.6;
  color: #fff;
  border: none;
  background-color: none;
}

.box.is-banner img,
.box.is-cinemileage .image img,
.button-au01 .btn-aupass {
  width: 100%;
  height: auto;
}

.button-au02 {
  margin-bottom: 0;
  color: #fff;
  border-color: #9e9e9e;
  background-color: #616161;
}

.button-au02:focus,
.button-au02:hover {
  color: #fff;
  border-color: #b71c1c;
  background-color: #b71c1c;
}

.button-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  background-color: #0d47a1;
}

.button-primary:focus,
.button-primary:hover {
  color: #fff;
  background-color: #b71c1c;
}

.button-primary.disabled {
  cursor: default;
  pointer-events: none;
  color: #9e9e9e;
  background-color: #616161;
}

.button-secondary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  background-color: #b71c1c;
}

.button-secondary:focus,
.button-secondary:hover {
  color: #b71c1c;
  border-color: #b71c1c;
  background-color: #fff;
}

.button-secondary.disabled {
  cursor: default;
  pointer-events: none;
  color: #9e9e9e;
  background-color: #616161;
}

.button-disabled {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  background-color: #9c9c9c;
}

a.button-disabled:focus,
a.button-disabled:hover {
  color: #fff;
  background-color: #6c6c6c;
}

.button-disabled-02 {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  background-color: #e3e3e3;
}

.button-yahoo {
  color: #ec2e45;
  border-color: #bdbdbd;
  background-color: #fff;
}

.button-yahoo:focus,
.button-yahoo:hover {
  opacity: 0.6;
  color: #ec2e45;
  background-color: #fff;
}

.button-yahoo img {
  margin-right: 8px;
  vertical-align: -1px;
}

.button-yahoo .glyphicon {
  font-size: 13px;
  margin-left: 6px;
  vertical-align: 2px;
}

.button-apple {
  border-color: #000;
  background-color: #000;
}

.button-apple:focus,
.button-apple:hover {
  opacity: 0.6;
  background-color: #000;
}

.button-apple img {
  width: 58px;
  vertical-align: -6px;
}

.sp-toggle-button,
.toggle-button {
  position: relative;
  cursor: pointer;
}

.sp-toggle-button .glyphicon,
.toggle-button .glyphicon {
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
}

.sp-toggle-button.is-open .glyphicon,
.toggle-button.is-open .glyphicon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.button-right {
  font-size: 12px;
  color: #2196f3;
}

.box.is-cinemileage a:focus,
.box.is-cinemileage a:hover,
.button-right:focus,
.button-right:hover,
.news.is-emergency > a:focus,
.news.is-emergency > a:hover,
.schedule .schedule-item a:focus,
.schedule .schedule-item a:hover {
  opacity: 0.6;
}

.box {
  padding: 28px 30px;
  border: 2px solid #b71c1c;
  border-radius: 4px;
  background-color: #fff;
}

.box.is-banner {
  border: none;
  border-radius: 0;
}

.box.is-banner,
.box.is-cinemileage {
  max-width: 680px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}

.box.is-cinemileage a {
  font-weight: 700;
  display: table;
  width: 100%;
  padding: 15px 60px;
}

.box.is-cinemileage .image,
.box.is-cinemileage .text {
  display: table-cell;
  vertical-align: middle;
}

.box.is-cinemileage .image {
  width: 88px;
}

.box.is-cinemileage .text {
  padding-left: 30px;
}

.box.is-cinemileage .h2 {
  font-size: 20px;
  color: #b71c1c;
}

.box.is-cinemileage .p {
  font-size: 15px;
  margin-top: 5px;
  color: #212121;
}

.box .box-title {
  font-size: 18px;
  color: #b71c1c;
}

.box .box-logo,
.box .box-title.is-center {
  text-align: center;
}

.box .box-logo {
  margin-top: 20px;
}

.box .box-text {
  margin-top: 16px;
}

.box .box-text a {
  font-weight: 600;
}

.box .box-button {
  margin-top: 30px;
}
*/ .icons {
  font-size: 0;
}

.schedule .schedule-body-day {
  font-size: 26px;
  font-weight: 700;
  color: #b71c1c;
}

.schedule .schedule-button {
  position: relative;
  padding-right: 24px;
}

.schedule .schedule-button.is-open .glyphicon {
  top: 2px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.schedule .schedule-button .glyphicon {
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 4px;
  right: 8px;
  display: block;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
}

.schedule .schedule-button .glyphicon-icon_arrow-close {
  display: none;
}

.schedule .schedule-body-section + .schedule-body-section {
  margin-top: 18px;
}

.schedule .schedule-body-section .schedule-body-freePoint {
  padding: 0 10px 8px;
  vertical-align: bottom;
}

.schedule .schedule-body-section .schedule-body-freePoint li,
.schedule .schedule-body-section-item .schedule-header-freePoint li {
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin: 0;
  padding: 2px 6px;
  color: #0d47a1;
  border: 1px solid;
  border-radius: 3px;
  background: #fff;
}

.schedule .schedule-body-section .schedule-body-freePoint li a,
.schedule .schedule-body-section-item .schedule-header-freePoint li a {
  display: inline-block;
}

.schedule .schedule-body-section-title {
  font-size: 22px;
  font-weight: 700;
  display: block;
  padding: 0 10px 8px;
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
}

.schedule .schedule-body-section-shareholderText {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  padding: 0 10px 8px;
  word-break: break-word;
  color: #9e9e9e;
}

.schedule .schedule-body-section-shareholderText.lt001 {
  font-size: 12px;
  font-weight: 400;
  margin: 5px 0;
  padding: 0;
  color: #9e9e9e;
}

.schedule .schedule-body-section-shareholderText.lt002 {
  font-size: 12px;
  font-weight: 400;
  margin: 5px 0 -20px;
  padding: 0;
  color: #9e9e9e;
}

.schedule .schedule-body-section-item {
  margin-top: 2px;
  padding: 16px 14px 13px;
  color: #fff;
  background-color: #333;
}

.schedule .schedule-body-section-item.blue {
  border: 1px solid #838383;
  background-color: #eee;
}

.films a,
.schedule .schedule-body-section-item.blue .en + .time,
.schedule .schedule-body-section-item.blue .glyphicon-icon_arrow-open,
.schedule .schedule-body-section-item.blue .schedule-body-title,
.schedule .schedule-body-section-item.blue .schedule-screen-title {
  color: #212121;
}

.schedule .schedule-body-section-item.blue .schedule-body-title,
.schedule .schedule-body-section-item.blue .schedule-screen-title {
  font-weight: 700;
}

.schedule .schedule-body-section-item.blue .schedule-item a {
  border: 1px solid silver;
}

.schedule .schedule-body-section-item.blue .schedule-item > span {
  border: 1px solid #616161;
}

.schedule .schedule-body-section-item .schedule-header-freePoint {
  margin-top: 0;
  vertical-align: bottom;
}

.schedule .schedule-body-section-item .schedule-header-freePoint.inner {
  display: inline-block;
  margin-top: 0;
}

.schedule .schedule-body-section-item .schedule-header-freePoint li {
  margin: 5px 0 0;
}

.schedule .schedule-body-section-item .schedule-shareholderText {
  font-size: 12px;
  margin: 5px 0;
  word-break: break-word;
  color: #9e9e9e;
}

.schedule .schedule-section-header {
  padding-right: 24px;
  cursor: pointer;
}

.schedule .schedule-section-header .glyphicon {
  font-size: 14px;
  right: 0;
  margin-top: -11px;
}

.schedule .schedule-body-panel,
.tab .tab-nav li.is-current + li:before,
.tab .tab-nav li.is-current:before {
  display: none;
}

.schedule .schedule-body-panel.is-open {
  display: block;
}

.schedule .schedule-body-panel.is-open .schedule-screen:first-child {
  margin-top: 0;
  padding-top: 0;
}

.schedule .schedule-body-panel.is-open .schedule-screen:first-child:before {
  display: none;
}

.schedule
  .schedule-body-panel.is-open
  .schedule-screen:first-child
  .schedule-screen-icons {
  top: 0;
}

.schedule
  .schedule-body-panel.is-open
  .schedule-screen:first-child
  .schedule-screen-icons
  a {
  color: #fff;
}

.schedule .schedule-body-title {
  font-size: 16px;
  display: inline;
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
}

.schedule .schedule-body-title-sub {
  font-size: 22px;
  padding: 15px 20px 10px;
  color: #616161;
}

.schedule .schedule-body-info {
  display: inline;
  margin-top: 5px;
  padding-right: 20px;
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
}

.schedule .schedule-body-info .en {
  font-size: 14px;
  display: inline;
  color: #9e9e9e;
}

.schedule .schedule-body-info .time {
  font-size: 12px;
  margin-left: 1em;
}

.schedule .schedule-body-info .time-end {
  font-size: 12px;
  font-weight: 700;
  margin-left: 1em;
  color: #b71c1c;
}

.schedule .schedule-body-info .icon {
  font-size: 8px;
  display: inline-block;
  margin-left: 10px;
  padding: 4px 8px 3px;
  color: #212121;
  border-radius: 12px/50%;
  background-color: #fff;
}

.schedule .schedule-screen {
  position: relative;
  margin: 17px -14px 0;
  padding: 10px 16px 0;
  border-top: 1px solid #616161;
}

.schedule .schedule-screen:first-child {
  border-top: none;
}

.schedule .schedule-screen:first-child:before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  display: block;
  content: "";
  border-top: 1px dashed #8f8f8f;
}

.schedule .schedule-screen-icons,
.schedule .schedule-screen-title {
  display: inline-block;
}

.schedule .schedule-screen-title {
  font-size: 14px;
  margin-right: 15px;
}

.schedule .schedule-screen-icons {
  font-size: 0;
  padding-right: 110px;
  vertical-align: bottom;
}

.schedule .schedule-items {
  margin-right: -5px;
  margin-left: -5px;
}

.schedule .schedule-item {
  float: left;
  width: 14.66666%;
  padding: 0 5px;
}

.schedule .schedule-item .wrapper {
  font-weight: 700;
  display: block;
  margin-top: 10px;
  padding: 10px 0;
  text-align: center;
  border-radius: 4px;
}

.schedule .schedule-item a {
  color: #9e9e9e;
  background-color: #fff;
}

.schedule .schedule-item > span {
  color: #9e9e9e;
  background-color: #616161;
}

.schedule .schedule-item > span .start {
  color: #9e9e9e;
}

.schedule .schedule-item .time {
  font-size: 12px;
}

.schedule .schedule-item .start {
  font-size: 20px;
  display: inline-block;
  min-width: 65px;
  margin-right: 5px;
  color: #212121;
}

.schedule .schedule-item .end {
  display: inline-block;
  min-width: 45px;
  margin-left: 5px;
}

.schedule .schedule-item .info {
  font-size: 12px;
  color: #b71c1c;
}

.schedule .schedule-item .status .glyphicon {
  margin-right: 5px;
}

.schedule .schedule-item .is-status-01 {
  font-size: 12px;
  color: #1976d2;
}

.schedule .schedule-item .is-status-02 {
  font-size: 12px;
  color: #ff6d00;
}

.schedule .schedule-item .is-status-03 {
  font-size: 12px;
  color: #d32f2f;
}

.schedule .schedule-item .is-status-04 {
  font-size: 12px;
}

.schedule .schedule-item .is-status-05 {
  font-size: 12px;
  color: #366d01;
}

.schedule .schedule-more {
  position: absolute;
  top: 14px;
  right: 28px;
  text-align: right;
}

.schedule .schedule-print {
  float: right;
  padding-left: 10px;
  vertical-align: 3px;
}

.schedule .schedule-print a {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 6px 0 8px;
}

.schedule .schedule-print .glyphicon {
  font-size: 16px;
  margin-right: 5px;
  vertical-align: -3px;
}

.schedule .schedule-around {
  margin: 14px 0 5px 2px;
}

.schedule .schedule-around .schedule-around-label {
  font-size: 12px;
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 2px 6px;
  color: #0d47a1;
  border: 1px solid;
  border-radius: 4px;
  background: #fff;
}

.schedule .schedule-around .schedule-around-label .glyphicon {
  font-size: 16px;
  line-height: 1;
  margin-right: 5px;
  vertical-align: middle;
}

.schedule .schedule-around .non {
  color: #9e9e9e;
  border-style: none;
  background-color: #616161;
}

.schedule .schedule-footer {
  margin-top: 20px;
}

.schedule .schedule-moveto {
  margin: 40px 230px 0;
}

.schedule.coming .schedule-tab-viewport {
  border-bottom: 1px solid #bdbdbd;
  background-color: #dcdcdc;
}

.schedule.coming .schedule-tab-item {
  height: 36px;
  padding: 18px 0 10px;
  color: #212121;
  border: none;
  background-color: #dcdcdc;
}

.schedule.coming .schedule-tab-item.is-selected {
  color: #fff;
  background-color: #d32f2f;
}

.schedule.coming .schedule-tab-item.schedule-tab-item:after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 1px;
  height: 56px;
  content: "";
  background: #e0e0e0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e0e0e0),
    color-stop(80%, #c2c2c2)
  );
  background: linear-gradient(to bottom, #e0e0e0 0%, #c2c2c2 80%);
}

.schedule.coming .schedule-tab-dates {
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 10px;
}

.schedule.coming .schedule-tab-dates .day {
  font-size: 20px;
}

.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-next:focus,
.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-next:hover,
.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-prev:focus,
.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-prev:hover,
.schedule-list .schedule-list-tab-next:focus,
.schedule-list .schedule-list-tab-next:hover,
.schedule-list .schedule-list-tab-prev:focus,
.schedule-list .schedule-list-tab-prev:hover {
  background-color: #9e9e9e;
}

.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-next:focus:after,
.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-next:focus:before,
.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-next:hover:after,
.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-next:hover:before,
.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-prev:focus:after,
.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-prev:focus:before,
.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-prev:hover:after,
.schedule-arrow .schedule-arrow-tab .schedule-arrow-tab-prev:hover:before,
.schedule-list .schedule-list-tab-next:focus:after,
.schedule-list .schedule-list-tab-next:focus:before,
.schedule-list .schedule-list-tab-next:hover:after,
.schedule-list .schedule-list-tab-next:hover:before,
.schedule-list .schedule-list-tab-prev:focus:after,
.schedule-list .schedule-list-tab-prev:focus:before,
.schedule-list .schedule-list-tab-prev:hover:after,
.schedule-list .schedule-list-tab-prev:hover:before {
  background-color: #fff;
}

.schedule-list .schedule-list-tab-next:before,
.schedule-list .schedule-list-tab-prev:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.schedule-list .schedule-list-tab-next:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.schedule-arrow .schedule-arrow-tab .schedule-touchbox-left {
  position: absolute;
  z-index: 90;
  top: 0;
  bottom: 0;
  left: -2px;
  display: block;
  width: 48px;
  background-color: transparent;
}

.schedule-arrow .schedule-arrow-tab .schedule-touchbox-right {
  position: absolute;
  z-index: 90;
  top: 0;
  right: -2px;
  bottom: 0;
  display: block;
  width: 48px;
  background-color: transparent;
}

.films {
  padding: 30px 20px;
  text-align: center;
  color: #212121;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.2))
  );
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  background-color: #fff;
}

.films .films-inner {
  overflow: auto;
}

.films .films-image {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 150px;
  height: 115px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.films .films-image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.films .films-title {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-top: 15px;
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
}

.films,
.movies,
.section .section-text-block > p {
  margin-top: 20px;
}

.movies.is-contract {
  margin-top: 0;
}

.movies .movies-day {
  font-size: 20px;
  font-weight: 700;
  padding: 15px 18px;
  background: linear-gradient(160deg, #eee 0%, #f5f5f5 100%);
  background-color: #eee;
}

.movies .movies-inner {
  margin: 0 0 40px;
}

.movies .movies-item {
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.3333%;
  margin-top: 20px;
}

.movies .movies-item:nth-child(3n + 1) {
  padding: 0 6px 0 0;
}

.movies .movies-item:nth-child(3n + 2) {
  padding: 0 3px;
}

.movies .movies-item:nth-child(3n + 3) {
  padding: 0 0 0 6px;
}

.movies .movies-item a {
  font-weight: 700;
  display: block;
  padding: 0 0 15px;
  color: #212121;
  background: #fff;
}

.movies .movies-image {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.movies .movies-image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
}

.movies .movies-image-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  background-size: contain;
}

.movies .movies-image:before,
.ranking .ranking-image:before {
  display: block;
  padding-bottom: 75%;
  content: "";
}

.movies .movies-title {
  font-weight: 700;
  margin-top: 10px;
  padding: 0 10px;
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
}

.movies.ga_add .movies-item {
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.3333%;
  margin-top: 20px;
}

.movies.ga_add .movies-item:nth-of-type(3n + 1) {
  padding: 0 6px 0 0;
}

.movies.ga_add .movies-item:nth-of-type(3n + 2) {
  padding: 0 3px;
}

.movies.ga_add .movies-item:nth-of-type(3n + 3) {
  padding: 0 0 0 6px;
}

.movies.ga_add .g-Adsense {
  clear: both;
  width: inherit;
  height: 50px;
  margin: 0;
  text-align: center;
}

.movies.ga_add .g-Adsense.spVer {
  display: none;
  height: 0;
  margin: 0;
  padding: 0;
}

.movies.ga_add .g-Adsense.pcVer {
  display: block;
  height: auto;
}

.tab .tab-nav {
  margin-top: 40px;
  padding: 5px 5px 0;
  background-color: #212121;
}

.tab .tab-nav.is-small ul {
  width: auto;
}

.tab .tab-nav.is-small a {
  padding-right: 45px;
  padding-left: 45px;
}

.tab .tab-nav li {
  position: relative;
  display: table-cell;
  vertical-align: top;
}

.tab .tab-nav li + li:before {
  position: absolute;
  top: 5px;
  bottom: 10px;
  left: 0;
  display: block;
  width: 1px;
  content: "";
  background-color: #bdbdbd;
}

.tab .tab-nav li.is-current a {
  color: #212121;
  border-radius: 5px 5px 0 0;
  background-color: #fff;
}

.tab .tab-nav .mileage-report-ttl {
  vertical-align: bottom;
}

.tab .tab-nav .mileage-report-ttl a {
  height: 100%;
}

.tab .tab-nav .mileage-report-ttl .double-space {
  padding: 28px 0;
}

.tab .tab-nav a {
  font-size: 20px;
  font-weight: 700;
  display: block;
  padding: 15px 0 20px;
  text-align: center;
  color: #fff;
}

.tab .tab-nav a:focus,
.tab .tab-nav a:hover {
  color: #616161;
}

.tab .tab-nav .mileage-report {
  line-height: 1.3;
  padding: 15px 0;
}

.tab .tab-nav .glyphicon {
  margin-right: 5px;
  vertical-align: -1px;
}

.paging {
  font-size: 0;
  margin-top: 20px;
  text-align: center;
}

.paging li {
  font-size: 15px;
  display: inline-block;
}

.paging li + li,
.search .search-buttons li + li {
  margin-left: 10px;
}

.paging .page-reader {
  display: none;
}

.paging .paging-next {
  font-size: 12px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: #616161;
  border: none;
  background-color: transparent;
}

.paging a,
.paging span {
  line-height: 38px;
  display: block;
  width: 40px;
  text-align: center;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
}

.paging a {
  background-color: #fff;
}

.paging a:focus,
.paging a:hover {
  opacity: 0.6;
}

.paging span {
  color: #9e9e9e;
  background-color: #e0e0e0;
}

.paging.page-report li {
  vertical-align: top;
}

.paging.page-report .glyphicon-icon_arrow_lef:before {
  position: relative;
  top: 2;
}

.paging.page-report .paging-first a {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.paging.page-report .paging-last a,
.paging.page-report .paging-prev {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.paging.page-report .paging-next {
  font-size: 12px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #616161;
}

.paging.page-report .paging-first a,
.paging.page-report .paging-last a,
.paging.page-report .paging-next a,
.paging.page-report .paging-prev a {
  font-size: 12px;
  color: #616161;
}

.ranking {
  position: relative;
  margin-top: 30px;
}

.ranking .ranking-wrapper {
  margin: 0 25px;
}

.ranking .ranking-item {
  float: left;
  width: 33.3333%;
  padding: 0 9px;
}

.ranking .ranking-item a {
  display: block;
  color: #212121;
  background-color: #fff;
}

.ranking .ranking-image {
  position: relative;
  display: block;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.ranking .ranking-image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.ranking .ranking-image .ranking-image-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  background-size: contain;
}

.ranking .ranking-text {
  position: relative;
  height: 65px;
  padding: 6px 10px 10px 44px;
}

.ranking .ranking-order {
  line-height: 1;
  position: absolute;
  top: -4px;
  left: 5px;
}

.ranking .ranking-order .text {
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2em;
  margin-top: -0.5em;
  margin-left: -1em;
  text-align: center;
  color: #fff;
}

.ranking .ranking-order .glyphicon {
  font-size: 35px;
}

.ranking .ranking-order.is-01 .glyphicon {
  color: #e6a60e;
}

.ranking .ranking-order.is-02 .glyphicon {
  color: #a0a0a0;
}

.ranking .ranking-order.is-03 .glyphicon,
.ranking .ranking-order.is-04 .glyphicon,
.ranking .ranking-order.is-05 .glyphicon,
.ranking .ranking-order.is-06 .glyphicon,
.ranking .ranking-order.is-07 .glyphicon,
.ranking .ranking-order.is-08 .glyphicon,
.ranking .ranking-order.is-09 .glyphicon,
.ranking .ranking-order.is-10 .glyphicon {
  color: #b53b0c;
}

.ranking .ranking-title {
  font-weight: 700;
  line-height: 1.3;
}

.ranking .ranking-title .en {
  font-size: 12px;
  display: block;
  margin-top: 8px;
}

.ranking .ranking-next,
.ranking .ranking-prev {
  position: absolute;
  top: 30%;
  display: block;
  width: 22px;
  height: 22px;
}

.ranking .ranking-next:after,
.ranking .ranking-next:before,
.ranking .ranking-prev:after,
.ranking .ranking-prev:before {
  position: absolute;
  display: block;
  width: 22px;
  height: 4px;
  content: "";
  border-radius: 2px/50%;
  background-color: #9e9e9e;
}

.ranking .ranking-next:after,
.ranking .ranking-prev:after {
  top: 9px;
  right: -9px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.ranking .ranking-next:focus,
.ranking .ranking-next:hover,
.ranking .ranking-prev:focus,
.ranking .ranking-prev:hover {
  opacity: 0.6;
}

.ranking .ranking-next.is-disabled,
.ranking .ranking-prev.is-disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.3;
}

.ranking .ranking-next.is-disabled:focus,
.ranking .ranking-next.is-disabled:hover,
.ranking .ranking-prev.is-disabled:focus,
.ranking .ranking-prev.is-disabled:hover {
  opacity: 0.3;
}

.ranking .ranking-prev {
  left: 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.ranking .ranking-next {
  right: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ranking .ranking-more {
  display: none;
}

.section {
  position: relative;
}

.section .section-button {
  position: absolute;
  top: 3px;
  right: 0;
}

.section .section-button a {
  padding: 5px 15px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.section .section-text-block .note {
  margin-top: 0;
  color: #616161;
}

.section .section-text-block .section-moveto {
  margin: 40px 230px 0;
}

.section.coming-soon-block {
  padding-top: 40px;
}

.search.is-fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  opacity: 1;
}

.search.is-fixed.is-hidden {
  opacity: 0;
}

.search.is-fixed a {
  font-size: 14px;
  font-weight: 700;
  line-height: 50px;
  display: block;
  height: 50px;
  padding-right: 20px;
  padding-left: 20px;
  color: #616161;
  border-radius: 20px/50%;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search.is-fixed .glyphicon {
  font-size: 20px;
  margin-left: 10px;
  vertical-align: -3px;
}

.search .search-h1 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
}

.search .search-condition {
  font-size: 0;
  margin-top: 25px;
}

.search .search-condition dd,
.search .search-condition dt {
  font-size: 14px;
  display: inline-block;
}

.search .search-condition dt {
  font-weight: 700;
}

.search .search-buttons {
  font-size: 0;
  margin-top: 15px;
}

.search .search-buttons li {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.search .search-buttons a {
  line-height: 28px;
  padding-top: 0;
  padding-bottom: 0;
}

.search .search-buttons .glyphicon-icon_printer {
  font-size: 16px;
  line-height: 1;
  margin-left: 6px;
  vertical-align: -3px;
}

.mile .mile-container {
  padding: 30px 20px;
  background-color: #fff;
}

.mile .mile-container + .mile-container {
  margin-top: 20px;
}

.mile .mile-container.is-empty .p {
  font-size: 20px;
  color: #616161;
}

.mile .mile-h1 {
  font-size: 20px;
}

.mile .mile-index-item {
  margin-top: 30px;
}

.mile .mile-index-item + .mile-index-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.mile .mile-index-item a {
  display: table;
  width: 100%;
}

.mile .mile-index-item .image,
.mile .mile-index-item .text {
  display: table-cell;
  vertical-align: top;
}

.mile .mile-index-item .image {
  width: 17%;
}

.mile .mile-index-item .image img {
  width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
}

.mile .mile-index-item .text {
  padding-left: 20px;
}

.mile .mile-index-item .title {
  font-weight: 700;
}

.mile .mile-index-item .list {
  font-size: 0;
  line-height: 1.3;
  margin-top: 16px;
}

.mile .mile-index-item .list li {
  font-size: 12px;
  display: inline-block;
  color: #616161;
}

.mile .mile-index-item .list li + li {
  margin-left: 40px;
}

.mile .mile-index-item .list li em {
  font-size: 16px;
  font-style: normal;
  display: block;
  color: #212121;
}

.mile .mile-index-item .p {
  margin-top: 15px;
  color: #616161;
}

.mile .mile-index-item .p .finish {
  font-weight: 700;
  color: #b71c1c;
}

.mile .mile-box {
  margin-top: 30px;
  padding: 30px;
  border: 2px solid #ef5350;
  border-radius: 4px;
  background-color: #fff;
}

.mile .mile-box .title-02 {
  font-size: 20px;
}

.mile .mile-box .image {
  margin-top: 25px;
}

.mile .mile-box .image img {
  float: left;
  margin-right: 20px;
}

.mile .mile-box .note {
  font-size: 12px;
  font-weight: 400;
  margin-left: 10px;
  color: #212121;
}

.mile .mile-normal {
  margin-top: 30px;
}

.mile .mile-normal + .mile-normal {
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.mile .mile-normal .title {
  font-size: 26px;
  font-weight: 700;
  position: relative;
  padding-left: 18px;
}

.mile .mile-normal .title:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  content: "";
  border-radius: 50%;
  background-color: #b71c1c;
}

.mile .mile-normal .title-02 {
  font-size: 20px;
}

.mile .mile-normal .image img {
  width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
}

.mile .mile-normal .link {
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
}

.mile .mile-normal .link .glyphicon {
  margin-left: 5px;
  vertical-align: -2px;
}

.mile .mile-normal .note,
.mile .mile-normal .note_red {
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin-left: 12px;
  padding-left: 1em;
  text-indent: -1em;
  color: #616161;
}

.mile .mile-normal .note_red {
  color: #b71c1c;
}

.mile .mile-normal .note_red .notesLeft {
  display: block;
  margin-left: 3px;
}

.mile .mile-normal-col {
  float: left;
  width: 50%;
  margin-top: 20px;
}

.mile .mile-normal-col:nth-child(odd) {
  padding-right: 10px;
}

.mile .mile-normal-col:nth-child(even) {
  padding-left: 10px;
}

.mile .mile-normal-col .campaignBnr {
  margin-top: 15px;
}

.mile .mile-section {
  margin-top: 40px;
}

.mile .mile-section.is-expand {
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
}

.mile .mile-section.is-contract {
  margin-top: 0;
}

.mile .mile-section .image {
  float: left;
  width: 16.5%;
  margin-top: 20px;
}

.mile .mile-section .image img,
.theater .theater-slider img {
  width: 100%;
  height: auto;
}

.mile .mile-section .text {
  overflow: hidden;
  margin-top: 20px;
  padding-left: 20px;
}

.mile .mile-section .text .p {
  font-size: 15px;
  color: #616161;
}

.mile .mile-section .note {
  font-size: 12px;
  margin-top: 15px;
  color: #616161;
}

.mile .mile-section .note li {
  padding-left: 1em;
  text-indent: -1em;
}

.mile .mile-section-note,
.theater-each-service .service-description dl dt,
.theater-each-service .service-description dl + dl {
  margin-top: 30px;
}

.mile .mile-section-note .title {
  font-size: 14px;
  font-weight: 700;
}

.mile .mile-section-note .list {
  font-size: 12px;
  overflow: auto;
  height: 132px;
  margin-top: 10px;
  padding: 10px;
  background-color: #fff;
}

.mile .mile-section-note .list ul {
  margin-left: 1.2em;
  list-style: outside disc;
}

.mile .mile-h2 {
  font-size: 20px;
  padding-left: 10px;
  border-left: 4px solid #b71c1c;
}

.mile .mile-remaining {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.mile .mile-remaining .remaining-main,
.mile .mile-remaining .remaining-sub {
  display: table-cell;
  vertical-align: middle;
}

.mile .mile-remaining .remaining-main {
  font-size: 0;
}

.mile .mile-remaining .remaining-main dd,
.mile .mile-remaining .remaining-main dt {
  font-size: 16px;
  display: inline-block;
}

.member .member-limit time,
.mile .mile-remaining .remaining-main dd {
  font-weight: 700;
  color: #b71c1c;
}

.mile .mile-remaining .remaining-main .number {
  font-size: 28px;
}

.mile .mile-remaining .remaining-sub .number {
  color: #b71c1c;
}

.mile .mile-mileage {
  position: relative;
}

.mile .mile-mileage .number,
.mile .mile-mileage .title {
  font-size: 20px;
}

.mile .mile-mileage .title {
  position: absolute;
  top: 0;
  left: 0;
}

.mile .mile-mileage .number {
  font-weight: 700;
  text-align: right;
}

.mile .mile-mileage .list li {
  margin-top: 25px;
  padding-top: 25px;
  text-align: right;
  color: #9e9e9e;
  border-top: 1px solid #e0e0e0;
}

.mile .mile-mileage .list .mileage {
  display: inline-block;
  width: 6em;
}

.mile .mile-detail {
  display: table;
  width: 100%;
  margin-top: 30px;
  table-layout: fixed;
}

.mile .mile-detail .detail-col {
  display: table-cell;
  vertical-align: top;
}

.mile .mile-detail .detail-col:first-child {
  padding-right: 20px;
}

.mile .mile-detail .detail-col:last-child {
  padding-left: 20px;
  border-left: 1px solid #e0e0e0;
}

.mile .mile-detail .detail-image {
  width: 100%;
}

.mile .mile-detail .detail-image .detail-image-frame {
  position: relative;
  display: block;
  max-width: 200px;
  max-height: 134px;
  margin: auto;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.mile .mile-detail .detail-image .detail-image-frame .detail-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: contain;
  background-size: contain;
}

.mile .mile-detail .detail-image .detail-image-frame .detail-image-wrapper img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto;
}

.mile .mile-detail .detail-image .detail-image-frame:before {
  display: block;
  padding-top: 66%;
  content: "";
}

.mile .mile-detail .detail-info,
.mile .mile-detail .detail-lead {
  margin-top: 20px;
}

.mile .mile-detail .detail-info,
.mile .mile-detail .detail-note {
  font-size: 12px;
}

.mile .mile-detail .detail-note {
  margin-top: 10px;
  color: #616161;
}

.mile .mile-detail .detail-content dt {
  font-size: 18px;
  position: relative;
  margin-top: 20px;
  padding-left: 14px;
}

.mile .mile-action .mile-password:first-child,
.mile .mile-action .mile-quantity:first-child,
.mile .mile-detail .detail-content dt:first-child {
  margin-top: 0;
}

.mile .mile-card .lead:before,
.mile .mile-detail .detail-content dt:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  content: "";
  background-color: #b71c1c;
}

.mile .mile-detail .detail-content dd {
  font-size: 14px;
  margin-top: 10px;
}

.mile .mile-text {
  font-size: 15px;
  margin-top: 20px;
  color: #616161;
}

.mile .mile-action {
  margin-top: 40px;
  padding: 20px;
  background-color: #fff;
}

.mile .mile-action .mile-finish {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
  color: #b71c1c;
}

.mile .mile-action .mile-quantity {
  text-align: center;
}

.mile .mile-action .mile-password {
  margin-top: 20px;
  text-align: center;
}

.mile .mile-action .mile-password dd,
.mile .mile-action .mile-password dt,
.mile .mile-action .mile-quantity dd,
.mile .mile-action .mile-quantity dt {
  display: inline-block;
  vertical-align: top;
}

.mile .mile-action .mile-password dt {
  padding-top: 10px;
}

.mile .mile-action .mile-password dd,
.mile .mile-action .mile-quantity dd {
  text-align: left;
}

.mile .mile-action .mile-password .note,
.mile .mile-action .mile-quantity .note {
  font-size: 12px;
  color: #616161;
}

.mile .mile-action .mile-password [type="number"],
.mile .mile-action .mile-quantity [type="number"] {
  width: 7em;
  margin-top: 0;
  margin-right: 10px;
}

.mile .mile-action .mile-password [type="password"],
.mile .mile-action .mile-quantity [type="password"] {
  width: 20em;
  margin-top: 0;
}

.mile .mile-action .mile-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mile .mile-action .mile-quantity dt {
  padding-top: 0;
}

.index .index-button p,
.mile .mile-action .mile-quantity .note {
  display: inline-block;
}

.mile .mile-card .lead {
  font-size: 20px;
  position: relative;
  margin-top: 20px;
  padding-left: 15px;
}

.mile .mile-card-item {
  margin-top: 50px;
  text-align: center;
}

.mile .mile-card-item + .mile-card-item {
  padding-top: 50px;
  border-top: 1px solid #e0e0e0;
}

.mile .mile-card-item figcaption {
  font-size: 20px;
  font-weight: 700;
}

.mile .mile-card-item .image {
  margin-top: 0;
}

.mile .mile-card-button {
  margin-top: 40px;
}

.mile .mile-card-body dd,
.mile .mile-card-note,
.theater .theater-open dd {
  margin-top: 10px;
}

.mile .mile-card-info {
  margin-top: 25px;
  text-align: left;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
}

.mile .mile-card-title {
  font-weight: 700;
  padding: 20px;
}

.mile .mile-card-title .glyphicon {
  right: 20px;
  margin-top: -9px;
}

.mile .mile-card-body {
  display: none;
  margin: 0 20px;
  padding-bottom: 20px;
  border-top: 1px solid #e0e0e0;
}

.mile .mile-card-body dt {
  font-weight: 700;
  margin-top: 25px;
}

.theater {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  /* margin-top: 20px; */
  padding: 80px;
  color: #fff;
  background-color: #404041;
}

@media screen and (max-width: 767px) {
  .theater {
    padding: 15px;
  }
}

.theater.is-simple {
  color: #616161;
  background: #fff;
}

.theater.is-simple .theater-map a,
.theater.is-simple .theater-name a {
  color: #0d47a1;
}

.theater.is-simple .theater-map a:focus,
.theater.is-simple .theater-map a:hover,
.theater.is-simple .theater-name a:focus,
.theater.is-simple .theater-name a:hover {
  color: #b71c1c;
}

.theater.is-simple .theater-map {
  color: #616161;
}

.theater.is-simple .theater-films {
  margin-top: 0;
}

.theater.theater-detail,
.theater.theater-simple {
  padding: 0;
}

.theater.theater-simple .theater-simple-inner {
  display: table;
  width: 100%;
  height: 210px;
  text-align: center;
}

.theater.theater-simple .theater-simple-title {
  font-size: 30px;
  display: table-cell;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}

.theater .theater-inner {
  display: table;
  width: 100%;
  table-layout: fixed;
}

hr {
  margin: 50px 0 50px;
  border: solid thin #bbb;
}

.theater .theater-image {
  display: table-cell;
  vertical-align: top;
}

.theater .theater-slider {
  display: table-cell;
}

.theater .theater-body,
.theater .theater-info {
  display: table-cell;
  vertical-align: top;
}  

.theater .theater-inner .himitsu{
    display: block;
    width: 100%;
    table-layout: fixed;
}

.theater .theater-slider {
  width: 50%;
  padding: 30px;
  vertical-align: top;
}

/* .theater .theater-info {
  width: 50%;
} */

.theater .theater-info .info-image {
  text-align: center;
  border: 1px #bbb;
  background-color: #fff;
}

.theater .theater-info .player {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 74.7%;
}

.theater .theater-info .player embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.theater .theater-info .info-title,
.theater .theater-info .info-title .en {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px;
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
  font-feature-settings: "palt"; /* 自動文字詰め */
  align-items: center; /* 垂直方向の中央寄せ */
  justify-content: center; /* 水平方向の中央寄せ */
}

.theater .theater-info .info-title .en {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin: 10px 0;
  align-items: center; /* 垂直方向の中央寄せ */
  justify-content: center; /* 水平方向の中央寄せ */
}

.theater .theater-info .info-title .sub {
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin: 15px 0 0;
  text-align: right;
}

.theater .theater-info .info-note,
.theater .theater-info .info-text {
  font-size: 12px;
}

.theater .theater-info .info-text a {
  color: #2196f3;
}

.theater .theater-info .info-note a {
  color: #ff9800;
}

.theater .theater-info .info-note a:focus,
.theater .theater-info .info-note a:hover {
  opacity: 0.6;
}

.theater .theater-image {
  width: 38%;
}

.theater .theater-body {
  padding: 50px;
}

.theater .theater-detail {
  top: 150px;
padding: 0 0 0 40px;
}

.theater .theater-detail .himitsu {
display: none;
}

@media only screen and (max-width: 480px) {
  .theater .theater-detail {
    margin-top: 10px;
    /* top: 0x;
    padding: 0 0 0 48px; */
  }
  hr {
    margin: 15px 0 15px;
    /* border: solid thin #bbb; */
  }
}

.theater .theater-name {
  font-size: 20px;
}

.theater .theater-name a {
  color: #fff;
}

/* .theater .theater-thumbnail {
  /* margin-right: -5px;
  margin-left: -5px; */
  margin-bottom: 30px;
} */

ul .theater-thumbnail .group .himitsu {
    margin-bottom: 0px;
}

.theater .theater-thumbnail li {
  float: left;
  width: 33%;
  padding: 0 15px 0 0;
}

.theater .theater-thumbnail span {
  position: relative;
  display: block;
  padding-bottom: 75%;
  /* cursor: pointer; */
  border: 1px solid #e0e0e0;
  /* background-color: #fff; */
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  /* background-size: contain; */
}

.theater .theater-thumbnail img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  cursor: pointer;
}

.theater .theater-map {
  margin-top: 10px;
  color: #9e9e9e;
}

.theater .theater-map a {
  font-weight: 700;
  color: #1876e2;
}

.theater .theater-map a:focus,
.theater .theater-map a:hover {
  color: #e21818;
}

.theater .theater-map .glyphicon {
  font-size: 18px;
  margin-right: 4px;
  vertical-align: middle;
}

.theater .theater-icons {
  margin-top: 5px;
}

.theater .theater-icons a {
  color: #0d47a1;
}

.theater .theater-text {
  margin: 0;
  line-height: 2;
  font-feature-settings: "palt";
  /* padding: 15px 0 0 0; */
}

.theater .theater-link {
  font-size: 15px;
  margin-top: 10px;
  text-align: right;
}

.theater .theater-link a {
  color: #2196f3;
}

.theater .theater-link a:focus,
.theater .theater-link a:hover,
.theater-list .theater-list-area .item a:focus,
.theater-list .theater-list-area .item a:hover {
  opacity: 0.6;
}

.theater .theater-open {
  font-size: 14px;
  margin-top: 20px;
}

.theater .theater-films {
  margin: 40px 80px 0;
}

.theater .theater-anchor-button {
  position: relative;
  display: block;
  text-align: center;
}

.theater .schedule-group {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 30px;
  padding-left: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.theater .schedule-check {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 2px 6px;
  text-align: center;
  color: #0d47a1;
  border: 1px solid;
  border-radius: 3px;
  background: #fff;
}

.theater .schedule-check i {
  position: absolute;
  right: 0;
  bottom: -40px;
  left: 0;
  display: block;
  width: 40px;
  height: 20px;
  margin: auto;
  border-radius: 0 0 20px 20px;
  background: #292929;
}

.theater .schedule-check i:after,
.theater .schedule-check i:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 13px;
  height: 3px;
  content: "";
  border-radius: 3px/50%;
  background-color: #fff;
}

.theater .schedule-check i:before {
  margin-left: -10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.theater .schedule-check i:after {
  margin-left: -2px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.theater .theater-detail-word-break {
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  */ .theater.theater-simple .theater-simple-title {
    font-size: 18px;
  }

  .theater .theater-body,
  .theater .theater-image,
  .theater .theater-info,
  .theater .theater-slider {
    display: block;
  }

  .theater .theater-slider {
    width: auto;
    padding: 0;
  }

  .index .index-button p a,
  .theater .theater-info {
    width: 100%;
  }

  .theater .theater-info .player {
    height: auto;
    padding-bottom: 0;
  }

  .theater .theater-info .player img {
    width: 100%;
    height: auto;
  }

  .theater .theater-info .info-title {
    font-size: 15px;
    margin-top: 5px;
  }
  */ .theater .theater-info .info-title .en {
    font-size: 12px;
  }

  .theater .theater-info .info-note,
  .theater .theater-info .info-text {
  }

  /*
  .theater .theater-image {
    float: left;
    width: 25%;
    margin-bottom: 15px;
  }

  */
  .theater .theater-body,
  .theater .theater-detail,
  .theater-more .more-service .column + .column {
    padding-left: 0;
  }

  /*
  .theater .theater-name {
    font-size: 15px;
    float: left;
    width: 75%;
    margin-bottom: 15px;
    padding-top: 5px;
    padding-left: 10px;
  }

  .theater .theater-name.is-static {
    float: none;
    width: auto;
    padding-top: 0;
    padding-left: 0;
  }

  .theater .theater-thumbnail {
    margin-top: 20px;
  }

  .theater .theater-map {
    clear: both;
    margin-bottom: 20px;
  }

  .theater .theater-map a {
    float: right;
  }
*/

  .theater .theater-text {
    /* margin: 40px 0; */
    font-size: 14px;
  }

  .theater .theater-link,
  .theater .theater-open dd {
    font-size: 10px;
  }

  .theater .theater-open {
    font-size: 12px;
  }

  .theater .theater-films {
    margin: 15px 0 0;
  }

  .theater .theater-anchor-button a {
    font-weight: 700;
    position: relative;
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #fff;
  }

  .theater .theater-anchor-button .text {
    position: relative;
    z-index: 10;
  }

  .theater .theater-anchor-button .glyphicon {
    line-height: 52px;
    position: absolute;
    bottom: -28px;
    left: 50%;
    display: block;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #292929;
  }

  .theater .schedule-group {
    font-size: 15px;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 15px;
  }

  .theater .schedule-check {
    position: relative;
    display: block;
    max-width: 365px;
    text-align: center;
  }

  .theater .schedule-check i {
    position: absolute;
    right: 0;
    bottom: -40px;
    left: 0;
    display: block;
    width: 40px;
    height: 20px;
    margin: auto;
    border-radius: 0 0 20px 20px;
    background: #292929;
  }

  .theater .schedule-check i:after,
  .theater .schedule-check i:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 13px;
    height: 3px;
    content: "";
    border-radius: 3px/50%;
    background-color: #fff;
  }

  .theater .schedule-check i:before {
    margin-left: -10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .theater .schedule-check i:after {
    margin-left: -2px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .theater .schedule-check .hibiya-check {
    margin-bottom: 0;
  }

  #theater-schedule {
    margin-top: 0;
    padding-top: 0;
  }

  .theater-list {
    margin-right: 0;
    margin-left: 0;
  }

  .theater-list .theater-list-section {
    margin-top: 10px;
  }

  .theater-list .theater-list-title .glyphicon {
    margin-top: -7px;
  }

  .theater-list .theater-list-link {
    font-size: 12px;
  }

  .theater-list .theater-list-toggle-panel {
    margin: 0;
  }

  .theater-list .theater-list-area .h4 {
    color: #212121;
  }

  .theater-list .theater-list-area .item {
    float: none;
    width: auto;
  }

  .theater-list .theater-list-info {
    margin-top: 20px;
    text-align: left;
  }

  .theater-list .theater-list-button a {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .theater-more .more-note {
    font-size: 10px;
    height: 61px;
    margin-top: 20px;
    margin-right: -15px;
    margin-left: -15px;
  }

  .theater-more .more-note .note,
  .theater-more .more-note .text {
    font-size: inherit;
  }

  .theater-more .more-note .more-button {
    height: 36%;
  }

  .theater-more .more-note .more-button a {
    font-size: 12px;
    position: absolute;
    right: 50px;
    left: 50px;
    display: block;
    text-align: center;
  }

  .theater-more .more-banner {
    margin-top: 20px;
  }

  .theater-more .more-banner li {
    float: none;
    width: auto;
    margin-top: 10px;
  }

  .theater-more .more-banner li:last-child {
    padding-left: 0;
  }

  .theater-more .more-service {
    height: 144px;
    margin-top: 20px;
    margin-right: -15px;
    margin-left: -15px;
    padding: 15px;
  }

  .theater-more .more-service .title {
    font-size: 12px;
  }

  .theater-more .more-service .column {
    float: none;
    width: auto;
    padding-right: 0;
  }

  .theater-more .more-service .column dt {
    margin-top: 15px;
  }

  .theater-each-service .service-description {
    margin-right: -15px;
    margin-left: -15px;
    padding: 15px 15px 10px;
  }

  .tab-panel .theater-list-section .theater-each-service,
  .theater-list-section .theater-each-service .service-description {
    margin-right: 0;
    margin-left: 0;
  }

  .theater-list-section .theater-each-service .service-description:after,
  .theater-list-section .theater-each-service .service-description:before {
    left: 10px;
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }

  .theater-simple-list .text-block {
    padding: 15px;
  }

  .theater-simple-list .h4 {
    padding: 15px 15px 0;
  }

  .theater-simple-list .list a,
  .theater-simple-list .list span {
    font-size: 12px;
    padding: 15px;
  }

  .sns li {
    width: 33.3333%;
  }

  .sns li:nth-child(1) {
    padding-right: 4px;
  }

  .sns li:nth-child(2) {
    padding-right: 2px;
    padding-left: 2px;
  }

  .sns li:nth-child(3) {
    padding-left: 4px;
  }

  .sns a {
    height: 33px;
  }

  .sns .sns-facebook a {
    padding-top: 7px;
  }

  .sns .sns-facebook img {
    width: 17px;
    height: auto;
  }

  .sns .sns-x .glyphicon:before,
  .sns a {
    line-height: 33px;
  }

  .sns .sns-line img {
    width: 30px;
    height: auto;
  }

  .information {
    margin-right: -5px;
    margin-left: -5px;
  }

  .information .information-item {
    width: 50%;
    padding: 0 5px;
  }

  .information .information-image-outer {
    max-width: 360px;
    max-height: 218px;
  }

  .index {
    padding: 15px;
    background-color: #fff;
  }

  .index .index-item {
    float: none;
    width: auto;
  }

  .index .index-item:first-child a {
    margin-top: 0;
  }

  .index .index-item:nth-child(odd) {
    margin-right: 0;
  }

  .index .index-item:nth-child(even) {
    margin-left: 0;
  }

  .index .index-item a {
    height: auto;
    margin-top: 15px;
    padding-bottom: 15px;
  }

  .index .index-media {
    width: 58px;
  }

  .index .index-media img {
    width: 47.5px;
    height: auto;
  }

  .index .index-banners ul {
    padding: 15px 10px;
  }

  .index .index-banners li,
  .index .index-button p,
  .static .static-text-block-03 .cookieTabel .innerBlock th span {
    display: block;
  }

  .index .index-banners .index-banner-01,
  .member .member-limit dd,
  .member .member-limit dt,
  .member .member-mile dd,
  .member .member-mile dt {
    font-size: 15px;
  }

  .index .index-banners a {
    width: auto;
  }

  .index .index-button {
    margin-top: 15px;
    padding: 0 20px;
  }

  .member .member-cinemileage-box .member-cinemileage-l {
    width: 100%;
    margin: 10px auto 0;
  }

  .member .member-cinemileage-box .member-cinemileage-_l {
    width: 100%;
    margin: 0 auto 15px;
  }

  .member .member-row {
    margin-right: 0;
    margin-left: 0;
  }

  .member .member-col .text,
  .member .member-col-02 .text {
    margin-top: 15px;
  }

  .member .member-col {
    float: none;
    width: auto;
    padding: 0;
  }

  .member .member-col + .member-col {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
  }

  .member .member-col .logo img {
    height: auto;
  }

  .member .member-col .logo [width="337"] {
    width: 207px;
  }

  .member .member-col .logo [width="207"] {
    width: 128px;
  }

  .member .member-row-02 {
    margin-right: 0;
    margin-left: 0;
  }

  .member .member-col-02 {
    float: none;
    width: auto;
    padding: 0;
  }

  .member .member-col-02 .member-section,
  .static .static-text-block-01 .h2 + p,
  .static .static-text-block-01 .static-heading-lv02-02 + p,
  .static .static-text-block-01 .static-heading-lv02-02 + ul {
    margin-top: 10px;
  }

  .member .member-limit,
  .member .member-mile,
  .member .member-table {
    margin-top: 20px;
  }

  .member .member-limit-over .limit {
    position: static;
    text-align: center;
  }

  #banner-top,
  #more-banner,
  #movie-banners,
  .member .member-limit-over .limit .link,
  .member .member-limit-over .limit .text {
    display: block;
    margin-top: 10px;
  }

  .member .member-limit-over .limit .text {
    font-size: 20px;
  }

  .member .member-limit-over .limit .link {
    margin-right: 25px;
    margin-left: 25px;
  }

  .member .member-limit-over .limit .link a {
    font-weight: 700;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .member .member-limit-over .list {
    font-size: 12px;
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
  }

  .member .member-limit-over .member-link {
    font-size: 10px;
    margin-top: 15px;
  }

  .member .member-mile .number {
    font-size: 25px;
  }

  .member .member-button {
    margin-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .member .member-link {
    margin-top: 12px;
  }

  .member .member-link .glyphicon {
    font-size: 15px;
  }

  .member .member-button-large .button-primary {
    width: 240px;
  }

  .member .button-irregular {
    width: auto;
  }

  .member .member-link-list li,
  .member .member-moveto {
    margin-top: 15px;
  }

  .member-header {
    padding: 0 15px 10px;
  }

  .member-header .member-header-h1 .logo {
    display: block;
    margin-right: 0;
    padding-bottom: 6px;
  }

  .member-header .member-header-text,
  .member-header .member-header-user {
    font-size: 10px;
    margin-top: 6px;
  }

  .member-header .member-header-logout {
    right: 15px;
  }

  .member-header,
  .member-section {
    margin-top: 10px;
    margin-right: -15px;
    margin-left: -15px;
  }

  .member-section:first-child {
    margin-top: 10px;
  }

  .member-section .member-section-title {
    font-size: 15px;
    border-left-width: 3px;
  }

  .member-section .member-section-title-02 {
    font-size: 15px;
    margin-top: 20px;
  }

  .member-section .member-sns-text {
    margin-top: 15px;
  }

  .member-section .member-sns-box {
    display: block;
    width: 100%;
    margin-top: 20px;
  }

  .member-section .member-sns-box .member-sns-yahoo {
    display: block;
    width: 100%;
    height: 50px;
  }

  .member-section .member-sns-box .member-sns-yahoo .member-yahoo-btn {
    font-size: 15px;
    line-height: 48px;
  }

  .member-section .member-sns-box .member-sns-yahoo .member-yahoo-btn::before {
    left: -64px;
    width: 32px;
    margin: 16px 10px;
  }

  .member-section .member-sns-box .member-sns-google {
    display: block;
    width: 100%;
    height: 50px;
    margin-top: 15px;
  }

  .member-section .member-sns-box .member-sns-google .member-google-btn {
    font-size: 15px;
    line-height: 48px;
    margin: 0 0 0 70px;
  }

  .member-section .member-sns-box .member-sns-google .member-google-btn::before,
  .member-section
    .member-sns-box
    .member-sns-google.is-current
    > .member-google-btn::before {
    top: 12px;
    left: -50px;
    width: 24px;
  }

  body.page-detail .detail__btn {
    margin: 20px 15px 0;
  }

  body.page-detail .detail__mainimg,
  body.page-detail .detail__phimg {
    max-width: -webkit-calc(100vmin - 30px);
    max-width: calc(100vmin - 30px);
  }

  .memberdetail .detail__mainimg .detail-main-image,
  body.page-detail .detail__mainimg .detail-main-image,
  body.page-detail .detail__mainimg img,
  body.page-detail .detail__phimg .detail-main-image,
  body.page-detail .detail__phimg img {
    max-width: 100%;
    min-height: 0;
    max-height: 100%;
  }

  body.page-detail .detail__phimg {
    margin: 15px auto;
  }

  .memberdetail .movie__code iframe,
  body.page-detail .movie__code iframe {
    width: 320px !important;
    height: 180px !important;
  }

  body.page-detail .info__titleM {
    font-size: 15px;
  }

  body.page-facility .grid-main__inner {
    overflow: hidden;
    padding: 20px 15px 0;
  }

  body.page-facility .lead {
    margin: -20px -15px 0;
  }

  body.page-facility .openTime__titleL,
  body.page-facility .openTime__titleM {
    font-size: 15px;
  }

  body.page-facility .openTime__text {
    font-size: 12px;
  }

  body.page-facility .about__titleL {
    font-size: 15px;
  }

  body.page-facility .about__titleM {
    font-size: 15px;
    margin: 0;
    padding: 0 20px 0 15px;
  }

  body.page-facility .about__textWrap .title {
    margin: 0 0 10px;
  }

  body.page-facility .about__screen {
    border-bottom: none;
  }

  body.page-facility .about__other,
  body.page-facility .about__root,
  body.page-facility .about__seat,
  body.page-facility .about__sound,
  body.page-facility .about__system {
    padding: 0;
    border-bottom: none;
  }

  body.page-advance .lead {
    margin: -20px -15px 0;
  }

  body.page-advance .section {
    margin-bottom: 2px;
  }

  body.page-advance .section__maintitle {
    font-size: 15px;
    position: relative;
  }

  body.page-advance .section__maintitle .date {
    font-size: 10px;
  }

  body.page-advance .section__body {
    padding: 10px 0 20px;
  }

  body.page-advance .section__body .row {
    margin-right: 0;
    margin-left: 0;
  }

  body.page-advance .section__body .row:first-child .col:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  body.page-advance .section__body .col {
    float: none;
    width: auto;
    margin-top: 10px;
    padding: 10px 0 0;
    border-top: 1px solid #e0e0e0;
  }

  body.page-advance .section__body .infoWrap {
    font-size: 12px;
  }

  .memberinfo .c-mainList03__item,
  body.page-advance .c-section-basic__note {
    padding: 15px;
  }

  body.page-access .c-mainTitle:before,
  body.page-access .is-lv-02:before {
    top: 3px;
    width: 4px;
    height: 17px;
  }

  body.page-access .map__gmap {
    height: 320px;
  }

  body.page-access .map__map_img {
    position: relative;
    overflow: hidden;
  }

  body.page-access .route__titleL {
    font-size: 17px;
    padding: 0 0 15px 14px;
  }

  body.page-access .route__titleM {
    font-size: 15px;
  }

  body.page-access .route__text {
    font-size: 12px;
  }

  body.page-access .detail__btn {
    margin: 20px 15px 0;
  }

  body.page-price .grid-main__inner {
    padding: 20px 15px;
  }

  body.page-price .price__titleL {
    font-size: 17px;
    padding: 0 0 15px 14px;
  }

  body.page-price .price__text {
    font-size: 15px;
  }

  body.page-price .price .note-block,
  body.page-price .price__note {
    font-size: 10px;
  }

  body.page-price .price .jp-title {
    font-size: 15px;
  }

  body.page-price .price .en-title {
    font-size: 10px;
  }

  body.page-price .price .txt-price {
    font-size: 15px;
  }

  body.page-listpage .categoryNav {
    display: none;
  }

  body.page-listpage .detail__btn {
    margin: 20px 15px 0;
  }

  body.page-calendar .grid-main__inner {
    padding: 20px 15px;
  }

  body.page-calendar .pickup__btn .item {
    display: block;
    margin: 0;
  }

  body.page-calendar .pickup__btn .item:first-child {
    margin: 0 0 10px;
  }

  body.page-calendar .pickup__btn .btn,
  body.page-calendar .pickup__btn .button {
    font-size: 12px;
  }

  body.page-calendar .calendar__titleL {
    font-size: 18px;
    margin: 0 0 8px;
    padding: 0 0 0 14px;
  }

  body.page-calendar .calendar__lead {
    font-size: 9px;
    color: #757575;
  }

  body.page-calendar .calendar__table .date-cell {
    width: 85px;
  }

  body.page-calendar .calendar__date {
    font-size: 18px;
  }

  body.page-calendar .calendar .label-campaign,
  body.page-calendar .calendar .label-close,
  body.page-calendar .calendar .label-event,
  body.page-calendar .calendar .label-mamas,
  body.page-calendar .calendar .label-other,
  body.page-calendar .calendar .label-price,
  body.page-calendar .calendar .label-start,
  body.page-calendar .calendar__day {
    font-size: 10px;
  }

  body.page-calendar .calendar__detail {
    font-size: 12px;
    margin: 5px 0 0;
  }

  .memberinfo__intro {
    padding: 20px 0 18px;
  }

  .memberinfo__intro__h1 {
    font-size: 18px;
  }

  .memberinfo__container {
    margin: 0 -15px;
  }

  .memberinfo .c-mainList03__body {
    padding: 0;
  }

  .memberinfo .c-mainList03__thumb {
    width: 97px;
    height: 97px;
    margin: 0 10px 0 0;
  }

  .memberinfo .c-mainList03__thumb img {
    max-width: 95px;
    height: auto;
    max-height: 95px;
  }

  .memberinfo .c-mainList03__title {
    font-size: 15px;
  }

  .memberinfo .c-mainList03__text {
    font-size: 10px;
  }

  .memberdetail .detail__note .item,
  .memberinfo .c-mainList03__date {
    font-size: 9px;
  }

  .memberdetail__container {
    margin: 0 -15px;
    padding: 20px 15px 30px;
  }

  .memberdetail .detail__title {
    font-size: 18px;
  }

  .memberdetail .detail__mainimg {
    max-width: -webkit-calc(100vmin - 30px);
    max-width: calc(100vmin - 30px);
  }

  .memberdetail .detail__mainimg img {
    max-width: 100%;
    min-height: 0;
    max-height: 100%;
  }

  .memberdetail .detail__text {
    font-size: 15px;
  }

  .memberdetail .detail__text p {
    margin: 0;
  }

  .memberdetail .detail__titleS {
    font-size: 10px;
  }

  .memberdetail .detail__link {
    font-size: 12px;
  }

  .page-under .grid-main__inner {
    padding: 20px 15px;
  }

  .page-under .grid-main {
    margin: 0 -15px;
  }

  .page-under .categoryNav {
    display: none;
  }

  .page-under .c-page_heading.is-lv-01 {
    font-size: 18px;
    padding: 19px 0 20px;
  }

  .page-under .c-page_heading.is-lv-01 .sub {
    font-size: 10px;
    color: #616161;
  }

  .heading-lead-02 {
    margin: -10px 0 12px;
  }

  .heading-lead-02 .note {
    font-size: 10px;
  }

  .c-free-text-link {
    margin: 20px 0;
  }

  .c-free-text-link li {
    margin: 0 0 5px;
  }

  .c-free-text-link li:last-child {
    margin: 0;
  }

  .page-under .c-mainList01__list {
    margin: -20px -15px;
    padding: 0;
  }

  .page-under .c-mainList01__body {
    padding: 15px;
  }

  .page-under .c-mainList01__thumb {
    width: 97px;
    height: 97px;
    margin: 0 10px 0 0;
  }

  .page-under .c-mainList01__thumb img,
  .page-under .c-mainList02__thumb img {
    max-width: 95px;
    height: auto;
    max-height: 95px;
  }

  .page-under .c-mainList01__text,
  .page-under .c-mainList02__note .list {
    font-size: 10px;
  }

  .page-under .c-mainList01__date {
    font-size: 9px;
  }

  .page-under .c-mainList02__item {
    padding: 15px 0;
  }

  .page-under .c-mainList02__thumb {
    width: 97px;
    height: 97px;
    margin: 0 0 0 10px;
  }

  .page-under .c-mainList02__title {
    font-size: 15px;
  }

  .page-under .c-mainList02__text {
    font-size: 12px;
  }

  .page-under .c-mainTitle,
  .page-under .is-lv-02 {
    font-size: 18px;
  }

  .page-under .c-mainTitle:before,
  .page-under .is-lv-02:before {
    top: 3px;
    width: 4px;
    height: 17px;
  }

  .page-under .is-lv-03 {
    font-size: 15px;
  }

  .page-under .is-lv-03.mrgL {
    margin: 20px 0 15px;
  }

  .page-under .grid-sub {
    width: 100% !important;
  }

  .page-under .grid-sub__inner {
    padding: 0;
    background: 0 0;
  }

  .page-under .grid-sub__banner .item img {
    width: 100%;
  }

  .page-under .c-button-sizeM {
    width: auto;
  }

  .page-under .c-button-sizeM .button {
    font-size: 15px;
    padding: 9px 0;
  }

  .page-under .detail__btn {
    margin: 20px 15px 0;
  }

  .page-under .c-section-basic__text {
    font-size: 15px;
  }

  .page-under .c-section-basic__note .list {
    font-size: 10px;
  }

  .movie-banners .banner-list.left li.banner-list-item img,
  .page-under .c-blockWrap .c-block-img1 {
    width: 100%;
  }

  .page-under .c-blockWrap .c-block-img1.floatL,
  .page-under .c-blockWrap .c-block-img1.floatR {
    float: inherit;
    margin: 0 0 10px;
  }

  .page-under .c-blockWrap .c-block-img2 {
    margin: 0 0 10px;
  }

  .page-under .c-blockWrap .c-block-img2 li {
    float: inherit;
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
  }

  .page-under .c-blockWrap .c-block-img2 li:last-child {
    margin: 0;
    padding: 0;
  }

  .page-under .c-table01 tbody td,
  .page-under .c-table01 thead th {
    font-size: 9px;
    padding: 6px 5px;
    white-space: pre-line;
  }

  .page-under .c-table01 tbody td {
    padding: 7px 5px;
  }

  .page-under .toggle01-wrap {
    margin: 0 0 5px;
    padding: 15px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
  }

  .page-under .toggle01-wrap .toggle01-button .glyphicon {
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    margin: -7px 0 0;
  }

  .page-under .toggle01-wrap .toggle01-pane {
    position: relative;
    display: none;
    margin: 10px 0 0;
    padding: 10px 0 0;
    border-top: 1px solid #dcdcdc;
  }

  .page-under .toggle01-wrap .toggle01-pane .text {
    margin: 0;
  }

  .page-under .toggle01-more {
    display: block;
    margin: 10px 30px 0;
  }

  .page-under .toggle01-more a {
    font-size: 12px;
    display: block;
    padding: 7px 0;
    text-align: center;
    color: #616161;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
  }

  .page-under .toggle02-wrap {
    margin: 0 -15px 2px;
  }

  .page-under .toggle02-wrap .toggle02-button {
    font-weight: 400;
    position: relative;
    padding: 15px;
    cursor: pointer;
    border-radius: 2px;
    background-color: #efefef;
  }

  .page-under .toggle02-wrap .toggle02-button .glyphicon {
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    margin: -7px 0 0;
    color: #636363;
  }

  .page-under .toggle02-wrap .toggle02-pane,
  .page-under .toggle03-wrap .toggle03-pane {
    position: relative;
    padding: 10px 15px;
    background: #fff;
  }

  .page-under .toggle03-wrap {
    margin: 0 0 2px;
  }

  .page-under .brPC {
    display: none;
  }

  .page-under .brSP {
    display: inline;
  }

  .banners,
  .movie-banners {
    margin-top: 30px;
  }

  .banners li,
  .ga_banners li,
  .more-banner.auPass li {
    float: none;
    width: auto;
    margin-top: 10px;
  }

  .movie-banners .movie-list {
    float: none;
    width: auto;
    padding-right: 0;
  }

  #more-banner + .more-banner,
  .box.is-banner,
  .home-more,
  .movie-banners .banner-list,
  .static .static-text-block-03 .cookieTabel .innerBlock thead {
    display: none;
  }

  /* .movie-banners .banner-list.left {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 2.3%;
    padding-right: 0;
    padding-left: 0;
  }

  .movie-banners .banner-list.left li.banner-list-item + li {
    margin-top: 2.3%;
  }

  .more-banner.auPass {
    margin-top: 20px;
  }

  .more-banner.auPass li:first-child {
    padding-right: 0;
  }

  .more-banner.auPass li:last-child {
    padding-left: 0;
  }

  .more-banner.auPass.bnrSchedule {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .ga_banners {
    margin-top: 30px;
  } */
/* 
  .ga_banners .ga_group,
  .static .static-box-03 .body h3,
  .static .static-box-03 .body ol,
  .static .static-text-block-03 .cookieTabel .innerBlock th.wide {
    width: auto;
  }

  .ga_banners li:first-of-type {
    margin-right: 0 !important;
  }

  .ga_banners li.sp-none {
    display: none;
    margin: 0;
    padding: 0;
  }

  .ga_banners li .g-Adsense {
    width: 336px;
    height: 280px !important;
    margin: 0 auto;
  }

  .mileage.indent {
    margin: 0 -15px;
  }

  .mileage .form-note-list li {
    font-size: 9px;
  }

  .mileage .form-note-list-mt {
    font-size: 12px;
    margin-top: 20px;
  }

  .mileage .form-image img {
    width: 100%;
    height: auto;
  }

  .mileage .priceLarge .name {
    font-size: 15px;
    padding: 3px 0 0;
  }

  .mileage .priceLarge .date,
  .mileage .priceLarge .date span {
    font-size: 18px;
  }

  .mileage .mileageLarge .name {
    font-size: 14px;
    padding: 3px 0 0;
  }

  .mileage .mileageLarge .detail span.total {
    font-size: 13px;
  }

  .mileage .mileageLarge .detail span.mile,
  .mileage .mileageLarge .detail span.point {
    font-size: 24px;
  }

  .mileage .mileage-intro .intro-h1 {
    margin: 0 15px;
  }

  .mileage .mileage-intro__text {
    font-size: 15px;
    position: inherit;
    top: inherit;
    margin: 0 15px 10px;
    text-align: right;
  }

  .mileage .mileage-intro__link {
    font-size: 9px;
  }

  .mileage .mileage-intro__body .text-lead,
  .mileage .mileageLarge .detail span.scale,
  .mileage .mileageLarge .detail span.scale-en {
    font-size: 15px;
  }

  .mileage .mileage-intro__body .text {
    font-size: 10px;
    margin: 0 0 10px;
  }

  .mileage .mileage-intro__body .intro-link {
    font-size: 9px !important;
  }

  .mileage .mileage-tab__panel .form-button {
    margin: 15px 0 0;
  }

  .mileage .mileage-tab__panel .inner-btn {
    font-size: 14px;
    font-weight: 700;
    display: block;
    float: none;
    margin: 15px 0 0;
  }

  .mileage .mileage-tab__panel__btn {
    display: block;
    padding: 15px 10px;
    color: #0d47a2;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
  }

  .mileage .mileage-tab__panel__btn .glyphicon {
    margin: -8px 0 0;
  }

  .mileage .mileage-tab__panel__body {
    padding: 0 10px;
  }

  .mileage .mileage-tab .form-birthday {
    display: block;
    margin: 10px 0 0;
  }

  .mileage .mileage-tab .form-birthday .birthday-item {
    width: 94px;
  }

  .mileage .mileage-tab .form-birthday .birthday-item.years {
    clear: both;
    width: 110px;
  }

  .mileage .mileage-tab .form-birthday .birthday-item .form-select.years {
    width: 80px;
  }

  .mileage .mileage-section__h2 {
    padding: 0 15px;
  }

  .mileage .mileage-section__h2 .title {
    font-size: 15px;
  }

  .mileage .mileage-section__h2 .label {
    font-size: 10px;
  }

  .mileage .mileage-section__h2 .glyphicon {
    margin: 0 5px 0 0;
  }

  .mileage .mileage-section__row {
    display: block;
    padding: 10px 0;
  }

  .mileage .mileage-section__row .col:first-child {
    display: block;
  }

  .mileage .mileage-section__row .col:last-child {
    display: block;
  }

  .mileage .mileage-section__row .title {
    font-size: 9px;
    display: block;
    width: 100%;
  }

  .mileage .mileage-section__row .text {
    font-size: 15px;
    display: block;
    width: 100%;
  }

  .mileage .mileage-section__row .point .num {
    font-size: 20px;
  }

  .mileage .mileage-section__row .point .scale-en {
    font-size: 15px;
  }

  .mileage .mileage-section__row .mile .num {
    font-size: 20px;
  } */

  .static.is-col-01 {
    margin-right: -15px;
    margin-left: -15px;
  }

  .static .static-text-block-01 .static-item-01 + .static-item-01 {
    margin-top: 18px;
    padding-top: 3px;
  }

  .static .static-mile .static-mile-item-01 .image figcaption,
  .static .static-text-block-01 .h2,
  .static .static-text-block-03 .cookieTabel p.supplementText {
    font-size: 12px;
  }

  .static .static-text-block-01 .static-heading-lv02 {
    margin-top: 40px;
  }

  .static .static-box-04 .inner tr:first-child th,
  .static .static-text-block-01 .static-heading-lv02:first-child {
    margin-top: 0;
  }

  .static .static-text-block-01 .static-heading-lv02-02 {
    margin-top: 23px;
  }

  .static .static-text-block-01 .static-heading-lv03 {
    margin-top: 15px;
  }

  .static
    .static-text-block-01
    .static-heading-lv03
    + .static-heading-lv03-plus,
  .static .static-text-block-01 .static-heading-lv03 + p,
  .static .static-text-block-01 .static-heading-lv03 + ul {
    margin-top: 10px;
  }

  .static .static-text-block-01 .static-heading-lv04 {
    margin-top: 11px;
  }

  .static .static-text-block-01 .static-table-01 + p,
  .static .static-text-block-01 .static-table-01 + ul {
    margin-top: 13px;
  }

  .static .static-text-block-01 .static-button-list + p,
  .static .static-text-block-01 .static-button-list + ul,
  .static .static-text-block-01 .static-heading-lv04 + .static-table-01 {
    margin-top: 18px;
  }

  .static .static-text-block-01 .static-button-03 {
    margin-top: 26px;
    margin-bottom: -5px;
    padding-bottom: 0;
  }

  .static .static-text-block-01 .static-disc-list-02 {
    margin-top: 28px;
  }

  .static .static-text-block-01 .static-note-list-02 {
    margin-left: 6px;
  }

  .static .static-text-block-01 .image + .static-heading-lv03 {
    margin-top: 19px;
  }

  .static .static-text-block-01 .image-02 {
    margin-top: 28px;
  }

  .static .static-text-block-01 .image-02 img {
    max-width: 100%;
    height: auto;
  }

  .static .static-text-block-01 .image-02 img [width="340"] {
    width: 245px;
    height: auto;
  }

  .form .form-image img,
  .static .static-box-04 .inner .image img,
  .static .static-text-block-01 .image-02 .is-sp-100 {
    width: 100%;
    height: auto;
  }

  .static .static-text-block-01 .image + p,
  .static .static-text-block-01 .image + ul,
  .static .static-text-block-01 .image-02 + .separate-01,
  .static .static-text-block-01 .image-box + p,
  .static .static-text-block-01 .image-box + ul {
    margin-top: 12px;
  }

  .static .static-text-block-01 .image-02 .strong {
    font-size: 15px;
    margin-top: 12px;
  }

  .static .static-text-block-01 .image-box + .image-02 {
    margin-top: 20px;
  }

  .static .static-text-block-01 .separate-01 {
    margin-top: 9px;
  }

  .static .static-text-block-01 .static-button-02 {
    margin-top: 27px;
  }

  .static .static-text-block-01 p,
  .static .static-text-block-01 ul {
    margin-top: 3px;
  }

  .static .static-text-block-02 p,
  .static .static-text-block-02 ul,
  .static .static-text-block-03 h2 + p,
  .static .static-text-block-03 h2 + ul {
    margin-top: 9px;
  }

  .static .static-text-block-03 h3 + p,
  .static .static-text-block-03 h3 + ul {
    margin-top: 6px;
  }

  .static .static-text-block-03 p + p,
  .static .static-text-block-03 p + ul,
  .static .static-text-block-03 ul + p,
  .static .static-text-block-03 ul + ul,
  .static .static-text-block-03 ul.expand-01 li + li {
    margin-top: 9px;
  }

  .static .static-text-block-03 .link-list li {
    float: none;
    margin-top: 5px;
    margin-right: 0;
  }

  .static .static-text-block-03 .link-list li + li,
  .static .static-text-block-03 dt {
    margin-top: 14px;
  }

  .static .static-text-block-03 dt:first-child {
    margin-top: 16px;
  }

  .static .static-note-block > p,
  .static .static-note-block > ul,
  .static .static-text-block-03 dd {
    margin-top: 4px;
  }

  .static .static-text-block-03 .image img {
    max-width: 100%;
    margin-top: 5px;
  }

  .static .static-text-block-03 .image + p,
  .static .static-text-block-03 .image + ul {
    margin-top: 8px;
  }

  .static .static-text-block-03 .cookieTabel h2.title {
    font-size: 16px;
  }

  .static .static-text-block-03 .cookieTabel .innerBlock {
    margin: 15px 0 40px;
    border: none;
  }

  .static .static-text-block-03 .cookieTabel .innerBlock tr {
    width: 100%;
    border-top: 3px solid #ddd;
    border-right: 3px solid #ddd;
    border-left: 3px solid #ddd;
  }

  .static .static-text-block-03 .cookieTabel .innerBlock tr:last-child {
    border-bottom: 3px solid #ddd;
  }

  .static .static-text-block-03 .cookieTabel .innerBlock td {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .static .static-text-block-03 .cookieTabel .innerBlock td::before {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    content: attr(data-label);
    color: #212121;
  }

  .static .static-box {
    padding: 25px 15px;
  }

  .static .static-box + .static-box {
    margin-top: 10px;
  }

  .static .static-box + .static-box .button-line-02 {
    padding-top: 3px;
  }

  .static .static-box.static-box-more {
    position: relative;
    overflow: hidden;
    height: 370px;
  }

  .static .static-box-02 {
    padding: 13px 15px 21px;
  }

  .static .static-box-02 + .static-box-02 {
    margin-top: 15px;
  }

  .static .static-box-02 .title {
    font-size: 15px;
  }

  .static .static-box-02 .tagline {
    margin-top: 5px;
  }

  .static .static-box-02 .static-icon {
    margin-top: 11px;
  }

  .static .static-box-02 .static-icon .icon {
    font-size: 10px;
    width: 50px;
  }

  .static .static-box-02 .note {
    font-size: 10px;
    margin-top: 13px;
  }

  .static .static-box-02 .image {
    margin-top: 19px;
  }

  .static .static-box-02 .image img {
    max-width: 100%;
    height: auto;
  }

  .static .static-box-02 > .text {
    font-size: 12px;
    margin-top: 13px;
  }

  .static .static-box-02 .static-box-02-button {
    margin-top: 18px;
  }

  .static .static-box-02 .static-box-02-button a {
    font-size: 15px;
    width: 98%;
    padding: 13px 0;
  }

  .static .static-box-03 {
    display: block;
    width: auto;
    height: auto;
    margin: 17px -15px 18px;
    padding: 20px;
  }

  .static .static-box-03 .body,
  .static .static-box-03 .image {
    display: block;
  }

  .static .static-box-03 .image {
    width: auto;
    text-align: center;
  }

  .static .static-box-03 .image img {
    width: 138px;
    height: auto;
  }

  .static .static-box-03 .body {
    margin-top: 35px;
    padding-left: 0;
  }

  .static .static-box-04 {
    margin-top: 18px;
  }

  .static .static-box-04 + .static-box-04 {
    margin-top: 30px;
    padding-top: 30px;
  }

  .static .static-box-04 .list {
    margin-top: 27px;
  }

  .static .static-box-04 .text {
    margin-top: 10px;
  }

  .static .static-box-04 .inner,
  .static .static-box-04 .inner .body,
  .static .static-box-04 .inner .image {
    display: block;
  }

  .static .static-box-04 .inner .image {
    width: auto;
  }

  .static .static-box-04 .inner .body {
    padding-left: 0;
  }

  .static .static-box-04 .inner .title {
    font-size: 15px;
    margin-top: 14px;
  }

  .static .static-box-04 .inner table {
    margin-top: 16px;
  }

  .static .static-box-04 .inner tr + tr {
    display: block;
    margin-top: 13px;
  }

  .static .static-box-04 .inner td,
  .static .static-box-04 .inner th {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }

  .static .static-box-04 .inner th {
    margin-top: 13px;
  }

  .static .static-box-04 .inner td {
    font-size: 12px;
    margin-top: 9px;
    padding-left: 0;
  }

  .static .static-box-04 .inner td .note {
    font-size: 10px;
  }

  .static .static-box-04-button {
    margin-top: 26px;
  }

  .static .static-box-04-button a {
    width: 100%;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .static .image-box {
    width: 100%;
    padding: 35px 0;
  }

  .static .image-box [width="80"] {
    width: 74px;
    height: auto;
  }

  .static .static-mile .text-01 {
    margin-top: 20px;
  }

  .static .static-mile .alignleft {
    display: block;
    float: none;
    width: 152px;
    height: auto;
    margin-right: auto;
    margin-bottom: 13px;
    margin-left: auto;
  }

  .static .static-mile .static-mile-note-list {
    font-size: 10px;
    margin-top: 30px;
    padding: 8px 10px;
  }

  .static .static-mile .static-mile-item-01 + .static-mile-item-01 {
    margin-top: 27px;
    padding-top: 17px;
  }

  .static .static-mile .static-mile-item-01 .images:before {
    display: none;
  }

  .static .static-mile .static-mile-item-01 .images .images-item {
    float: none;
    width: auto;
  }

  .static
    .static-mile
    .static-mile-item-01
    .images
    .images-item
    + .images-item {
    position: relative;
    margin-top: 21px;
    border-top: 1px solid transparent;
  }

  .static
    .static-mile
    .static-mile-item-01
    .images
    .images-item
    + .images-item:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 260px;
    margin-left: -130px;
    content: "";
    border-top: 1px solid #e0e0e0;
  }

  .static .static-mile .static-mile-item-01 .image {
    width: auto;
    margin-top: 22px;
    text-align: center;
  }

  .static .static-mile .static-mile-item-01 .image .sp-252 {
    width: 126px;
  }

  .static .static-mile .static-mile-item-01 .image .sp-380 {
    width: 190px;
  }

  .static .static-mile .static-mile-item-01 .image .note {
    font-size: 10px;
    white-space: normal;
  }

  .static .static-mile .static-mile-item-02 + .static-mile-item-02 {
    padding-top: 1px;
    margin-top: 17px;
  }

  .static .static-mile .static-mile-item-02 + .static-mile-item-02 .image {
    margin-top: 19px;
  }

  .static .static-mile .static-mile-item-02 + .static-mile-item-02:before {
    width: 260px;
    margin-left: -130px;
  }

  .static .static-mile .static-mile-item-02 .link {
    font-weight: 700;
    margin-top: 13px;
  }

  .static .static-mile .static-mile-item-02 .mt-sp-30 {
    margin-top: 23px;
  }

  .static .static-mile .static-heading-lv03 {
    margin-top: 16px;
  }

  .static .static-mile .h4 {
    font-size: 18px;
    margin-top: 11px;
  }

  .static .static-toggle {
    margin-top: 17px;
  }

  .static .static-toggle-button {
    font-weight: 700;
    padding: 13px 15px;
  }

  .static .static-toggle-button .glyphicon {
    right: 15px;
  }

  .static .static-toggle-panel {
    margin-right: 15px;
    margin-left: 15px;
    padding-bottom: 16px;
  }

  .static .static-toggle-panel .dl dt {
    margin-top: 14px;
  }

  .static .static-toggle-panel .note-list {
    font-size: 10px;
    margin-top: 2px;
  }

  .static .static-toggle-list {
    margin: 27px -15px -25px;
  }

  .static .static-toggle-list:first-child {
    margin-top: -25px;
  }

  .static .static-toggle-list .static-toggle-item.is-sub {
    padding: 13px 0 15px;
  }

  .static .static-toggle-list-button {
    font-size: 12px;
    padding: 15px;
  }

  .static .static-toggle-list-button .glyphicon {
    font-size: 10px;
    right: 15px;
    margin-top: -5px;
  }

  .static .static-toggle-list-panel {
    margin-right: 15px;
    margin-left: 15px;
  }

  .static .static-card-box-extra-01 {
    padding-bottom: 0;
  }

  .static .static-card-box-extra-01 .static-heading.static-heading-lv03 {
    font-size: 12px;
    margin-top: 29px;
  }

  .static
    .static-card-box-extra-01
    .static-heading.static-heading-lv03:first-child {
    margin-top: 19px;
  }

  .static .static-card-box-extra-01 .static-heading.static-heading-lv03-03 {
    margin-top: 18px;
  }

  .static
    .static-card-box-extra-01
    .static-heading.static-heading-lv03-03:first-child {
    margin-top: 16px;
  }

  .static .static-card-box-extra-01 .static-card-box {
    margin-top: 28px;
  }

  .static .static-card-box-extra-01 .static-separate-02 {
    margin-top: 20px;
  }

  .static .static-card-box {
    display: block;
    margin-top: 18px;
  }

  .static .static-card-box .card-box-body,
  .static .static-card-box .card-box-image {
    display: block;
  }

  .static .static-card-box .card-box-image {
    width: auto;
  }

  .static .static-card-box .card-box-button {
    margin-top: 20px;
  }

  .static .static-card-box .card-box-button a {
    width: 100%;
  }

  .static .static-card-box .card-box-note {
    font-size: 10px;
    margin-top: 8px;
  }

  .static .static-button-list li,
  .static .static-inner {
    margin-top: 15px;
  }

  .static .static-inner-02 {
    margin-top: 14px;
  }

  .static .static-grid .static-column-02 {
    float: none;
    width: auto;
  }

  .static .static-media .media-image {
    width: 95px;
    margin-right: 15px;
  }

  .static .static-button a {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .static .static-button-02 .button-primary {
    width: 100%;
  }

  .static .static-button-02 .button-sub {
    width: 225px;
  }

  .static .static-button-03 .button-primary {
    font-size: 15px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .static .static-conversion-button {
    margin-top: 30px;
    padding-bottom: 0;
  }

  .static .static-conversion-button .text {
    margin-top: -12px;
    margin-bottom: 16px;
  }

  .static .static-conversion-button a {
    font-size: 15px;
    line-height: 1.0666666667;
    width: 250px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .static .static-note-block {
    font-size: 10px;
    margin-top: 15px;
    margin-right: 15px;
    margin-left: 15px;
  }

  .static .static-heading.static-heading-lv02 {
    font-size: 18px;
    padding-left: 14px;
  }

  .static .static-heading.static-heading-lv03 {
    font-size: 15px;
  }

  .static .static-heading.static-heading-lv03:before {
    top: 5px;
  }

  .static .static-heading.static-heading-lv03-03,
  .static .static-heading.static-heading-lv03-04 {
    font-size: 12px;
  }

  .static .static-heading.static-heading-lv04 {
    font-size: 18px;
  }

  .static .static-contact-item {
    padding: 15px 15px 13px;
  }

  .static .static-contact-name {
    font-size: 12px;
  }

  .static .static-contact-tel {
    font-size: 20px;
    margin-top: 9px;
  }

  .static .static-contact-tel + .static-contact-tel {
    margin-top: 10px;
  }

  .static .static-contact-text {
    font-size: 10px;
    margin-top: 4px;
  }

  .static .static-contact-text.is-separate {
    margin-top: 7px;
  }

  .static .static-list-box {
    padding: 13px;
  }

  .static .static-list-box li:before {
    top: 7px;
    width: 4px;
    height: 4px;
  }

  .static .static-normal-list,
  .static .static-note-list,
  .static .static-note-list-02 {
    font-size: 10px;
  }

  .static .static-button-list li:nth-child(-n + 2) {
    margin-top: 15px;
  }

  .static .static-button-list li:nth-child(-n + 2):first-child,
  .static .static-foods-list > li:nth-child(-n + 2):first-child,
  .static .static-list-02 > li:nth-child(-n + 2):first-child {
    margin-top: 0;
  }

  .modal-common ul li,
  .static .static-disc-list > li + li {
    margin-top: 4px;
  }

  .static .static-ordered-list > li:first-child {
    margin-top: 14px;
  }

  .static .static-ordered-list > li .separate {
    margin-top: 9px;
  }

  .static .static-list-01 {
    font-size: 12px;
  }

  .static .static-list-01 > li:before {
    top: 7px;
  }

  .static .static-foods-list > li:nth-child(-n + 2),
  .static .static-list-02 > li:nth-child(-n + 2),
  .static .static-rule-list li:nth-child(-n + 2) {
    margin-top: 26px;
  }

  .static .static-foods-list .title,
  .static .static-list-02 .static-heading-lv03 {
    margin-top: 14px;
  }

  .static .static-list-02 .text + .text {
    margin-top: 3px;
  }

  .static .static-list-03 li:before {
    top: 5px;
    width: 4px;
    height: 4px;
  }

  .static .static-foods-list .image + .list {
    margin-top: 12px;
  }

  .static .static-foods-list .list,
  .static .static-foods-list .text {
    margin-top: 6px;
  }

  .static .static-foods-list .list + .list {
    margin-top: 8px;
  }

  .static .static-rule-list li {
    margin-top: 26px;
  }

  .static .static-image-box03-out {
    display: block;
    width: 100%;
  }

  .static .static-image-box-mile {
    width: 126px;
  }

  .static .static-image-box04 .image {
    max-width: 640px;
  }

  .static .static-image-box04:before {
    padding-top: 100%;
  }

  .static .static-table-01 td,
  .static .static-table-01 th {
    padding: 8px 5px;
  }

  .static .static-table-two {
    margin: 0 0 20px;
  }

  .static .static-table-two li a {
    margin-left: 0;
  }

  .static .static-table-two li {
    font-size: 12px;
    min-height: 80px;
    padding: 20px 15px;
    word-break: break-all;
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
  }

  .static .static-table-two li:nth-child(odd) {
    background-color: #fbfbfb;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .static .static-separate-01 {
    margin-top: 22px;
  }

  .static .static-align-right {
    margin-left: 10px;
  }

  .static .static-align-right [width="110"] {
    width: 97px;
    height: auto;
  }

  .static .static-link a {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .static .static-tab-contract {
    margin-right: -15px;
    margin-bottom: -25px;
    margin-left: -15px;
  }

  .form.is-col-02.linepay .form-error p,
  .static .is-font-pc-15,
  .static .is-font-small {
    font-size: 12px;
  }

  .form .mbt .form-link a span.eng,
  .static .is-font-x-small {
    font-size: 10px;
  }

  body .optIn {
    z-index: 131;
    height: auto;
  }

  body .optIn .optIn_inner .textArea br,
  body .optIn.is-optin-close {
    display: none;
  }

  body .optIn .optIn_inner {
    display: block;
    min-width: 100%;
    height: auto;
    margin-right: 0;
    margin-left: 0;
    padding: 10px 10px 13px;
  }

  body .optIn .optIn_inner .textArea {
    font-size: 11px;
    width: 100%;
  }

  body .optIn .optIn_inner .setting-btnArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-top: 5px;
    gap: 5px 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  body .optIn .optIn_inner .setting-btnArea a {
    font-size: 12px;
    width: 100%;
    height: 30px;
    padding: 0 1.78%;
  }

  body.is-has-menu .optIn .optIn_inner,
  body.is-menu-close .optIn .optIn_inner {
    width: 100%;
    margin-left: 0;
    padding: 10px;
  }

  body.is-menu-open .optIn {
    position: fixed;
    z-index: 131;
    bottom: 0;
    width: 100%;
  }

  body.is-menu-open .optIn .optIn_inner {
    width: auto;
    margin-left: 0;
    padding: 10px;
  }



  .page-normal .form .form-body,
  .page-normal .form .form-h2,
  .page-normal .form .form-h2-02 {
    margin-right: -15px;
    margin-left: -15px;
  }



  .ticket {
    padding-right: 0;
    padding-left: 0;
  }

  .ticket .ticket-screen {
    font-size: 15px;
  }

  .ticket,
  .ticket .ticket-item {
    margin-right: 0;
    margin-left: 0;
  }

  .ticket .ticket-content,
  .ticket .ticket-seat {
    display: block;
    padding: 10px;
  }

  .ticket .ticket-seat {
    width: auto;
  }

  .ticket .ticket-seat:after {
    top: auto;
    right: 10px;
    bottom: 0;
    left: 10px;
    width: auto;
    height: 1px;
  }

  .ticket .ticket-seat .seat-number {
    font-size: 15px;
    padding: 0;
  }

  .ticket .ticket-seat .seat-number img {
    width: 25px;
    height: auto;
  }

  .ticket .ticket-seat .premium {
    margin-top: 5px;
    text-align: center;
  }

  .ticket .ticket-content .note,
  .ticket .ticket-content .price,
  .ticket .ticket-info dt {
    font-size: 12px;
  }

  .ticket .ticket-content .price .glyphicon {
    margin-right: 4px;
    vertical-align: -1px;
  }

  .ticket .ticket-coupon.is-content {
    padding: 5px 10px;
  }

  .ticket .ticket-coupon.is-content .name {
    font-size: 14px;
  }

  .ticket .ticket-coupon.is-content .price-03,
  .ticket .ticket-coupon.is-content .price-04 {
    font-size: 15px;
  }

  .ticket .ticket-input {
    padding: 10px;
  }

  .ticket .ticket-footer {
    font-size: 15px;
    margin-right: 0;
    margin-left: 0;
    padding: 0 0 10px;
  }

  .ticket .ticket-footer .number {
    font-size: 18px;
  }

  .ticket .ticket-more .movieticket,
  .ticket .ticket-more .tc {
    float: none;
    width: auto;
  }

  .ticket .ticket-more .movieticket a,
  .ticket .ticket-more .tc-button {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }

  .ticket .ticket-more .movieticket {
    padding-right: 0;
  }

  .ticket .ticket-more .movieticket a {
    display: block;
    width: auto;
    height: auto;
  }

  .ticket .ticket-more .movieticket [width="112"] {
    width: 80px;
    height: auto;
  }

  .ticket .ticket-more .movieticket [width="22"] {
    width: 17px;
    height: auto;
  }

  .ticket .ticket-more .tc {
    margin-top: 10px;
    padding-left: 0;
  }

  .ticket .ticket-more .tc-button {
    line-height: inherit;
  }

  .ticket .ticket-more .tc-panel {
    margin: 0 10px;
    padding-bottom: 10px;
  }

  .ticket .ticket-more .tc-wrapper {
    padding-right: 82px;
  }

  .ticket .ticket-more .tc-wrapper [type="text"] {
    line-height: 25px;
  }

  .ticket .ticket-more .aumonday img {
    padding: 20px 10px;
  }

  .ticket .ticket-list .ticket-list-item.is-disabled .text .number {
    margin-right: 30px;
  }

  .ticket .ticket-list .ticket-list-item.is-disabled .disabled-title {
    font-size: 15px;
    padding-top: 20px;
  }

  .ticket .ticket-list .ticket-list-item.is-disabled .disabled-text {
    padding-top: 5px;
  }

  .ticket .ticket-info {
    padding: 15px;
  }

  .step {
    display: block;
    margin-right: -15px;
    margin-left: -15px;
  }

  .step .step-list {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 0;
  }

  .step .step-operating {
    padding: 0 20px;
  }

  .step .step-item {
    font-size: 10px;
    line-height: 1.2;
  }

  .step .step-item:first-child {
    width: 25px;
  }

  .step .step-item.is-current .sp {
    background-color: #b71c1c;
  }

  .step .step-item + .step-item {
    padding-left: 15%;
    text-align: right;
  }

  .step .step-item + .step-item:after,
  .step .step-item + .step-item:before {
    left: 50%;
    width: 8px;
    height: 3px;
    margin-left: -10%;
  }

  .step .step-item + .step-item:after {
    top: 14px;
  }

  .step .step-item .sp {
    font-size: 14px;
    line-height: 25px;
    display: inline-block;
    width: 25px;
    height: 25px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background-color: #bdbdbd;
  }

  .settlement .settlement-box {
    margin-top: 20px;
    padding: 15px;
  }

  .settlement .settlement-box .title-02 {
    font-size: 18px;
  }

  .modal-common .btn-double li + li,
  .modal-common .btn-single li + li,
  .modal-content-wrap.linepayLayout .modal-content .modal-linepay p.text02,
  .settlement .settlement-box .image,
  .settlement .settlement-box .text,
  .settlement .settlement-button,
  .settlement .settlement-link-list,
  .settlement .settlement-note,
  .settlement .settlement-note-02 {
    margin-top: 20px;
  }

  .settlement .settlement-button [width="400"] {
    width: 250px;
  }

  .carousel .carousel-indicator {
    bottom: -20px;
  }

  .slider-pro .sp-button {
    width: 14px;
    height: 14px;
  }

  #js-slider-home-01 .sp-slide {
    position: static;
  }

  #js-slider-films-01 .sp-slides,
  .js-slider-films .sp-slides {
    display: table;
  }

  #js-slider-films-01 .sp-slide,
  .js-slider-films .sp-slide {
    font-size: 0;
    position: static;
    display: table-cell;
    white-space: nowrap;
  }

  #js-slider-films-01 .filmes-item,
  #js-slider-films-01 .filmes-item-block,
  .js-slider-films .filmes-item,
  .js-slider-films .filmes-item-block {
    font-size: 12px;
    display: inline-block;
  }

  #js-slider-films-01 .filmes-item + .filmes-item,
  #js-slider-films-01 .filmes-item-block + .filmes-item,
  .js-slider-films .filmes-item + .filmes-item,
  .js-slider-films .filmes-item-block + .filmes-item {
    margin-left: 15px;
  }

  #js-banner-slider-01 .sp-slide p {
    font-size: 10px;
    padding: 8px;
  }

  #js-banner-slider-01 .sp-buttons {
    padding-top: 15px;
  }

  #js-banner-slider-01 .sp-button {
    background-color: #c1c1c1;
  }

  #js-banner-slider-01 .sp-button.sp-selected-button {
    background-color: #3a3a3a;
  }

  .mainvisual .sp-slide-gpt {
    display: none;
  }

  .mainvisual .mainvisual-text {
    display: block;
    margin: 15px 15px 0;
  }

  .mainvisual .mainvisual-label-wrap {
    display: block;
    margin-bottom: 10px;
  }

  .mainvisual .mainvisual-label {
    margin: 0;
  }

  .mainvisual .mainvisual-lead {
    display: block;
  }

  .mainvisual .mainvisual-image {
    width: 100%;
    height: 0;
    padding: 56% 0 0;
  }

  .mainvisual .mainvisual-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .movie-banners .banner-list.left li.banner-list-item + li {
    margin-top: 0;
  }

  .static .static-text-block-01 .static-heading-lv02-02 + p,
  .static .static-text-block-01 .static-heading-lv02-02 + ul {
    margin-top: 8px;
  }

  .form .form-row:first-of-type .date-hide {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .grid .grid-wrapper.is-col-tutorial {
    min-height: 100%;
    padding: 0 10px;
    background-color: #fff;
  }

  .grid .grid-wrapper.is-col-tutorial .tutorial-bg {
    margin-left: 0;
  }

  .grid .grid-wrapper.is-col-tutorial .tutorial-bg .tutorial-bg-img {
    width: 100%;
    margin: 0 auto;
  }

  .grid .grid-wrapper.is-col-tutorial .tutorial-bg .tutorial-btn {
    font-size: 12px;
    bottom: 7%;
    width: 210px;
    height: 48px;
  }
}

@media screen and (max-width: 568px) {
  .mainvisual {
    height: 92vw;
    max-height: 430px;
    margin-top: 15px;
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media screen and (max-width: 428px) {
  .grid .grid-wrapper.is-col-tutorial .tutorial-bg .tutorial-btn {
    font-size: 12px;
    bottom: 6%;
    width: 210px;
    height: 48px;
  }
}

@media screen and (max-width: 414px) {
  .grid .grid-wrapper.is-col-tutorial .tutorial-bg .tutorial-btn {
    font-size: 12px;
    bottom: 6%;
    width: 190px;
    height: 44px;
  }

  .modal-common .choice-ticket {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .grid .grid-wrapper.is-col-tutorial .tutorial-bg .tutorial-btn {
    font-size: 12px;
    bottom: 6%;
    width: 188px;
    height: 44px;
  }
}

@media screen and (max-width: 374px) {
  .form .form-rule .form-check .form-item.en_ml {
    margin-left: 28px;
  }
}

@media screen and (max-width: 361px) {
  .grid #div-gpt-ad-1567419513519-0,
  .grid #div-gpt-ad-1567419561630-0,
  .grid #div-gpt-ad-1567419594428-0,
  .grid #div-gpt-ad-1569571276619-0,
  .grid #div-gpt-ad-1569997830286-0,
  .grid #div-gpt-ad-1570432512724-0,
  .grid #div-gpt-ad-1571290069674-0,
  .grid #div-gpt-ad-1571291763542-0,
  .grid #div-gpt-ad-1571292191551-0,
  .grid #div-gpt-ad-1571296341956-0,
  .grid #div-gpt-ad-1571301882338-0,
  .grid #div-gpt-ad-1571301915358-0,
  .grid #div-gpt-ad-1571301938970-0,
  .grid #div-gpt-ad-1571301961532-0,
  .grid #div-gpt-ad-1571382815323-0,
  .grid #div-gpt-ad-1571382888868-0 {
    margin: 20px -15px;
  }

  .header.is-simple.is-au-login .header-ci .btnRight .logIn {
    width: 165px;
  }

  .grid
    .grid-wrapper.is-col-sns_2_1
    ul.sns-list
    li.inner
    ul.sns-detail
    li.sns-detail-inner {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .form .form-body .form-item input.ticketNumber {
    font-size: 13px;
  }

  .modal-content-wrap.linepayLayout .modal-content .modal-linepay ul.imageArea {
    padding: 15px 40px;
  }
}

@media screen and (max-width: 325px) {
  .mainvisual {
    height: 320px;
    margin-top: 15px;
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media screen and (max-width: 320px) {
  .grid .grid-wrapper.is-col-tutorial .tutorial-bg .tutorial-btn {
    font-size: 12px;
    bottom: 5%;
    width: 188px;
    height: 44px;
  }
}