@charset "UTF-8";
/*
Theme Name: ri-clay
Author: ryo
Discription: ri-clayのテーマ
Version: 1.0
*/



html {
    font-size: 100%;
}

body {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    background-image: url(img/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}


/*------------------
        共通
--------------------*/
img {
    width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

.section {
    max-width: 1200px;
    padding: 30px 10px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
}

.section-title-img {
    width: 450px;
}

.btn {
    text-align: center;
}

.slider-btn {
    margin-top: 50px;
}

.btn-link,
.prev-link,
.next-link,
.link {
    display: inline-block;
    padding: 5px 20px;
    box-shadow: 0 0 5px 5px rgb(180, 180, 180);
    background-color: rgb(180, 180, 180);
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    transition: 0.3s;
}

/*.linkのみ変更を上書き*/
.link {
    box-shadow: 0 0 5px 5px rgb(174, 194, 250);
    background-color: rgb(174, 194, 250);
}


.btn-link:hover,
.prev-link:hover,
.next-link:hover,
.link:hover {
    opacity: 0.7;
}

.link-opacity {
    transition: 0.3s;
}

.link-opacity:hover {
    opacity: 0.7;
}

.btn-link-center {
    text-align: center;
    margin: 50px 0;
}

.hamburger {
    width: 50px;
    height: 50px;
    z-index: 999;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 5px;
    display: none;
}

.bar {
    position: absolute;
    width: 70%;
    height: 3px;
    left: 7px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: ease .4s;
    display: inline-block;
}

.bar:nth-child(1) {
    top: 11px;
}

.bar:nth-child(2) {
    top: 23px;
}


.bar:nth-child(3) {
    top: 35px;
}

/*-----メインビジュアル-----*/


.mainvisual-area.sub {
    height: 60svh;
    background-image: url(img/mainvisual-sub.jpg);
    background-size: cover;
    background-position: 50% 35%;
}


/*-------------------------
    インビューアニメション
--------------------------*/

.js-fadeIn-left {
    transform: translateX(-50px);
    opacity: 0;
    transition: 0.8s;
}

.js-fadeIn-left.inview {
    transform: translateX(0);
    opacity: 1;
}

.js-fadeIn-up {
    transform: translateY(50px);
    opacity: 0;
    transition: 0.8s;
}

.js-fadeIn-up.inview {
    transform: translateY(0);
    opacity: 1;

}

.js-fadeIn-right {
    transform: translateX(50px);
    opacity: 0;
    transition: 0.8s;
}

.js-fadeIn-right.inview {
    transform: translateY(0);
    opacity: 1;
}

/*-------------------------
    ページトップボタン
--------------------------*/
.page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    transition: 0.8s;
    transform: translateY(150px);
}

.page-top.scroll {
    opacity: 1;
    transform: translateY(0);
}


.page-top-link {
    display: block;
    width: 70px;
    height: auto;
    text-decoration: none;
    color: #000;
}



.page-top-img {
    vertical-align: bottom;
}

.page-top-text {
    font-size: 0.625rem;
    font-weight: bold;
}

/*-------------------------
    ページネーション
--------------------------*/

.post__pagination {
    height: 200px;
    margin-top: 50px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-news-link-btn,
.post__pagination__left,
.post__pagination__right {
    order: 0;
    text-align: center;
    width: 180px;
}

/*
.link,
.prev-link,
.next-link {
    text-decoration: none;
    display: block;
    color: #000;
    transition: 0.3s;
}

.link:hover,
.prev-link:hover,
.next-link:hover {
    background-color: black;
    color: #fff;
}
*/


.post__pagination__left__text,
.post__pagination__right__text {
    font-size: 1.125rem;
    font-weight: bold;
}

/*-------------------------
            header
--------------------------*/
.header {
    width: 100%;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    z-index: 900;
}

.header-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    max-width: 30%;
}

.site-title-link {
    display: block;
}

.site-title-img {
    width: 100%;
    object-fit: cover;

}



.header-nav {
    background-color: rgb(235, 235, 235, 0.7);
    border-radius: 10px;
}

.nav-list {
    display: flex;
    column-gap: 5px;

}

.list-item {
    color: #000;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    width: 90px;
}

.list-item-link {
    display: block;
    text-decoration: none;
    color: #000000;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.list-item-link:hover {
    transform: translateY(-5px);
}


.list-item-link::before {
    position: absolute;
    content: "";
    display: block;
    background-color: #000;
    width: 100%;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    transform-origin: center bottom;
    transform: scale(0, 1);
    transition: 0.3s;
}

.list-item-link:hover::before {
    transform: scale(1, 1);
}

.nav-character {
    width: 50px;
    vertical-align: bottom;
    height: 50px;
    filter: contrast(130%);
}

.nav-text {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 0;
}

/*-------------------------
        mainvisual
--------------------------*/
.mainvisual {
    height: 100svh;
    margin-bottom: 50px;
}

.mainvisual-area {
    height: 100svh;
    background-image: url(img/mainvisual.jpg);
    background-position: 50% 50%;
    background-size: cover;
}


/*-------------------------
    introduction
--------------------------*/
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
    margin: 20px 50px;
}

