@charset "utf-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
  }

html, body {
    font-family: "游ゴシック体", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    display: flex;
    width: 100%;
    height: 100px;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.2), /* 透明度を調整 */
        rgba(255, 255, 255, 0.2)
      ),
      url('../img/background-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
}

header h1 {
    font-size: 28px;
    color: rgb(232, 33, 99);
    margin: 15px;
}

h1 {
    text-align: center;
    margin: 30px;
}

.dot-space {
    display: block;
    height: 15px;
}

#menu-bar {
    font-size: 20px;
    display: flex;
    justify-content: flex-start;
    color: #000;
    background-color: rgb(249, 148, 195);
    position: absolute;
    align-items: center;
    width: 100%;
    height: 60px;
    top: 100px;
    flex: 1;
    z-index: 900;
}

#menu-bar.fixed {
    position: fixed;
    top: 0; /* スクロール時に固定 */
}

#menu-bar a {
    margin-left: 15px;
    font-size: 15px;
    color: white;
    text-decoration: none;
}

#menu-bar p {
    color: #000;
}

#menu-button {
    position: absolute;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 37px;
    top: 0;
    right: 0;
    text-align: center;
    background-color: #e1dede;
}

.menu-icon {
    margin-top: -5px;
    cursor: pointer;
}

#menu-button p {
    font-size: 13px;
    margin-top: -10px;
    cursor: pointer;
}

.sample {
    display: inline-block;
    justify-content: center;
    position: absolute;
    font-size: 15px;
    margin: 10px;
    color: white;
    font-weight: bold;
}

.overlay-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #000;
    background: white;
    z-index: 1005;
}

#overlay-menu {
    display: none;
}

#close-button {
    position: absolute;
    top: 10%;
    right: 2%;
    background: none;
    border: none;
    font-size: 100px;
    color: #000;
}

.mail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    width: 150px;
    height: 70px;
    font-weight: bold;
    border-radius: 20px;
    background-color: palevioletred;
    text-decoration: none;
    color: #000;
}

.mail img {
    width: 28px;
}

.payment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    width: 150px;
    height: 70px;
    border-radius: 20px;
    background-color: palevioletred;
    text-decoration: none;
    color: #000;
    opacity: 0;
    cursor: pointer;
}

main {
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    padding: 5px;
    background-color: white;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    align-items: center;
    justify-content: center;
}

h2 {
    color: red;
    margin: 10px;
    padding-top: 100px;
    text-align: center;
}

h3 {
    color: red;
    text-align: center;
    margin: 10px;
}

h4 {
    font-size: 20px;
    text-align: center;
    margin: 20px 0;
}

h5 {
    font-size: 15px;
    margin: 10px;
    text-align: center;
}

p {
    line-height: 2rem;
    margin-bottom: 10px;
}

.bold {
    font-weight: bold;
}

.main-contents {
    text-align: center;
    padding: 5px;
    line-height: 2rem;
}

#payment {
    width: 100%;
}

.how-to-homepage {
    margin: 10px;
}

ul li {
    list-style: none;
}

.left-content {
    text-align: left;
    margin: 5px;
}

.big-character {
    color: red;
    font-size: 40px;
    font-weight: bold;
    margin: 5px;
    line-height: 1.5em;
}

.big-character2 {
    color: red;
    font-size: 50px;
    font-weight: bold;
    margin: 5px;
    line-height: 1em;
}

.red-character {
    color: red;
    font-weight: bold;
    margin-right: 5px;
}

.menu-item {
    flex: 1;
    text-align: center;
    position: relative;
    font-size: 135%;
}

.menu-item img {
    width: 25%;
    margin-top: 20%;
    margin-bottom: 0;
    height: auto;
    margin: auto;
}

.menu-item p {
    font-size: 15px;
    margin-top: 0;
    padding-top: 0;
}

.menu-item a {
    text-decoration: none;
    color: #000;
    margin-top: 0;
}

.x-icon {
    height: 20px;
    width: auto;
}

