@charset "UTF-8";
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body{
    background-color: #FDFFF2;
    height: 100vh;
    width: 100%;
    margin: 0 auto;
}

main {
    flex: 1;
    width: 100%;
}

a {
    text-decoration: none;
    color: #535353;
}
a:hover, .article button:hover{
    opacity: 0.7;
    transition: 0.3s ;
}

p{
    margin: 0;
    color: #535353;
}

ul,li{
    list-style: none;
    padding: 0;
}


/* ヘッダー */
header{
    width: 100%;
    height: 100px;
    margin: auto;
    background-color: white;
    border-bottom: #535353 1px solid;
}
.header-inner{
    width: 96%;
    max-width: 1600px;
    height: 80px;
    padding-top: 10px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative; 
}
.header-logo img{
    height: 80px;
    width: auto;
}

.header-menu{
    margin: auto;
    width: 100%;
}

.header-menu-item{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-menu-item li{
    font-size: 18px;
    letter-spacing: 0.1rem;
    font-weight: 700;
    padding: 0 20px;
}

.header-menu-contact{
    margin: auto;
    width: 180px;
    text-align: center;
}
.header-menu-contact-item a {
    display: block;
    padding: 14px;
    font-size: 17px;
    border: solid 2px #535353;
    background-color: #FDFFF2;
    border-radius: 20px;
}

.header-menu-item a:hover{
    color: #75C5B1;
}

.header-menu-item a.current {
  border-bottom: 2px solid #75C5B1;
  padding-bottom: 8px; 
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 35px;
    height: 35px;
    z-index: 10000;
}

.hamburger span {
    display: block;
    height: 2.5px;
    width: 30px;
    background-color: #535353;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-current{
    top: 0;
    right: 0;
}

.hamburger-current span{
    background-color: #535353;
}

.hamburger-current.active span {
    background-color: #535353;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    transition: right 0.4s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger-menu.active {
  right: 0;
}
.hamburger-nav {
    text-align: center;
}

.hamburger-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger-links li {
    margin: 20px 0;
}

.hamburger-links a {
    font-size: 28px;
    font-weight: bold;
    color: #535353;
    text-decoration: none;
}

.hamburger-links a:hover {
    color: #75C5B1;
}


/* ファーストビュー */
.fastview{
    height: 88vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;             
    justify-content: center;  
    align-items: center;
}
.fastview1{
    background-image: url(images/top2.png);
}
.fastview2{
    background-image: url(images/about2.png);
}
.fastview3{
    background-image: url(images/suggest2.png);
}
.fastview4{
    background-image: url(images/news2.png);
}

.fastview-copy{
    width: 75%;
    margin: auto;
}
.fastview-copy img{
    width: 100%;
}
.fastview-copy p{
    font-size: 70px;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
}


/* Homeページ */
.home-container{
    width: 100%;
    padding-top: 160px;
}
.section{
    width: 85%;
    max-width:  1366px;
    background-color: white;
    margin: 0 auto 160px;
    border: solid 5px #535353;
    border-radius: 80px;
}
.section-inner{
    display: flex;
    gap: 70px;
    margin: 70px auto;
    width: 85%;
    
}
.page-image{
    width: 45%;
    margin: 0 auto;
}
.section-inner img{
    border-radius: 50px;
    height: auto;
    width: 100%;
    display: block;
}
.section-inner img:hover{
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); 
    transition: 0.4s;
}
.section-text{
    margin: auto 0;
    width: 55%;
}
.section-title{
    font-size: 32px;
    font-weight: bold;
    display: inline-block;
    border-bottom: 3px solid #75C5B1;
    margin-bottom: 20px;
}
.section-detail{
    font-size: 17px;
}

/* ヒーリングとは？セクション */
.about-section{
    width: 85%;
    max-width: 1366px;
    margin: 70px auto;
    align-items: center;
}
.about-section-wrapper {
    text-align: center; 
}
.about-section-title{
    font-size: 32px;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 3px solid #75C5B1;
}
.about-section-detail{
    display: flex;
    justify-content: space-between;
    margin: auto;
}
.about-section-card{
    text-align: center;
    border: 3px solid #535353;
    border-radius: 50px;
    width: 30%;
}
.about-section-card img{
    width: 80%;
    height: auto;
    margin: 20px 0;
}
.card-inner{
    width: 85%;
    margin: 20px auto;
}
.card-title{
    font-size: 30px;
}
.card-detail{
    margin: 5px 5px 0 5px;
    font-size: 18px
}



/* おすすめセクション */
.suggest-section{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 85%;
    max-width: 1366px;
    margin: 70px auto;
}
.suggest-item img,
.album-item img{
    width: 100%;
    height: 100%;
    border: #535353 3px solid;
    border-radius: 30px;
}


/* お知らせセクション */
.news-section{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 85%;
    max-width: 1366px;
    margin: 70px auto;
    gap: 30px;
}
.news-item{
    border: #535353 3px solid;
    border-radius: 30px;
    width: 100%;
}
.news-item-inner{
    width: 85%;
    margin: 15px auto;
}
.news-date{
    font-size: 16px;
}
.news-content{
    font-size: 22px;
}


