@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;800&display=swap');
body,td,th{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	color:#2B2B2B;
	margin: 40 auto;
	padding: 40px 0 0 0;
	background-color: #EFEBE9;
}

a:link {
	color: #5AAEF2;
	text-decoration: none;
}
a:visited {
	color: #5AAEF2;
	text-decoration: none;
}
a:hover {
	color: #90CAF9;
	text-decoration: none;
}
a:active {
	color: #90CAF9;
	text-decoration: none;
}

a:img {border-style: none;}


h1{
	font-weight:bold;
	text-align: center;
	letter-spacing: 10px;
	margin: 0 auto;
	padding: 10px;
}

h2 {
	font-weight:bold;
	letter-spacing: 10px;
	margin: 0 auto;
	padding: 1rem 2rem;
	border-left: 15px solid #2b2b2b;
}

.header {
    margin: 0;
    padding: 20px;              
    text-align:  center;       
    background-image: repeating-linear-gradient(-45deg, #ff9e8080, #ff9e8080 3px, transparent 3px, transparent 13px);
    height: 100px;        
}

.center_box {
    width: 80%;
    max-width: 600px;
    margin: 20px auto; 
    padding: 0 20px;
    line-height: 1.5;
}

.center_box p {
    text-align: left; 
}

@media (max-width: 768px) {
  .center_box {
    width: 90%;  /* タブレットやスマホ用 */
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .center_box {
    width: 95%;  /* モバイル用 */
    padding: 0 10px;
  }
}

.center_box p {
    text-align: left; 
    display: inline-block; 
    text-align: left;
}


/* バナー全体 */
.enter_banner {
    position: relative;
    width: 200px;   
    height: 40px;  
    display: flex; 
    justify-content: center; 
    align-items: center; 
    overflow: hidden; 
    margin: 0 auto; 
}

/* 画像のサイズを200px×40pxに固定 */
.enter_banner .banner_img {
    width: 100%;  /* 画像の幅を親要素の幅に合わせる */
    height: 100%;  /* 画像の高さを親要素の高さに合わせる */
    object-fit: cover; 
}

/* バナーのオーバーレイ */
.enter_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* 暗いオーバーレイ（20%透明） */
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

/* ENTERの文字オーバーレイ */
.enter_banner .overlay_text {
    position: absolute;
    top: 50%; /* 中央に配置 */
    left: 50%;
    transform: translate(-50%, -50%); /* 正確に中央に配置 */
    color: white;
    font-size: 1.2rem; /* フォントサイズを調整 */
    font-weight: bold; /* 太字 */
    z-index: 2; /* 文字をオーバーレイより前面に */
    opacity: 1; /* 初めは表示される */
    transition: opacity 0.3s ease-in-out; /* スムーズにフェードイン */
    text-align: center; /* 文字を中央揃えに */
}

/* マウスオーバー前 */
.enter_banner:hover::before {
    background-color: rgba(0, 0, 0, 0); /* オーバーレイを透明に */
}

.enter_banner:hover .overlay_text {
    opacity: 0;
}
 /* バナーここまで */



