@charset "UTF-8";



/* Global */

html,
body {
  min-width: 100%;
  background-image: none !important;
}

.mail-form {
  width: 100%;
}

input[type="text"] {
  width: 100%;
  height: 36px;
  margin-bottom: 15px;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 1.6rem;
}

textarea {
  width: 100%;
  height: 80px;
  margin-bottom: 15px;
  border-radius: 4px;
  padding: 5px;
  font-size: 1.6rem;
}

input[type="submit"] {
  width: 140px;
  padding: 7px 0;
  font-size: 1.6rem;
}

.select-menu-frame {
  width: 80%;
  height: 40px;
  background-size: 40px 40px;
}

.select-menu-frame select,
.select-menu-frame option {
  width: 100%;
  height: 40px;
  padding-left: 20px;
  font-size: 1.7rem;
  font-weight: 300;
}

.mail-form-submit {
  padding: 15px 0 0 0;
}



/* Common - Main */

#main-frame {
  width: 100%;
}

#title-pc,
#lead-pc {
  display: none;
}



/* Common - Header PC */

#header-pc {
  display: none;
}



/* Common - Header SP */

.disable {
  display: none !important;
}

#header-sp {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 65px;
}

#menu-button {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20000;
  cursor: pointer;
}

#menu-button,
#menu-button span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

#menu-button {
	width: 40px;
	height: 24px;
}

#menu-button span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #fff;
	border-radius: 4px;
}

#menu-button span:nth-of-type(1) {
	top: 0;
}

#menu-button span:nth-of-type(2) {
	top: 10px;
}

#menu-button span:nth-of-type(3) {
	bottom: 0;
}

#menu-button.active span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
#menu-button.active span:nth-of-type(2) {
	opacity: 0;
}
#menu-button.active span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}

.open {
  -webkit-animation: open .3s linear;
  -moz-animation: open .3s linear;
  -ms-animation: open .3s linear;
  -o-animation: open .3s linear;
  animation: open .3s linear;
}

@-webkit-keyframes open {
	0% { top: -800px; }
	100% { top: 60px; }
}
@-moz-keyframes open {
	0% { top: -800px; }
	100% { top: 60px; }
}
@-ms-keyframes open {
	0% { top: -800px; }
	100% { top: 60px; }
}
@-o-keyframes open {
	0% { top: -800px; }
	100% { top: 60px; }
}
@keyframes open {
	0% { top: -800px; }
	100% { top: 60px; }
}

#header-sp h1 {
  width: 100%;
  margin: 0 auto;
  padding-top: 15px;
  text-align: center;
}

#header-sp h1 img {
  width: 110px;
  height: auto;
}

#header-sp #map-button {
  position: absolute;
  top: 0;
  right: 10px;
  width: 44px;
}

#header-sp #map-button img {
  width: 25px;
  height: auto;
  margin-top: 17px;
  opacity: 0.8;
}

#header-sp #sns-link {
  width: 100%;
  height: 55px;
  margin: 5px auto;
  box-sizing: border-box;
  background-color: #fff;
}



/* Common - Navigation Menu SP */

#nav-menu-sp {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 20;
  width: 100%;
  background-color: #000;
}

#nav-menu-sp * {
  font-size: 2.4rem;
  font-family: Roboto;
  font-weight: 100;
}

#nav-menu-sp a {
  color: #fff;
}

#nav-menu-sp > div,
#nav-menu-sp > a {
  display: table;
  width: 100%;
  height: 50px;
  margin-bottom: 2px;
}

#nav-menu-sp > div > div,
#nav-menu-sp > a > div,
#nav-menu-sp > div > a {
  display: table-cell;
  vertical-align: middle;
}

#nav-sp-close-button {
  height: 60px !important;
  background-color: #000;
  cursor: pointer;
}

#nav-sp-close-button > div {
  padding: 9px 0 0 20px;
}

#nav-sp-close-button > div img {
  width: 18px;
  height: auto;
}

#nav-lang-menu-sp {
/*   display: none !important; */
  background-color: #878787;
}

#nav-lang-menu-sp-title {
  padding-left: 28px;
  color: #272727; 
}

#nav-lang-menu-sp-select {
  padding-right: 16px;
  text-align: right;
  color: #272727;
}

#nav-lang-menu-sp-select a {
  color: #272727;
}

#nav-lang-menu-sp-select a.active {
  color: #fff;
}

.nav-menu-sp {
  background-color: #272727;
}

.nav-menu-sp div:first-of-type {
  padding-left: 28px;
}

.nav-menu-sp div:last-of-type {
  padding-right: 23px;
  text-align: right;
}

.nav-menu-sp div:last-of-type img {
  width: auto;
  height: 25px;
  margin-top: 6px;
}

.nav-sns-sp {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
}

.nav-sns-sp a {
  display: table-cell;
  text-align: center;
}

.nav-sns-sp img {
  width: auto;
  height: 25px;
}



/* Common - Main Visual */

.main-visual {
  display: table;
  width: 100%;
  background-size: cover;
}

.main-visual > div,
.main-visual > a {
  display: table-cell;
  background-color: rgba(0,0,0,0.5);
  vertical-align: top;
  color: #fff;
}

.main-visual h2 {
  margin-bottom: 40px;
  padding-top: 87px;
  font-size: 2.6rem;
  font-family: Roboto;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
}

#main-visual-lead {
  margin: 0 20px;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.95rem;
}

#main-visual-lead br {
  display: none;
}


/* Common - Footer SNS Link List */

#sns-link {
  min-width: 100%;
  margin-top: 30px;
}

#sns-link-list {
  width: 100%;
  height: 55px;
  margin: 0 auto 5px auto;
}

#sns-link a {
  padding: 0 10px;
}

#sns-link a img {
  width: auto;
  height: 20px;
}



/* Common - Sponsor */