/* Aboutページ */
.about-container{
    width: 85%;
    max-width:  1366px;
    background-color: white;
    margin: 140px auto 160px;
    border: solid 5px #535353;
    border-radius: 80px;
}
.section-inner-about{
    display: flex;
    gap: 70px;
    margin: 0px auto;
    margin-bottom: 70px;
    width: 85%;
}
.section-inner-about img{
    border-radius: 50px;
    height: auto;
    width: 100%;
    display: block;
}
.section-inner-about img:hover{
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); 
    transition: 0.4s;
}
.about-section-about{
    width: 85%;
    margin: 70px auto 120px;
    align-items: center;
}
.about-section-title-about{
    font-size: 35px;
    margin-bottom: 50px;
    display: inline-block;
    border-bottom: 3px solid #75C5B1;
}
.about-detail{
    font-size: 22px;
    width: 80%;
    margin: 0 auto;
}
.about-music{
    display: flex;
    justify-content: space-between;
    border: #535353 3px solid;
    border-radius: 50px;
}
.about-music2{
    display: none;
}
.about-music-margin{
    margin-bottom: 45px;
}
.about-music-inner{
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 30px auto;
}
.about-music-inner img{
    width: 15%;
    height: auto;
    margin: auto;
}
.about-music-detail{
    width: 70%;
    margin: auto;
}
.about-section-detail2{
    display: none;
}


/* Suggestページ */
.album-gallery{
    max-width: 1366px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    width: 85%;
    margin: 140px auto 160px;
}


/* Newsページ */
.news-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 85%;
    max-width: 1366px;
    margin: 140px auto 85px;
    gap: 30px;
}
.news-item{
    background-color: white;
}
.nav-number{
    display: flex;
    justify-content: center; 
    gap: 35px;
    margin: 0 auto;
    margin-bottom: 160px;
}
.nav-number li{
    font-size: 22px;
}
.nav-number img{
    height: auto;
    width: 20px;
}


