@charset "UTF-8";

/* 基本色 */
:root {
    --main-color-01: #fdfdff;
    --main-color-02: #f1f2f3;
    --main-color-03: #d8d9da;
    --main-color-04: #bebfc0;
    --main-color-05: #52575a;
    --main-color-shadow: #bababa;
    --accent-color-01: #233d9b;
    --accent-color-02: #b22d35;
    --accent-color-03: #fbd033;
    --text-dark-color: #52575a;
    --text-bright-color: #fdfdff;
    --text-link-color: #687cc7;
    --icon-color: #fdfdff;
    --large-width: 1000px;
    --middle-width: 800px;
}



/* 基本設定： フォントサイズ */
@media (max-width: 767px) {
    /* スマホ画面用の設定 */
    :root {
        font-size: 16px;
    }
}
@media (min-width: 768px) and (max-width: 1099px) {
    /* タブレット画面用の設定 */
    :root {
        font-size: 16px;
    }
}
@media (min-width: 1100px) {
    /* PC画面用の設定 */
    :root {
        font-size: 16px;
    }
}
body {
    font-size: 1rem;
}



/* 基本設定： ページ全体 */
body {
    margin: 0;
    font-family: 'Lora', 'Noto Serif JP', serif;
/*
'Spartan', Roboto, "Droid Sans", "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
"游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
'klee','メイリオ','Hiragino Kaku Gothic ProN',sans-serif;
'Noto Serif JP', serif;
*/
    background: #f1f2f3;
    background: var(--main-color-02);
    color: #4e535c;
}



/* ヘッダー */
header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background: #f1f2f3;
    background: var(--main-color-02);
}

/* ヘッダーA： サイト名 */
.headA {
    display: inline-block;
    padding: 15px 15px 15px 30px;
    line-height: 60px;
    font-family: 'Noto Serif JP', serif;
    color: #52575a;
    color: var(--main-color-05);
    font-size: 1.67rem;
    text-decoration: none;
    letter-spacing: 0.13em;
}

@media (max-width: 767px) {
    /* スマホ画面用の設定 */
    .headA {
        padding: 0 20px;
        line-height: 50px;
        font-size: 1.5rem;
        letter-spacing: 0.08em;
    }
}

@media (min-width: 768px) and (max-width: 1099px) {
    /* タブレット画面用の設定 */
    .headA {
        line-height: 60px;
    }
}

/* ヘッダーB： ナビゲーションメニュー */
.headB ul {
    margin: 0;
    padding-right: 30px;
    list-style: none;
}

.headB a {
    display: block;
    padding: 15px;
    color: inherit;
    font-size: 13px;
    text-decoration: none;
}

.headB a:hover {
    background-color: rgba(0,0,0,0.1);
}

.headB i {
    color: #4e535c;
    font-size: 15px;
}

@media (min-width: 768px) and (max-width: 1099px) {
    /* タブレット画面用の設定 */
    .headB a {
        padding: 15px 10px;
    }
}

@media (min-width: 768px) {
    /* タブレット・PC画面用の設定 */
    header .container {
        display: flex;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
    }
    .headB ul {
        display: flex;
        margin-top: 25px;
    }
}


/* ヘッダーC： トグルボタン */
@media (max-width: 767px) {
    /* スマホ画面用の設定 */
    header .container-small {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .headC {
        padding: 20px;
        border: none;
        outline: none;
        background: #f1f2f3;
        background: var(--main-color-02);
        font-size: 1.2rem;
        color: #52575a;
        opacity: 0.7;
        cursor: pointer;
    }
    .headB {
        display: none;
        background: #f1f2f3;
        background: var(--main-color-02);
        opacity: 0.9;
    }
    .headB ul {
        text-align: left;
    }
    .headB li {
        display: inline;
    }
}

@media (min-width: 768px) {
    /* タブレット・PC画面用の設定 */
    .headC {
        display: none;
    }
    .headB {
        display: block !important;
    }
}



/* フッター */
footer {
    color: #fdfdff;
    color: var(--text-bright-color);
    background-color: #d8d9da;
    background-color: var(--main-color-03);
}

/* フッターA： コピーライト */
.footA {
    padding: 50px 0;
    font-size: 0.6rem;
    text-align: center;
/*   font-family: 'Montserrat', sans-serif;*/
}



/* コンテンツA： ヒーローイメージ */
.conA {
    align-items: center;
    justify-content: center;
    height: 90vh;
    width: 100vw;
    margin: 10vh auto auto auto;
    background-image:
        linear-gradient(
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.5)),
        url(img/hero02.jpg);
    background-position: center center;
    background-repeat:no-repeat;
    background-size:cover;
    color: #fdfdff;
    color: var(--text-bright-color);
    text-align: center;
}