#sponsor {
  min-width: 100%;
  height: 55px;
  margin-bottom: 5px;
}

#sponsor-list {
  height: 55px;
}

.sponsor {
  padding: 0 15px;
}

.sponsor img {
  width: auto;
  height: 18px;
}

#sponsor-integral {
  width: 75px;
}



/* Common - Up To Top */

#uptotop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 1000;
  width: 100%;
  text-align: right;
}

#uptotop a {
  display: inline-block;
  border-radius: 6px;
  padding: 17px 5px;
  background-color: rgba(0,0,0,0.5);
}

#uptotop a img {
  width: 50px;
  height: auto;
}



/* Common - Footer */

footer {
  width: 100%;
  min-width: 100%;
  padding: 30px 0;
}

#footer-logo {
  margin-bottom: 30px;
}

#footer-logo img {
  width: auto;
  height: 20px;
}

footer address {
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 2.6rem;
}

#footer-phone {
  margin-bottom: 15px;
}

#footer-phone a {
  font-size: 1.95rem;
  line-height: 1.95rem;
}

#footer-mail {
  margin-bottom: 20px;
}

#footer-mail a {
  font-size: 1.95rem;
  line-height: 1.95rem;
}

#footer-link {
  margin-bottom: 22px;
  font-size: 1.3rem;
}

#footer-link a {
  font-size: 1.3rem;
}

#copyright {
  font-size: 1.04rem;
}



/* Common - Misc. */


.more-button > a,
.more-button > div {
  padding: 8px;
  border-radius: 4px;
  font-size: 2rem;
}

.nav-previous {
  width: 100%;
  background-color: #131313;
  text-align: center;
}

.nav-previous a {
  margin-bottom: 30px;
}

#infscr-loading {
  clear: both;
  width: 100%;
  padding: 30px 0;
}

#infscr-loading > div {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.flickity-prev-next-button {
  width: 37px;
  height: 72px;
  background-color: transparent;
}

.flickity-prev-next-button:hover {
  background-color: transparent;
}

.flickity-prev-next-button.previous {
  background-image: url(/img/icon-slide-arrow-left.png);
}

.flickity-prev-next-button.next {
  background-image: url(/img/icon-slide-arrow-right.png);
}

.flickity-prev-next-button svg {
  display: none;
}



/* Common - Share Button */

#share-button {
  width: 100%;
  height: 70px;
  margin-bottom: 10px;
}

#share-button img {
  height: 25px;
}



/* Top - Event Frame */

#top-event {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0;
}



/* Top - Event Main */

#top-event-main-frame {
  display: none;
}

#top-event-main-frame-sp {
  display: block;
}

#top-event-main-sp {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

#top-event-main-sp img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
/*
  -webkit-transition:0.2s all;
  -moz-transition:0.2s all;
  -ms-transition:0.2s all;
  -o-transition:0.2s all;
  transition:0.2s all;
*/
}

#top-event-main-sp img:hover {
/*
  -webkit-transform:scale(1.0,1.0);
  -moz-transform:scale(1.0,1.0);
  -ms-transform:scale(1.0,1.0);
  -o-transform:scale(1.0,1.0);
  transform:scale(1.0,1.0);  
*/
}


/* Top - Event Sub */

#top-event-sub-sp {
  display: block;
  width: 100%;
}

#top-event-sub {
  display: none;
}

.top-event-sub-entry-sp-row {
  display: table;
  width: 100%;
}

.top-event-sub-entry-sp {
  display: table-cell;
  width: 50%;
  overflow: hidden;
}

.top-event-sub-entry-sp-inside {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #fff;
}

.top-event-sub-entry-img-sp {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
/*
  -webkit-transition:0.2s all;
  -moz-transition:0.2s all;
  -ms-transition:0.2s all;
  -o-transition:0.2s all;
  transition:0.2s all;
*/
  opacity: 0.2;
}

.top-event-sub-entry-img-sp:hover {
/*
  -webkit-transform:scale(1.0,1.0);
  -moz-transform:scale(1.0,1.0);
  -ms-transform:scale(1.0,1.0);
  -o-transform:scale(1.0,1.0);
  transform:scale(1.0,1.0);  
  opacity: 1.0;
*/
}

.top-event-sub-entry-img-sp img {
  width: 100%;
  height: 100%;
}

.top-event-sub-date-sp {
  position: relative;
  z-index: 2;
  height: 30px;
  padding-top: 35px;
  font-size: 2.4rem;
  font-family: Roboto;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
}

.top-event-sub-date-sp span {
  font-weight: 100;
}

.top-event-sub-title-sp {
  position: relative;
  z-index: 2;
  padding: 0 5px;
  height: 50px;
  overflow: hidden;
  font-size: 1.7rem;
  font-family: Roboto;
  font-weight: 300;
  line-height: 2rem;
  text-align: center;
  color: #fff;
}

.top-event-sub-category-sp {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 30px;
  overflow: hidden;
  text-align: center;
}

.top-event-sub-more-sp {
  position: relative;
  z-index: 2;
}



/* Top - Event More Button */

#top-event-more-pc a {
  width: 190px;
  font-size: 2.6rem;
}



/* Top - Event Common */

.top-event-more div {
  width: 125px;
}

.top-event-category {
  font-size: 1rem;
  line-height: 1rem;
}

.top-event-category:last-of-type {
  margin-right: 0;
}



/* Event - Calendar */

#event-main {
  background-image: url(/event/img/event-visual.jpg);
}

#event-calendar-pc {
  display: none;
}

#hc {
  display: none;
}

#event-cat-menu {
  display: table;
  width: 100%;
  height: 65px;
}

.event-cat-menu {
  display: table-cell;
  width: 33%;
  border-right: 2px solid #000;
}

.event-cat-menu:last-of-type {
  width: 33%;
  border: none;
}

