@charset "UTF-8";

body {
    font-family: "Noto Sans JP", sans-serif;
}
.background {
    position: fixed;       /* 常に画面の背面に表示 */
    top: 0;
    left: 0;
    width: 100vw;          /* ビューポート幅全体 */
    height: 100vh;         /* ビューポート高さ全体 */
    background: #ffdcfe;   /* 現在の背景色 */
    z-index: -1;           /* 背面に配置 */
}
.inner {
    max-width: 1280px;
    width: 100%;
    padding: 0 10px;
    position: relative;
    overflow: visible;
}

#topbar {
    width: 100%;
    background: url(../img/topbar.png) 50% 0 fixed repeat-x;
    height: 8px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 3px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 3px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 3px 0px;
    z-index: 100;
    position: fixed;
    top: 0;
}

.hours {
    background: #ff51a3;
    line-height: 32px;
    text-align: center;
    height: 40px;
    margin-bottom:10px;
    color: #fff;
    font-size: 14px;
    border-top: 7px solid #fff;
    border-bottom: 2px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 2px 0px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 2px 0px;
    -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 2px 0px;
}

.hours h1 {
    font-weight: bold;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.ind_bana{
	width:320px;
	margin:10px auto;
}

.ind_bana img{
	display:block;
	box-shadow:rgba(0, 0, 0, 0.3) 0px 2px 3px 0px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.3) 0px 2px 3px 0px;
	-moz-box-shadow:rgba(0, 0, 0, 0.3) 0px 2px 3px 0px;
}

.so_liner {
    width: 100%;
    height: 5px;
    background: #ff51a3;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2) inset;
    -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.2) inset;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2) inset;
}


#uglinks {
    width: 100%;
    max-width: 960px;
    margin: 20px auto;
    padding: 15px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

#uglinks h3 {
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    background: #ff52a4;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 4px;
}

#uglinks a {
    color: #333;
    text-decoration: none;
    transition: transform 0.2s ease;
}

#uglinks a:hover {
    transform: scale(1.02);
}

.uggroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.uggroup li {
    flex: 1 1 calc(50% - 10px); /* 2列スマホ */
    max-width: calc(50% - 10px);
    background: #fdfdfd;
    border: 1px solid #ff52a4;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.uggroup li:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.uggroup li a {
    display: block;
    height: 100%;
}

.uggroup li a img {
    width: 100%;
    display: block;
}

.ugtext {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #444;
    background: #fff;
}

.ugtext b {
    font-size: 14px;
}

#footer {
    width: 100%;
    height: 65px;
    padding-top: 10px;
    background: #666;
    border-bottom: 10px solid #333;
}

#copyRight {
    width: 100%;
    margin: 5px auto;
    font-size: 11px;
    line-height: 1.2em;
    color: #fff;
    text-align: center;
}

#ageCheckModal {
    display: none; /* 初期は非表示 */
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/*** ポップアップ ***/
.age-modal {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-modal-content {
    background: #fff;
    padding: 30px 20px;
    max-width: 300px;
    width: 90%;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.age-modal-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff52a4;
}

.age-modal-content p {
    font-size: 15px;
    margin-bottom: 20px;
}

.age-buttons {
    display: flex;
    justify-content: space-around;
}

.age-buttons button {
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.age-buttons .yes {
    background-color: #ff52a4;
    color: white;
}

.age-buttons .yes:hover {
    background-color: #e84994;
}

.age-buttons .no {
    background-color: #ccc;
}

.age-buttons .no:hover {
    background-color: #aaa;
}

#ageCheckModal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}