@charset "UTF-8";
/* =========================   Base========================= */
html {
    font-size: 100%;
}
body {
    margin: 0;
    font-size: 0.8rem;
    color: #fff;
    overflow-x: clip;
    font-family: "MS Pゴシック";
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/*-------------星空-------------------*/
	 .background-wrapper {
 background-image: linear-gradient(0deg,#115d89, #080f1c,#00dedc, #115d89); /* 星空の背景色 */
}		 
		 .stars {
    position: relative;
    background-image: linear-gradient(0deg,#115d89, #080f1c,#00dedc, #115d89); /* 星空の背景色 */
}
.star {
    position: absolute;
    display: block;
    background-color: #fff; /* 星の色 */
    border-radius: 50%;
    box-shadow: 0 0 4px 4px rgba(#fff, 0.2); /* 星の影 */
    opacity: 0;
    animation: twinkle 3s infinite;
}
/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
    0% {
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
.wrapper {
    background-image: url("../img/background-top.png");
    background-size: contain;
    background-position: left top;
    margin: auto;
    padding: 0.7rem
}
/*--------------header-------------------*/
h1 {
    font-family: "Jersey 25", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    text-align: center;
    color: #fff;
    text-shadow:
        0 0 1px #fff, 0 0 20px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 30px #000, 0 10px 3px #000;
    opacity: 0.9
}
/*--------------main--------------------*/
h1 {
    margin-bottom: 2rem;
}
h2 {
    text-align: center;
    text-shadow:
        0 0 1px #fff, 0 0 0px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #000, 0 0px 3px #000;
}
h3 {
    font-size: 1rem;
    text-align: center
}

#section2 h4,.neo{
font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h4 {
    text-align: center;
    background-color: rgba(31, 28, 28, 0.7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 0.3rem;
    padding: 0.2rem;
    position: relative;
    color: #fff;
    font-size: 1.1rem;
    padding-top: 0.5rem;
    -webkit-box-reflect: below -10px -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, .5));
    text-shadow:
        0 0 1px #fff, 0 0 0px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 20px #000, 0 0px 3px #000;
    max-width: 100%
}

h5 {
    font-size: 1.1rem;
    margin: 0.5rem 0.5rem;
    border-left: 5px solid #fff;
    padding-left: 0.5rem;
}
img.main {
    width: 70%;
    margin: auto;
    max-width: 500px;
}
/*--------------section--------------------*/
section {
    display: block;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 3rem
}
.box_photo {
    width: 45%;
}
.box_photo img {
    max-height: 50vh;
    width: auto;
}
.box_text {
    width: 50%;
}
section a {
    text-decoration: none;
    color: #fff;
}
section ul {
    list-style: none;
}
.btn p {
    color: #000;
    background-color: rgba(265, 265, 265, 0.5);
    margin-top: 0.5rem;
    border-left: 5px #fff solid;
    padding-left: 0.5rem;
    max-width: 10rem
}
.pick-up {
    display: block;
    font-size: 0.7rem;
}
.pick-up img {
    width: 80px;
}
.pick-up-one{
	display: flex;
	gap:0.5rem;
	align-items: center
}
.pick-up-one iframe{
	max-width: 25%;
	height: auto
}
.glass {
    background-color: rgba(31, 28, 28, 0.7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    padding: 0.5rem;
}
/*--------------開閉式メニュー--------------------*/
.child {
    display: none;
    font-size: 0.6rem;
}
.child li:hover {
    font-size: 1rem;
}
/*--------------横スクロール--------------------*/
article:not(.sticky) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 110vh;
}
article h2 {
    text-align: center;
}
.horizontal_scroll {
    --sticky-container-height: 100vh;
    height: var(--sticky-container-height);
    min-height: 101vh;
    box-sizing: border-box;
}
.horizontal_scroll .sticky {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 110vh;
}
.horizontal_scroll .scroller {
    display: flex;
    overflow: auto;
}
.horizontal_scroll .scroller.nobar {
    overflow: hidden;
}
.horizontal_scroll .scroller > * {
    flex-basis: 66%;
    flex-shrink: 0;
    min-height: 100vh;
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.horizontal_scroll .scroller > *:not(:first-child) {
    margin-left: 1%;
}
/*--------------footer--------------------*/
footer {
    border-bottom: #403041 15px solid;
    position: fixed;
    z-index: 0;
    bottom: -3px;
    width: 100%;
    background-image: url("../img/bill.png");
    background-size: contain;
    background-repeat: repeat-x;
}
footer img {
    width: 130px;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer ul {
    list-style: none;
}
footer p {
    font-size: 0.5rem;
    border-left: #fff 5px solid;
    padding-left: 0.5rem;
    background-color: #403041;
}
img.bill {
    width: 100%;
}
.link {
    display: flex;
    gap: 1rem;
    align-items: flex-end
}
/*--------------デスクトップ用--------------------*/
@media (min-width: 500px) {
    body {
        font-size: 1rem
    }
    img.main {
        width: 70%;
        margin: auto;
        max-width: 800px;
    }
    .glass {
        font-size: 1rem
    }
    h1 {
        font-size: 10rem
    }

    .wrapper {
        max-width: 800px;
        margin: auto;
        padding: 0.7rem;
		background-image: none;
    }
	 .stars {
        background-image: url("../img/background-l.png");
        background-size: 100%;
        background-position: left top;
    }
    h4 {
        font-size: 2rem;
        display: inline-block;
        width: 40rem;max-width: 100%;
        margin: auto;
        margin-bottom: 1rem;
    }
    .center {
 
        text-align: center;
    }
    footer p {
        font-size: 1rem;
    }
	footer img {
    width: 200px;
}
    .link {
        display: flex;
        gap: 2rem;
        align-items: flex-end;
        justify-content: center;
    }
    .box_photo img {
        max-height: 30vh;
        width: auto;
    }
	
}