.event-cat-menu a {
  display: block;
  width: 100%;
  border-top: 5px solid;
  padding-top: 0;
  font-size: 1.5rem;
}



/* Event - VC */

#vc-load {
  display: none;
}

#vcEntrySelect {
  width: 70%;
  margin: 0 auto 0 auto;
}

.vcMonth {
  margin-bottom: 15px;
  font-size: 2.6rem;
}

.vcMonth span {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.vcEntry {
  height: 80px;
  margin-bottom: 5px;
}

.vcEntry > div {
  display: table-cell;
  vertical-align: middle;
}

.vcEntryDate {
  width: 78px !important;
  border: 1px solid #272727;
  border-top: 2px solid;
}

.vcEntryDate.womb {
  border-top-color: #ff007f;
}

.vcEntryDate.womblounge {
  border-top-color: #ff7f00;
}

.vcEntryDate.live {
  border-top-color: #007fff;
}

.vcEntryDateNo {
  font-size: 3.2rem;
  line-height: 1.2rem;
}

.vcEntryDateDay {
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.vcEntryImg {
  width: 80px !important;
}

.vcEntryDetail {
  padding: 10px;
}

.vcEntryTitle {
  width: 100%;
  height: 19px;
  overflow: hidden;
  font-size: 1.6rem;
}

.vcEntryArtist {
  width: 100%;
  height: 19px;
  overflow: hidden;
}

.vcEntryArtist p {
  font-size: 1rem;
  white-space: nowrap;
}

.vcEntryCategory {
  width: 100%;
  height: 20px;
  overflow: hidden;
}

.vcEntryCategory span {
  font-size: 0.9rem;
}

.vcEntryBuy {
  display: none !important;
}

.vcEntry > a.vcEntryArrow {
  display: table-cell;
  width: 35px !important;
  text-align: right;
}

.vcEntryArrow img {
  width: 15px;
  height: auto;
  margin-right: 20px;
}



/* Event - Detail - Basic */

#event-detail-close-button {
  height: 60px;
  margin-top: 80px;
  text-align: right;
}

#event-detail-close-button img {
  position: relative;
  top: auto;
  right: auto;
  margin-right: 17px;
  width: 30px;
  height: auto;
}

#event-detail-main-pc {
  display: block;
  width: 100%;
  height: auto;
  background-color: transparent;
}

#event-detail-main {
  display: block;
  width: 100%;
  height: 100%;
}

#event-detail-main {
  width: 100%;
  height: 100%;
}

#event-detail-main-outline {
  display: block;
  width: 100%;
  margin: 15px auto 15px auto;
}

#event-detail-main-date {
  height: auto;
  margin-bottom: 10px;
  font-size: 2.6rem;
}

#event-detail-main-title {
  height: auto;
  margin-bottom: 20px;
  font-size: 2.6rem;
  line-height: 2.6rem;
}

#event-detail-main-category {
  margin-bottom: 20px;
}

.event-detail-category {
  height: auto;
  font-size: 1.3rem;
}

#event-detail-price-info {
  width: 100%;
  height: auto;
  padding: 0 10px 20px 10px;
  font-size: 2rem;
  line-height: 2.6rem;
}

#event-detail-artist-info-main {
  width: 100%;
  margin: 40px auto 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.6rem;
  text-align: center;
  color: #fff;
}

#event-detail-artist-info {
  width: 100%;
  margin: 30px auto 30px auto;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 2rem;
}

#event-detail-discount-button {
  width: 100%;
  margin: 20px auto 30px auto;
  text-align: center;
}

.event-detail-discount-button {
  display: inline-block;
  border-radius: 4px;
  padding: 7px 17px;
  font-size: 2.3rem;
}

.event-detail-discount-button-frame:last-of-type {
  margin-left: 10px;
}

.event-detail-discount-button-frame:first-of-type {
  margin-left: 0;
}

.event-detail-discount-button-copy {
  height: auto;
  margin-bottom: 15px;
}

#event-detail-copy {
  width: 100%;
  margin: 0 auto 30px auto;
  padding: 30px 10px 0 10px;
  box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 2rem;
}

#event-detail-related-link {
  width: 100%;
  margin: 0 10px 30px 10px;
  border-left: 3px solid #878787;
  padding-left: 5px;
  box-sizing: border-box;
}

#event-detail-related-link a {
  padding-bottom: 5px;
  font-size: 1.3rem;
}




/* Event - Detail - Artist List */

.event-detail-artist-name {
  font-size: 1.3rem;
}

.event-detail-artist-name #artist-name {
  font-size: 1.3rem;
}

.event-detail-artist-list-width1 {
  width: 100% !important;
}

.event-detail-artist-list-width2 {
  width: 100% !important;
}

.event-detail-artist-list-width3 {
  width: 100% !important;
}

.event-detail-artist-list-width4 {
  width: 100% !important;
}



/* Event - Detail - Video */

.event-video-entry {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.event-video-entry-main {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding-top: 56.25%;
}

.event-video-entry-main iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.event-video-entry-title {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 2rem;
}

.event-video-entry-note {
  font-size: 1rem;
  line-height: 1.5rem;
}




/* Event - Detail - Mix */

#event-detail-mix {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}

.event-detail-mix-single {
  width: 100% !important;
}

.event-mix-entry {
  float: left;
  width: 100%;
  height: auto;
  margin-bottom: 2px;
  padding: 15px;
  box-sizing: border-box;
}

.event-mix-entry:first-of-type {
  width: 100%;
  border-right: none;
}

.event-mix-entry:last-of-type {
  width: 100%;
  border-left: none;
}

.event-mix-entry-title {
  height: auto;
  margin-bottom: 10px;
  font-size: 2rem;
  letter-spacing: 3px;
}

.event-mix-entry-main {
  margin-bottom: 10px;
}

.event-mix-entry-sound {
  height: auto;
}

.event-mix-entry-note {
  font-size: 1rem;
  line-height: 1.6rem;
}



/* Event - Detail - Photo */

#event-photo-list {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #000;
}

