/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #fff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #111;
  --p-color:                      #111;
  --border-color:                 #7fffd4;
  --link-hover-color:             #ccc;

  --body-font-family: 'Noto Sans JP', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 24px;
  --h4-font-size:                 24px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --btn-font-size:                16px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
  --font-weight-exbold:           900;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  line-height: 1.9;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background-color: var(--dark-color);
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand img {
  max-width: 35%;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 12px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link:hover {
  color: #bbb;
}

.navbar-nav .nav-link.active {
  color: #fff;
}


.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


nav .container-fluid {
  position: relative;
}

nav .container-fluid .navbar-toggler {
  position: absolute;
  right: 15px;
  top: 10px;
}

.container60-60 {
  padding: 60px 1.5rem 60px;
}

.container80-100 {
  padding: 80px 1.5rem 100px;
}

.container80-0 {
  padding: 80px 1.5rem 0;
}

.container120-100 {
  padding: 120px 1.5rem 100px;
}

.container img {
  width: 100%;
}

.container,
.container-fluid {
  overflow: hidden;
}


/*---------------------------------------
  FOOTER              
-----------------------------------------*/
.footer-top {
  background: #e7e7e7;
  padding: 50px 0;
}

.footer-nav {
  text-align: center;
}

.footer-nav li {
  list-style: none;
  display: inline-block;
}

.footer-nav a {
  display: inline-block;
  color: #111;
  font-size: 14px;
  position: relative;
  padding: 15px 15px 0;
}

.footer-nav a:hover {
  color: #bbb;
}


.footer-bottom {
  background: #111;
  text-align: center;
  padding: 30px 0 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: #e1e1e1;
}

/*---------------------------------------
  トップページ        
-----------------------------------------*/

/*----　メインイメージ　----*/
.home-mainimg-pc {
  margin: 60px 0 0;
  padding: 0;
}
.home-mainimg-sp {
  margin-top:0;
}
.home-mainimg-src {
  width: 100%;
  height: 100vh;
}

.home-mainimg-sns {
  position: absolute;
  z-index: 100;
  display: block;
  top: 50%;
  right: 30PX;  
}
.home-mainimg-sns i {
  font-size: 32px;
  color: #fff !important;
}

.home-mainimg-logo {
  position: absolute;
  bottom: 30px;
  right: 50px;
  text-align: right;
}
.home-mainimg-logo img {
  max-width: 70%;
}

.home-class {
  background: url(../images/top_class_back.jpg) no-repeat right top #000;

}

.home-class h2,
.home-class h3,
.home-class p {
  color: #fff;
}

.home-other-menu {
  background-color: #e7e7e7;
}

.googleCalendar iframe {
  width: 100%;
  height: 600px;
  overflow-x: scroll;
  margin: 50px 0 30px;
}

.top-news-list-wrap {
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 1px dotted #ccc;
}

.top-news-list-date span{
  display: inline-block;
  background-color:#111;
  color: #fff;
  padding: 3px 5px 5px;
}

.top-news-list-title a {
  color: #111;
}

.top-news-list-title a:hover {
  color: #999;
}


.exp-bnr a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.top-btm-contact {
  background: #111;
}

.top-btm-contact .container-fluid {
  margin: 0;
  padding: 0;
}

.top-btm-contact h2,
.top-btm-contact h3,
.top-btm-contact p {
  color: #fff;
}

.top-btm-contact h3 {
  font-size: 30px !important;
  font-weight: bold !important;
}

.top-btm-contact .contact-tel {
  font-size: 30px;
  font-weight: 700;
}

.top-btm-contact .contact-tel a {
  color: #fff;
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  }
  .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  }

  .btn-white a {
    background-color: #fff;
    width: 100%;
    height: 70px;
    color: #111;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 18px;
  }
  .btn-white a:hover {
    background-color: #444;
    color: #fff;
  } 

  .btn-black a {
    background-color: #111;
    width: 100%;
    height: 70px;
    color: #fff;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 18px;
  }
  .btn-black a:hover {
    background-color: #444;
  } 

  .btn-white i,
  .btn-black i {
    margin-right: 8px;
  }






