@import"https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&display=swap";
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video
{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
ol,ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}
table{border-collapse:collapse;border-spacing:0}
:root{--f5: 5rem;--f4: 4rem;--red: #ED3A21;--blue: #0187A5;--blue2: #E9FBFD;--bk: #000;--yel: #FFD600}
@media screen and (max-width: 600px){:root{--f40: 24px;--f50: 28px}}
html{
    font-size:14px
}@media screen and (max-width: 599px){html{font-size:10px}}
*{-webkit-box-sizing:border-box;box-sizing:border-box}
body {
    background-image: url("../img/girls.jpg");
    width: 100%;
    height: 100vh;
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.s1{
    position: relative;
}
.s2{
    position: relative;
}
.s3{
    position: relative; 
}
.group{
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 20px;
}
.group2{
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 20px;
}
.group3{
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 60px;
}
.group4{
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 145px;
}
.group5{
    width: 95%;

}
.bottom{
    position: absolute;
    text-align: center;
    bottom: 30px;
}
.bottom p{
    font-size: 16px;
    text-align: center;
}
.line{
    width: 90%;
}
.red{
    color: #D23824;
}
.container{
    font-family: 'Arial', sans-serif;
    margin: auto;
    padding: 0;
    max-width: 460px;
    box-shadow: 0px 3px 6px 0px #9E9E9E;    /* 影指定 */
    background-color: white;
}
.attention{
    width: 100%;
}
.attention2{
    width: 90%;
    margin: auto;
    display: block;
    margin-top: 20px;
}
.s4{
    background-color: #FF4896;
    margin-top: -4px;
    padding-bottom: 5px;
}
.pink-cover{

}
.s5{
    margin-top: -3px;
}
.s6{
    margin-top: -4px;
    position: relative; 
}
.s8 {
    position: relative;
    display: flex;
    background-image: url("../img/Group76.webp");
    padding-bottom: 30px;
    background-size: cover;
}
.s9{
    position: relative; 
}
.title {
    display: block;
    width: 90%;
    margin: auto;
    margin-top: 30px;
}
.qa-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
  }

  .question {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #6751D7;
    cursor: pointer;
    margin-top: 15px;
  }

  .toggle-icon {
    font-weight: bold;
    font-size: 24px;
    margin-right: 10px;
    color: white;
    transition: transform 0.3s;
  }

  .question-text {
    font-size: 18px;
    color: white;
  }
  
  .answer {
    padding: 15px;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    display: none; /* Initially hidden */
  }

  .answer-text {
    font-size: 18px;
    color: #333;
    letter-spacing: 2px;
  }

/* フローティングメニュー（スマホ向け） */
.floating-menu {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 300px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    padding: 5px;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-btn {
    line-height: 1.1;
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    color: #FFF100;
    background: linear-gradient(to bottom, #0CE612, #0AAC03); /* グラデーション */
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.floating-btn:hover {
    transform: scale(1.05);
}

/* スクロール時に非表示（オプション） */
.floating-menu.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}