.event-photo-list {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.event-photo-entry {
  float: left;
  display: inline-table;
  width: 50%;
  height: 290px;
  box-sizing: border-box;
  background-size: cover; 
}

.event-photo-entry a {
  display: table-cell;
  padding: 20px;
  background-color: rgba(0,0,0,0.5);
  vertical-align: bottom;
}

.event-photo-entry-date {
  width: 100%;
  margin-bottom: 5px;
  font-size: 2rem;
  font-family: Roboto;
  font-weight: 700;
  letter-spacing: 4px;
  text-align: center;
  color: #fff;
}

.event-photo-entry-title {
  font-size: 2.6rem;
  font-family: Roboto;
  font-weight: 300;
  text-align: center;
  color: #fff;
}



/* Artist */

#artist {
  z-index: 1000;
  width: 100%;
}

#artist-close-button {
  width: 100%;
  height: 54px;
}

#artist-close-button img {
  margin: 30px 0 0 30px;
  width: 20px;
  height: auto;
}

#artist-visual {
  width: 100%;
}

#artist-visual img {
  width: 100%;
  height: auto;
}

#artist-name {
  padding: 30px 0 20px 0;
  font-size: 3.2rem;
}

#artist-profile {
  padding: 0 10px 15px 10px;
  font-size: 1.3rem;
  line-height: 2rem;
}

#artist-profile p {
  font-size: 1.3rem;
  line-height: 2rem;
}

#artist-related-link {
  width: 100%;
  margin: 0 10px 15px 10px;
  border-left: 3px solid #878787;
  padding-left: 5px;
  box-sizing: border-box;
}

#artist-related-link a {
  padding-bottom: 5px;
  font-size: 1.3rem;
}

.artist-video-entry {
  margin-bottom: 15px;
}

.artist-video-entry-main {
  margin-bottom: 5px;
  padding-top: 56.25%;
}

.artist-video-entry-title {
  margin-bottom: 5px;
  font-size: 2rem;
  line-height: 2rem;
}

.artist-video-entry-note {
  font-size: 1rem;
  font-weight: 1.5rem;
}

.artist-mix-entry {
  float: none;
  clear: both;
  width: 100%;
  height: auto;
  margin-bottom: 1px;
  padding: 0 5px 5px 5px;
}

.artist-mix-entry:nth-child(odd) {
  margin-right: 0;
}

.artist-mix-entry:nth-child(even) {
  margin-left: 0;
}

.artist-mix-entry-date {
  height: auto;
  padding: 20px 0;
  font-size: 1.6rem;
  line-height: 2rem;
}

.artist-mix-entry-title {
  height: auto;
  padding-bottom: 20px;
  font-size: 2.6rem;
  line-height: 2.6rem;
}

.artist-mix-entry-main {
  margin-bottom: 10px;
}

.artist-mix-entry-check {
  width: 100%;
  height: 55px;
}

.artist-mix-entry-check a {
  display: block;
  width: 245px;
  margin: 10px auto 0 auto;
  border-radius: 4px;
  padding: 5px 0;
  font-size: 2rem;
  font-family: Roboto;
  font-weight: 300;
  text-align: center;
  color: #fff;
}

.artist-mix-entry-note {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 2.2rem;
  vertical-align: top;
}



/* Event - Artist Detail */

#event-detail-artist-detail-inside {
  padding-top: 80px;
}

#event-detail-artist-detail-close-button {
  height: 60px;
  text-align: right;
}

#event-detail-artist-detail-close-button img {
  position: relative;
  top: auto;
  right: auto;
  margin-right: 17px;
  width: 30px;
  height: auto;
}




/* Event - Discount */

#discount-inside {
  padding-top: 80px;
}

#discount-close-button {
  height: 60px;
  text-align: right;
}

#discount-close-button img {
  position: relative;
  top: auto;
  right: auto;
  margin-right: 17px;
  width: 30px;
  height: auto;
}

#discount-frame {
  display: block;
  width: 100%;
}

#discount-visual {
  display: block;
  width: 100%;
}

#discount-text {
  display: block;
  width: 100% !important;
}

#discount-price {
  display: none;
}

#discount-price-sp {
  display: block;
  width: 100%;
  padding: 20px 0;
  background-color: #009af2;
  font-size: 3.0rem;
  font-family: Roboto;
  line-height: 3.0rem;
  letter-spacing: -1px;
  text-align: center;
  color: #fff;
}

#discount-detail {
  width: 100%;
  padding: 20px 5px 20px 5px;
  box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 2rem;
}

#discount-date {
  width: 100%;
  padding: 0 5px 20px 5px;
  box-sizing: border-box;
  font-size: 2.6rem;
}

#discount-title {
  width: 100%;
  padding: 0 5px 20px 5px;
  box-sizing: border-box;
  font-size: 2.6rem;
  line-height: 2.6rem;
}

#discount-map {
  margin-top: 15px;
  height: 200px;
}



/* VIP */

#vip-main {
  background-image: url(/vip/img/vip-visual.jpg);
}

#vip-map {
  width: 100%; 
  min-width: 100%;
}

#vip-map img {
 width: 100%;
 height: auto; 
}

#vip-phone {
  min-width: 100%;
  border-top: 5px solid #e5e5e5;
  padding: 30px 0 40px 0;
}

#vip-phone-title {
  margin-bottom: 10px;
  font-size: 2.4rem;
}

#vip-phone-no {
  margin-bottom: 10px;
}

#vip-phone-no a {
  font-size: 2.4rem;
}

#vip-phone-note {
  font-size: 2rem;
}

