@charset "UTF-8";

/*PCサイズレスポンシブ*/
@media(min-width:1000px) {

    body {
        min-width: 1000px;

    }

    .container {
        width: 100%;
        height: auto;
        color: #5d5c5c;
    }

    .header {
        width: 100%;
        height: 130px;
    }

    .header1 img {
        width: 10%;
        height: 100%;
        object-fit: cover;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: rgba(242, 180, 243, 0.866);
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        top: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }


    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #615f5f;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 30px;
        right: 20px;
        cursor: pointer;
        width: 70px;
        height: 70px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fd91e0;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 27px;
    }

    .openbtn span:nth-of-type(3) {
        top: 40px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    #main {
        width: 100%;
        height: auto;
        margin-top: 3%;
    }

    .newstop {
        width: 100%;
        height: auto;
    }

    .newstop img {
        width: 100%;
        height: auto;
    }

    #section {
        width: 100%;
        height: auto;
    }

    .day {
        width: 100%;
        height: auto;
        font-size: 20px;
        margin-top: 5%;
        margin-left: 20%;
        font-family: "Mochiy Pop P One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #6d6d6d;
    }

    .marker {
        background: linear-gradient(transparent 60%, #f5dcf3 60%);
        font-weight: bold;
    }

    .sentence1 p {
        width: 100%;
        height: auto;
        font-size: 25px;
        padding-top: 1%;
        padding-bottom: 1%;
        text-align: center;
        line-height: 1.6;
        font-family: "Mochiy Pop P One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #6d6d6d;
        background-color: #f5dcf3;
    }

    .marker2 {
        background: linear-gradient(transparent 60%, #dc93fc 60%);
        font-weight: bold;
    }


    .newspic {
        width: 100%;
        height: auto;
        margin-top: 5%;
    }

    .newspic img {
        width: 35%;
        height: auto;
        margin: auto;
    }

    .sentence2 p {
        width: 100%;
        height: auto;
        font-size: 30px;
        text-align: center;
        margin-top: 80px;
        line-height: 200%;
        line-height: 1.8;
        font-family: "Mochiy Pop P One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #6d6d6d;
    }

    .sentence3 p {
        width: 100%;
        height: auto;
        text-align: center;
        margin-top: 3%;
        padding-bottom: 10%;
    }

    .sentence3 a {
        color: #0000ee;
        /* 標準的なリンクの青色 */
        text-decoration: underline;
        /* 下線を引く（必要なら） */
    }

    .footer {
        width: 100%;
        height: 250px;
        background-color: #f5dcf3;
        margin-top: 100px;
        padding-bottom: 50px;
    }

    .footer1 {
        width: 100%;
        height: 100%;
        padding-top: 30px;
        padding-left: 60px;
        line-height: 200%;
    }

    .footer2 {
        width: 100%;
        height: auto;
        text-align: center;
        background-color: #f5dcf3;
    }
}



/*ipadサイズレスポンシブ*/
@media(min-width:600px) and (max-width:999px) {
    body {
        min-width: 600px;
        max-width: 999px;
    }

    .container {
        width: 100%;
        height: auto;
        color: #5d5c5c;
    }

    .header {
        width: 100%;
        height: 100px;
    }

    .header img {
        width: 15%;
        height: 100%;
        object-fit: cover;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: rgba(242, 180, 243, 0.866);
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        top: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }


    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #5d5c5c;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 20px;
        right: 20px;
        cursor: pointer;
        width: 70px;
        height: 70px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fd91e0;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 27px;
    }

    .openbtn span:nth-of-type(3) {
        top: 40px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    #main {
        width: 100%;
        height: auto;
        margin-top: 3%;
    }

    .newstop {
        width: 100%;
        height: auto;
    }

    .newstop img {
        width: 100%;
        height: auto;
    }

    #section {
        width: 100%;
        height: auto;
    }

    .day {
        width: 100%;
        height: auto;
        font-size: 15px;
        margin-top: 5%;
        margin-left: 20%;
        font-family: "Mochiy Pop P One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #6d6d6d;
    }

    .marker {
        background: linear-gradient(transparent 60%, #f5dcf3 60%);
        font-weight: bold;
    }

    .sentence1 p {
        width: 100%;
        height: auto;
        font-size: 20px;
        padding-top: 1%;
        padding-bottom: 1%;
        text-align: center;
        line-height: 1.8;
        font-family: "Mochiy Pop P One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #6d6d6d;
        background-color: #f5dcf3;
    }

    .marker2 {
        background: linear-gradient(transparent 60%, #dc93fc 60%);
        font-weight: bold;
    }


    .newspic {
        width: 100%;
        height: auto;
        margin-top: 5%;
    }

    .newspic img {
        width: 35%;
        height: auto;
        margin: auto;
    }

    .sentence2 p {
        width: 100%;
        height: auto;
        font-size: 20px;
        text-align: center;
        margin-top: 4%;
        line-height: 1.8;
        font-family: "Mochiy Pop P One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #6d6d6d;
    }

    .sentence3 p {
        width: 100%;
        height: auto;
        text-align: center;
        margin-top: 3%;
        padding-bottom: 10%;
    }

    .sentence3 a {
        color: #0000ee;
        /* 標準的なリンクの青色 */
        text-decoration: underline;
        /* 下線を引く（必要なら） */
    }

    .footer {
        width: 100%;
        height: 180px;
        background-color: #f5dcf3;
        margin-top: 100px;
        padding-bottom: 30px;
    }

    .footer1 {
        width: 100%;
        height: 100%;
        font-size: 12px;
        padding-top: 30px;
        padding-left: 40px;
        line-height: 200%;
    }

    .footer2 {
        width: 100%;
        height: auto;
        font-size: 10px;
        text-align: center;
        background-color: #f5dcf3;
    }

}

/*SPサイズレスポンシブ*/
@media(max-width:599px) {
    body {
        max-width: 599px;
    }

    .container {
        width: 100%;
        height: auto;
        color: #5d5c5c;
    }

    .header {
        width: 100%;
        height: 60px;
    }

    .header img {
        width: 15%;
        height: 100%;
        margin-left: 10px;
        object-fit: cover;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: rgba(242, 180, 243, 0.866);
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        top: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }


    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #5d5c5c;
        font-size: 10px;
        text-decoration: none;
        padding: 5px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 3px;
        right: 8px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fd91e0;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 32px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    #main {
        width: 100%;
        height: auto;
        margin-top: 2%;
    }

    .newstop {
        width: 100%;
        height: auto;
    }

    .newstop img {
        width: 100%;
        height: auto;
    }

    #section {
        width: 100%;
        height: auto;
    }

    .day {
        width: 100%;
        height: auto;
        font-size: 10px;
        margin-top: 3%;
        margin-left: 20%;
        font-family: "Mochiy Pop P One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #6d6d6d;
    }

    .marker {
        background: linear-gradient(transparent 60%, #f5dcf3 60%);
        font-weight: bold;
    }

    .sentence1 p {
        width: 100%;
        height: auto;
        font-size: 15px;
        padding-top: 1%;
        padding-bottom: 2%;
        text-align: center;
        line-height: 1.2;
        font-family: "Mochiy Pop P One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #6d6d6d;
        background-color: #f5dcf3;
    }

    .marker2 {
        background: linear-gradient(transparent 60%, #dc93fc 60%);
        font-weight: bold;
    }


    .newspic {
        width: 100%;
        height: auto;
        margin-top: 5%;
    }

    .newspic img {
        width: 35%;
        height: auto;
        margin: auto;
    }

    .sentence2 p {
        width: 100%;
        height: auto;
        font-size: 13px;
        text-align: center;
        margin-top: 3%;
        line-height: 1.2;
        font-family: "Mochiy Pop P One", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #6d6d6d;
    }

    .sentence3 p {
        width: 100%;
        height: auto;
         font-size: 10px;
        text-align: center;
        margin-top: 5%;
        padding-bottom: 10%;
    }

    .sentence3 a {
        color: #0000ee;
        /* 標準的なリンクの青色 */
        text-decoration: underline;
        /* 下線を引く（必要なら） */
    }

    .footer {
        width: 100%;
        height: 130px;
        background-color: #f5dcf3;
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .footer1 {
        width: 100%;
        height: 100%;
        font-size: 8px;
        padding-top: 20px;
        padding-left: 20px;
        line-height: 180%;
    }

    .footer2 {
        width: 100%;
        height: auto;
        font-size: 5px;
        text-align: center;
        background-color: #f5dcf3;
    }

}