@charset "UTF-8";
/* CSS Document */
body section {
    text-align: center;
	
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url("../images/page_bg.png") no-repeat center top / contain;
    z-index: -1;
}
main {
    padding-top: 60px;
}
main p {
    margin-bottom: 20px;
}

.storing-text {
    font-size: 18px;
    font-weight: bold;
}
.storing-text24 {
    font-size: 24px;
    font-weight: bold;
	
}
.small-text {
    font-size: 16px;
    font-weight: bold;
	line-height: 1.5;
	 display:block; 
}
.text-center{
	text-align: center;
}
.small-title {
    background: url("../character/line.png") no-repeat bottom center / 400px;
    padding-bottom: 15px;
    color: var(--gold-color);
	margin-top:50px;
}
p + .small-title {
    margin-top: 60px;
}
.title-anime {
    position: relative;
}
.title-anime .anime-after {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
@media (max-width: 900px) {
    body {
        text-align: left;
    }
p + .small-title {
   margin-top: 60px;
}
}
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
img {
    animation: fade-in 1s ease-in-out forwards;
}
img.anime-after {
    animation-delay: 1s; /* 0.3秒遅れて表示 */
}
.highlight {
    font-size: 18px;
    font-weight: 500;
    background-color: #FF8AB9;
    color: #fff;
    padding: 0px 6px 2px 6px;
    margin: 0 3px;
    text-shadow: none;
}
@media (max-width: 900px) {
    body section {
        font-size: 14px;
        text-align: left;
    }
    main {
        padding-top: 0px;
    }
    body section h3 {
        text-align: center;
    }
    .small-title {
        background-size: 80%;
        padding-bottom: 10px;
       margin-top:50px;
    }
    a.btn-base {
        min-width: 150px;
        padding: 0px 10px; /* アイコンの余白分調整 */
        font-size: 12px;
    }
    .highlight {
        font-size: 14px;
    }
    .storing-text {
        font-size: 14px;
        font-weight: bold;
    }
    .storing-text24 {
        font-size: 16px;
        font-weight: bold;
    }
	.small-text {
    font-size: 12px;
    font-weight: bold;
}
}
.frame{
    text-align: center;
    border-radius: 5px;

    background-color: #fff; /* 背景色（丸の中） */
    border: 2px solid #fff; /* 内側の白フチ */
    box-shadow: 0 0 0 1px #D9AD62, /* 外側のD9AD62色のフチ */ 0 0 0 3px #fff; /* さらにその外側に白フチ */
}