#vip-photo,
#vip-photo .flickity-viewport {
  width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 100%;
}

#vip-photo img {
  min-width: 100%;
  height: 100%;
  min-height: 100%;
}



/* Access */

#access-main {
  background-image: url(/access/img/access-visual.jpg);
}

#access {
  width: 100%;
}

#access-address {
  margin: 20px 0 25px 0;
  font-size: 1.3rem;
  line-height: 2rem;
}

#access-map-link {
  width: 100%;
  margin-bottom: 30px;
}

#access-map-link a {
  padding: 10px;
  font-size: 2.6rem;
}

#access-map-gmap iframe {
  height: 250px;
}



/* Top - About */

#top-about-main {
  width: 100%;
  padding: 60px 0;
}

#top-about-main-inside {
  width: auto;
  margin: 0 auto;
  color: #fff;
}

#top-about-main h2 {
  margin-bottom: 20px;
  font-size: 2.6rem;
}

#top-about-lead {
  width: auto;
  padding: 0 10px 10px 10px;
  font-size: 1.3rem;
  line-height: 2rem;
}

#top-about-top-more a {
  width: 190px;
  font-size: 2.6rem;
}



/* Top - Video */

#top-video-list {
  padding-bottom: 30px;
}

#top-video-list > div {
  width: auto;
}



/* Top - Photo */

#top-photo-list {
  width: auto;
  margin: 0 auto;
}




/* Mix */

#djmix-main {
  background-image: url(/djmix/img/djmix-main.jpg);
}

#mix-list-frame {
  height: auto;
  overflow: hidden;
}

.mix-list-frame {
    margin-bottom: 20px;
}

#mix-list {
  min-width: 100%;
  padding: 30px 0 15px 0;
}

#mix-list h2 {
  padding: 10px 0;
  font-size: 2.6rem;
  letter-spacing: 2.6px;
}

.mix-entry {
  float: none;
  clear: both;
  width: 100%;
  height: auto;
  margin-bottom: 1px;
  padding: 0 10px 10px 10px;
}

.mix-entry:nth-child(odd) {
  margin-right: 0;
}

.mix-entry:nth-child(even) {
  margin-left: 0;
}

.mix-entry-date {
  height: auto;
  padding: 20px 0;
  font-size: 1.6rem;
  line-height: 2rem;
}

.mix-entry-title {
  height: auto;
  padding-bottom: 20px;
  font-size: 2.6rem;
  line-height: 2.6rem;
}

.mix-entry-category-list {
  height: auto;
  margin-bottom: 10px;
}

.mix-etnry-category {
  display: inline;
  height: auto;
  margin-right: 5px;
  padding: 2px 5px;
  font-size: 1rem;
}

.mix-entry-main {
  width: 100%;
  height: auto;
}

.mix-entry-sound {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.mix-entry-sound-player {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.mix-entry-sound-player iframe {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.mix-entry-sound-player p {
  display: none !important;
}

.mix-entry-check {
  width: 100%;
  height: 55px;
}

.mix-entry-check a {
  display: block;
  width: 245px;
  margin: 10px auto 0 auto;
  border-radius: 4px;
  padding: 5px 0;
  font-size: 2rem;
  font-family: Roboto;
  font-weight: 300;
  text-align: center;
  color: #fff;
}

.mix-entry-note {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 2.2rem;
  vertical-align: top;
}

#mix-list-top-more,
.mix-list-top-more {
  padding: 20px;
  background-color: #000;
}

#mix-lis-more-liveat a {
  width: 250px;
  font-size: 2.6rem;
}

#mix-list-top-more > a,
.mix-list-top-more > a {
  width: 190px;
  font-size: 2.6rem;
}



/* News */

#news-main {
  background-image: url(/news/img/news-visual.jpg);
}

#news-main-visual {
  width: 100%;
  height: 100%;
}

#news-main-visual .more-button > div {
  margin: 0 10px;
}

.news-entry-date {
  width: 100%;
  margin-bottom: 5px;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.news-entry-title {
  font-size: 1.6rem;
  line-height: 2rem;
}

#news-list-frame {
  display: none;
}

#news-list-frame-sp {
  display: block;
}

#news-main-inside {
  vertical-align: bottom;
}

.news-list-pc {
  display: none;
}

.news-list-sp {
  display: block;
}

#news-list {
  width: 100%;
  border: 10px solid #fff;
  box-sizing: border-box;
  padding: 10px;
  background-color: #000;
}

.news-entry {
  display: table;
  float: none;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  color: #fff;
}

.news-entry:last-of-type {
  margin-bottom: 0;
}

.news-entry-img {
  display: table-cell;
  float: none;
  width: 50%;
  height: auto;
  overflow: visible;
  background-size: cover;
  vertical-align: middle;
}

.news-entry-img img:hover {
  -webkit-transform:scale(1.0,1.0);
  -moz-transform:scale(1.0,1.0);
  -ms-transform:scale(1.0,1.0);
  -o-transform:scale(1.0,1.0);
  transform:scale(1.0,1.0);
  opacity: 0.5;
}

.news-entry-category {
  padding: 2px 10px;
}

.news-entry-text {
  display: table-cell;
  float: none;
  width: 50%;
  vertical-align: middle;
}

.news-entry-text-date {
  margin: 0 10px 5px 10px;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.news-entry-text-title {
  margin: 0 10px;
  font-size: 1.6rem;
  line-height: 2rem;
}

#news-list-top-more,
.news-list-top-more {
  padding: 15px 0 30px 0;
}

#news-list-top-more > a,
.news-list-top-more > a {
  width: 190px;
  font-size: 2.6rem;
}



/* News - Detail */

#news-detail-close-button {
  height: 60px;
  margin-top: 80px;
  text-align: right;
}

