@charset "UTF-8";
html {height: 100%; position: relative;}
body {display: flex; flex-direction: column; height: 100vh; padding-top: 120px;}
body > .container {flex: 1 0 auto;}
@media (max-width: 991px) {
  body {padding-top: 80px;}
}
@media (max-width: 767px) {
  body {padding-top: 50px;}
}

a{color: #e84130; -webkit-transition:.2s;-moz-transition:.2s;-o-transition:.2s;transition:.2s; text-decoration: none;}
a,button {-webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);}
a:hover,
a:focus,
a:active{text-decoration:none;cursor:pointer;}
a:hover {color: #e81321;}
a.disabled{color: #6b6b6b; cursor: no-drop !important;}
a.disabled:hover{color: #6b6b6b;}

.br-sm{display: none;}
.br-lg{display: inline-block;}
hr {border-top: 1px dotted #ccc;}
ul {padding-left: 2rem;}

.font-openSans {font-family: "Open Sans", sans-serif;}
.color-warning {color: #f60;}
.color-danger {color: #dd0212;}

header {position: fixed; top: 0; z-index: 100; width: 100%; height: 120px; background: rgba(255, 255, 255, 0.9); border-bottom: 1px solid #efefef; transition: top 0.2s ease-in-out; opacity: 1 !important;}
header.nav-up {top: -120px;}

.section .sec__title{width: 100%; max-width: 900px; text-align: center; margin: 4rem auto;}
.section .sec__title .sub_title{font-size: 4.75rem; font-weight: 500; line-height: 1.25; color: #4a4a4a; text-align: center;}
.section .sec__title .light{color: #e84130; font-size: 2.2rem; font-weight: 700; line-height: 1.5rem; margin: 1.5rem 0;}

@media (max-width: 991px) {
  header {height: 80px;}
  header.nav-up {top: -80px;}
}
@media (max-width: 767px) {
  .br-sm{display: inline-block;}
  .br-lg{display: none;}
  header {height: 50px;}
  header.nav-up {top: -50px;}
  .section .sec__title .sub_title{font-size: 3.75rem;}
  .section .sec__title .light {font-size: 1.8rem;}
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.nav-flex > ul {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
}
.nav-flex > ul > li {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.nav-flex-left {
  margin-right: auto;
}
.nav-flex-right {
  margin-left: auto;
}

.nav-flex .logo {
  padding: 10px 0;
}

.nav-flex > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 130px;
  height: 120px;
  color: white;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.nav-flex > ul > li img {
  margin-bottom: 5px;
}
.nav-flex > ul > li > a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: skew(-20deg);
}
.nav-stadium > a:before {
  background: #e84130;
}
.nav-info > a:before {
  background: #303030;
}
.nav-f-share > a:before {
  background: #3b5a8f;
}
.nav-i-share > a:before {
  background: #d147bf;
}
.nav-t-share > a:before {
  background: #393939;
}
.nav-flex > ul > li > a > span {
  position: relative;
  z-index: 100;
}

.nav-flex > ul > li > a:hover,
.nav-flex > ul > li > a:focus,
.nav-flex > ul > li > a:active {
  text-decoration: none;
}

.nav-flex > ul > li > a img,
.nav-flex > ul > li > a > span {
  transition: all 0.2s linear;
}

.table {
  table-layout: fixed;
  margin-top: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #dddddd;
  border-radius: 2px;
  background-color: #dddddd;
  border-collapse: separate;
  border-spacing: 1px;
  padding: 1px;
  width: 100%;
  color: #111111;
}
.table th {
  padding: 8px 12px;
  border-collapse: separate;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  color: inherit;
  font-size: 1.6rem;
  font-weight: normal;
}
.table td {
  border-width: 0;
  border-style: none;
  border-collapse: separate;
  background-color: #ffffff;
  padding: 12px;
  vertical-align: top;
  color: inherit;
  font-size: 1.6rem;
}
.table td small {
  display: inline-block;
  line-height: 1.4;
}

@media (min-width: 992px) {
  .nav-flex > ul > li > a:hover img {
    -webkit-transform: translate(4px, 4px);
    -moz-transform: translate(4px, 4px);
    -ms-transform: translate(4px, 4px);
    -o-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
}

@media (max-width: 991px) {
  .nav-flex .logo {
    padding: 5px 0;
  }
  .nav-flex .logo img {
    width: auto;
    height: 70px;
  }
  .nav-flex > ul > li > a {
    width: 80px;
    height: 80px;
    font-size: 1.15rem;
  }
  .nav-stadium > a img {
    width: auto;
    height: 20px;
  }
  .nav-info > a img {
    width: auto;
    height: 19px;
  }
  .nav-i-share > a img {
    width: auto;
    height: 18px;
  }
  .nav-f-share > a img {
    width: auto;
    height: 18px;
  }
  .nav-t-share > a img {
    width: auto;
    height: 15px;
  }
}

@media (max-width: 767px) {
  .nav-flex .logo img {
    height: 40px;
  }
  .nav-flex {
    padding: 0 12px;
  }
  .nav-flex > ul > li > a {
    width: 40px;
    height: 50px;
  }
  .table td {
    padding: 8px;
  }
}

.page-loader {background: #fff;}



/* top */
#hero {
  background: black;
}
.hero-col a {
  display: block;
  position: relative;
  height: 100%;
  color: white;
}
.hero-col a:hover,
.hero-col a:focus,
.hero-col a:active {
  color: white;
}
.hero-col a:before,
.hero-col a:after {
  position: absolute;
  z-index: 2;
  content: "";
  width: 0;
  height: 0;
  border: 8px solid transparent;
}
.hero-col a:before {
  top: 0px;
  left: 0px;
}
.hero-col a:after {
  bottom: 0px;
  right: 0px;
}
.hero-col a img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.2s ease-in-out;
}
.hero-col a:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.hero-col a em {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 57px;
  margin: auto;
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
  opacity: 0.75;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
.hero-col a:hover em {
  color: #dd0212;
  opacity: 1;
}
.hero-col a em > span {
  position: relative;
}
.hero-col a em > span:before,
.hero-col a em > span:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: #dd0212;
  transition: 0.3s;
}
.hero-col a em > span:before {
  top: 0;
  left: 0;
}
.hero-col a em > span:after {
  bottom: 0;
  right: 0;
}
.hero-col a:hover em > span:before,
.hero-col a:hover em > span:after {
  width: 100%;
}
@media (max-width: 991px) {
  .hero-col a {
    background: black;
  }
  .hero-col a img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 0.85;
  }
  .hero-col a em {
    color: #dd0212;
    opacity: 1;
  }
  .hero-col a em > span:before,
  .hero-col a em > span:after {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
  }
  .hero-col {
    width: 50%;
  }
  .hero-col a em {
    font-size: 6.8rem;
    height: 93px;
  }
  .hero-col.hero-col-last {
    width: 100%;
    height: 240px;
    overflow: hidden;
  }
  .hero-col.hero-col-last img {
    width: auto;
    height: 130%;
    overflow: hidden;
    margin: auto;
    position: relative;
  }
  /* .hero-col.hero-col-last a em>span {
    margin-left: -26%;
  } */
  /*.hero-col a em>span {
    text-shadow: 1px 1px 1px #333;
  }*/
}
@media (min-width: 992px) {
  .hero-col a:hover:before,
  .hero-col a:focus:before {
    width: 100%;
    height: 100%;
    border-bottom-color: #dd0212;
    border-left-color: #dd0212;
    transition: height 0.25s, width 0.25s 0.25s;
  }
  .hero-col a:hover:after,
  .hero-col a:focus:after {
    width: 100%;
    height: 100%;
    border-top-color: #dd0212;
    border-right-color: #dd0212;
    transition: height 0.25s, width 0.25s 0.25s;
  }
  .hero-col.hero-col-last {
    height: 308px;
  }
}
@media (min-width: 1200px) {
  .hero-col a em {
    font-size: 8rem;
    height: 134px;
  }
  .hero-col.hero-col-last {
    height: 364px;
  }
}
@media (min-width: 1400px) {
  .hero-col.hero-col-last {
    height: 400px;
  }
}
@media (min-width: 1600px) {
  .hero-col.hero-col-last {
    height: 448px;
  }
}
@media (min-width: 1800px) {
  .hero-col.hero-col-last {
    height: 506px;
  }
}

.whats {
  background: white;
  border-bottom: 1px solid #f0f0f0;
}
.whats h1 {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.whats-stadium-list > div {
  margin-bottom: 9px;
}

.btn-stadium {
  display: block;
  position: relative;
  padding: 15px;
  color: white;
  text-align: center;
}
.btn-stadium:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #e84130;
  transform: skew(-20deg);
}
.btn-stadium img,
.btn-stadium strong,
.btn-stadium span {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1.6rem;
}
.btn-stadium:hover,
.btn-stadium:focus {
  color: white;
  text-decoration: none;
}
.btn-stadium.inline-block {
  display: inline-block;
  padding-right: 30px;
  padding-left: 30px;
}

.btn-default,
.btn-default:hover,
.btn-default:focus {
  color: #0f0f0f;
  text-decoration: none;
}

.btn-primary {
  display: inline-block;
  padding: 15px 8%;
  background: white;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}
.btn-primary:hover,
.btn-primary:focus {
  -webkit-transform: translate(4px, 4px);
  -moz-transform: translate(4px, 4px);
  -ms-transform: translate(4px, 4px);
  -o-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.btn-link {
  display: inline-block;
  padding: 3px 0;
}

.btn-stadium.js-matchHeight-elements {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-font-lg {
  font-size: 2.4rem;
}

.img-scroll-down {
  position: relative;
  top: -5px;
}
.img-scroll-up {
  position: relative;
  bottom: -2px;
}

.card {
  margin-top: 30px;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
}
.card a {
  background: white;
}
.card a,
.card a:hover,
.card a:focus {
  color: #0f0f0f;
  text-decoration: none;
}
.card-text {
  padding: 15px;
  border-top: 1px solid #ddd;
}
.label-area label {
  display: inline-block;
  margin-bottom: 1rem;
  margin-right: 1rem;
  padding: 3px 15px 5px;
  background: #dd0212;
  color: white;
  font-weight: 700;
}
.card-label:empty {
  display: none;
}
.card-text .entry-title-primary {
  margin: 0 0 8px;
  line-height: 1.3;
  font-size: 2rem;
  font-weight: 700;
}
.card-text .entry-subtitle {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .card-text .entry-title-primary,
  .card-text .entry-subtitle {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .whats-stadium-list > div {
    margin-bottom: 30px;
  }
}

#topNews > div:first-of-type {
  width: 100%;
}
#topNews > div:first-of-type a {
  background: #dd0212;
}
#topNews > div:first-of-type .card-text {
  border-color: transparent;
}
#topNews > div:first-of-type a .label-area label {
  background: white;
  color: #dd0212;
}
#topNews > div:first-of-type a,
#topNews > div:first-of-type a:hover,
#topNews > div:first-of-type a:focus {
  color: white;
}

.accordion-heading {
  margin-bottom: 20px;
  text-align: center;
  cursor: pointer;
}
.accordion-heading > div {
  transition: all 0.2s ease-in-out;
}
.accordion-heading.open > strong {
  opacity: 0;
}
.accordion-heading.open > div {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.item-thumnail {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.item-thumnail .cap {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
}
.item-thumnail .cap .text {
  position: relative;
  padding: 0 15px;
}

.post-entry {
  padding: 30px 60px 0;
  word-break: break-all;
}
.post-title .entry-title-primary {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ccc;
  line-height: 1.4;
}
.post-title .entry-subtitle {
  display: none;
  font-size: 1.6rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ccc;
}
.post-entry .card-text {
  padding: 15px 0 0;
  border-top: none;
}
.post-content {
  color: #747474;
}
.post-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .whats h1 {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .whats h1 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .whats-stadium-list > div:nth-child(odd) {
    padding-right: 5px;
  }
  .whats-stadium-list > div:nth-child(even) {
    padding-left: 5px;
  }
  .btn-stadium {
    padding: 12px 5px;
  }
  .btn-stadium img {
    width: 80px;
  }
  .card {
    margin-top: 15px;
  }
  .item-thumnail .cap {
    padding: 8px 15px;
  }
  .item-thumnail .cap .thumnail img {
    width: 80px;
    height: auto;
  }
  .btn-font-lg {
    font-size: 1.8rem;
  }
  .official-link img {
    height: 55px;
  }
  .post-entry {
    padding: 15px 15px 0;
    word-break: break-all;
  }
}

.btn-stadium.inline-block span,
.btn-stadium img,
.btn-stadium strong,
.card a,
.sns-item,
.sis_banner a,
.recruit-item,
.store__basic_info a{
  transition: all 0.2s linear;
}
.btn-stadium strong,
.btn-stadium.inline-block span {
  display: inline-block;
  line-height: 1.2;
}
.card a,
.sns-item{
  display: block;
}
@media (min-width: 992px) {
  .btn-stadium.inline-block:hover span,
  .btn-stadium:hover img,
  .btn-stadium:hover strong,
  .card a:hover,
  .sns-item:hover,
  .sis_banner a:hover,
  .recruit-item:hover,
  .store__basic_info a:hover{
    -webkit-transform: translate(4px, 4px);
    -moz-transform: translate(4px, 4px);
    -ms-transform: translate(4px, 4px);
    -o-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
}

/* fixed page */
.stadium-banner {
  margin-bottom: 50px;
}
.stadium-banner-item a {
  background: #dd0212;
  color: white;
}
.stadium-banner-item a,
.stadium-banner-item a:hover,
.stadium-banner-item a:focus {
  color: white;
}

.stadium-banner-text {
  min-width: 190px;
  padding: 15px;
}
.stadium-banner-item .caption {
  display: inline-block;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
  vertical-align: top;
  letter-spacing: normal;
  word-spacing: normal;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
}
.stadium-banner-item .title {
  margin: 0.8rem 0 0.5rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
}

.stadium-name {
  position: relative;
  z-index: 10;
  margin: -5% 0 30px;
  color: #dd0212;
  font-size: 12rem;
  font-style: italic;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-align: center;
}
.anchor-stadium {
  margin: 4rem 0;
}

.article {
  background: white;
}
.section {
  background: white;
  border-bottom: 1px solid #e9e9e9;
}
.article > .section:last-of-type {
  border-color: transparent;
}
.section-heading {
  text-align: center;
  margin: 30px 0;
}
.section-heading strong {
  display: block;
  font-size: 3.6rem;
  line-height: 1.4;
}
.section-heading small {
  font-size: 1.8rem;
  font-weight: 700;
}
.section-shopInfo dl {
  margin-top: 0;
}
.section-shopInfo dl > dt {
  font-size: 1.6rem;
  font-weight: bold;
}
.section-shopInfo dl > dd {
  margin-left: 1rem;
}
.section-shopInfo dl > dd.machine-number {
  margin-left: 0;
}
.section-shopInfo .machine-number ul {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 10px 0;
  list-style-type: none;
}
.section-shopInfo .machine-number ul > li {
  padding: 0 5px;
}
.section-shopInfo .machine-number ul > li > .circle {
  width: 98px;
  height: 98px;
  margin: 15px auto 0;
  border: 2px solid #dd0212;
  border-radius: 50%;
  color: #dd0212;
  text-align: center;
  line-height: 2.1;
  font-weight: 700;
}
.section-shopInfo .machine-number ul > li > .circle > span {
  font-size: 42px;
}
.sis_banner{width: 100%; max-width: 960px; margin: 4rem auto; display: block;}
.sis_banner p{font-size: 1.45rem; font-weight: 500; text-align: center; margin: 0.75rem 0;}
.sis_banner a{display: inline-block; box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25); transition: all 0.2s ease-in-out;}
.sis_banner a:hover,
.sis_banner a:focus {
  -webkit-transform: translate(4px, 4px);
  -moz-transform: translate(4px, 4px);
  -ms-transform: translate(4px, 4px);
  -o-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

@media (max-width: 992px) {
  .sis_banner{margin: 2.5rem auto;}
}

.campiagn-banner > h2 {
  clear: both;
  margin: 0 0 10px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #e84130;
}
.campiagn-banner > h2 + hr {
  border: 0;
  border-top: 2px solid #e84130;
  width: 70px;
  margin: 0 auto 20px;
}

@media (min-width: 992px) {
  .stadium-banner-item .flex {
    display: flex;
  }
  .campiagn-banner > h2 {
    font-size: 3rem;
  }
  .campiagn-banner > h2 + hr {
    margin-bottom: 30px;
  }
}

.section-price{}
.section-price .price-item{padding: 0; border: none;}
.section-price .price-item .price-panel_item .price-panel_title{
    position: relative;
    background-color: #333;
    color: white;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    padding: 10px;
}
.section-price .price-item .price-panel_item .price-panel_content{
    padding: 2.75rem;
    background-color: #fff;
}
.section-price .price-item .price-panel_item .price-panel_content_title{
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: black;
}
.section-price .price-item .price-panel_item .price-panel_content_title span.notice{
  display: block;
  font-size: 1.725rem;
  line-height: 1.6em;
  padding: 0 0 2.5rem;
  color: #333;
}

.section-price .price-item .price-panel_item .price-panel_content_info > ul > li > strong {
    display: inline-block;
    font-size: 3.15rem;
}
.section-price .price-item .price-panel_item .price-panel_content_info > ul > li > strong span{
    font-size: 1.25rem;
    margin: 0 0 0 -3px;
}
.section-price .price-item .price-panel_item .price-panel_content_info ul{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  margin: 0 0 3px;
}
.section-price .price-item .price-panel_item .price-panel_content_info ul.gender > li{
}
.section-price .price-item .price-panel_item .price-panel_content_info ul.price > li{padding: 1.25rem;}
.section-price .price-item .price-panel_item .price-panel_content_info ul > li{display: inline-block; width: 49%; font-size: 16px; vertical-align: top;}
.section-price .price-item .price-panel_item .price-panel_content_info ul > li:nth-child(1){background: #fddef1;}
.section-price .price-item .price-panel_item .price-panel_content_info ul > li:nth-child(2){background: #d7e9fb;}

.section-price .price-item .price-panel_item .price-panel_content_info .label{
    display: inline-block;
    color: white;
    line-height: 1.4;
    font-weight: bold;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    font-weight: bold;
    background-color: #89744d;
    text-align: center;
}
.section-price .price-item .price-panel_item .price-panel_content_info .is-female{background-color: #ff71cb;}
.section-price .price-item .price-panel_item .price-panel_content_info .is-male{background-color: #2687e7;}
.section-price ul.price-notice{color: #666; list-style: none; margin: 0; padding: 0;}
.section-price .price-service{background: #e84130; color: #fff; text-align: center; font-size: 2rem; font-weight: 700; padding: 0.75rem;}
.section-price .price-seats{background: #efefef; border-left: 3px solid #666; font-size: 1.6rem; margin: 2rem 0; padding: 0.75rem 1.5rem;}


.price-item {
  padding: 30px;
  border: 3px double #ccc;
}
.price-item h4 {
  margin: 0;
}
.price-item table td {
  vertical-align: middle;
}
.price-item .balloon {
  position: relative;
}
.price-item .balloon span {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: inline-block;
  padding: 5px 12px;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  background: #f60;
  white-space: nowrap;
}
.price-item .balloon span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 10px solid transparent;
  border-top: 15px solid #f60;
}
.price-item .price-text {
  margin-right: 0.5rem;
  color: #f60;
  font-size: 2.4rem;
}
.price-item table td img {
  margin-top: -0.4rem;
}
.price-point {
  margin-bottom: 70px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #ccc;
  line-height: 1.3;
}
.price-point .h1,
.price-point .h3,
.price-point .h4 {
  margin-bottom: 10px;
  line-height: 1.4;
}
.price-point .h3 small {
  font-size: 1.4rem;
}

@media (max-width: 991px) {
  .section-price .price-item .price-panel_item .price-panel_title{font-size: 16px;}
  .section-price .price-item .price-panel_item .price-panel_content{padding: 1.5rem;}
  .section-price .price-item .price-panel_item .price-panel_content_title{margin-bottom: 20px; font-size: 22px; font-weight: 400; line-height: 2.0;}
  .section-price .price-item .price-panel_item .price-panel_content_title span.notice{font-size: 1.45rem; line-height: 1em; padding: 0 0 2rem;}
  .section-price .price-item .price-panel_item .price-panel_content_info > ul > li > strong {font-size: 2.5rem;}
  .section-price .price-item .price-panel_item .price-panel_content_info > ul > li > strong span{font-size: 1.1rem;}
  .section-price .price-item .price-panel_item .price-panel_content_info ul > li{font-size: 16px;}
  .section-price .price-item .price-panel_item .price-panel_content_info .label {font-size: 14px;}
  .section-price ul.price-notice{margin: 0;}
  .section-price .price-service{font-size: 1.6rem;}
}


/*** 2026 update ***/
.section-price .price-panel_item{height: 100%; border-radius: 10px; overflow: hidden;}
.section-price .price-panel_title h3{font-size: 2.75rem; color: #333; font-weight: 800; margin: 0.75rem 0 0;}
.section-price .price-panel_title h3 span{display: block; color: #999; font-size: 1.4rem; font-weight: 600; line-height: 1.2em;}

.section-price .price-panel_content h4{font-size: 4.2rem; font-weight: 800; line-height: 0.6em; color: #333; border-bottom: 1px solid #999; padding: 0 0 1rem; margin: 0 0 1rem;}
.section-price .price-panel_content h4 em{color: #333; font-size: 1.5rem; font-style: normal; margin: 0 5px;}
.section-price .price-panel_content .tips p{font-size: 1.45rem; line-height: 1em; letter-spacing: 1px; color: #999; margin: 0;}
.section-price .price-panel_content .tips span{display: block; font-size: 1.25rem; margin: 0.5rem 0;}
.section-price .price-item .price-panel_item .price-panel_content{display: flex; justify-content: center; flex-direction: column; height: 33.333%; border-top: 2px solid #333; border-bottom: 1px solid #333;}
.section-price .price-item .price-panel_item .price-panel_content_title{margin: 0;}
.section-price .price-item .price-panel_item .price-panel_content_info{padding: 2.75rem;}
.section-price .price-item .price-panel_item .price-panel_content_info ul{flex-direction: column; width: 100%; margin: 0 0 1.5rem;}
.section-price .price-item .price-panel_item .price-panel_content_info ul > li{width: 100%; font-size: 1.4rem; line-height: 1.6em;}
.section-price .price-item .price-panel_item .price-panel_content_info ul > li:nth-child(1){background: none;}
.section-price .price-item .price-panel_item .price-panel_content_info ul > li:nth-child(2){background: none;}
.section-price .price-item .price-panel_item .price-panel_content_info .price-panel_content_time{background: #ddd; color: #333; border-radius: 5px; padding: 1.0rem; border: 1px solid #999; text-align: center; font-size: 1.6rem;}
.section-price .price-item .price-panel_item .price-panel_content_info .price-panel_content_time ul{border-bottom: 1px dotted #333; padding: 0; margin: 0 0 0.5rem;}
.section-price .price-item .price-panel_item .price-panel_content_info .price-panel_content_time ul > li:last-child{margin-bottom: 0.75rem;}
.section-price .price-item .price-panel_item .price-panel_content_info .price-panel_content_time ul > li div{display: inline; background: #fff; font-size: 0.8rem; font-weight: 600; border-radius: 5px; margin-left: 5px; padding: 2px 5px; vertical-align: 3px;}

.section-price .price-item .YL{border: 1px solid #ffcc80;}
.section-price .price-item .YL .price-panel_title{background-color: #fff3e0;}
.section-price .price-item .YL .price-panel_content{background-color: #fff8e1; border-top: 1px solid #ffcc80; border-bottom: 1px solid #ffcc80;}
.section-price .price-item .YL .price-panel_title h3 span,
.section-price .price-item .YL .price-panel_content h4,
.section-price .price-item .YL .price-panel_content .tips span,
.section-price .price-item .YL .price-panel_content_info .price-panel_content_time{color: #ef6c00;}
.section-price .price-item .YL .price-panel_content_info .price-panel_content_time {background: #fff3e0; border: 1px solid #ffcc80;}

.section-price .price-item .MG{border: 1px solid #f48fb1;}
.section-price .price-item .MG .price-panel_title{background-color: #fce4ec;}
.section-price .price-item .MG .price-panel_content{background-color: #fff0f5; border-top: 1px solid #f48fb1; border-bottom: 1px solid #f48fb1;}
.section-price .price-item .MG .price-panel_title h3 span,
.section-price .price-item .MG .price-panel_content h4,
.section-price .price-item .MG .price-panel_content .tips span,
.section-price .price-item .MG .price-panel_content_info .price-panel_content_time{color: #c2185b;}
.section-price .price-item .MG .price-panel_content_info .price-panel_content_time {background: #fce4ec; border: 1px solid #f48fb1;}

.section-price .price-item .GR{border: 1px solid #a5d6a7;}
.section-price .price-item .GR .price-panel_title{background-color: #e8f5e9;}
.section-price .price-item .GR .price-panel_content{background-color: #f1f8e9; border-top: 1px solid #a5d6a7; border-bottom: 1px solid #a5d6a7;}
.section-price .price-item .GR .price-panel_title h3 span,
.section-price .price-item .GR .price-panel_content h4,
.section-price .price-item .GR .price-panel_content .tips span,
.section-price .price-item .GR .price-panel_content_info .price-panel_content_time{color: #2e7d32;}
.section-price .price-item .GR .price-panel_content_info .price-panel_content_time {background: #e8f5e9; border: 1px solid #a5d6a7;}

@media (max-width: 991px) {
.section-price .price-item .price-panel_item .price-panel_content_info .price-panel_content_time{padding: 0.5rem; font-size: 1.25rem;}
}

@media (max-width: 767px) {
.section-price .price-item .price-panel_item .price-panel_content_info{padding: 1.5rem;}
.section-price .row-eq-height {flex-direction: column;}
}

/*** 2026 update ***/






.section-inview .row iframe{
    display: block;
    width: calc(100% - 30px);
    height: 60vh;
    border: 15px solid #f6f6f6;
    box-sizing: border-box;
    margin: 0 auto;
}


div#menu{}
div#menu .h4{
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.45em;
  font-weight: 500;
  margin-bottom: 3.5rem;
}
div#menu .menu__image ul,
div#menu .menu__list ul{
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto 3.5rem;
  padding: 0;
}
div#menu .menu__image ul > li{width: 48.5%;}
div#menu .menu__list ul > li{width: 18.5%;}
div#menu .menu__list ul > li .image{
  border: 1px solid #e6e6e6;
  padding-bottom: 73.5%;
  height: 0;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}
div#menu .menu__list ul > li .image img{
  width: auto;
  max-width: 78%;
  height: auto;
  max-height: 85%;
  position: absolute;
  top: 20%;
  left: 10%;
  transform: scale(1.00);
  transition: all 0.3s;
}
div#menu .menu__list ul > li .image:hover img {
    transform: scale(1.125);
    transition: all 0.5s;
}
div#menu .menu__list ul > li p{
  margin: 0;
  padding: 0;
}
div#menu .menu__list ul > li span{
  color: #fa4238;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin: 0.25em 0;
  white-space: nowrap;
  display: block;
}

div#menu .menu__reservation ul{
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
div#menu .menu__reservation ul > li{
  width: 30%;
  margin: 0 1.5%;
}
div#menu .menu__reservation ul > li a{
  width: 100%;
}

/*tablet*/
@media (max-width: 991px) {
  div#menu .h4{font-size: 2.0rem;}
  div#menu .menu__image ul,
  div#menu .menu__list ul{max-width: 600px;}
  div#menu .menu__list ul{margin: 0 auto;}
  div#menu .menu__image ul > li{width: 100%; margin-bottom: 15px;}
  div#menu .menu__list ul > li{width: 47.5%; margin-bottom: 15px;}
  div#menu .menu__reservation ul{flex-direction: column;}
  div#menu .menu__reservation ul > li{width: 90%;  max-width: 380px; margin: 1rem 0;}
}

.machine__outline,
.machine__detail{width: 100%; max-width: 900px; margin: 0 auto; padding: 0; color: #333; border: none;}
.machine__outline h3{margin-bottom: 4rem; font-size: 1.75rem; line-height: 1.25em; font-weight: 500;}
.machine__theme{display: flex; align-items: center; justify-content: center; flex-direction: column;width: 100%; height: 20vh; background-size: cover;}
.machine__theme h4{font-size: 2.75rem; font-weight: 700; line-height: 1; letter-spacing: 10px; margin: 0;}
.machine__theme.vsx{background: url("../img/about/df__machine_theme_bg1.jpg") no-repeat center center;}
.machine__theme.beerPong{background: url("../img/about/df__machine_theme_bg2.jpg") no-repeat center center;}
.machine__detail{margin: 5rem auto;}
.machine__detail dl{display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; margin: 0 0 2.5rem; padding: 0;}
.machine__detail.beerPong dl,
.machine__detail.vss dl{flex-direction: row-reverse;}
.machine__detail dt{width: 40%; margin: 0; padding: 0; text-align: center;}
.machine__detail dd{width: 60%; margin: 0; padding: 0;}
.machine__detail dd h5{
  font-size: 3.45rem;
  line-height: 1.35em;
  font-weight: 700;
  margin: 0 0 30px;
}
.machine__detail dd p{
  font-size: 1.55rem;
  line-height: 1.5em;
  margin: 0 0 30px;
}
.machine__detail.beerPong dt{width: 47.5%; margin: 0 0 0 2.5%;}
.machine__detail.beerPong dd{width: 50%; margin: 0; padding: 0;}
.machine__detail.beerPong dl dt:first-child + dd{width: 50%; margin: 0;}
.machine__detail dt h5{font-size: 3.25rem; line-height: 1.35em; margin: 0 0 30px;}
.machine__detail dd .num{background: #e84130; margin: 0 0 40px;}.machine__detail dd .num ol{display: flex; justify-content: flex-start; align-items: center;list-style: none; margin: 0; padding: 0;}
.machine__detail dd .num ol > li:first-child{background: #e84130; color: #fff;}
.machine__detail dd .num ol > li{font-size: 2.4rem; padding: 10px; background: #fff; color: #e84130; padding: 15px; margin: 2px; width: 100%; text-align: center;}
.machine__detail.vsx .images img,
.machine__detail.vss .images img{
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

/*tablet*/
@media (max-width: 991px) {
.machine__outline,
.machine__detail{max-width: 768px;}
.machine__detail dt{width: 25%; padding: 0 5%;}
.machine__detail dd{width: 65%;}
.machine__detail dd h5{font-size: 2.5rem; line-height: 1.25em;}
.machine__detail dt h5{font-size: 2.45rem; line-height: 1.25em;}
.machine__photo{padding: 2.5rem 0;}
}

/*smart phone*/
@media (max-width: 767px) {
.machine__outline h3{margin-bottom: 2rem; font-size: 1.25rem;}
.machine__theme{height: 15vh;}
.machine__theme h4{font-size: 1.4rem; letter-spacing: 8px;}
.machine__detail{margin: 2rem auto;}
.machine__detail dl{width: 90%; margin: 0 auto 25px;}
.machine__detail dt{width: 100%; max-width: 140px; margin: 0 auto 15px;}
.machine__detail dd{width: 100%; margin: 0 auto;}
.machine__detail dd h5{font-size: 2.45rem; margin: 0 0 15px;}
.machine__detail dd p{line-height: 1.5em; margin: 0 0 15px;}
.machine__detail.beerPong dt{width: 100%; max-width: inherit; margin: 0 0 15px;}
.machine__detail.beerPong dd{width: 100%; margin: 0;}
.machine__detail.beerPong dl dt:first-child + dd{width: 100%;}
.machine__detail dt h5{font-size: 1.25rem; margin: 0 0 15px;}
.machine__detail dd .num{width: 100%; max-width: 500px; background: #e84130; margin: 0 auto 20px;}
.machine__detail dd .num ol > li{padding: 10px; font-size: 2.0rem;}
.machine__detail dd .btnArea {width: 70%; margin: 25px auto 0;}
.machine__detail dd .btnArea a.btn{font-size: 0.85rem; padding: 12px;}
.machine__photo{padding: 2rem 0;}
.machine__photo:last-of-type{margin-bottom: -2rem;}
}

.shop-news {
  width: 100%;
  max-width: 930px;
  padding: 5rem 0;
  margin: 0 auto;
}
.shop-news > li {
  display: flex;
  flex-flow: column wrap;
  margin-top: -1px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.shop-news > li > a {
  position: relative;
  padding: 24px 18px;
  color: #090909;
  background: url(../img/import_ds/icon_news_arrow.png) no-repeat right center;
}
.shop-news > li > a:hover,
.shop-news > li > a:focus,
.shop-news > li > a:active {
  transition: all 0.2s ease-in-out;
  color: #e84130;
  text-decoration: none;
}
.shop-news > li label {
  padding: 2px 8px 4px;
  background: #e84130;
  color: white;
  font-family: "Open Sans", sans-serif;
}
.shop-news > li span {
  margin: 0 1.4rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.shop-news .entry-subtitle {
  display: none !important;
}

div#floor .h4 {
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.45em;
  font-weight: 500;
  margin-bottom: 3.5rem;
}

.media-upper {
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .media-lower {
    float: right;
    margin-top: -120px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .media-upper img,
  .media-lower img{margin: auto;}
}

.gmap {
  position: relative;
  padding-bottom: 84.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.gmap iframe,
.gmap object,
.gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub-page {
  padding: 1.4rem;
  background: #f0f0f0;
  border-bottom: #ddd;
  border-top: #ddd;
}
.sub-page h1 {
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 0;
  color: #999;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.sub-page-body {
  width: 85.5%;
  margin: 50px auto;
  padding: 15px 0;
  border-radius: 3px;
}
.sub-page-body h2 {
  position: relative;
  font-size: 2.4rem;
  margin: 0;
  padding: 15px 0;
  border-bottom: solid 1px #cccccc;
  line-height: 1.5;
}
.sub-page-body h2.icon-q {
  padding-left: 60px;
}
.sub-page-body h2.icon-q > span {
  position: absolute;
  top: 50%;
  left: 0;
  background: #ccc;
  width: 45px;
  margin-top: -22px;
  padding: 2px 0 7px;
  color: white;
  text-align: center;
}
.sub-page-body:last-of-type {
  margin-bottom: 145px;
}

.pager {
  display: flex;
  -webkit-justify-content: center; /* Safari */
  justify-content: center;
  list-style-type: none;
  max-width: 640px;
  margin: auto;
  padding: 0;
}
.pager:empty {
  display: none;
}
.pager a,
.pager span {
  display: inline-block;
  position: relative;
  margin: 60px 0;
  padding: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
.pager a.prev,
.pager a.next {
  padding-left: 18px;
  padding-right: 18px;
  color: white;
}
.pager a.prev {
  margin-right: 1.5rem;
}
.pager a.next {
  margin-left: 1.5rem;
}
.pager a.prev:before,
.pager a.next:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #dd0212;
  transform: skew(-20deg);
}
.page-numbers.dots {
  line-height: 0.5;
}

.pager-post {
  display: flex;
  -webkit-justify-content: center; /* Safari */
  justify-content: center;
  list-style-type: none;
  max-width: 640px;
  margin: auto;
  padding: 0;
}
.pager-post .prev,
.pager-post .next {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}
.pager-post a {
  display: inline-block;
  position: relative;
  margin: 60px 0;
  padding: 12px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
.pager-post .prev > a,
.pager-post .next > a {
  padding-left: 36px;
  padding-right: 36px;
  color: white;
}
.pager-post .prev > a:before,
.pager-post .next > a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #dd0212;
  transform: skew(-20deg);
}
.pager-post a > span {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .shop-news > li > a {
    padding: 12px 20px 12px 8px;
    background: none;
  }
  .shop-news > li > a:before,
  .shop-news > li > a:after {
    position: absolute;
    z-index: 51;
    top: 50%;
    right: 4px;
    display: block;
    width: 13px;
    height: 12px;
    margin-top: -6px;
    content: "";
    border-right: 2px solid #dd0212;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  .shop-news > li > a:after {
    border-right: 2px solid #dd0212;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .shop-news > li strong {
    display: block;
    margin-top: 8px;
  }
  .shop-news > li span.entry-title-primary {
    margin: 0;
  }
  .media-dartsGoods img {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .stadium-name {
    margin-bottom: 15px;
    padding: 0 15px;
  }
  .anchor-stadium {
    margin-bottom: 15px;
    padding: 0 15px;
  }
  .anchor-stadium > div {
    margin-bottom: 5px;
    padding: 0 5px;
  }

  .nav-btn{
    width: 100%;
  }

  .section-heading {
    margin: 15px 0;
  }
  .section-heading strong {
    font-size: 2.4rem;
  }
  .section-heading small {
    font-size: 1.4rem;
  }
  .section-shopInfo dl {
    margin-bottom: 5px;
  }
  .section-shopInfo .machine-number ul > li > .circle {
    width: 94px;
    height: 94px;
    line-height: 2;
  }
  .price-item {
    padding: 15px;
  }
  .price-item .balloon {
    padding-top: 50px;
  }
  .price-item .balloon span {
    top: 0;
  }
  .price-point {
    margin-bottom: 15px;
  }
  .price-point .logo-phoenica {
    width: 120px;
    height: auto;
  }
  .price-point .h1 {
    font-size: 2.4rem;
  }
  .price-point .h3 {
    font-size: 1.6rem;
  }
  .sub-page h1 {
    font-size: 2.4rem;
  }
  .sub-page-body {
    margin: 15px auto;
  }
  .sub-page-body:last-of-type {
    margin-bottom: 115px;
  }
  .pager a,
  .pager span {
    margin: 35px 0;
    padding: 8px 5px;
    font-size: 1.4rem;
  }
  .pager a.prev,
  .pager a.next {
    padding-left: 8px;
    padding-right: 8px;
  }
  .pager {
    max-width: 320px;
  }
  .pager-post a {
    margin: 30px 0 45px;
  }

  .section-inview .row iframe{
      height: 35vh;
      border: 8px solid #f6f6f6;
  }

}

/* Recruit page */
.recruit_top{
    background-image: url("../img/import_ds/slide01.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
}
.recruit_top .container{
	padding: 160px 0;
	width: auto;
	margin: 0 auto 140px;
	position: relative;
}
.recruit_top .container h1{
	position: absolute;
	top: 85%;
	left: 50%;
	margin: 0 0 0 -400px;
	text-align: center;
}
.recruit_top .container h1 small{
	color: #e00;
	font-size: 2.4rem;
	font-weight: 700;
}
.recruit_top .container h1 small:after{
    content: '';
    border: 0;
    border-top: 2px solid #e00;
    width: 100px;
    height: 5px;
    margin: 0 auto;
    display: block;
}
.recruitBox{}
.recruitBox h3{
	margin: 0 0 10px;
	font-weight: 700;
	border-bottom: 2px dotted #e00;
}
.recruitBox h4{
	margin: 0 0 5px;
	font-size: 2rem;
}
.recruitBox h4:before{
    content: '';
    display: inline-block;
    width: 6px;
    height: 19px;
    margin: -4px 5px 0 0;
    vertical-align: middle;
    background: #e00;
}
.recruitBox p{
	margin: 5px 0;
}
.recruitBox .basicInfo table{}
.recruitBox .basicInfo th{
	width: 20%;
	text-align: center;
}
.recruitBox .basicInfo th span{
    background: none;
    color: #111111;
    font-size: 1.6rem;
    display: block;
    position: relative;
    padding-top: 53px;
    margin: 0;
}
.recruitBox .basicInfo th span:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    background: url("../img/import_ds/basicInfo_icon.png") no-repeat 0 -300px;
    background-size: 100% auto;
}
.recruitBox .basicInfo th span.ic01:before{
    background-position: 0 -0px;
}
.recruitBox .basicInfo th span.ic02:before{
    background-position: 0 -501px;
}
.recruitBox .basicInfo th span.ic03:before{
    background-position: 0 -1101px;
}
.recruitBox .basicInfo th span.ic04:before{
    background-position: 0 -100px;
}
.recruitBox .basicInfo th span.ic05:before{
    background-position: 0 -401px;
}
.recruitBox .basicInfo th span.ic06:before{
    background-position: 0 -300px;
}
.recruitBox .basicInfo th span.ic07:before{
    background-position: 0 -901px;
}
.recruitBox .basicInfo th span.ic08:before{
    background-position: 0 -1502px;
}
.recruitBox .basicInfo td{}
.recruitBox .basicInfo td ul {
    list-style: none;
    margin: 5px 0;
    padding: 0;
}
.recruitBox .basicInfo td ul:after {
    content: '';
    display: block;
	clear: both;
}
.recruitBox .basicInfo td li {
	float: left;
	margin: 0 3px 3px 0;
	padding-top: 0;
	border: 1px solid #dd0212;
	border-radius: 4px;
}
.recruitBox .basicInfo td li span {
	display: block;
	padding: 2px 5px 2px;
	color: #dd0212;
	font-size: 11px;
}
.recruitBox .recruitApply .btn-stadium.inline-block {
	padding: 20px 100px;
}
.recruitBox .recruitApply .btn-stadium strong,
.recruitBox .recruitApply .btn-stadium span {
    font-size: 3rem;
}
.recruitBox .recruitApply .none {}
.recruitBox .recruitApply .none:before{
	background: #ddd;
}
.recruitBox table{}
.recruitBox th{
	width: 30%;
	text-align: left;
}
.recruitBox th span{
	background: #e84130;
	color: #fff;
	padding: 2px 7px;
	font-size: 1.1rem;
	display: inline-block;
	margin: 0 5px 0 0;
}
.recruitBox td{}
.recruitBox td .wpcf7-not-valid-tip{
	margin: 3px 0 -5px;
	font-size: 0.8em;
}
.recruitBox td input.wpcf7-text{
	width: 100%;
}
.recruitBox td textarea.wpcf7-textarea{
    width: 100%;
    height: 180px;
}
.recruitBox td .zipBox{margin: 0 0 10px;}
.recruitBox td .zipBox span input.your-zip-code,
.recruitBox td .zipBox span input.your-zip-code2{width: 15%;}
.recruitBox td .addBox{}
.recruitBox .submitArea{
	position: relative;
}
.recruitBox div.wpcf7 .ajax-loader{
	position: absolute;
	top: 20px;
	left: 50%;
}
.recruitBox div.wpcf7-validation-errors.wpcf7-response-output,
.recruitBox div.wpcf7-acceptance-missing.wpcf7-response-output {
	padding: 1em;
	text-align: center;
	margin: 0 0 30px;
}
.recruitBox div.wpcf7-mail-sent-ok.wpcf7-response-output {
	padding: 1em;
	text-align: center;
	margin:30px 0;
}
.recruitBox div.wpcf7-validation-errors,
.recruitBox div.wpcf7-acceptance-missing {
	background: #dd0212;
	color: #fff;
	border: none;
}
.recruitBox div.wpcf7-mail-sent-ok {
    border: none;
    background: #398f14;
    color: #fff;
}
.recruitBox button,
.recruitBox input[type="button"],
.recruitBox input[type="reset"],
.recruitBox input[type="submit"]{
    background: #dd0212;
    border: none;
    padding: 15px 50px;
    margin: 0 5px;
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    border-radius: 5px;
    transition: all 0.2s linear;
    display: inline-block;
}
.recruitBox .submitArea button,
.recruitBox .submitArea input[type="button"]:hover,
.recruitBox .submitArea input[type="reset"]:hover,
.recruitBox .submitArea input[type="submit"]:hover{
	box-shadow: 0 5px 5px 1px rgba(0,0,0,0.4) inset;
	text-shadow: 0 1px 5px #000;
}
.recruitBox .notice{}
.recruitBox .notice h3{
    margin: 0 0 15px;
    border-bottom: 2px solid;
    line-height: 1.2;
    padding: 0 0 10px;
}
.recruitBox .notice  ul:first-of-type{margin: 0 0 0 5px;}
.recruitBox .notice  ul{margin: 0 0 0 25px; padding: 0; font-size: 1.4rem;}
.recruitBox .notice  li{margin: 0 0 5px; list-style: none;}
.recruitBox .notice  ul:first-of-type li:before {content: "・";}
.recruitBox .notice  ul li:before {content: "- "; margin-left: -0.3em;}

@media (max-width: 767px) {
.recruit_top .container{
    padding: 15% 0;
    margin: 0 auto 20%;
}
.recruit_top .container h1{
    top: 85%;
    left: 0;
    margin: 0 5%;
}
.recruit_top .container h1 small{
	margin: 5px 0 0;
	display: block;
}
.recruitBox h3{
    font-size: 2rem;
    line-height: 1.4;
    padding: 0 0 5px;
    margin: 0 0 10px
}
.recruitBox .basicInfo table{}
.recruitBox .basicInfo th{
	width: 100%;
	text-align: left;
}
.recruitBox .basicInfo th span{
    padding: 0;
    margin: 0;
}
.recruitBox .basicInfo th span:before {
    display: none;
}
.recruitBox .basicInfo th span br{
display: none;
}
.recruitBox table, .recruitBox tbody, .recruitBox thead, .recruitBox tfoot, .recruitBox tr, .recruitBox th, .recruitBox td {
    display: block;
}
.recruitBox table{}
.recruitBox th{
	width: 100%;
}
.recruitBox td{
    width: 100%;
}
.recruitBox .recruitApply .btn-stadium.inline-block {
	padding: 15px 20px;
}
}

/* Reservation */
#reservation{}
#reservation .reservationBox{margin: 4rem auto; padding: 0;}
#reservation .reservationBox:after {content: ""; display: block; height: 1px; background: #ddd; margin: 35px 0;}
#reservation .reservationBox:last-of-type::after{display: none;}
#reservation .reservationBox ul.reserve_chach{align-items:center;}
#reservation .reservationBox ul{list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center;}
#reservation .reservationBox ul > li:first-of-type{width: 55%; margin-right: 5%;}
#reservation .reservationBox ul > li{width: 40%;}

#reservation .reservationBox p.reserve_text{font-size: 1.4rem;}
#reservation .reservationBox p.reserve_text span.small{font-size: 1.1rem;}
#reservation .reservationBox a.btn-stadium{width: 100%; max-width: 340px;}
#reservation .reservationBox a.btn-stadium.inline-block span{font-size: 2.25rem;}

#reservation #reserve_form .form_subject{display: none;}
#reservation #reserve_form h3{color: #e84130; line-height: 0.95em; margin: 3rem 0; padding: 0 0 0 10px; position: relative;}
#reservation #reserve_form h3::before{content: ""; display: block; width: 5px; height: 25px; background: #e84130; position: absolute; top: 0; left: 0;}

#reservation #reserve_form label{display: block; font-size: 1.65rem; line-height: 2.0em;}
#reservation #reserve_form span.required{color: #d60000; font-size: 1.15rem; line-height: 1;}
#reservation #reserve_form input,
#reservation #reserve_form select,
#reservation #reserve_form textarea {width: 100%; padding: 0.5rem 1rem; border: 1px solid #b8b8b8; background: #fdfdfd;}
#reservation #reserve_form input::placeholder {color: #ddd;}
#reservation #reserve_form select{font-size: 1.55rem;}
#reservation #reserve_form textarea{height: 125px;}
#reservation #reserve_form input[type="checkbox"]{width: 32px; height: 16px;}
#reservation #reserve_form .dateBox p{margin: 0; padding: 0;}
#reservation #reserve_form ul.dateBox > li:first-of-type{width: 47.5%; margin-right: 2.5%;}
#reservation #reserve_form ul.dateBox > li{width: 50%;}
#reservation #reserve_form .wpcf7-list-item label{width: 100%; display: flex; align-items: center; justify-content: flex-start;}
#reservation #reserve_form .wpcf7-list-item{display: block; margin: -2rem auto 4rem; text-align: center; width: 400px;}
#reservation #reserve_form .wpcf7-submit{background: #e84130; border: 2px solid #c43223; display: block; width: 100%; color: #fff; font-size: 2.4rem; font-weight: 500; max-width: 320px; height: 100%; margin: -1rem auto -3rem; border-radius: 10px; transition: 0.2s;}
#reservation #reserve_form input:disabled{background: #b9b9b9; border: 2px solid #999;}

#reservation .form_policy{border: 1px solid #b8b8b8; padding: 2rem; margin: 4rem auto;}
#reservation .form_policy h4{margin: 0.5rem 0 1.5rem; text-align: center; font-size: 2.25rem; line-height: 1;}
#reservation .form_policy dl{margin: 0; padding: 0;}
#reservation .form_policy dt{font-size: 1.8rem;}
#reservation .form_policy dd{font-size: 1.25rem; margin: 0 0 1.6rem; padding: 0; line-height: 1.8em;}
#reservation .form_policy dl p{margin: 0; padding: 0;}]

#reservation .reservationBox .specialty ul{display: flex; justify-content: center; align-items: center; list-style: none; margin: 0; padding: 0;}
#reservation .reservationBox .specialty ul >li{width: 30%; margin: 0 1.5%;}
#reservation .reservationBox .specialty a.btn-stadium.inline-block span {font-size: 1.6rem;}


@media (max-width: 767px) {
  #reservation .reservationBox{margin: 1.5rem auto;}
  #reservation .reservationBox ul > li:first-of-type{width: 100%; margin: 0 0 1.5rem;}
  #reservation .reservationBox ul > li{width: 50%; min-width: 240px; margin: -0.5rem auto 0;}
  #reservation .reservationBox p.reserve_text{font-size: 1.6rem;}
  #reservation .reservationBox p.reserve_text span.small{font-size: 1.3rem;}
  #reservation .reservationBox a.btn-stadium.inline-block span{font-size: 1.8rem;}
  #reservation #reserve_form label{font-size: 1.35rem;}
  #reservation #reserve_form ul.dateBox > li:first-of-type{width: 100%; margin-right: 0;}
  #reservation #reserve_form ul.dateBox > li{width: 100%;}
  #reservation #reserve_form .wpcf7-list-item{margin: -2rem auto 3rem; width: 280px;}
  #reservation #reserve_form .wpcf7-submit{width: 60%; font-size: 2.0rem;}
  #reservation .reservationBox .specialty ul{flex-direction: column;}
  #reservation .reservationBox .specialty ul >li{width: 90%; max-width: 380px; margin: 1rem 0;}
}


/* slick */
.slick-gallery {
  background: #111111;
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  display: block;
  width: 30px;
  height: 82px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  background-size: cover;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  font-size: 20px;
  line-height: 1;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0;
  background-image: url(../img/import_ds/slick_left.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.slick-next {
  right: 0;
  background-image: url(../img/import_ds/slick_right.png);
  background-repeat: no-repeat;
  background-position: right center;
}

.slick-dotted.slick-slider {
  margin-bottom: 60px;
}
.slick-slide img {
  display: block !important;
  width: auto !important;
}
.slick-slide {
  outline: none;
}
.slick-slide a:hover img {
  opacity: 0.7;
}
.slick-page-banner {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
.slick-news img {
  width: 100% !important;
  height: auto;
  display: block;
}
.slick-dots {
  position: absolute;
  bottom: -40px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-size: 17px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "■";
  color: #dd0212;
  text-align: center;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .slick-prev,
  .slick-next {
    width: 15px;
    height: 41px;
  }
}
.slick-page-banner {
  margin-bottom: 40px;
}

/* footer */
.bottom-area {
  /*background: url(../img/bg_bottom.png) no-repeat center top;*/
  padding-top: 60px;
  position: relative;
}
.article + .bottom-area {
  background-color: white;
}
.bottom-inner-area {
  /*margin-top: 130px;*/
  padding: 3rem 0 9rem;
  background: #151515;
}
.bottom-inner-area > .container {
  position: relative;
  /*top: -128px;*/
}
.sns-area .h1 {
  margin: 30px 0 0;
  color: #fff32a;
  line-height: 1.4;
}
.sns-area .h4 {
  margin-bottom: 15px;
  color: white;
}
.sns-item {
  display: block;
  padding: 20px 30px;
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.1);
}
.sns-item .inner {
  position: relative;
  max-width: 350px;
  margin: auto;
  padding: 3px 0 3px 70px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.sns-item img {
  position: absolute;
  top: 0;
  left: 0;
}
.sns-item.facebook,
.sns-item.facebook:hover,
.sns-item.facebook:focus,
.sns-item.facebook:active {
  background: #3b5a8f;
  color: white;
  text-decoration: none;
}
.sns-item.twitter,
.sns-item.twitter:hover,
.sns-item.twitter:focus,
.sns-item.twitter:active {
  background: #393939;
  color: white;
  text-decoration: none;
}
.sns-item.instagram,
.sns-item.instagram:hover,
.sns-item.instagram:focus,
.sns-item.instagram:active {
  background: #e44160;
  color: white;
  text-decoration: none;
}

@media screen and (min-width: 767px) {
	.sns-area .lg-margin-top-10{ margin-top: 0; }
}
@media screen and (min-width: 992px) {
	.sns-area .lg-margin-top-10{ margin-top: 10px; }
}

.recruit-area .h1 {
  margin: 30px 0 0;
  color: #f60;
  line-height: 1.4;
}
.recruit-area .h4 {
  margin-bottom: 15px;
  color: white;
}
.recruit-item {

}
.recruit-item .inner {
  position: relative;
  max-width: 600px;
  margin: auto;
  padding: 3px 0 3px 70px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.recruit-item,
.recruit-item:hover,
.recruit-item:focus,
.recruit-item:active {
  background: #e84130;
  color: white;
  text-decoration: none;
  position: relative;
}


.footer-sns > div {
  margin-bottom: 12px;
}
.footer-sns a {
  display: block;
  font-size: 14px;
  text-align: left;
  padding: 5px 15px;
  color: white;
}
.footer-sns a:hover,
.footer-sns a:focus,
.footer-sns a:active {
  color: white;
  text-decoration: none;
}
.footer-sns a > i {
  margin-right: 7px;
}
.share-fb a {
  position: relative;
  background-color: #3b5a8f;
}
.share-fb img {
  position: relative;
  left: -2px;
  top: -2px;
}
.share-tw a {
  background-color: #489dd7;
}
.share-tw img {
  position: relative;
  left: -2px;
  top: -2px;
}
.share-line a {
  padding-left: 12px;
  background-color: #00b900;
}

footer {
  position: relative;
  flex-shrink: 0;
  background: #090909;
  color: white;
}
.copy {
  color: #666;
}
.footer-inner {
  padding: 30px 0;
}
.footer-inner .logo {
  padding-top: 30px;
}
.stadium-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.stadium-list a {
  display: block;
  padding: 15px 30px;
  color: white;
  transition: all 0.2s ease-in-out;
}
.stadium-list a:hover,
.stadium-list a:focus,
.stadium-list a:active {
  color: #dd0212;
  text-decoration: none;
}
.stadium-list p {
  margin-top: 5px;
  margin-bottom: 0;
}
.stadium-list .h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
}

.pagetop a {
  display: block;
  position: absolute;
  top: 360px;
  left: 50%;
  width: 80px;
  height: 50px;
  background: #151515;
  margin-left: -40px;
  padding: 5px 0;
  color: white;
  text-align: center;
  font-weight: 700;
}
.pagetop a:hover,
.pagetop a:focus,
.pagetop a:active {
  color: white;
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer-inner .logo {
    margin-top: 30px;
  }
  .stadium-list a {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .bottom-inner-area {
    padding-bottom: 75px;
    /*margin-top: 60px;*/
  }
  /*.bottom-inner-area>.container {
    top: -58px;
  }*/
  .sns-item {
    padding: 15px;
  }
  .sns-item .inner {
    max-width: 300px;
    padding: 0 0 0 50px;
    font-size: 1.75rem;
  }
  .sns-item img {
    width: 40px;
    height: 40px;
  }

  .recruit-item {
    padding: 15px;
  }
  .recruit-item .inner {
    max-width: 320px;
    padding: 0;
    font-size: 1.6rem;
  }

  .footer-inner {
    padding-top: 15px;
  }
  .stadium-list a {
    padding: 15px;
  }
}

@media (min-width: 992px) {
  .footer-inner .logo {
    min-width: 240px;
  }
}

@media (min-width: 768px) {
  .stadium-list {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .stadium-list > li {
    width: 50%;
  }
  .pagetop a {
    top: 630px;
    height: 65px;
  }
}

@media (max-width: 991px) {
  .pagetop a {
    top: 425px;
    height: 65px;
  }
}

@media (max-width: 768px) {
  .pagetop a {
    top: 645px;
    height: 65px;
  }
}


/* maintenance */
.maintenance-mode {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}


/*--------------------------------------------------------------
Preloader
--------------------------------------------------------------*/
.page-loader {
position: fixed;
background: #fff;
bottom: 0;
right: 0;
left: 0;
top: 0;
z-index: 9998;
}

.loader {
position: absolute;
border-left: 7px solid rgba(232, 65, 48, 0.0);
border-top: 7px solid rgba(232, 65, 48, 0.8);
border-right: 7px solid rgba(232, 65, 48, 1.0);
border-bottom: 7px solid rgba(232, 65, 48, 1.0);
height: 46px;
width: 46px;
left: 50%;
top: 50%;
margin: -23px 0 0 -23px;
text-indent: -9999em;
font-size: 10px;
z-index: 9999;
-webkit-animation: load 0.8s infinite linear;
-moz-animation: load 0.8s infinite linear;
ms-animation: load 0.8s infinite linear;
o-animation: load 0.8s infinite linear;
animation: load 0.8s infinite linear;
}

.loader,
.loader:after {
border-radius: 50%;
width: 46px;
height: 46px;
}

@-webkit-keyframes load {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}

@keyframes load {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}


/*========= Event =========*/
/*=== Event - List ===*/
#news .section{background: #fff; padding: 5rem 0;}
#news .sub_top {background: url("../img/top/df__fullpage_bg_2.jpg") no-repeat center center; background-size: cover; overflow: hidden;}
#news .event__List{width: 100%; max-width: 900px; margin: 0 auto; padding: 0;}
#news .event__List .ev__Detail{margin-bottom: 4rem;}
#news .event__List .ev__Detail a{display: block; width: 100%; height: auto; line-height: 0;}
#news .event__List .ev__Detail a img{width: 100%; height: auto; margin: 0; padding: 0;}
#news .event__List .ev__Detail .card-text{background: #e84130; color: #fff; display: flex; justify-content: flex-start; align-items: flex-start; flex-wrap: wrap; padding: 1.75rem;}
#news .event__List .ev__Detail .card-text .label-area{color: #e84130; font-size: 1.35rem; font-weight: 700; line-height: 1; letter-spacing: 0; background: #fff; padding: 7px 9px; margin: 0 10px 5px 0;}
#news .event__List .ev__Detail .card-text .label-area label {display: inline-block; margin-bottom: 0; margin-right: 0; padding: 0; background: #fff; color: #e84130; font-weight: 700;}

#news .event__List .ev__Detail .card-text .entry-title-primary{width: 100%; font-size: 2.0rem; font-weight: 700; line-height: 1.25em; letter-spacing: 0; margin: 0; display: inline-block;}
#news .event__List .ev__Detail .card-text .entry-subtitle{width: 100%; font-size: 1.4rem; font-weight: 200; line-height: 2.0rem; letter-spacing: 0; padding: 0; margin: 5px 0 0 0;}
/*=== Event - Detail ===*/
#news .post-entry{width: 100%; max-width: 900px; margin: 0 auto; padding: 0; color: #333; border: none;}
#news .post-entry .card-text{display: flex; align-items: center; justify-content: right; margin-bottom: 1.5rem; font-size: 1.5rem; letter-spacing: 0;}
#news .post-entry .card-text .label-area{background: #e84130; color: #fff; font-size: 1.1rem; padding: 3px 7px; margin-right: 7px;}
#news .post-entry .card-text .label-area label{display: inline-block; margin-bottom: 0; margin-right: 0; padding: 0; background: none;}
#news .post-entry .update{color: #e84130;}
#news .post-entry .post-image{margin-bottom: 2rem;}
#news .post-entry .post-content{font-size: 1.45rem; line-height: 2.4rem; margin-bottom: 2rem;}
#news .post-entry .post-content h3{color: #e84130; text-align: left; font-size: 2.25rem; font-weight: 700; line-height: 2.75rem; margin-bottom: 1.5rem;}
#news .post-entry hr{border: none; border-top: 2px dashed #E8413F; margin: 1.5rem 0;}
#news .post-entry h5{font-size: 2.0rem; font-weight: 700; margin: 1rem 0; padding: 0;}
#news .post-entry ul{list-style: none; margin: 0; padding: 0;}
#news .post-entry p.small{font-size: 0.9rem; line-height: 1.4em; margin-bottom: 10px;}
#news .post-entry .btnArea{margin: 0 auto;}

/*tablet*/
@media (max-width: 1599px) {
  #news .wrapper .lt{max-width: 0;}  
  #news .wrapper .rt{max-width: 90%; margin: 0 auto;}
  #news .wrapper .rt .txt_wrap .bold{font-size: 1.8em; margin: 5rem 0 2.5rem;}
  #news .wrapper .eventList{width: 100%; max-width: 800px;}
}

/*smart phone*/
@media (max-width: 767px) {
  #event .wrapper .lt{max-width: 0;}
  #event .wrapper .rt{justify-content: center; max-width: 90%; margin: 0 auto;}
  #event .wrapper .rt .txt_wrap .bold{font-size: 1.40rem; margin: 3.75rem 0 1.5rem; line-height: 120%;}
  #event .wrapper .eventList{display: block; width: 100%; max-width: 600px;}
  .slick-dotted.slick-slider {margin-bottom: 7rem !important;}
  #event .wrapper .eventList .btnArea{width: 195px; padding: 2.0rem 0;}
  /*=== Event - List ===*/
  #event .section{padding: 2.0rem 0;}
  #event .event__List{width: 90%;}
  #event .event__List .ev__Detail{margin-bottom: 2rem;}
  #event .event__List .ev__Detail .card-text{padding: 1.0rem;}
  #event .event__List .ev__Detail .card-text .label-area{font-size: 0.75rem; padding: 7px; margin: 0 0 5px;}
  #event .event__List .ev__Detail .card-text .entry-title-primary{font-size: 1.0rem; line-height: 1.25rem; width: 100%;}
  #event .event__List .ev__Detail .card-text .entry-subtitle{font-size: 0.85rem; line-height: 1.25rem;}
  /*=== Event - Detail ===*/
  #event .post-entry{width: 90%;}
  #event .post-entry .card-text{font-size: 1.0rem; margin-bottom: 0.55rem;}
  #event .post-entry .card-text .label-area{font-size: 0.65rem; padding: 6px; margin-right: 5px;}
  #event .post-entry .post-image{margin-bottom: 0.75rem;}
  #event .post-entry .post-content{font-size: 1.0rem; line-height: 1.55rem;}
  #event .post-entry .post-content h3{font-size: 1.25rem; margin-bottom: 1rem;}
  #event .post-entry h5{font-size: 1.0rem; margin: 0.25rem 0;}
}

/*HD Monitor*/
@media (max-height: 720px) and (min-width: 1200px) {
}


/*========= 404 =========*/
#not-found{height: 99vh; height: 87dvh; display: flex; justify-content: center; align-items: center; border-bottom: 3px solid #fff;}
#not-found .not-found__image{width: 22.5%; min-width: 320px; margin: 0 auto;}
#not-found h2.not-found__title{font-size: 4.75rem; font-weight: 700; line-height: 4.75rem; letter-spacing: 10px; margin: 20px 0 10px; text-align: center;}
#not-found h2.not-found__title span{display: block; font-size: 1.75rem; margin: 0; letter-spacing: 3px;}
#not-found p.not-found__desc{text-align: center; font-size: 1.45rem; line-height: 2.25rem; margin: 0 0 30px;}

/*tablet*/
@media (max-width: 1599px) {}

/*smart phone*/
@media (max-width: 767px) {
  #not-found .not-found__image{width: 75%; min-width: auto; max-width: 260px;}
  #not-found h2.not-found__title{font-size: 3rem; line-height: 2.755rem; margin: 10px 0;}
  #not-found h2.not-found__title span{font-size: 1.25rem; margin: 0;}
  #not-found p.not-found__desc{font-size: 1.4rem; line-height: 1.75rem; margin: 0 0 20px;}
}


/*========= Footer =========*/
footer{background: #111; color: #fff;}
footer .container{margin: 0 auto; padding: 0; display: flex; justify-content: center; align-items: center; flex-direction: column;}
footer h3{font-size: 4.8rem; font-weight: 900; letter-spacing: 0; margin: 3.5rem 0;}
footer h3 b{font-weight: 700;}
footer .store__basic_info{}
footer .store__basic_info ul{display: flex; justify-content: flex-start; align-items: flex-start; list-style: none; margin: 0; padding: 0; font-size: 1.85rem; line-height: 1.65em;}
footer .store__basic_info ul > li{width: 50%; padding: 0 2.5rem;}
footer .store__basic_info ul > li:first-child{border-right: 2px solid #fff;}
footer .store__basic_info ul > li span{font-size: 1.55rem; color:#929292;}
footer .store__basic_info a{max-width: 220px; display: block; background: #e84130; color: #fff; font-size: 2.25rem; font-weight: 700; text-align: center; margin: 1.5rem 0; padding: 10px; position: relative; border-radius: 30px; text-decoration: none;}
footer .store__logo{margin: 3.5rem 0;}
footer .store__logo a{display: block; width: 280px; height: auto;}
footer .store__sns{margin: 1.55rem 0;}
footer .store__sns ul{display: flex; justify-content: flex-start; align-items: flex-start; list-style: none; margin: 0; padding: 0;}
footer .store__sns ul > li{margin: 0 0.75rem;}
footer .store__sns a{display: block; background: #fff; width: 62px; height: 62px; padding: 15px; border-radius: 50%;}
footer .store__sns a:hover{background: #e84130;}
footer .footer-media{font-size: 1.55rem; letter-spacing: 4px; padding: 2.5rem 0;}

/*tablet*/
@media (max-width: 992px) {
  footer h3{font-size: 3.85rem; margin: 2.25rem 0;}
  footer .store__basic_info ul{width: 90%; margin: 0 auto; font-size: 2.0rem; line-height: 1.55em;}
  footer .store__basic_info ul > li{width: 50%; padding: 0 1.5rem;}
  footer .store__basic_info ul > li span{display: block; font-size: 1.45rem; line-height: 1.75;}
  footer .store__basic_info a{max-width: 180px; margin: 1.25rem 0 0; padding: 5px 15px;}
  footer .store__logo{width: 30%; margin: 3rem 0;}
  footer .store__logo a{width: 100%;}
  footer .store__sns{margin: 0 0 1.0rem;}
  footer .store__sns ul{flex-direction: row;}
  footer .footer-media{font-size: 1.45rem; padding: 1.5rem 0;}
}

/*smart phone*/
@media (max-width: 767px) {
  footer .container{width: 90%; height: auto;}
  footer h3{font-size: 2.40rem; margin: 1.25rem 0;}
  footer .store__basic_info ul{width: 96%; margin: 0 auto; font-size: 1.6rem; line-height: 1.45em; flex-direction: column;}
  footer .store__basic_info ul > li{width: 100%; padding: 0;}
  footer .store__basic_info ul > li:first-child{margin-bottom: 1.5rem; border-right: none;}
  footer .store__basic_info ul > li span{font-size: 1.25rem; line-height: 1.50;}
  footer .store__basic_info a{font-size: 1.75rem; max-width: 135px; margin: 1.25rem 0 0; padding: 6px 20px;}
  footer .store__logo{width: 40%; max-width: 240px; margin: 2.5rem 0;}
  footer .store__logo a{width: 100%;}
  footer .store__sns{margin: 0;}
  footer .store__sns ul{flex-direction: row;}
  footer .store__sns ul > li{margin: 0 0.325rem;}
  footer .store__sns a{width: 40px; height: 40px; padding: 10px;}
  footer .footer-media{font-size: 1.35rem; letter-spacing: 2px; padding: 1.75rem 0;}
}