@charset "utf-8";
/* CSS Document */

.main_img {
	max-width: 500px;
	width: 100%;
	margin:0 auto;
	padding-top: 20px;
	text-align: center;
}
.main_img img{
width: 100%;
}

.box_bor{
border: 1px solid rgba(167,167,167,1.00);
}

.content_box{
margin: 20px auto;
padding: 10px;
}
.content_box h2{
margin: 20px auto 10px;
font-size: 2em;
}
.content_box h3{
border-bottom: 1px solid rgba(127,127,127,1.00);
border-left: 8px solid #0085CF;
padding: 5px;
margin-top: 50px;
}
.content_box p{
/*margin-bottom: 20px;*/
padding:5px 10px;
}

span.u_line{
border-bottom: 1px solid #939393;
}
.common_main_img_flex {
	max-width: 1200px;
	width: 100%;
	margin:0 auto;
	padding-top: 20px;
}
.common_main_img_flex ul{
	display:flex;
	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	justify-content:center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin:0 auto;
}
.common_main_img_flex ul li{
max-width: 400px;
width: 32%;
}
.common_main_img_flex ul img{
    width: auto;
    max-width: 100%;
    height: auto;
/*max-height: 270px;*/
object-fit: cover;
}

@media only screen and (max-width: 1200px) {
.common_main_img_flex ul li{
width: calc(100% / 3);
}
.common_main_img_flex ul li.flex-item-4{
flex-basis: 60%;
}
.common_main_img_flex ul li.flex-item-5{
flex-basis: 40%;
}
}

@media only screen and (max-width: 640px) {
.common_main_img_flex ul{
width: 95%;
}
.common_main_img_flex ul li{
max-width: 100%;
flex-basis: 100%;
}
.common_main_img_flex ul li.flex-item-4{
max-width: 100%;
flex-basis: 100%;
min-height: auto;
height:auto;
}
.common_main_img_flex ul li.flex-item-5{
max-width: 100%;
flex-basis: 100%;
min-height: auto;
height:auto;
}
.common_main_img_flex ul img{
height: auto;
width: 100%;
}
}

.photo_caption{
font-size: 0.8em;
text-align: right;
padding-right: 30px;
color: #48A0D8;
}
.youtube_box{
	max-width: 800px;
    margin: 0 auto;
}
.youtube{
	position:relative;
	padding-top:56.25%;
	height: 0;
    overflow: hidden;
	margin: 1em 2em;
}
.youtube iframe{
	position:absolute;
	top:0;
	right:0;
	width:100%;
	height:100%;
}


.requirements{
padding: 10px;
width: 95%;
margin: auto;
}

table.concert_table{
border: 1px solid #6B6B6B;
    border-collapse: collapse;
	max-width: 950px;
	width: 98%;
	margin:15px auto;
}
table.concert_table th{
border: 1px solid #6B6B6B;
background: #D8D8D8;
padding: 5px;
}

table.concert_table td{
border: 1px solid #6B6B6B;
padding: 5px;
font-size: 0.9em;
}


a.button-link {
  display: inline-block; /* Allows padding, width, height */
  padding: 10px 20px; /* Top/bottom and left/right padding */
  background-color: #007bff; /* Blue background */
  color: white!important; /* White text */
  text-decoration: none!important; /* Removes the underline from the link */
  border-radius: 5px; /* Slightly rounded corners */
  border: none; /* No border by default */
  cursor: pointer; /* Indicates it's clickable */
  font-size: 22px; /* Adjust font size */
  font-family: sans-serif; /* Choose a clean font */
  width: 90%;
  text-align: center;
}

/* Hover effect */
.button-link:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

/* Active effect (when clicked) */
.button-link:active {
  background-color: #004085; /* Even darker blue when active */
  transform: translateY(1px); /* Slight press effect */
}