#news-detail-close-button img {
  position: relative;
  top: auto;
  right: auto;
  margin-right: 17px;
  width: 30px;
  height: auto;
}

#news-detail-visual {
  display: block;
  width: auto;
  height: auto;
  overflow: hidden;
}

#news-detail-pc-frame {
  display: block;
  margin-bottom: 0;
}

#news-detail-visual {
  display: block;
}

#news-detail-outline {
  display: block;
}

#news-detail {
  width: 100%;
}

#news-detail-date {
  height: auto;
  padding: 20px 0 15px 0;
  font-size: 2.6rem;
}

#news-detail-title {
  padding: 0 10px 30px 10px;
}

#news-detail-title h3 {
  font-size: 2.6rem;
  line-height: 2.6rem;
  word-break: break-all;
}

#news-detail-body {
  padding: 30px 10px 15px 10px;
  font-size: 1.3rem;
  line-height: 2rem;
}

#news-detail-body p {
  width: 100%;
  margin-bottom: 10px;
  box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 2rem;
  word-break: break-all;
}

#news-detail-related-link {
  width: auto;
  margin: 0 10px 0 10px;
  border-left: 3px solid #878787;
  padding-left: 5px;
  box-sizing: border-box;
}

#news-detail-related-link a {
  padding-bottom: 5px;
  font-size: 1.3rem;
}

#news-detail-ticket {
  padding: 30px 0;
}

#news-detail-ticket a {
  display: inline-block;
  width: auto;
  border-radius: 4px;
  padding: 7px 17px;
  font-size: 2.3rem;
}



/* Photo */

#photo-pc {
/*   display: none; */
}

#photo-sp {
  display: block;
}

.photo-entry {
  width: auto;
  height: auto;
}

.photo-entry-img {
  width: auto;
  height: auto;
}

.photo-entry-img:hover {
  -webkit-transform:scale(1.0,1.0);
  -moz-transform:scale(1.0,1.0);
  -ms-transform:scale(1.0,1.0);
  -o-transform:scale(1.0,1.0);
  transform:scale(1.0,1.0);  
  opacity: 0.5;
}

.photo-entry-date {
  margin-bottom: 5px;
  font-size: 1.3rem;
  line-height: 1.3rem;
}

.photo-entry-title-frame {
  bottom: 20px;
}

.photo-entry-title {
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.photo-entry-credit {
  font-size: 1.3rem;
}

#photo-list-top-more,
.photo-list-top-more {
  clear: both;
  padding: 20px 0 30px 0;
}

#photo-list-top-more > a,
.photo-list-top-more > a {
  width: 190px;
  font-size: 2.6rem;
}



/* Photo - Detail */

#photo-pc-title {
  display: none;
}

#photo-detail-close-button {
  height: 0;
  margin-top: 80px;
  text-align: right;
}

#photo-detail-close-button img {
  position: relative;
  top: auto;
  right: auto;
  margin-right: 17px;
  width: 30px;
  height: auto;
}

.photo-main-detail {
  margin-top: 60px;
}

#photo-main {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

#photo-main-visual {
  width: 100%;
  height: 100%;
}

#photo-main-visual a {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

#photo-main-visual h2 {
  position: relative;
  z-index: 2;
}

#photo-main-visual .more-button > div {
  margin: 0 20px;
}

#photo-main-visual-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: cover;
  opacity: 0.5;
}

#photo-entry-1st {
  display: none !important;
}

.photo-entry-null {
  display: none !important;
}


/* Video */

#video-main {
  background-image: url(/video/img/video-visual.jpg);
}

#video-list {
  padding: 10px;
}

.video-entry {
  width: 100%;
  margin-bottom: 15px;
}

.video-entry:nth-child(odd) {
  margin-right: 0;
}

.video-entry:nth-child(even) {
  margin-left: 0;
}

.video-entry-main {
  margin-bottom: 5px;
  padding-top: 56.25%;
}

.video-entry-title {
  margin-bottom: 5px;
  font-size: 2rem;
  line-height: 2rem;
}

.video-entry-note {
  font-size: 1rem;
  font-weight: 1.5rem;
}

.video-list-top-more {
  padding: 5px;
}

.video-list-top-more > a {
  width: 170px;
  font-size: 2.6rem;
}



/* About */

#about-main {
  background-image: url(/about/img/about-visual.jpg);
}

#about-top-more div {
  width: 140px;
}

#about-womb,
#about-company,
#about-history,
#about-achievements {
  width: 100%;
  min-width: 100%;
  padding: 0 20px 0 20px;
  box-sizing: border-box;
  background-color: #fff;
}

#about-womb {
  padding-top: 30px;
}

#about-womb h3 img {
  width: 90px;
  height: auto;
}

#about-womb h3,
#about-company h3,
#about-history h3,
#about-achievements h3 {
  margin-bottom: 30px;
  font-size: 2.6rem;
}

#about-womb p {
  width: auto;
  padding-bottom: 30px;
  font-size: 1.3rem;
  line-height: 2rem;
}

#about-company,
#about-history {
  padding-bottom: 30px;
}

#about-company table,
#about-history table {
  width: 100%;
  box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 2rem;
}

#about-company th,
#about-history th {
  width: 70px;
  padding-bottom: 10px;
}

#about-company td,
#about-history td {
  padding-bottom: 10px;
}

#about-achievements {
  padding-bottom: 30px;
}

#about-achievements table {
  width: 100%;
}

#about-achievements td {
  width: 50%;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  vertical-align: top;
}

#about-achievements td strong {
  font-weight: 700;
}

#about-map {
  width: 100%;
  background-color: #fff;
}

#about-map iframe {
  height: 230px;
}

#about-map h3 {
  padding: 20px 20px;
  font-size: 2.5rem;
  text-align: left;
}

#about-map-note {
  padding: 0 20px 20px 20px;
  font-size: 1.3rem;
  line-height: 2rem;
  text-align: left;
}

