html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    background-color: #FFFEF6;
    box-sizing: content-box;
    font-family: sans-serif;
}

img {
    width: 100%;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    display: block;
    cursor: pointer;
}


/* 共通部分----------------------------------- */
.logo {
    width: 150px;
    transition: .3s;
}

.logo:hover {
    opacity: .5;
    scale: 1.1;
}

.wrapper {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.section-ttl {
    color: #F16682;
    font-size: 3rem;
    line-height: 1.5rem;
    text-align: center;
    padding: 5rem 0 2rem;
}

.section-ttl span {
    font-size: 1rem;
}

.main-visual {
    max-height: 800px;
    object-fit: cover;
}

/* PC版のメイン画像を非表示にする */
.pc { display: none !important; }
.sp { display: block !important; }


/* ボタン */
.topics-btn {
    padding: .75rem 1rem;
    margin: 2rem auto;
    background-color: #F16682;
    color: #FFFEF6;
    border-radius: 3px;
    width: fit-content;
    transition: .3s;
}

.topics-btn:hover {
    opacity: .5;
    scale: 1.1;
}

i {
    margin-left: 5px;
}



/* header----------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background-color: rgba(255 254 246/.7);
    /* background-color: rgba(255 236 80/.7); */
    width: 100%;
    height: 4rem;
}

.header {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.nav-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    z-index: 999;
    background-color: #F16682;
    border-radius: 100px;
    transition: .3s;
}

.nav-btn:hover {
    opacity: .5;
    scale: 1.1;
}

/* ハンバーガーボタン内の線の設定 */
.nav-btn span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.75rem;
    height: 2px;
    transform: translateX(-50%);
    background-color: #FFFEF6;
}

.nav-btn span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.1s ease;
}

.nav-btn span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.1s ease;
}

.nav-btn span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.1s ease;
}

/* 展開時のデザイン */
.nav-btn.is-active span:first-child {
    transform: translate(-50%,-50%) rotate(-45deg);
}

.nav-btn.is-active span:nth-child(2) {
    opacity: 0;
    /* 要素の不透明度を0にして、見えなくする */
}

.nav-btn.is-active span:last-child {
    transform: translate(-50%,-50%) rotate(45deg);
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease;
}

.main-nav.is-active {
    opacity: 1;
    visibility: visible;
}

.main-nav-inner {
    position: relative;
    width: 80%;
    height: 100%;
    background-color: white;
    padding: 6rem 1.5rem 1rem;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    /* メニューの横部分を横にスライドさせている。 */

    transition: transform .3s ease;
}

.main-nav.is-active .main-nav-inner{
    transform: translateX(0);
}

.main-nav ul li a {
    color: #F16682;
    text-align: center;
    height: 8rem;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.5rem;
    transition: .3s;
}

.main-nav ul li a span {
    font-size: 1rem;
}

.main-nav ul li a:hover{
    opacity: .5;
    scale: 1.1;
}






/* スライドショー----------------------------- */
.slide-wrapper {
    position: relative;
    overflow: hidden;
}

.slide {
    width: 300%;
    height: 100%;
    display: flex;
    transition: all .3s;
}

.slide div {
    width: 33.33%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide1 {
    transform: translateX(0);
}

.slide2 {
    transform: translateX(-33.33%);
}

.slide3 {
    transform: translateX(-66.66%);
}

.next {
    cursor: pointer;
    position: absolute;
    width: 15px;
    height: 15px;
    right: 10px;
    bottom: 50%;
    z-index: 10;
    border-top: solid 3px #F16682;
    border-right: solid 3px #F16682;
    -webkit-transform: rotate(45deg) translateY(50%);
    transform: rotate(45deg) translateY(50%);
}

.prev {
    cursor: pointer;
    position: absolute;
    width: 15px;
    height: 15px;
    left: 25px;
    bottom: 50%;
    z-index: 10;
    border-top: solid 3px #F16682;
    border-right: solid 3px #F16682;
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
}

.indicator {
    width: 100%;
    position: absolute;
    bottom: 20px;
    display: flex;
    column-gap: 18px;
    z-index: 10;
    justify-content: center;
    align-items: center;
}

.indicator li {
    cursor: pointer;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    list-style: none;
    background-color: #FFFEF6;
    border: 2px solid #F16682;
}

.indicator li.active {
    background-color: #F16682;
}



/* TOPICS----------------------------------- */
.topics-ttl {
    color: #F16682;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: .5rem;
}

.topics-text {
    color: #333132;
    padding: 0 2rem;
    text-align: left;
}

.topics-container {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}





/* TOPへ戻るボタン--------------------------- */
.page-top {
  position: fixed;
  right: 24px;
  bottom: 100px;
  background-color: #F16682;
  color: #FFFEF6;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}

.page-top i {
    margin-left: -.5px;
    font-size: 1.5rem;
}

.is-active {
  opacity: 1;
  visibility: visible;
}



/* オンラインショップへのリンク */
.online-shop {
    padding-top: 7rem;
}


.online-shop a {
    margin: 0 auto;
    width: 300px;
    transition: .3s;
}

.online-shop a:hover {
    opacity: .5;
    scale: 1.1;
}




/* footer----------------------------------- */
footer {
    background-color: #F16682;
    color: #FFFEF6;
    text-align: center;
    margin-top: 8rem;
    padding: 4rem 0 2rem;
}

.footer-contents {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

footer .logo {
    margin: 0 auto;
}

.sns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1rem;
}

.sns a {
    width: 50px;
    transition: .3s;
}

.sns a:hover{
    opacity: .5;
    scale: 1.1;
}

.page-nav ul li a {
    color: #FFFEF6;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5rem;
    height: 6rem;
    text-align: center;
    transition: .3s;
}

.page-nav ul li a span {
    font-size: 1rem;
}

.page-nav ul li a:hover{
    opacity: .5;
    scale: 1.1;
}






/* LINEUPページ------------------------------------ */
.accordion-header a {
    color: #F16682;
}

.accordion-content {
    height: 0;
    overflow: hidden;
}

.accordion-content.accordion-content-show {
    height: auto;
}

#lineup-nav ul {
    display: grid;
}


#lineup-nav ul li a {
    color: #F16682;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1rem;
    padding-bottom: 1rem;
    transition: .3s;
}

