/*

TemplateMo 583 Festava Live

https://templatemo.com/tm-583-festava-live

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;

  --v_header-color_mw:            #F8F8F8; /* VAICE */
  --v_header-color_mb:            #0F0F0F; /* VAICE */
  --v_header-color_yellow:        #f0e68c; /* VAICE */
  --v_section-bg-color:           #000000; /* VAICE */

  --v_sns_icon-color:             #000000; /* VAICE */
  --v_sns_icon_hover-color:       #121212; /* VAICE */
  --v_sns-icon-color_yellow:      #ffd700; /* VAICE */
  --v_sns-icon-color_glay:        #696969; /* VAICE */
  --v_sns-icon-color_blue:        #b0c4de; /* VAICE */

  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;

  --v_custom-btn-bg-color:        #008000;
  --v_custom-btn-bg-hover-color:  #006400;

  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --v_glay-color:                 #f8f8ff;

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;
  --v_header_sns_icon-size:       18px; /* VAICE */
  --v_navbar_icon-size:           16px; /* VAICE */

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

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


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

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


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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  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);
}

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; /* VAICE */
}

.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;

  font-size: 1.0rem; /* VAICE */
  
}

.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);
}

/*---------------------------------------
  v_CUSTOM BUTTON               
-----------------------------------------*/
.v_custom-btn {
  background: var(--v_custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--v_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;

  font-size: 1.4rem; /* VAICE */

}

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

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

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

.v_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(--v_header-color_mb);
  /* background-color: var(--primary-color); VAICE Yellow Back Change */
  padding-top: 12px;
  padding-bottom: 12px;
}


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

/* VAICE スクロール後のメニューバーの背景色 */
.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  /*
  width: clamp(10px, 4vw, 20px);
  height: clamp(10px, 4vw, 20px);
*/
  font-size: var(--v_navbar_icon-size);
  /* font-size: var(--h5-font-size); VAICE */
  font-weight: var(--font-weight-bold);
}

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

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

.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.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

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


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.10; /* VAICE 0.45; MOVIE Brightness*/
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

/*---------------------------------------
  ABOUT VAICE under control.              
-----------------------------------------*/
.about-section {
  background-image: url('../v_images/img_bg_001.jpg');
  background-color: #704010;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 8px; /* VAICE INIT=20px */
  padding: 16px; /* VACE INIT=35px */
}


/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url('../v_images/img_bg_002.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-section {
  background-color: #ffffff; /* VAICE INIT=#F8F8F8 */
}

.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;


}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1; /* VAICE */
}

.artists-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);

  margin: 8px; /* VAUCE INIT=20px */
  padding: 16px; /* VAUCE INIT=35px */

  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0; /* VAICE */
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;

  font-size: 1.0rem;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}


/*---------------------------------------
  v_ARTISTS VAICE             
-----------------------------------------*/
.v_artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.v_artists-image {

/*  border-radius: var(--border-radius-medium); VAICE カタログ画像の切り抜き対応 */

  display: block;
  width: 100%;
}

.v_artists-image_plate { /* VAICE */

  border-radius: var(--border-radius-medium); /* VAICE カタログ画像の切り抜き対応 */
  display: block;
  width: 95%;

  margin-left: auto;
  margin-right: auto;
}

.v_products-image {

/*  border-radius: var(--border-radius-medium); VAICE カタログ画像の切り抜き対応 */

  display: block;
  width: 75%;

  margin-left: auto;
  margin-right: auto;

}

.v_artists-image_plate_2 { /* VAICE */

  border-radius: var(--border-radius-medium); /* VAICE カタログ画像の切り抜き対応 */
  display: block;
  width: 90%;

    margin-left: auto;
    margin-right: auto;

}

.v_artists-image_plate_3 { /* VAICE */

  border-radius: var(--border-radius-medium); /* VAICE カタログ画像の切り抜き対応 */
  display: block;
  width: 93%;

    margin-left: auto;
    margin-right: auto;

}

.v_artists-image_parallel { /* VAICE */
  border-radius: 10px;
  margin-top: 20px;
  display: block;
  width: 100%;

}

.v_artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1; /* VAICE */
}

.v_artists-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0; /* VAICE */
}

.v_artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.v_artists-hover p a {
  color: var(--secondary-color);
}