#about-map-address {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #272727;
}

#about-map-address address {
  margin-bottom: 20px;
  font-size: 1.3rem;
  text-align: left;
  color: #fff;
}

#about-map-address a {
  width: 130px;
  font-size: 2.5rem;
}

#about-group {
  width: 100%;
  background-color: #fff;
}

#about-group h3 {
  padding: 15px 0;
  font-size: 2.6rem;
}

.about-gruop-entry {
  display: block;
  min-width: 100%;
  margin-top: 0;
  padding-bottom: 5px;
}

.about-gruop-entry:last-of-type {
  padding-bottom: 0;
}

.about-group-entry-visual {
  display: block;
  width: 100%;
  min-width: 100%;
}

.about-group-entry-visual .flickity-viewport {
  width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 100%;
}

.about-group-entry-visual img {
  width: auto;
  height: 100%;
}

.about-group-entry-detail {
  display: block;
  padding: 0;
}

.about-group-entry-lead {
  padding-top: 20px;
}

.about-group-entry-detail h4 {
  margin: 0 20px 5px 20px;
  font-size: 2.6rem;
}

.about-group-entry-category {
  margin: 0 20px 8px 20px;
  font-size: 1.3rem;
}

.about-group-entry-detail-text {
  padding: 0 20px 20px 20px;
  font-size: 1.3rem;
  line-height: 2rem;
}

.about-group-entry-contact {
  padding: 20px;
  background-color: #272727;
}

.about-group-entry-contact p {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 2rem;
}

.about-group-entry-contact-link {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
}

.about-group-entry-contact-link div {
  display: table-cell;
  width: auto;
  padding-right: 10px;
}

.about-group-entry-contact-link div:last-of-type {
  padding-right: 0;
}

.about-group-entry-contact-link div:nth-child(2) {
  text-align: center;
}

.about-group-entry-contact-link div div {
  display: inline-block;
  width: 100%;
}

.about-group-entry-contact-link div div a {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  font-size: 2rem;
}

/* Rental */

#rental-main-link-pc {
  display: none;
}

#rental-main {
  background-image: url(/rental/img/rental-visual.jpg);
}

#rental-main-link {
  width: 265px;
  height: 35px;
  margin: 10px auto 0 auto;
}

#rental-main-link > div {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}

#rental-main-link > div:nth-child(1) {
  padding-right: 7px;
}

#rental-main-link > div:nth-child(2) {
  padding-left: 7px;
}

#rental-main-link a {
  display: table-cell;
  width: 125px;
  height: 35px;
  border: none;
  padding-top: 11px;
  box-sizing: border-box;
  background-color: #d9221e;
  font-size: 1.5rem;
  line-height: 1.5rem;
  vertical-align: top;
  color: #fff;
}

#rental-main-link > div:nth-child(2) a {
  padding-top: 10px;
  font-size: 1.8rem;
  line-height: 1.5rem;
}

.rental-entry {
  min-width: 100%;
  height: auto;
  border: 5px solid #000;
}

.rental-entry-inside {
  display: table;
  width: 100%;
}

.rental-entry-img {
  display: table-cell;
  width: 50%;
  border: none;
  background-size: cover;
  background-position: top center;
  vertical-align: middle;
}

.rental-entry-img img {
  width: auto;
  height: auto;
}

.rental-entry-detail {
  display: table-cell;
  width: 50%;
  padding-bottom: 10px;
  vertical-align: middle;
}

.rental-entry-detail h3 {
  padding: 5px 10px 2px 10px;
  font-size: 2rem;
  line-height: 2rem;
}

.rental-entry-detail-category {
  padding: 0 10px 5px 10px;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.rental-entry-detail-note {
  padding: 0 10px 0 10px;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.rental-entry-detail-link {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  margin-bottom: 1px;
  text-align: center;
}

.rental-entry-detail-link div {
  float: none;
  width: 125px;
  margin: 0 auto;
  padding: 0;
  font-size: 1.4rem;
}

.rental-entry-price {
  padding: 15px;
}

.rental-entry-price-inside {
  display: table;
  width: 100%;
  margin: 0 auto;
}

.rental-entry-price-inside > div {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.rental-entry-price-menu {
  width: auto;
}

.rental-entry-price-menu h4 {
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.rental-entry-price-menu-note {
  margin-bottom: 7px;
  font-size: 1rem;
}

.rental-entry-price-menu-course {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 2rem;
}

.rental-entry-price-menu-sum {
  margin-bottom: 5px;
  border-radius: 2px;
  padding: 3px;
  font-size: 1.2rem;
}

.rental-entry-price-plus {
  font-size: 2rem;
}

.rental-entry-price-option {
  border-radius: 2px;
  padding: 0 5px;
  font-size: 1rem;
}

.rental-entry-price-option strong {
  font-size: 1.5rem;
}

.rental-entry-detail-sponsor {
  padding: 5px 10px 0 10px;
}

.rental-entry-detail-sponsor img {
  width: auto;
  height: 15px;
}

#rental-floor-guide {
  overflow: hidden;
}

#rental-floor-guide h3 {
  padding: 15px 0;
  font-size: 2.4rem;
}

.rental-floor-guide-entry {
  width: 100%;
}

.rental-floor-guide-text {
  margin-bottom: 5px;
}

.rental-floor-guide-title {
  padding: 10px 15px;
  font-size: 2rem;
}

.rental-floor-guide-size {
  padding: 0 15px 10px 15px;
  font-size: 1rem;
}

#rental-equipment-list {
  padding: 0 10px 15px 10px;
}

#rental-equipment-list h3 {
  padding: 15px 0;
  font-size: 2.4rem;
}

#rental-equipment-list h4 {
  padding: 0 0 15px 0;
  font-size: 2.4rem;
}