.about-content-img {
    border-radius: 50%;
    width: 20%;
}

.about-contento-text {
    line-height: 2rem;
}


/*-------------------------
    advertisement
--------------------------*/
.advertisement-content {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    align-items: center;
}

.advertisement-area {
    display: block;
    padding: 8px;
    background-color: #fff;
    width: 50%;
}


/*-------------------------
        ブログ
--------------------------*/
.blog-post-area {
    margin: 20px auto;
    max-width: 1100px;
}

.main-content-flex {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    margin-bottom: 50px;
}

.main-content {
    display: block;
    width: calc(100% / 3);
    color: #000;
    text-decoration: none;
    box-shadow: 0 0 5px 2px #dfdfdf;
    transition: 0.3s;
    background-color: #ffffff;
    padding: 8px;
    border-radius: 5px;
}

.main-content:hover {
    opacity: 0.7;
}

.content-thumbnail {
    overflow: hidden;
    object-fit: cover;
}

.blog-content {
    padding: 10px;
}

.blog-title {
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.blog-content-info {
    margin-bottom: 5px;
    font-size: 0.875rem;
}

/*-------------------------
        作品紹介
--------------------------*/

.work-content,
.movie-content {
    margin: 20px auto;
    max-width: 1100px;
    width: 100%;
}

.slider {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}

.slider-item {
    overflow: hidden;
    object-fit: cover;
    padding: 0 10px;

}

.slider-item-link {
    /*width: 300px;
    height: 250px;*/
    display: block;
    object-fit: cover;
    object-position: center;
    overflow: hidden;

}


.slick-prev {
    background: url(img/prev-arrow.png) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    width: 25px;
    height: 50px;
    left: 30px;
    z-index: 800;
    filter: drop-shadow(0 0 10px rgb(144, 144, 144));
}

.slick-next {
    background: url(img/next-arrow.png) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    width: 25px;
    height: 50px;
    right: 30px;
    z-index: 800;
    filter: drop-shadow(0 0 10px rgb(101, 101, 101));
}

.slick-prev::before,
.slick-next::before {
    display: none;
}


/*-------------------------
        youtube
--------------------------*/
.slider-movie {
    object-fit: contain;
}

.slider-item-movie {
    margin: 0 10px;
    width: 40%;
}


.slider-item-movie-insert {
    display: block;
    width: 100%;
    height: 300px;
}



/*-------------------------
            footer
--------------------------*/
.footer {
    width: 100%;
    padding: 50px 30px;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.sns-nav-list {
    display: flex;
    column-gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.fa-youtube,
.fa-instagram,
.fa-envelope {
    font-size: 3rem;
    transition: 0.3s;
}

.fa-youtube:hover,
.fa-instagram:hover,
.fa-envelope:hover {
    transform: scale(1.2, 1.2);
}

.fa-instagram {
    background: linear-gradient(30deg, #fecb5c 15%, #EF3959 40%, #9E32B0 60%, #5557C9 90%) no-repeat;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copyright {
    text-align: center;
    font-size: 1rem;
}

/*-------------------------
        character-page
--------------------------*/



/*----キャラクター紹介-------*/
.character-chipiraru {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 50px;
}

.chipiraru-img {
    width: 45%;
    overflow: hidden;
    object-fit: cover;
}

.chipiraru-discription {
    width: 40%;
}

.chipiraru-title {
    font-size: 2rem;
    margin-bottom: 30px;

}

.chipiraru-text {
    width: 80%;
    margin: 0 auto;
}

.chipiraru-text p {
    margin-bottom: 20px;
}

.chipiraru-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 25px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.chipiraru-gallery-link {
    display: block;
    width: calc((100% / 7) - 30px);
    color: #000;
    text-decoration: none;
    transition: 0.8s;

}

.chipiraru-gallery-link:hover {
    opacity: 0.7;
}

.chipiraru-gallery-item {
    text-align: center;
}

.chipiraru-gallery-item-img {
    filter: contrast(120%);
}

/*----モーダルウィンドウ-------*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 0;
    z-index: 990;
    background-color: rgba(120, 123, 131, 0.8);
}

.modal.is-active {
    opacity: 1;
    pointer-events: auto;
}


.modal-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 990;
}

.modal-close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    z-index: 999;
    font-weight: bold;
    color: #000;
    background-color: #e8e8e8;
}

.modal-content {
    position: relative;
    background-color: #fff;
    width: 100%;
    max-width: 700px;
    padding: 50px 20px;
    object-fit: contain;
    z-index: 998;
}


.js-open-modal {
    object-fit: cover;
}


/*----チピラルグッズ-------*/

.grid {
    display: grid;
    max-width: 1000px;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    margin: 0 auto;
    padding: 50px 0;
}

.grid-item-link {
    display: block;
    transition: 0.8s;
}

.grid-item-link:hover {
    opacity: 0.7;
}


.item {
    box-shadow: 0 0 5px 0 #ccc;
    padding: 5px;
    background-color: #fff;
}

/*-------------------------
        contact
--------------------------*/

.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
}

/* フォームプラグインの自動で付与するクラス名*/
.mw_wp_form {
    padding: 30px 10px;
    background-color: #fff;
    border-radius: 20px;
}


.contact-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

label {
    width: 25%;
    font-weight: bold;
}

.required {
    font-size: 0.875rem;
    background-color: #505050;
    color: #fff;
    margin-left: 10px;
    padding: 2px 10px;
    font-weight: normal;
}

.input-area {
    width: 60%;
    background-color: #f9f9f9;
    border: 1px solid #bababa;
    padding: 10px;
}

textarea {
    width: 60%;
    background-color: #f9f9f9;
    border: 1px solid #bababa;
    padding: 10px;
}




.contact-attention {
    text-align: center;
}

.contact-error {
    color: #ff0000;
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-btn {
    margin: 0 10px;
}


/*-------------------------
    ブログ一覧ページ
--------------------------*/

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
}

.news-page-content {
    background-color: #f6f6f6;
}

.news-page-content-link {
    display: flex;
    justify-content: space-between;
    align-items: start;
    column-gap: 30px;
    text-decoration: none;
    color: #000;
    transition: 0.5S;
}

.news-page-content-link:hover {
    opacity: 0.7;
    box-shadow: 0 0 15px 0px #949494;
}

.archive-content-thumbnail {
    width: 20%;
    object-fit: cover;
}

.news-page-title-area {
    width: 80%;
    padding: 20px 0;
}

.news-page-info {
    font-size: 0.875rem;
}

.news-page-title {
    margin-bottom: 20px;
}

.border {
    margin: 20px 0;
}

/*---ページネーション----*/
.pnavi {
    text-align: center;
    margin-bottom: 50px;
}

.prev,
.page-numbers {
    padding: 10px 15px;
    color: #000000;
    margin-right: 10px;
    text-decoration: none;
    border: 1px solid #c2c1c1;
    border-radius: 3px;
}

.page-numbers.current {
    background-color: #c2c1c1;
    color: #fff;
}




/*-------------------------
    個別ブログページ
--------------------------*/
.section-inner.single-blog {
    padding: 30px;
    background-color: rgba(230, 213, 213, 0.5);
    margin-top: 30px;
    border-radius: 10px;
}

.shingle-news-page-info {
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.shingle-news-page-date {
    margin: right 15px;
}

.shingle-news-page-category {
    background-color: #bdbdbd;
    border-radius: 5px;
    padding: 0px 4px;
}


.shingle-page-news-title {
    padding: 10px 0;
    font-size: 2rem;
    border-bottom: 3px solid rgb(171, 192, 228);
}

.single-blog-thumbnail {
    overflow: hidden;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.single-blog-thumbnail-img {
    object-fit: cover;
}

.shingle-page-news-content {
    padding: 30px 40px;
}

.shingle-page-news-text {
    padding-top: 50px;
    line-height: 1.5rem;
}


/*-------------------------
        タブレット大
--------------------------*/
@media screen and (max-width:960px) {

    /*------------------
    共通
    --------------------*/
    .section {
        padding: 10px;
    }

    .section.contact {
        padding: 10px;
    }

    .section-inner {
        padding: 20px auto;
    }


    .mainvisual-area.sub {
        height: 60svh;
        background-image: url(img/mainvisual.jpg);
        background-size: cover;
        background-position: 50% 35%;
    }


    /*------------------
    トップページ
    --------------------*/

    .site-title {
        z-index: 999;
    }

    .header-nav {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transition: 0.5s;
        background-color: rgba(165, 165, 165, 0.7);
        border-radius: none;
        padding: 80px 50px;
    }

    .header-nav.active {
        visibility: visible;
        opacity: 1;
        transition: 0.5s;
        overflow-y: scroll;
    }

    .nav-list {
        justify-content: center;
        align-items: center;
        column-gap: 30px;
        row-gap: 30px;
        flex-wrap: wrap;
    }

    .list-item {
        font-size: 1.1rem;
        width: 180px;
    }

    .nav-character {
        width: 130px;
        height: 120px;

    }

    .nav-text {
        display: block;
        font-size: 1.1rem;
        letter-spacing: 1.1;
    }

    .hamburger {
        display: block;
        /*background-color: rgba(31, 31, 31, 0.7);*/
    }

    .js-hamburger.active .bar:nth-of-type(1) {
        top: 18px;
        left: 8px;
        transform: translateY(6px) rotate(-405deg);
        width: 70%;
    }


    .js-hamburger.active .bar:nth-of-type(2) {
        opacity: 0;

    }

    .js-hamburger.active .bar:nth-of-type(3) {
        top: 29px;
        left: 8px;
        transform: translateY(-6px) rotate(405deg);
        width: 70%;
    }

    /*-------------------
    お問い合わせページ
    --------------------*/
    label {
        width: 35%;
        font-weight: bold;
    }

    .required {
        font-size: 0.875rem;
        background-color: #505050;
        color: #fff;
        margin-left: 10px;
        padding: 2px 10px;
        font-weight: normal;
    }

    input {
        width: 50%;
    }

    textarea {
        width: 50%;
    }


    /*------------------
    ブログ個別ページ
    --------------------*/
    .section-inner.single-blog {
        margin: 30px 50px 30px 50px;
    }

}

/*-------------------------
        タブレット小
--------------------------*/
@media screen and (max-width:767px) {

    /*----------------
    共通
    ----------------*/
    .post__pagination {
        flex-wrap: wrap;
        overflow-wrap: break-word;
        margin-top: 30px;
    }

    .post__pagination__left,
    .post__pagination__right {
        max-width: 40%;
    }

    .post__pagination__left__text,
    .post__pagination__right__text {
        top: 20px;
        font-size: 1rem;
    }

    .single-news-link-btn {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 20px;
        order: 1;
    }


    .prev-link,
    .next-link,
    .link {
        padding: 5px;
        font-size: 1rem;
    }



    /*----------------
    ページトップ
    ----------------*/

    .page-top {
        right: 5px;
        bottom: 5px;
    }


    .page-top-link {
        width: 60px;
    }

    .page-top-img {
        width: 60px;
    }

    .page-top-text {
        font-size: 0.5rem;
    }

    /*--------------------
    トップページ--
    ----------------------*/
    /*-------ヘッダー-----*/
    .site-title {
        max-width: 50%;
    }

    /*--メインビジュアル--*/
    .mainvisual {
        margin-bottom: 30px;
    }

    /*--advertisement--*/
    .advertisement-content {
        flex-direction: column;
        justify-content: center;
        row-gap: 30px;
    }

    .advertisement-area {
        width: 80%;
    }



    /*--イントロダクション--*/
    .about-content {
        flex-direction: column;
        row-gap: 20px;
        margin: 20px;
    }

    .about-content-img {
        width: 25%;
    }


    /*--イントロダクション--*/

    .main-content-flex {
        flex-direction: column;
        justify-content: center;
        row-gap: 20px;
        margin-bottom: 30px;
    }

    .main-content {
        width: 80%;
        margin: 0 auto;
    }

    .main-content:hover {
        opacity: 0.7;
    }

    .content-thumbnail {
        overflow: hidden;
        object-fit: cover;
    }

    .blog-content {
        padding: 10px;
    }

    .blog-title {
        margin-bottom: 5px;
        font-size: 1.25rem;
    }

    .blog-content-info {
        margin-bottom: 5px;
        font-size: 0.875rem;
    }




    /*-------------------
    キャラクターページ
    --------------------*/
    .character-chipiraru {
        flex-direction: column;
        row-gap: 10px;
        margin-bottom: 20px;
    }

    .chipiraru-img {
        width: 50%;
    }

    .chipiraru-discription {
        width: 80%;
        margin: 0 auto;
    }

    .chipiraru-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .chipiraru-text {
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }

    .chipiraru-gallery {
        flex-wrap: wrap;
        column-gap: 25px;
        row-gap: 10px;
        margin-bottom: auto 0 auto 30px;
    }

    .chipiraru-gallery-link {
        width: calc((100% / 3) - 50px);
    }

    /*----モーダルウィンドウ-------*/


    .modal-content {
        width: 90%;
        max-width: 700px;
        padding: 50px 20px;
        object-fit: contain;
        z-index: 998;
    }


    /*----チピラルグッズ-------*/

    .grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        row-gap: 20px;
        margin: 0 auto;
        padding: 30px 0;
    }

    /*--------------------
    ブログアーカイブページ
    -----------------------*/

    .news-page-content-link {
        column-gap: 20px;
    }

    .archive-content-thumbnail {
        width: 30%;
    }

    .news-page-title-area {
        width: 70%;
        padding: 5px 0;
    }

    .news-page-title {
        margin-bottom: 20px;
    }

    .border {
        margin: 10px 0;
    }

    /*------youtube----------*/
    .slider-item-movie-insert {
        height: 380px;
    }

    /*------------------
    ブログ個別ページ
    --------------------*/
    .section-inner.single-blog {
        margin: 20px auto;
    }

    .shingle-page-news-content {
        padding: 10px;
    }
}

/*-------------------------
        スマートフォン
--------------------------*/
@media screen and (max-width:430px) {

    /*--------------------
    共通
    -----------------------*/

    .section {
        padding: 10px 20px;
    }

    .section.contact {
        padding: 10px;
    }

    .section-title-img {
        width: 300px;
    }


    .post__pagination__left__text,
    .post__pagination__right__text {
        font-size: 0.875rem;
    }


    .prev-link,
    .next-link,
    .link {
        font-size: 0.875rem;
    }


    /*--------------------
    トップページ
    -----------------------*/

    /*------ヘッダー------*/
    .site-title {
        max-width: 60%;
    }

    .nav-list {
        column-gap: 15px;
        row-gap: 15px;
    }

    .list-item {
        font-size: 1rem;
        width: 120px;
    }

    .nav-character {
        width: 100px;
        height: 100px;
    }

    .nav-text {
        font-size: 1rem;
    }


    /*------メインビジュアル------*/
    .mainvisual {
        margin-bottom: 20px;
    }

    .mainvisual-area {
        background-position: 40% 50%;
    }

    /*-------advertisement--------*/
    .advertisement-content {
        row-gap: 20px;
    }

    .advertisement-area {
        width: 100%;
    }



    /*--イントロダクション--*/


    .about-content-img {
        width: 50%;
    }


    /*------ブログ----------*/

    .main-content-flex {
        margin-bottom: 20px;
    }

    .main-content {
        width: 100%;
    }

    .blog-title {
        font-size: 1.125rem;
    }

    .blog-content-info {
        font-size: 0.875rem;
    }


    /*------youtube----------*/
    .slider-item-movie-insert {
        height: 250px;
    }


    /*------youtube----------*/

    .sns-nav-list {
        column-gap: 20px;
    }

    .fa-youtube,
    .fa-instagram,
    .fa-envelope {
        font-size: 2.5rem;
    }


    .copyright {
        text-align: center;
        font-size: 0.875rem;
    }

    /*--------------------
    キャラクターページ
    -----------------------*/
    /*----キャラクター紹介-------*/
    .chipiraru-discription {
        width: 100%;
    }

    .chipiraru-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .chipiraru-text {
        width: 100%;
    }

    .chipiraru-gallery {
        flex-wrap: wrap;
        column-gap: 10px;
        row-gap: 10px;
    }

    .chipiraru-gallery-link {
        width: calc(100% / 3);
    }

    /*----モーダルウィンドウ-------*/

    .modal-content {
        width: 100%;

    }

    /*-----キャラクターグッズ--------*/
    .grid {
        grid-template-columns: 1fr;
        padding: 20px 0;
    }



    /*--------------------
    ブログアーカイブページ
    -----------------------*/

    .news-page-title {
        font-size: 1.25rem;
    }


    /*--------------------
    お問い合わせページ
    -----------------------*/

    .form-wrapper {
        padding: 20px 10px;
    }

    .form {
        padding: 10px;
        border-radius: 10px;
    }


    .contact-list {
        flex-direction: column;
        justify-content: start;
        align-items: center;
        margin: 20px 0 40px 0;
    }

    label {
        width: 100%;
        margin-bottom: 10px;
    }

    .input-area {
        width: 100%;
    }

    textarea {
        width: 100%;
    }


    .mw_wp_form .btn-link {
        font-size: 0.875rem;
    }

    /*------------------s
    ブログ個別ページ
    --------------------*/
    .section-inner.single-blog {
        margin: 10px auto;
    }

    .shingle-news-page-info {
        margin-bottom: 5px;
        font-size: 1rem;
    }

    .shingle-page-news-title {
        padding: 5px 0;
        font-size: 1.25rem;
    }

    .shingle-page-news-text {
        padding-top: 30px;
    }

}