/*---------------------------------------
  下層ページ共通       
-----------------------------------------*/
.pages-contents-wrapper,
.single-contents-wrapper,
.single-archive-contents-wrapper {
  margin-top: 60px;
}

/*---------------------------------------
  クラス        
-----------------------------------------*/
.class .class-intro {
  padding-top: 50px;
}

.class h4 {
  background: #111;
  color: #fff;
  padding: 20px 15px;
  margin-bottom: 40px;
}

.class-price {
  background: #e7e7e7;
}

.class-price-table {
  width: 100%;
  border-left: #bbb 1px solid;
  border-top: #bbb 1px solid;
  margin-top: 50px;
}

.class-price-table td {
  width: 100%;
  text-align: center;
  border-right: #bbb 1px solid;
  border-bottom: #bbb 1px solid;
  padding: 20px 0;
  background-color: #fff;
}

.class-price-table td.class-price-table-head {
  background-color: #111;
  color: #fff;
  width: 30%;
}
.class-price-table td.class-price-table-cat {
  width: 20%;
}
.class-price-table td.class-price-table-price {
  width: 50%;
}

.class-price-table td.class-price-table-price span,
.class-price-table td.class-price-table-in span  {
  font-size: 28px;
  font-weight: 700;
  margin: 0 5px;
}

@media(max-width:500px){
  .class-price-table {
    margin-top: 30px;
  }
  .class-price-table td.class-price-table-head {
    display: none;
  }
  .class-price-table td.class-price-table-cat  {
    white-space: nowrap;
  }
  .class-price-table td.class-price-table-price span,
  .class-price-table td.class-price-table-in span {
    font-size: 20px;
  }
}


/*---------------------------------------
  トレーナー      
-----------------------------------------*/

.instructor-profile {
  margin-top: 50px;
  padding-bottom: 60px;
}
.instructor-profile-name {
  border-left: 5px solid #111;
  display: inline-block;
}
.instructor-profile-name h4 {
  background-color: transparent;
  padding: 5px 0 5px 20px;
  margin: 0;
  color: #111;
  font-size: 32px;
}

.instructor-profile ul {
  padding:25px 0 10px;
}

.instructor-profile-name p {
  padding: 0px 0px 5px 20px;
  margin: 0;
}

.instructor-profile ul li {
  list-style: none;
  padding-bottom: 5px;
}

.instructor-message h5 {
  border-left: 5px solid #111;
  display: inline-block;
  padding: 5px 0 5px 20px;
}

@media(max-width:500px){
  .instructor-profile-name h4 {
    font-size: 28px;
  }

  .instructor-profile-name h5 {
    padding: 10px 0 10px 20px;
  }
}


/*---------------------------------------
  スケジュール      
-----------------------------------------*/
.schedule-table {
  width: 100%;
  margin-top: 50px;
}

.schedule-table th,
.schedule-table td {
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  padding: 20px 0;
  border-right: 2px #fff solid ;
  border-bottom: 2px #fff solid;
}

.schedule-table td span {
  font-size: 16px;
  font-weight: 700;
}

.schedule-table th {
  background-color: #111;
  color: #fff;
  padding: 10px 0;
}

.schedule-table td.schedule-table-time {
  border-bottom: 1px solid #dadada;
}

.schedule-table th.schedule-table-date-t {
  width: 5.5%;
}
.schedule-table th.schedule-table-thdate {
  width: 13.5%;
}