#rental-equipment-list table {
  width: 90%;
  margin: 0 auto 15px auto;
  box-sizing: border-box;
}

#rental-equipment-list th {
  padding: 5px;
  font-size: 1.3rem;
  line-height: 1.6rem;
}

#rental-equipment-list td {
  padding: 5px;
  font-size: 1.3rem;
  line-height: 1.6rem;
}

.rental-table-5 tr:last-of-type th {
  width: 30%;
}

.rental-table-5 tr:last-of-type td:nth-of-type(1) {
  width: 20%;
}

.rental-table-5 tr:last-of-type td:nth-of-type(3) {
  width: 10%;
}

.rental-table-5 tr:last-of-type td:last-of-type {
  width: 20%;
}

.rental-table-4 tr:last-of-type th {
  width: 30%;
}

.rental-table-4 tr:last-of-type td:nth-child(1) {
  width: 20%;
}

.rental-table-4 tr:last-of-type td:nth-child(2) {
  width: 20%;
}

.rental-table-4 tr:last-of-type td:last-of-type {
  width: 10%;
}

.rental-table-3 th {
  width: 30%;
}

.rental-table-3 td:last-of-type {
  width: 10%;
}

#rental-dl-link {
  padding: 15px 0;
  background-color: #272727;
}

#rental-dl-link-inside {
  width: 275px;
}

#rental-dl-link-inside a {
  width: 125px;
  height: 35px;
  padding-top: 11px;
  font-size: 1.5rem;
  line-height: 1.5rem;
  vertical-align: top;
}

#rental-dl-link-inside > div:nth-child(2) a {
  padding-top: 10px;
  font-size: 1.8rem;
  line-height: 1.5rem;
}



/* Member */

#member-main {
  background-image: url(/members/img/member-visual.jpg);
}

.member-regist {
  width: 100%;
  border-top: solid 5px #e5e5e5;
  padding: 25px 10px;
}

.member-regist h3 {
  margin-bottom: 10px;
  font-size: 3.9rem;
}

.member-regist-copy {
  margin-bottom: 17px;
  font-size: 1.3rem;
  line-height: 2rem;
}

.member-regist-lead {
  width: auto;
  margin-bottom: 15px;
  font-size: 1.3rem;
  line-height: 2rem;
}

.member-regist .more-button a {
  width: 125px;
  font-size: 2rem;
}

#member-qa-list {
  width: 100%;
  margin-top: 5px;
  padding: 30px 10px 10px 10px;
}

#member-qa-list table {
  width: 100%;
  margin: 0 auto 15px auto;
}

#member-qa-list th {
  padding: 0 7px 7px 0;
  font-size: 1.5rem;
}

#member-qa-list td {
  padding-bottom: 7px;
  font-size: 1.3rem;
  line-height: 2rem;
}

#member-qa-list tr:nth-child(even) th {
  padding-bottom: 25px;
}

#member-qa-list tr:nth-child(even) td {
  padding-bottom: 25px;
}

#member-note {
  width: 100%;
  padding: 10px;
}

#member-note p {
  width: auto;
  font-size: 1.3rem;
  line-height: 2rem;
}



/* FAQ */

#faq-main {
  background-image: url(/faq/img/faq-visual.jpg);
}

#faq-qa-list {
  width: 100%;
  margin-top: 5px;
  padding: 30px 10px 10px 10px;
  box-sizing: border-box;
  background-color: #fff;
}

#faq-qa-list table {
  width: 100%;
  box-sizing: border-box;
}

#faq-qa-list th {
  padding: 0 7px 7px 0;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: Roboto;
  vertical-align: top;
}

#faq-qa-list td {
  padding-bottom: 7px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 2rem;
  vertical-align: top;
}

#faq-qa-list tr:nth-child(even) th {
  padding-bottom: 30px;
}

#faq-qa-list tr:nth-child(even) td {
  padding-bottom: 30px;
  font-weight: 300;
}

#faq-qa-list td a {
  color: #000;
}



/* Contact */

#contact-menu-pc {
  display: none;
}

.contact-main1 {
  background-image: url(/contact/img/contact-visual1.jpg);
}

.contact-main2 {
  background-image: url(/contact/img/contact-visual2.jpg);
}

.contact-main3 {
  background-image: url(/contact/img/contact-visual3.jpg);
}

#contact-menu {
  width: 100%;
  padding-top: 10px;
}

#contact-main {
  text-align: center;
}

#contact-form {
  width: 100%;
  margin-top: 10px;
  padding: 20px 15px 20px 15px;
  box-sizing: border-box;
  background-color: #fff;
}

.contact-form-title {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 300;
}

#contact-phone {
  width: 100%;
  padding-top: 20px;
  background-color: #fff;
}

.contact-phone-title {
  margin-bottom: 7px;
  font-size: 1.3rem;
  font-family: Roboto;
  font-weight: 300;
  text-align: center;
}

.contact-phone-no {
  padding-bottom: 25px;
  text-align: center;
}

.contact-phone-no a {
  font-size: 2rem;
  font-family: Roboto;
  font-weight: 100;
  color: #00ffff;
}

#contact-note {
  padding: 25px 0 40px 0;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2rem;
  text-align: center;
}



/* Terms & Policy */

#terms-main {
  background-image: url(/terms/img/terms-visual.jpg);
}

#terms-terms-list {
  width: 100%;
  margin: 0;
  padding: 30px 0 20px 0;
  box-sizing: border-box;
  background-color: #fff;
}

#terms-terms-list h3 {
  width: auto;
  margin: 0;
  padding: 0 10px 30px 10px;
  font-size: 2rem;
  font-weight: 300;
}

#terms-terms-list p {
  width: auto;
  padding: 0 10px 10px 10px;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2rem;
}

#terms-terms-list p strong {
  font-weight: 700;
}