.v_artists-hover p a:hover {
  color: var(--white-color);
}

.v_artists-hover hr {
  margin: 1.5rem 0;
}

/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-image: url('../v_images/img_bg_002.jpg');
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url('../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg');
}

.schedule-table .rock-background-image {
  background-image: url('../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg');
}

.schedule-table .country-background-image {
  background-image: url('../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg');
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}


/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

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

/*---------------------------------------
  v_PRICING VAICE              
-----------------------------------------*/
.v_pricing-thumb {
  border: 2px dotted var(--v_glay-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;

  background-color: #ffffff;
  /* background-color: #fffafa; */
}

.v_pricing-thumb_2 {
  border: 2px dotted var(--v_glay-color);
  border-radius: 20px;
  position: relative;
  padding: 50px;

  background-color: #000000;
}

.v_pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.v_pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.v_pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.v_pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.v_pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.v_pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

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

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: var(--v_custom-btn-bg-hover-color);
  /* background-color: var(--secondary-color); */

  /* background-image: url('../images/nainoa-shizuru-NcdG9mK3PBY-unsplash.jpg'); */
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
    text-align: center;

}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--v_header-color_mb);
  /* background: var(--secondary-color); VAICE */

  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--v_header_sns_icon-size);
  /* font-size: var(--copyright-font-size); VAICE */

  display: block;
  margin-right: 10px;
  text-align: center;
  width: 36px; /* VAICE INIT=35px */
  height: 36px; /* VAICE INIT=35px */
  line-height: 35px; /* VAICE INIT=36px */
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--v_sns-icon-color_glay);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  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;
  }

  .v_pricing-thumb {  /* VAICE */
    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: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}
/* -------------------------------------------------------- */

/*---------------------------------------
  VAICE ORIGINAL               
-----------------------------------------*/
.v_tb-wrap{
  width:100%;
  overflow-x:scroll;
}
table{
  border-collapse: collapse;
  width: 600px;
}
.v_tb01 th,
.v_tb01 td{
  padding: 6px;
  /* border: solid 1px #ccc; */
  border: none;
  text-align:left;
  box-sizing:border-box;
}
.v_tb01 th {
  background: #ff7bac;
  color: #fff;
}

/*----------------------------------------
 VAICE CSS
 -----------------------------------------*/ 
span.v_span_title {
display:block;
  width: 95%;
  height: 42px;

  margin-left:10px;
  padding:6px 12px;

  font-size:1.10em;

  background:#000000;
  color:#ffffff;
  font-weight:bold;

}

span.v_span_catch {
  display:inline;
  width: 100%;
  height: 58px;

  margin-left:8px;
  padding:10px 10px;

  font-size:1.5em;

  background:#28282b;
  color:#F5F5F5;
  font-weight:bold;

}

span.v_span_under {
display:block;
  width: 95%;
  height: 42px;

  margin-left:10px;
  padding:6px 12px;

  font-size:1.05em;

  background:#008000;
  color:#F5F5F5;
  font-weight:bold;

  text-align: right;

}

span.v_span_sales {
display:block;
  width: 96%;
  height: 60px;

  padding:4px 10px;
  margin: 0 auto;

  font-size:1.1em;
  text-align: center;

  background:#111111;
  color:#F4F4F4;
  font-weight:bold;

}

span.v_span_title2 {
display:block;
  width: 100%;
  height: 42px;

  margin-left:10px;
  padding:6px 12px;

  font-size:1.10em;

  background:#000000;
  color:#ffffff;
  font-weight:bold;

}

span.v_span_under2 {
display:block;
  width: 95%;
  height: 42px;

  margin-left:10px;
  padding:6px 12px;

  font-size:1.05em;

  background:#ffffff;
  color:#333333;
  font-weight:bold;

  text-align: right;

}

v_TextFit {
  display: inline-flex;
  align-items: flex-start;
  height: 40px; /* 1rem */
  line-height: 1.18rem;

}
 
.v_BackColor {
  background: #b5e9ee;
}

P.v_blocktext {
    margin-left: auto;
    margin-right: auto;
    width: 40em;
    font-size:1.2em;

    text-align: center;

  }