.conA .logo img {
    height: 35vh;
    margin: 20vh 0 5vh 0;
}

.conA a {
    position: absolute;
    padding-top: 70px;
    bottom: 20px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-decoration: none;
}

.conA a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-left: -12px;
  border-left: 1px solid #fdfdff;
  border-bottom: 1px solid #fdfdff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@media (max-width: 767px) {
    /* スマホ画面用の設定 */
    .conA {
        height: 95vh;
        width: 100vw;
        margin: 5vh auto auto auto;
    }
    .conA .logo img {
        height: 50vw;
        margin: 10vh 0 30vh 0;
    }
    .conA .text {
        font-size: 0.9rem;
    }
    .conA a {
        display: none;
    }
}

@media (min-width: 768px) {
    /* タブレット・PC画面用の設定 */
    .conA {
        background-image:
            linear-gradient(
                rgba(0,0,0,0.5),
                rgba(0,0,0,0.5)),
            url(img/hero01.jpg);
        background-attachment: fixed;
    }
}


/* コンテンツB： 最新リリース情報 */
.conB {
    display: flex;
    flex-wrap: wrap;
    padding: 10vh 10vw 100px 10vw;
    align-items: flex-start;
    justify-content: center;
    background-color: #d8d9da;
    background-color: var(--main-color-03);
    color: inherit;
    text-align: center;
}

.conB .compact {
    height: 450px;
    min-height: 0;
}

.conB h2 {
    width: 7rem;
    margin-top: 0;
    margin-bottom: 40px;
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: 1.4rem;
    letter-spacing: 0.30em;
    text-align: center;
}

.conB .post{
    margin: 0 0.5rem 1.5rem 0.5rem;
    padding: 1.5rem 0.8rem;
    background-color: #fdfdff;
    background-color: var(--main-color-01:);
    box-shadow: 0 0 60px #bababa;
    box-shadow: 0 0 60px var(--main-color-shadow);
}

.conB img {
    width: 60vw;
}

.conB .sentence {
    padding-top: 1rem;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.13em;
}