.schedule-table-close {
  background-color: #e9e9e9;
}
.schedule-table-menu-fit {
  background-color: #f9d9d1;
}
.schedule-table-menu-circuit {
  background-color: #d4ecf2;
}
.schedule-table-freematt {
  background-color: #f0d9e7;
}
.schedule-table-menu-freegrap {
  background-color: #fffddc;
}
.schedule-table-menu-grap {
  background-color: #d4ecf2;
}
.schedule-table-menu-mmagrap {
  background-color: #bfb5c4;
}
.schedule-table-menu-mmastrikebas {
  background-color: #fff9b0;
}
.schedule-table-menu-mmabas {
  background-color: #f1bad0;
}
.schedule-table-menu-mmastrikeadv {
  background-color: #fcd7a2;
}
.schedule-table-menu-grapplusmma {
  background-color: #a3bee1;
}
.schedule-table-menu-strikeplusmma {
  background-color: #a4d6d4;
}
.schedule-table-menu-mmaadv {
  background-color: #f4b3b2;
}
.schedule-table-menu-open {
  background-color: #d4ead9;
}




.schedule_toggle_wrap {
  padding-top: 30px;
}
.toggle_contents {
	border: 2px solid #d9d9d9;
}

.toggle_contents ul {
  padding: 20px 25px 0px 25px;
}

.toggle_contents li {
  list-style: none;
  padding: 15px;
}
.toggle_title {
	position: relative;
	padding: 15px;
	cursor: pointer;
	font-size: 18px;
  font-weight: 400;
	text-align: left;
	line-height: 1.4;
}
.toggle_title_jp {
  font-size: 14px;
  margin-left: 10px;
}
.toggle_btn {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background: #111;
	display: block;
	width: 24px;
	height: 24px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 50%;
}
.toggle_btn:before, .toggle_btn:after {
	display: block;
	content: '';
	background-color: #fff;
	position: absolute;
	width: 10px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.toggle_btn:before {
	width: 2px;
	height: 10px;
}
p.schedule_sp_time {
  margin: 0;
}
p.scedule_sp_title {
  padding: 5px 0 10px 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.toggle_title.selected .toggle_btn:before {
	content: normal;
}
.toggle_contents dd {
	display: none;
}





/*---------------------------------------
  ニュース       
-----------------------------------------*/
.container-single-post {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.single-post-head {
  border-bottom: 1px dotted #999;
  margin-bottom: 50px;
}

.single-post-head h1 {
  font-size: 50px !important;
}

.single-post-head span {
  display: inline-block;
  background-color: #111;
  color: #fff;
  padding: 2px 5px 4px;
  font-size: 13px;
}

.single-post-head img {
  max-width: 100%;
  height: auto;
}
@media(max-width:500px){
  .single-post-head h1 {
    font-size: 32px !important;
  }
}





/*---------------------------------------
  ニュース一覧    
-----------------------------------------*/
.news_list {
  padding-top: 50px;
}

.news_list_pic img {
  max-width: 100%;
}
.news_list_pic a:hover {
  opacity: 0.7;
}
.news_list_headline p{
  padding-top: 15px;
}
.news_list_headline p a {
  color: #111;
}
.news_list_headline p a:hover {
  color: #888;
}
.news_list_headline span {
  font-display: inline-block;
  background-color: #111;
  color: #fff;
  font-size: 11px;
  padding: 5px;
}
@media(max-width:500px){
  .news_list {
    padding-top: 30px;
  }
  .news_list_headline p{
    padding-top: 10px;
    line-height: 1.2em;
  }
  .news_list_headline span {
    font-size: 10px;
    padding: 3px 5px 5px;
  }
}




/*---------------------------------------
  お問い合わせ       
-----------------------------------------*/
/*Contact Form 7カスタマイズ*/
/*スマホContact Form 7カスタマイズ*/
@media(max-width:500px){
  .inquiry th,.inquiry td {
   display:block!important;
   width:100%!important;
   border-top:none!important;
   -webkit-box-sizing:border-box!important;
   -moz-box-sizing:border-box!important;
   box-sizing:border-box!important;
   padding: 10px 20px 0;
  }
  .inquiry tr:first-child th{
   border-top:1px solid #d7d7d7!important;
  }
  /* 必須・任意のサイズ調整 */	
  .inquiry .haveto,.inquiry .any {	
  font-size:10px;
  }}

  .inquiry  {
    width: 100%;
    margin-top: 50px;
  }
  /*見出し欄*/
  .inquiry th{
   text-align:left;
   font-size:14px;
   color:#444;
   padding-right:5px;
   width:30%;
   background:#f7f7f7;
   border:solid 1px #d7d7d7;
   padding: 20px 20px 5px !important;
  }
  /*通常欄*/
  .inquiry td{
   font-size:13px;
   border:solid 1px #d7d7d7;
   padding: 20px 20px 5px !important;

  }
  /*横の行とテーブル全体*/
  .entry-content .inquiry tr,.entry-content table{
    width: 100%;
   border:solid 1px #d7d7d7;	
  }
  /*必須の調整*/
  .haveto{
   font-size:7px;
   padding:5px;
   background:#ff9393;
   color:#fff;
   border-radius:2px;
   margin-right:5px;
   position:relative;
   bottom:1px;
  }
  /*任意の調整*/
  .any{
   font-size:7px;
   padding:5px;
   background:#93c9ff;
   color:#fff;
   border-radius:2px;
   margin-right:5px;
   position:relative;
   bottom:1px;
  }
  /*ラジオボタンを縦並び指定*/
  .verticallist .wpcf7-list-item{
   display:block;
  }
  /*送信ボタンのデザイン変更*/
  #formbtn{
   display: block;
   padding:0.5em 30px;
   margin:30px auto 0;
   background:#009a44;
   color:#fff;
   font-size:18px;
   font-weight:bold;	 
   border-radius:2px;
   border: none;
  }
  /*送信ボタンマウスホバー時*/
  #formbtn:hover{
   background:#61bb89;
  }

  /* コンタクトフォーム横幅調節 */
.wpcf7 input[name="your-name"] { /* 名前入力欄 */
  width: 100%;
 }
 .wpcf7 input[name="your-email"] { /* メール入力欄 */
  width: 100%;
 }
 .wpcf7 input[name="your-tel"] { /* タイトル入力欄 */
  width: 100%;
 }
 .wpcf7 textarea[name="your-message"] { /* 本文入力欄 */
  width: 100%;
 }






/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 18px;
  }
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.home-mainimg-pc { 
  display: block !important;
  background-image: url(../images/top_main_img2.jpg);
  background-size: cover;
  background-position: center;
  min-height:100vh; 
}
.home-mainimg-sp { display: none !important; }
.view-pc { display: block !important; }
.view-sp { display: none !important; }