#lineup-nav ul li a span {
    font-weight: normal;
    font-size: .75rem;
}

#lineup-nav ul li a:hover{
    opacity: .5;
    scale: 1.1;
}

.lineup-ttl {
    color: #F16682;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1rem;
    padding-bottom: 1rem;
}

.lineup-ttl span {
    font-weight: normal;
    font-size: .75rem;
}

.lineup-contents {
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(2,1fr);
    padding-bottom: 2.5rem;
}

.lineup-contents p {
    color: #F16682;
    padding-bottom: 1rem;
}








/* SHOPページ-------------------------------------- */
.shop-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

#shop table {
    color: #333132;
    border-spacing: 0;
}

#shop th,
#shop td {
    text-align: left;
    border-bottom: 1px solid #333132;
}

#shop th {
    padding: 1rem .75rem;
}

#shop td {
    padding: 1rem 0;
}

#shop iframe {
    width: 300px;
    aspect-ratio: 3/2;
}








/* CONTACTページ----------------------------------- */
form {
    display: grid;
    place-items: center;
    gap: 2rem;
    text-align: center;
    padding-top: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 60%;
}

input,
textarea {
    border: 1px solid #333132;
    background-color: #fff;
    cursor: pointer;
}

input {
    height: 2.5rem;
}

textarea {
    height: 15rem;
}

label {
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.25rem;
}

label span {
    font-size: 0.75rem;
}

.submit-btn {
    width: 100px;
    background-color: #fff;
    transition: .3s;
}

.submit-btn:hover {
    scale: 1.1;
    background-color: #BDBDB7;
}







/* メディアクエリー---------------------------------- */
@media (min-width: 768px){
    /* 共通部分 */
    .wrapper {
        max-width: 1300px;
    }

    .section-ttl {
        font-size: 3rem;
        line-height: 1.5rem;
        text-align: center;
        padding: 5rem 0 2rem;
    }
    
    .section-ttl span {
        font-size: 1rem;
    }

    /* SP版のメイン画像を非表示にする */
    .pc { display: block !important; }
    .sp { display: none !important; }


    /* header部分 */
    .nav-btn {
        display: none;
    }

    .main-nav {
        all: unset; /* 既存のモーダル風スタイルを無効にする */
    }

    .main-nav-inner {
        all: unset;
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .main-nav ul li a {
        height: 2rem;
        font-size: 1rem;
        line-height: 1rem;
        margin-top: .5rem;
    }
    
    .main-nav ul li a span {
        font-size: .5rem;
    }


    /* TOPICS */
    .topics-contents {
        display: grid;
        align-items: center;
        gap: 1rem;
        grid-template-columns: 1fr 1fr;
    }




    /* footer */    
    .footer-contents {
        flex-direction: row;
        justify-content: center;
    }
          
    .page-nav ul li a {
        font-size: 1.5rem;
        line-height: 1rem;
        height: 4rem;
        text-align: left;
    }
    
    .page-nav ul li a span {
        font-weight: normal;
        font-size: .75rem;
    }





    /* LINEUPページ------------------ */
    #lineup-nav {
        all: unset; 
    }
    
    #lineup-nav ul {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
        padding-bottom: 3rem;
    }
    
    .lineup-contents {
        gap: .5rem;
        grid-template-columns: repeat(4,1fr);
        padding-bottom: 4rem;
    }
    
    .lineup-contents p {
        font-size: 0.75rem;
    }
     






    /* SHOPページ------------------ */
    .shop-contents {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    
    #shop iframe {
       width: 50%;
       max-width: 500px;
    }
    




    /* CONTACTページ------------------ */    
    .contact-item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        width: 60%;
    }
    
    input,
    textarea {
        width: 70%;
    }

    
    label {
        cursor: pointer;
        font-size: 1.25rem;
        line-height: 1.25rem;
    }
    
    label span {
        font-size: 0.75rem;
    }

}