.conB .view_all {
    width: 75vw;
    text-align: right;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.conB a {
    color: inherit;
    text-decoration: none;
}

.conB a:hover {
    background-image: linear-gradient(
        rgba(225,225,225,0.2),
        rgba(225,225,225,0.2)
    );
}

@media (min-width: 768px) {
    /* タブレット・PC画面用の設定 */
    .conB .post {
        max-width: 1000px;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
    }
    .conB img {
        width: 15vw;
    }
}


/* コンテンツC： 最新ニュース一覧 */
.conC {
    display: flex;
    flex-wrap: wrap;
    padding: 10vh 10vw 100px 10vw;
    align-items: flex-start;
    justify-content: center;
    color: #52575a;
    color: var(--text-dark-color);
}

.conC h2 {
    width: 7rem;
    margin-top: 0;
    margin-bottom: 40px;
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: 1.4rem;
    letter-spacing: 0.30em;
    text-align: center;
}

.conC .text {
    width: 75vw;
    margin: 0 0.5rem 1.5rem 0.5rem;
    border-collapse: collapse;
    border-top: solid 1px #52575a;
    border-top: solid 1px var(--text-dark-color);
}

.conC .post{
    padding: 1.5rem 1rem;
    border-collapse: collapse;
    border-bottom: solid 1px #52575a;
    border-bottom: solid 1px var(--text-dark-color);
}

.conC .day, .conC .sentence {
    text-align: left;
}

.conC .day {
    padding-bottom: 0.4rem;
    font-size: 0.7rem;
    word-break: keep-all;
}

.conC .view_all {
    width: 75vw;
    text-align: right;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.conC a {
    color: #52575a;
    color: var(--text-dark-color);
    text-decoration: none;
}

@media (min-width: 768px) {
    /* タブレット・PC画面用の設定 */
    .conC .text {
        width: 50vw;
        max-width: 1000px;
        max-width: var(--large-width);
    }
}

/* コンテンツD： プロフィール */
.conD {
    display: flex;
    flex-wrap: wrap;
    padding: 10vh 10vw 100px 10vw;
    align-items: flex-start;
    justify-content: center;
    color: inherit;
    text-align: center;
}

.conD .compact {
    height: 450px;
    min-height: 0;
}

.conD h2 {
    width: 7rem;
    margin-top: 0;
    margin-bottom: 40px;
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: 1.4rem;
    letter-spacing: 0.30em;
    text-align: center;
}

.conD p {
    margin: 10px 0 30px 0;
}

.conD .post{
    margin: 0 0.5rem 1.5rem 0.5rem;
}

.conD img {
    width: 50vw;
}

.conD .sentence {
    padding-top: 1rem;
    letter-spacing: 0.13em;
}


@media (min-width: 768px) {
    /* タブレット・PC画面用の設定 */
    .conD .post {
        max-width: 1000px;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
    }
    .conD img {
        width: 12vw;
    }
}


/* ニュースページ： 記事 */
.news .container {
    padding: 220px 0 100px 0;
    background: #d8d9da;
    background: var(--main-color-03);
}

.news h1 {
    margin: 10px auto 80px auto;
    padding: 0 10px;
    max-width: 800px;
    max-width: var(--middle-width);
    letter-spacing: 0.2em;
    color: #52575a;
    color: var(--text-dark-color);
}

.news a {
    color: #687cc7;
    color: var(--text-link-color);
    text-decoration: none;
}

.post .container {
    margin: 0 auto 80px auto;
    padding: 0;
    max-width: 800px;
    max-width: var(--middle-width);
    background: #f1f2f3;
    background: var(--main-color-02);
}

.post .text {
    padding: 80px 100px;
}

.post h2 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.post h3 {
    padding-bottom: 20px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.post p {
    font-size: 0.9rem;
    line-height: 2;
}

.post img {
    max-width: 100%;
}

@media (max-width: 767px) {
    /* スマホ画面用の設定 */
    .news .container {
        padding: 150px 0 100px 0;
        right: 0;
    }
    .news h1 {
        margin: 20px 5vw;
    }
    .post .container {
        margin: 0 auto 80px auto;
        padding: 0;
    }
    .post .text {
        padding: 30px 5vh;
    }
    .post h2 {
        font-size: 1.1rem;
    }
    .post h3 {
        padding-bottom: 10px;
    }
}



/* ミュージックページ */
.music .container {
    padding: 220px 0 100px 0;
    background-color: #d8d9da;
    background-color: var(--main-color-03);
    color: #52575a;
    color: var(--text-dark-color);
}

.music img {
    box-shadow: 0 0 30px #bababa;
    box-shadow: 0 0 30px var(--main-color-shadow);
}

.music h1 {
    margin: 20px auto 70px auto;
    padding: 0 10px;
    max-width: 800px;
    max-width: var(--middle-width);
    letter-spacing: 0.2em;
}

.music h2 {
    font-size: 1.5rem;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.13em;
}

.music a {
    color: #687cc7;
    color: var(--text-link-color);
    font-size: 0.7rem;
    text-decoration: none;
}

.music .info {
    padding-top: 30px;
    font-size: 0.7rem;
}

@media (max-width: 767px) {
    /* スマホ画面用の設定 */
    .music .container {
        padding: 150px 0 100px 0;
    }
    .music .post .container {
        padding: 0;
    }
    .music h1 {
        margin: 20px 10vw 30px 10vw;
        padding: 0;
    }
    .music img {
        margin: 10px 10vw;
        padding: 0;
        width: 80vw;
        align-content: center;
    }
    .music .text {
        margin: 15px 12vw;
        padding: 0;
        width: 76vw;
        align-content: center;
    }
}

@media (min-width: 768px) {
    /* タブレット・PC画面用の設定 */
    .music .post .container {
        display: flex;
        margin-bottom: 80px;
        margin-left: auto;
        margin-right: auto;
        padding: 0px;
        max-width: 800px;
        max-width: var(--middle-width);
    }
    .music .photo {
        flex: 1;
    }
    .music .text {
        flex: 1;
        padding: 0 0 0 50px;
    }
}



/* 歌詞ページ */
.lyrics .container {
    padding: 220px 0 100px 0;
    background-color: #d8d9da;
    background-color: var(--main-color-03);
    color: #fdfdff;
    color: var(--text-bright-color);
}

.lyrics img {
    box-shadow: 0 0 30px #bababa;
    box-shadow: 0 0 30px var(--main-color-shadow);
}

.lyrics h1 {
    margin: 20px auto 70px auto;
    padding: 0 10px;
    max-width: 1000px;
    max-width: var(--large-width);
    letter-spacing: 0.2em;
}

.lyrics p {
    margin-top: -8px;
    padding-bottom: 50px;
}

.lyrics .info {
    padding-top: 20px;
    font-size: 0.7rem;
}

@media (max-width: 767px) {
    /* スマホ画面用の設定 */
    .lyrics .container {
        padding: 150px 0 100px 0;
    }
    .lyrics .post .container {
        padding: 0;
    }
    .lyrics h1 {
        margin: 20px 10vw 30px 10vw;
        padding: 0;
    }
    .lyrics img {
        margin: 10px 10vw;
        padding: 0;
        width: 80vw;
        align-content: center;
    }
    .lyrics .text {
        margin: 15px 15vw;
        padding: 0;
        width: 70vw;
        align-content: center;
    }
}

@media (min-width: 768px) {
    /* タブレット・PC画面用の設定 */
    .lyrics .post .container {
        display: flex;
        margin-bottom: 80px;
        margin-left: auto;
        margin-right: auto;
        padding: 0px;
        max-width: 1000px;
        max-width: var(--large-width);
    }
    .lyrics .photo {
        flex: 1;
    }
    .lyrics .text {
        flex: 1;
        padding: 0 0 0 50px;
    }
}



/* アバウトページ： 画像と歴史 */
.about {
    background:no-repeat;
    background-image:
        linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)),
        url(img/hero01.jpg);
    background-size:cover;
    background-position: center center;
}

.about .container {
    margin-top: 15vh;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
    max-width: 80vw;
    color: #fdfdff;
}

.about h1 {
    padding-top: 100px;
    padding-bottom: 30px;
    font-size: 2em;
}

.about p {
    padding-bottom: 10px;
    font-size: 1rem;
    line-height: 2;
}

.about img {
    max-width: 100%;
}

@media (max-width: 767px) {
    /* スマホ画面用の設定*/
    .about {
        background-size: cover;
        background-position: center;
    }
    .about h1 {
        padding-top: 60px;
        padding-bottom: 20px;
        font-size: 1.6rem;
    }
    .about p {
        font-size: 0.9rem;
        line-height: 2.5;
    }
    .about h1, .about p {
        margin-left: 5vw;
        margin-right: 5vw;
        width: 90vw;
    }
}

.history .container{
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
    max-width: 800px;
    max-width: var(--middle-width);
}

.history .text {
    padding-bottom: 200px;
}

.history h2 {
    margin-top: 100px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.history table{
    font-size: 0.8rem;
}

.history th, .history td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-right: 1rem;
}

.history th {
    text-align: left;
    word-break: keep-all;
}

@media (max-width: 767px) {
    /* スマホ画面用の設定*/
    .history {
        margin-left: 4vw;
        margin-right: 4vw;
        width: 92vw;
    }
}



/* お問い合わせページ： 問い合わせ先 */
.contact {
    padding: 220px 0 100px 0;
    background: #d8d9da;
    background: var(--main-color-03);
    color: #52575a;
    color: var(--text-dark-color);
}

.contact h1 {
    margin: 10px auto 40px auto;
    padding: 0 10px;
    max-width: 800px;
    max-width: var(--middle-width);
    letter-spacing: 0.2em;
}

.contact p {
    margin: 10px auto 80px auto;
    padding: 0 10px;
    max-width: 800px;
    max-width: var(--middle-width);
}

.contact-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto 500px auto;
    padding: 40px 0;
    max-width: 800px;
    max-width: var(--middle-width);
    background: #f1f2f3;
    background: var(--main-color-02);
    text-align: center;
}

.mail i {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2.2rem;
    width: 2em;
    line-height: 2em;
    border-radius: 50%;
    text-align: center;
    background-color: #d8d9da;
    background-color: var(--main-color-03);
    color: #fdfdff;
    color: var(--icon-color);
}

.mail h2 {
    margin-top: 0;
    font-size: 1rem;
    color: #52575a;
    color: var(--text-dark-color);
}

.mail a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 767px) {
    /* スマホ画面用の設定 */
    .contact {
        padding: 150px 0 100px 0;
    }
    .contact-wrap {
        margin: 0;
    }
    .contact h1 , .contact p {
        margin: 30px 10vw;
        padding: 0;
    }
}

@media (min-width: 768px) {
    /* タブレット・PC画面用の設定 */
    .contact-wrap {
        display: flex;
    }
    .mail {
        flex: 1;
    }
}