@media only screen and (max-width: 991px) {
  .top-btm-contact-txt {
    padding: 30px 45px !important;
    text-align: center;
  }
}
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    h3 {
      font-size: 18px !important;
    }
    .home-mainimg-pc,
    .view-pc { display: none !important; }
    .home-mainimg-sp { 
      display: block !important;
      background-image: url("../images/top_main_img_sp.jpg");
      background-size: cover;
      background-position: center;
      min-height:100vh;
    }
    .view-sp { display: block !important; }
    .home-mainimg-sns {
      position: absolute;
      z-index: 100;
      bottom: 30px;
      top: auto;
      left: 50%;
      transform: translate(-50%, 0);
      text-align: center;
    }
    .home-mainimg-sns i {
      font-size: 32px;
      color: #fff !important;
    }
    
    .btn-white a,
    .btn-black a {
      height: 55px;
      font-size: 14px !important;
    }
    .home-mainimg-logo {
      position: absolute;
      bottom: 100px;
      left: auto;
      right: auto;
      text-align: center;
    }
    .home-mainimg-logo img {
      max-width: 50%;
    }

    .container60-60 {
      padding: 50px 1.5rem 50px;
    }
    
    .container80-100 {
      padding: 50px 1.5rem 50px;
    }
    
    .container120-100 {
      padding: 50px 1.5rem 50px;
    }
}