.main-title {
    position: absolute;
    color: white;
    font-size: 40px;
    z-index: 1500;
    top: 10%;
    left: 25%;
}

.phone-number-info {
    display: none;
}

.phone-number {
    display: none;
}

.main-info {
    position: absolute;
    color: white;
    font-size: 15px;
    margin: 10px;
    bottom: 5%;
    z-index: 1300;
}

.image-container {
    z-index: 1000;
}

.image-container img {
    width: 100%;
    height: auto;
    position: absolute;
    opacity: 0;
    transition: opacity 2s ease;
    z-index: -1;
}

.image-container img.active {
    opacity: 1;
    z-index: 1;
}

.menu-info {
    display: flex;
    flex-direction: column;
    margin: 10px;
    justify-content: center;
    text-align: center;
}

.menu-info img {
    width: 90%;
    height: auto;
    margin: 5vw;
}

.fade-in {
    opacity: 0; /* 最初は見えない */
    transition: opacity 1s ease, transform 0.8s ease; /* スムーズな動き */
}
  
.fade-in.visible {
    opacity: 1; /* 表示 */
    transform: translateY(0); /* 元の位置に戻す */
}

/* スクロールボタン*/
#scroll-to-top {
    position: fixed;
    bottom: 20vw;
    right: 4%;
    padding: 20px 25px;
    background-color: #e1dede;
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: none;
}

#scroll-to-top:hover {
    background-color: #e3e1e1;
}

footer {
    background-color: rgb(48, 48, 48);
    font-size: 18px;
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    bottom: 0;
}

.info-block {
    display: flex; /* 横並びに配置 */
    align-items: flex-start; /* 上端で揃える */
    margin-bottom: 20px;
    width: 100%;
    margin: 5px;
    margin-bottom: 25px;
}

.label {
    width: 35vw;
    color: #908d8d;
    margin-right: 10px;
}

.content {
    width: 60vw;
    line-height: 1.6; /* 読みやすくするため行間を調整 */
    color: white;
    margin-right: 5px;
}

.mail-button a {
    display: flex;
    background-color: rgb(242, 35, 101);
    color: white;
    width: auto;
    height: auto;
    margin: 20px;
    padding: 10px;
    text-align: center;
    border: white;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    text-decoration: none;
}

.footer-menu {
    display: none;
    max-width: 20vw;
    border-left: white solid 1px;
    line-height: 3;
}

.footer1 {
    width: 100%;
    height: 210px;
    padding: 5%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    bottom: 0;
}

footer p {
    color: white;
    margin: 20px;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

footer a:hover {
    text-decoration: underline;
}

.overlay {
    position: fixed; /* 画面上に固定 */
    top: 0;
    left: 50%; /* 横中央 */
    transform: translateX(-50%); /* 中央揃え */
    background: white;
    border: 1px solid #ddd;
    z-index: 1300;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: none;
}

.overlay-content {
    width: 95%;
    height: 100%;
}

.overlay-content iframe {
    width: 100%;
    height: 550px;
    border: none;
}

iframe {
    width: 100vw;
    height: 100vh;
}

.information-area {
    width: 100%;
    height: 90vh;
    background-color: skyblue;
    color: #000;
    font-size: 30px;
    padding-bottom: 50px;
    overflow: hidden;
}

.information-area p {
    margin: 30px;
}

.sns {
    margin: 10px;
}

.twitter-timeline {
    width: 90vw;
    max-height: 50vh;
    border-radius: 20px;
    overflow-y: scroll;
    margin-left: 10px;
    margin-bottom: 10px;
}

.instagram-media {
    width: 90vw;
    height: 70vh;
    margin: 10px;
    margin-top: 20px;
    overflow-y: scroll;
}

.paymentpage {
    padding: 10px 10px 30px 10px;
}

.paymentpage h3 {
    margin: 10px 0;
}

.paymentpage ul {
    list-style-type: disc;
    padding-left: 20px;
}

.paymentpage ul li {
    line-height: 2em;
}