@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */

.container {
  max-width: 470px;
}

h1{
  font-size:147%; !important
  }

}

@media screen and (max-width: 959px) {
	/* 959px以下に適用されるCSS（タブレット用） */

.container {
  max-width: 940px;
}

h1{
  font-size:130%;
  }


h2{
  font-size:110%;
  }

}

/* ボタン本体 */
.btn {
  display: inline-block;
  padding: 0.8em 3em;
  background-color: #28a745; /* 背景色 */
  box-shadow: 0 5px 0 #196b2c; /* 影の太さ・色 */
  border-radius: 60px;
  color: #fff;
  cursor: pointer;
  text-decoration: none; /* 文字の下線を消す */
  width:60%;
}

/* ホバー時 */
.btn:hover {
  box-shadow: none;
  transform: translateY(5px);
}

/* クリック時 */
.btn:active {
  box-shadow: none;
  transform: translateY(5px);
}





@media screen and (min-width: 960px) {
	/* 959px以下に適用されるCSS（タブレット用） */



h1{
  font-size:310%;
  }

.container {
  max-width: 960px;
}

.content {
  width: 100%;
  margin: 0 auto;
}

.video-container {
  margin-bottom: 20px;
}

.pdf-container {
  margin-bottom: 20px;
}

#link-btn {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  cursor: pointer;
}

#link-btn:hover {
  background-color: #007BFF;
}

.btn {
  display: inline-block;
  padding: 0.8em 3em;
  background-color: #28a745; 
  box-shadow: 0 5px 0 #196b2c; 
  border-radius: 15px;
  color: #fff;
  cursor: pointer;
  text-decoration: none; 
  width:60%;
}

/* ホバー時 */
.btn:hover {
  box-shadow: none;
  transform: translateY(5px);
}

/* クリック時 */
.btn:active {
  box-shadow: none;
  transform: translateY(5px);
}

}

.red{
  color:red;
  font-size:smaller;
}

.marker {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-weight: bold;
}

.marker::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em; 
  width: 100%;
  height: 0.6em; 
  background: #ff6666; 
  z-index: -1; 
  opacity: 0.6; 
  border-radius: 4px; 
}

.syukei{
    margin:auto;
    background-color:rgba(255, 255, 255, 0.8);
    border-radius:10px;
    border:2px solid #007BFF;
    width:100%;
    z-index:3;
    padding:18px 0 10px 0;
    border-radius: 4px;
}

.example{
    display: block;
    width: 300px;
    padding: 15px 0;
    margin: auto;
    background: #1f76d3;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
}
.example:hover{
    background: #195aa0;
}

h2 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

h2:before, h2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

h2:before {
  left:0;
}
h2:after {
  right: 0;
}

.concert-title {
  position: relative;
  display: inline-block;
  text-align: center;
  font-weight:bold;
  color: #222;
  padding: 1em 2em;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  letter-spacing: 0.05em;
}