/* Contactページ */
article {
    width: 85%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 110px 0 110px;
}
.article-container{
    width: 70%;
    margin: auto;
}
label {
    display: block;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    width: 100%;
}
  
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    background-color: white;
    margin-bottom: 50px ;
    border-radius: 10px;
    border: 1.5px solid #535353;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
}
form#gform textarea {
    resize: vertical;
    min-height: 180px;
    background-color: white !important;
    border: 1.5px solid #535353 !important;
}
.article button {
    display: block;
    margin: 0 auto;
    padding: 5px 30px;
    color: #535353;
    font-size: 20px;
    font-weight: bold;
    background-color: white;
    border: #535353 2px solid;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}

/* albumページ */
.album-section {
    width: 85%;
    max-width: 1366px;
    background-color: white;
    margin: 100px auto 160px;
    border: solid 5px #535353;
    border-radius: 80px;
    display: flex;
    justify-content: center;
    gap: 70px;
    align-items: flex-start; /* or center */
}

.album-jacket {
    width: 40%;
    margin: 70px 0;
    position: sticky;
    top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-jacket img {
    width: 100%;
    height: auto;
    display: block;
}

.album-detail {
    width: 45%;
    margin: 70px 0;
}

.album-image {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    width: 100%;
}

.album-image img {
    width: 15%;
    height: auto;
    padding-right: 30px;
}
.album-inner{
    font-size: 24px;
    line-height: 1.7;
}
.album-intro{
    margin-bottom: 70px;
}
.album-text{
    font-size: 17px;
}


/* フッター */
body footer{
    width: 100%;
    background-color: white;
    border-top: 1px solid #535353;
}
.footer-inner{
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 30px ;
}
.footer-inner img{
    width: 50%;
    height: auto;
    object-fit: contain;
    margin: auto 0;
}
.footer-nav{
    display: flex;
    gap: 40px;
    margin: auto 0;
}
.footer-nav ul{
    border-left: 1px solid #535353;
    padding-left: 20px;
}
.footer-copy{
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 1024px){
    header{
        position: fixed;
        z-index: 999;
    }
    .header-inner {
        flex-wrap: wrap;
        margin-top: 5px;
    }
    .header-menu,
    .header-menu-contact {
        display: none;
    }
    .hamburger {
        display: flex;
        position: absolute;
        top: 35px;
        right: 15px;
    }
    .hamburger-menu.active {
       right: 0;
    }
    .hamburger-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .fastview {
        height: 100vh;
    }
    .fastview-copy {
       width: 95%;
    }

    .section{
        width: 90%;
        margin-bottom: 120px;
    }
    .section-inner{
        flex-direction: column;
        margin: 50px auto;
        gap: 50px;
    }
    .page-image{
        width: 100%;
    }
    .section-text{
        width: 100%;
    }
    .about-section, .suggest-section, .news-section{
        margin: 50px auto;
    }
    .left-align-on-mobile {
        text-align: left ;
    }
    .about-section-card{
        border-radius: 40px;
    }
    .card-title{
        font-size: 24px;
    }
    .about-section-card img{
        width: 70%;
    }
    .suggest-section{
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container{
        width: 90%;
    }
    .about-detail{
        width: 90%;
    }
    .about-music-inner img{
        width: 20%;
    }
    .about-section-about{
        margin: 50px auto 70px;
    }
    .section-inner-about{
        gap: 50px;
        margin-bottom: 50px;
    }

    .album-gallery{
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        width: 90%;
    }
    .news-section{
        grid-template-columns: repeat(1,1fr);
        gap: 20px;
    }
    .news-list{
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
        width: 80%;
        margin: 100px auto 85px;
    }
    .article{
        padding-top: 190px;
    }

    .album-padding{
        padding: 160px 0 50px;
    }
    .album-section {
        margin: 0 auto;
        gap: 0;
        flex-direction: column;
        width: 90%;
    }
    .album-jacket{
        margin: 60px auto 50px;
        position: static;
        top: 0;
        width: 85%;
    }
    .album-detail{
        margin: 10px auto 50px;
        width: 85%;
    }
    .album-intro{
        margin-bottom: 50px;
    }

    body footer {
        background-color: rgba(0, 0, 0, 0.0);
        border-style: none ;
    }
    .footer-fit{
        position: fixed;
        bottom: 0;
        left: 0;
    }
    .footer-inner{
        display: none;
    }
}
@media (max-width: 412px){
    header {
        height: 80px;
    }
    .header-logo img{
       height: 50px;
       width: auto;
    }
    .hamburger {
        top: 25px;
        right: 15px;
        width: 25px;
        height: 25px;
    }
    .hamburger span {
        height: 2px;
        width: 25px;
    }
    .hamburger-links a{
        font-size: 20px;
    }

    .fastview-copy p{
        font-size: 40px;
    }

    .home-container{
        padding-top: 70px;
    }
    .section{
        border: 3px solid #535353;
        border-radius: 50px;
        margin-bottom: 90px;
    }
    .section-inner{
        margin: 30px auto;
        gap: 30px;
    }
    .section-inner img{
        border-radius: 40px;
    }
    .section-title{
        font-size: 22px;
        margin-bottom: 15px;
    }
    .section-detail{
        font-size: 16px;
    }
    .about-music{
        display: none;
    }
    .about-music2{
        display: block;
    }
    .about-music-inner{
        margin: 15px auto;
        width: 85%;
    }
    .about-music-inner img{
        width: 10%;
        margin-right: 10px;
    }
    .about-music-detail{
        width: 100%;
    }
    .about-music-margin{
        margin-bottom: 20px;
    }
    .about-section, .suggest-section, .news-section{
        margin: 30px auto;
    }
    .about-section-title{
        font-size: 22px;
    }
    .about-section-detail{
        display: none;
    }
    .about-section-detail2{
        display: block;
        width: 100%;
    }
    .about-section-card{
        text-align: unset;
        width: 100%;
        margin-bottom: 20px;
    }
    .about-container{
        margin: 70px auto 90px;
        border: #535353 solid 3px;
        border-radius: 50px;
    }
    .about-section-about{
        margin: 20px auto 50px;
    }
    .about-section-title-about{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .about-detail{
        font-size: 16px;
    }

    .card-inner{
        display: flex;
        margin: 10px auto;
        gap: 30px;
    }
    .card-img{
        width: 30%;
        margin: auto;
    }
    .card-img img{
        width: 100%;
        height: auto;
    }
    .card-text{
        width: 80%;
        margin: auto;
    }
    .card-title{
        font-size: 18px;
        margin-bottom: 3px;
    }
    .card-detail{
        font-size: 14px;
        line-height: 1.8;
        margin: 0 ;
    }
    .section-inner-about{
        flex-direction: column;
        gap: 20px;
    }
    .section-inner-about img{
        border-radius: 40px;
    }

    .suggest-section{
        gap: 15px;
    }
    .suggest-item img, 
    .news-item, 
    .album-item img, 
    .about-section-card, 
    .about-music,
    .about-music2{
        border: #535353 2px solid;
        border-radius: 20px;
    }

    .news-date{
        font-size: 14px;
    }
    .news-content{
        font-size: 15px;
    }


    .album-gallery{
        gap: 15px;
        width: 90%;
        margin: 70px auto 90px;
    }

    .news-list{
        gap: 15px;
        margin: 70px auto 40px;
    }
    .nav-number{
        margin-bottom: 90px;
    }

    .article{
        padding: 110px 0 90px;
    }
    .article-container{
        width: 90%;
    }

    .album-padding{
        padding: 130px 0 90px;
    }
    .album-section{
        border: #535353 3px solid;
        border-radius: 50px;
    }
    .album-jacket{
        margin: 30px auto;
    }
    .album-inner{
        font-size: 18px;
    }
    .album-image img{
        width: 20%;
    }
    .album-detail{
        margin: 0 auto 20px;
    }
    .album-text{
        font-size: 16px;
    }

    .footer-fit{
        position: relative;
    }

}