@charset "UTF-8";

/*共通部分*/
html{
    font-size: 100%;
}
body{
    font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",sans-serif ;
    line-height: 1.7;
    color: #432;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}

/*レイアウト*/
.align-center{
    text-align: center;
}
.sp-only{
    display: inline;
}


/*見出し*/
.shippori-mincho-regular {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }
  
.shippori-mincho-bold {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }  

.font-english{
    font-family: "Philosopher",sans-serif;
    font-weight: normal;
}
.page-title,
.heading-large{
    font-size: 3rem;
    text-align: center;
}
.page-title{
    margin-top: 2rem;
    line-height: 1.4;
}
.heading-large{
    margin-bottom: 1rem;
}

/*ヘッダー*/
.logo{
    width: 100px;
}
.main-nav{
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 1rem;
}
.main-nav a{
    color: #432;
    font-size: 2.5rem;
}
.main-nav a:hover{
    color: #0bd;
}

/*ヘッダーカバー画像*/
.cover{
    background-size: cover;
    background-position: center bottom;
    height: 400px;
}
.cover-home{
    background-image: url();/*後日画像差し込み*/
}

/*HOME*/
.about{
    max-width: 750px;
    text-align: center;
    padding: 0 1.5rem;
    margin: 3rem auto 5rem;
    font-size: 1.5rem;
}
.message{
    line-height: 1;
    margin-bottom: .75rem;
}
.word{
    margin-bottom: 1.25rem;
}

/*INFO*/
.info{
    width: 100%;
    max-width: 570px;
    margin: auto;
    padding: 0 1rem;
    border-spacing: 5;
    font-size: medium;
    list-style-type: none;
}
.category{
    font-size: 1.75rem;
    font-weight: bold;
}
.content{
    font-size: 2rem;
    border-bottom: 1px solid ;
    word-break: break-word;
}

/*SNS*/
.sns-item{
    margin-bottom: 2rem;
    font-size: 2rem;
}
.sns-item .heading-medium{
    margin-bottom: .5rem;
}
.line-btn{
    width: 300px;
    height: auto;
}
.insta-wrapper{
    display: flex;
    justify-content: center;
    margin: 2rem auto;
}
/*フッター*/
.copyright{
    background-color: #432;
    text-align: center;
    padding: 2rem 0;
    margin-top: 6rem;
    color: #fff;
}

/*デスクトップ版
----------------------------*/
@media(min-width: 800px){
    /*レイアウト*/
    .sp-only{
        display: none;
    }
    
    /*見出し*/
    .page-title{
        font-size: 5rem;
    }
    .heading-large{
        font-size: 4rem;
    }

    /*ヘッダー*/
    .main-nav{
        font-size: 2rem;
    }
    /*HOME*/
    .page-header{
        padding-top: 1.5rem;
    }
    .about p{
        max-width: 650;
    }
}