/* Open Button Styling 20260720 FORM upon monitor*/
.open-btn {
  padding: 8px 18px;
  /* padding: 12px 24px;
  /* background-color: #007bff; /* #007bff */ 
  /* color: white; */
  border: none;
  border-radius: 12px;
  /* border-radius: 6px; */
  cursor: pointer;
  font-size: 16px;
  /* font-size: 16px; */
}

/* Full-Screen Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Active State for Overlay */
.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Popup Card Container */
.popup-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  
  /* Key Fluid Design Rules */
  width: 90%; 
  max-width: 480px; 
  max-height: 90vh;
  overflow-y: auto; 
  
  /* Micro-animation */
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

/* Active State Animation */
.popup-overlay.active .popup-card {
  transform: scale(1);
}

/* Close Window Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
}

/* Form Spacing and Layout */
.popup-card h2 {
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}

/* Fluid Input Fields */
.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px; /* 16px prevents iOS browser auto-zooming on focus */
}

/* Action Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #218838;
}

/* Open PDF File upon monitor responsive 20260720 */
.pdf-viewer-container {
  position: relative;
  width: 100%;
  height: 100vh; /* 画面の高さの80% 80vh; */
  overflow: hidden;
}

/* iframeの設定 */
.pdf-viewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pds-container {
  width: 100%;
  /* aspect-ratio: 16 / 9; 縦横比を 16:9 に固定 */
}

.pdf-container iframe {
  width: 100%;
  height: 100%;
}


/* ------------------ Floating ICON Upon Screen Responsive ----------------- */
/* Floating Container */
.floating-socials {
  position: fixed;
  z-index: 9999;
}

/* Desktop Styles: Vertical alignment on the right edge */
@media (min-width: 769px) {
  .floating-socials {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: grid;
    gap: 12px;
    padding: 15px;
  }
}

/* Mobile Styles: Horizontal bar at the bottom */
@media (max-width: 768px) {
  .floating-socials {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
}

/* Icon Styling */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect */
.social-icon:hover {
  transform: scale(1.1);
}

/* Brand Colors */
.facebook { background-color: #e6e6fa; }
.twitter { background-color: #696969; }
.instagram { background-color: #ffe4e1; }
.linkedin { background-color: #f5f5dc; }


/* ------------------ Floating Message on screen Scrool ------------------- */

/* Base Reset & Flexbox Centering */
/* IMAGE SET PADDING ERROR
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*/

.business-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 38vh;
  background-color: #242424;
  /* background-image: url('../v_images/20270720_001.jpg'); */
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  padding: 20px;
}

/* The Responsive Card */
.business-cta-card {
  background: #f8f8ff;
  width: 100%;
  max-width: 500px;
  padding: 38px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect for Engagement */
.business-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.business-cta-card h2 {
  color: #1a2530;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.business-cta-card p {
  color: #5c6b73;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* CTA Button with Transition Effect */
.cta-button {
  display: inline-block;
  background-color: #0066cc;
  color: #ffffff;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 6px;

  font-size: 1.35rem;
  font-weight: 600;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  /* background-color: #0052a3; */
  background-color: #0000cd;
  color: #FDFBF9;
  transform: scale(1.02);
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 600px) {
  .business-cta-card {
    padding: 30px 20px;
  }
  
  .business-cta-card h2 {
    font-size: 1.5rem;
  }
}



/* ------------------ Floating Side Menu Debug ----------------------------- /*

/* 基本アラートスタイル */
.alert {
  display: block;
  padding: 12px 12px;
  margin: 8px 0;
  border: 1px solid transparent;
  border-radius: 4px;
  position: relative;

  width: 80%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-left: auto;
  margin-right: auto;
  /* margin-right: 0; */

}

/* 成功アラート */
.alert-success {
  color: #E9ECEF;
  background-color: #006400;
  border-color: #c3e6cb;

  padding: 12px 18px;

  font-size: 1.2rem;
  border-radius: 10px;  

}

/* 警告アラート */
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeaa7;
}

/* 危険アラート */
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* 情報アラート */
.alert-info {
  color: #41464b;
  background: #f8f9fa;
  background-color: #f8f9fa;
  border-color: #dddddd;
}

/* 閉じるボタン */
.alert .btn-close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.5;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;

  color: #ffffff;
  font-size: 2.0rem;

}

.alert .btn-close:hover {
  opacity: 1;
  color: #F1F3F5;

}

