@charset "utf-8";



/*
Theme Name: まいぶろぐ
Theme URI:
Author: satooo922
Author URI:
Description: たゆたう
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/





body {
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.1em;

    color: #5A5A5A;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.inner {
    max-width: 1100px;
    width: 80.527%;
    margin-left: auto;
    margin-right: auto;
}



/* index home
-------------------------------------*/



html {
    scroll-behavior: smooth;
}



/*     header     */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

header {
    background-color: rgba(215, 218, 227, 0.8);

    padding-top: 10px;
    padding-bottom: 10px;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_memu {
    display: none;
}

.header_memu ul {
    display: flex;
}

.header_memu li {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    padding-left: 30px;
    font-weight: bold;
}

header .fa-solid {
    font-size: 30px;
}




.drawer_hidden {
    display: none;
}

.drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    cursor: pointer;
}

.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
}

.drawer_open span:before {
    bottom: 8px;
}

.drawer_open span:after {
    top: 8px;
}

#drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
}

#drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    background: #0fa099;
    transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
    top: 0;
    background: #0fa099;
    transform: rotate(-45deg);
}

.nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 100%;

    z-index: 99;
    background: rgba(22, 24, 32, 0.75);
    transition: .5s;
    text-align: center;
    padding-top: 20px;
}

.nav_list {
    margin-top: 40%;
}

.nav_item {
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    padding-bottom: 30px;
    font-weight: bold;

    color: #ffffff;
    text-decoration: none;
}

.nav_item a:hover {
    color: #0fa099;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

#drawer_input:checked~.nav_content {
    left: 0;
}

.nav_word {
    font-family: "Yusei Magic", sans-serif;
    font-size: 24px;
    padding-bottom: 30px;
    font-weight: bold;

    color: #ffffff;
    background-color: rgba(22, 24, 32, 0.50);

    width: 60%;
    padding-top: 20px;
    padding-bottom: 30px;

    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.nav_word h2 {
    border-bottom: #0fa099 solid 2px;
    width: 80%;

    padding-bottom: 5px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.nav_word li {
    margin-bottom: 10px;
}

.nav_word li a:hover {
    color: #6273da;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}







/*     top     */
.top {
    background-color: #fdf6e5;

    padding-top: 200px;
    padding-bottom: 50px;

    background-image: url(./images/top_background_smart.png);
    background-repeat: repeat-x;
    background-position: center;
}

.icon-mobile {
    display: none;
}

.icon-smart {
    text-align: right;

    position: relative;
}

.top h2 {
    font-family: "Yusei Magic", sans-serif;
    font-size: 46px;
    letter-spacing: 0.2em;

    color: #063d36;

    position: absolute;
    top: 130px;
}



/*     list     */
.list .allpost h2 {
    font-family: "Oswald", sans-serif;
    font-size: 36px;

    color: #063d36;

    margin-top: 100px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 60px;

    display: flex;
    align-items: center;
}

.list .allpost h2::after {
    border-top: 1px solid;
    content: "";
    width: 100%;

    margin-left: 10px;
}

.terms {
    font-size: 18px;

    margin-bottom: 20px;
}



/*     list < choice >     */
.choice {
    display: inline;
}

.choice .post {
    background-color: #aacfcb;
    color: #061a17;

    max-width: 380px;

    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;

    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;

    position: relative;

    display: block;
    transition: all .3s ease-in-out;
    transform: translateY(0);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
}

.choice .post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, .2);
}

.post h3 {
    font-size: 18px;
    letter-spacing: 0.025em;
    font-weight: bold;

    transition: 0.5s;

    margin: 10px 10px 0;
}

.post h3:hover {
    color: #ffffff;
}

.post p {
    margin: 0 10px;
}

.post ul {
    margin: 0 10px;
    padding-bottom: 10px;
}

.post ul a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

.post .next-btn {
    position: absolute;
    right: 20px;
    bottom: 15px;
}



.post-images img {
    border-top-right-radius: 30px;
}







/*     list < nav-next >     */
.nav-next {
    margin-bottom: 60px;
}

.nav-next ul {
    display: flex;
    justify-content: center;
}

.nav-next a {
    font-family: "Yusei Magic", sans-serif;
    font-size: 20px;

    background-color: #0fa099;
    color: #ffffff;

    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;


    display: block;

    margin: 0 10px;
    padding: 5px 15px;

    transition: all .2s;
}

.nav-next a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #6273da;
}

.nav-next span {
    font-family: "Yusei Magic", sans-serif;
    font-size: 20px;

    background-color: #6273da;
    color: #ffffff;

    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;


    display: block;

    margin: 0 10px;
    padding: 5px 15px;
}



/*     list < nav-category >     */
.list .nav-category {
    display: none;

    width: 230px;

    margin-top: 220px;
}

.list .nav-category h2 {
    font-family: "Yusei Magic", sans-serif;
    font-size: 24px;
    text-align: center;

    background-color: #6273da;
    color: #ffffff;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px;
}

.list .nav-category ul {
    font-size: 18px;

    background-color: #fdf6e5;
    color: #061a17;

    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

    padding: 10px 0;
}

.list .nav-category li {
    padding: 10px 20px;
}

.list .nav-category li a:hover {
    color: #0fa099;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}




/*     about     */
.about .inner {
    background-color: #fdf6e5;
    color: #063d36;

    padding: 0 30px;
    padding-top: 80px;
    padding-bottom: 30px;

    background-image: url(./images/about_icon.png);
    background-repeat: no-repeat;
    background-position: 7.55% 0;

    margin-bottom: 120px;
}

.about h2 {
    font-family: "Oswald", sans-serif;
    font-size: 36px;

    display: flex;
    align-items: center;

    margin-bottom: 30px;
}

.about h2::after {
    border-top: 1px solid;
    content: "";
    width: 250px;

    color: #0fa099;

    margin-left: 10px;
}

.about a {
    font-family: "Yusei Magic", sans-serif;
    font-size: 20px;
    text-align: center;

    display: block;
    width: 170px;

    background-color: #0fa099;
    color: #ffffff;

    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;

    padding: 5px 0;
    margin-top: 20px;
}

.about a:hover {
    background-color: #ffffff;
    color: #0fa099;
    transition: all 0.3s;
}

.about-text {
    margin-top: 200px;
    margin-left: 35%;
}




/*     foot     */
.foot {
    font-size: 14px;
    text-align: center;

    background-color: #d7dae3;


    padding-top: 80px;
    padding-bottom: 30px;
}

.foot .inner {
    position: relative;
}

.foot .fa-solid {
    font-size: 30px;
    position: absolute;

    right: 10px;
    bottom: 0px;
}







/* index single
-------------------------------------*/



.single main {
    background-color: #fdf6e5;

    padding-top: 150px;
    padding-bottom: 50px;
}



/*     content     */
.single .content {
    font-family: "M PLUS Rounded 1c";
    font-size: 18px;

    background-color: #ffffff;
    color: #061a17;

    margin-bottom: 50px;
    padding: 0 15px;
    padding-bottom: 30px;
}



/*     content < title >     */
.content .title h1 {
    font-size: 26px;
    font-weight: bold;

    margin-bottom: 10px;
    padding-top: 60px;
}

.content .title p {
    font-size: 16px;

    color: #5A5A5A;

    margin-bottom: 20px;
}



/*     content < main-text >     */

.content .main-text h2 {
    font-size: 24px;
    font-weight: bold;

    background-color: #fdf6e5;

    padding: 20px 30px;
}

.content .main-text p {
    margin: 20px 10px;
}



/*     content < nav-next >     */
.single .nav-next-max {
    display: none;
}

.single .nav-next-min {
    display: block;
}



/*     content < nav-tag >     */
.nav-tag {
    display: none;
}

.nav-tag h2 {
    font-family: "Yusei Magic", sans-serif;
    font-size: 24px;
    text-align: center;

    background-color: #6273da;
    color: #ffffff;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px;
}

.nav-tag ul {
    font-size: 18px;

    background-color: #ffffff;
    color: #061a17;

    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

    padding: 10px 0;
}

.nav-tag li {
    padding: 10px 20px;
}

.nav-tag li a:hover {
    color: #0fa099;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}



/*     comment     */
#reply-title {
    font-family: "Yusei Magic", sans-serif;
    font-size: 20px;
}

.single #comment {
    background-color: #ffffff;

    width: 100%;

    margin: 0 0;
    padding: 10px;
}



.logged-in-as {
    display: none;
}

label {
    display: none;
}

#submit {
    font-family: "Yusei Magic", sans-serif;

    background-color: #0fa099;
    color: #ffffff;

    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;

    margin-top: 10px;
    margin-bottom: 30px;
    padding: 5px 20px;
}

#submit:hover {
    background-color: #ffffff;
    color: #6273da;
    transition: all 0.3s;
}

.comments-list li {
    background-color: #ffffff;
}

.comments-author .vcard {
    margin-top: 20px;
    margin-right: 20px;
}

.comment-body {
    font-size: 18px;
}



.commets-list h3 {
    font-family: "Yusei Magic", sans-serif;
    font-size: 20px;

    margin-bottom: 15px;
}

.comment-body {
    border-left: #0fa099 solid 2px;
    padding-left: 10px;

    margin-bottom: 20px;
    margin-left: 20px;
}

.comment-meta {
    display: flex;
    align-items: center;

    margin-bottom: 10px;
}

.comment-metadata {
    font-size: 16px;
}

.required {
    display: none;
}















/* profile
-----------------------------------------*/

.profile {
    background-color: #fdf6e5;

    padding-top: 150px;
    padding-bottom: 50px;
}

.profile h2 {
    font-family: "Yusei Magic", sans-serif;
    font-size: 46px;
    text-align: center;

    color: #063d36;

    margin-bottom: 30px;
}

.profile p {
    font-family: "M PLUS Rounded 1c";
    font-size: 18px;
}

.profile-text .profile-s {
    display: none;

    width: 250px;

    margin-left: 30px;
}

.profile-text p {
    margin-right: 20%;
}

.profile-next .profile-v {
    display: none;
}

.profile-next p {
    margin-top: 50px;
    margin-bottom: 50px;
}

.profile-text .profile-mobile {
    display: block;

    width: 250px;

    margin-left: auto;
}

.profile a {
    font-family: "Yusei Magic", sans-serif;
    font-size: 20px;
    text-align: center;

    display: block;
    width: 170px;

    background-color: #0fa099;
    color: #ffffff;

    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;

    padding: 5px 0;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.profile a:hover {
    background-color: #ffffff;
    color: #0fa099;
    transition: all 0.3s;
}







/* error
-----------------------------------------*/
.error-nav {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100vh;
}

.error {
    background-color: #fdf6e5;

}

.error .inner {
    padding-top: 300px;
    padding-bottom: 300px;
}

.error h2 {
    font-family: "Yusei Magic", sans-serif;
    font-size: 50px;

    margin-bottom: 10px;
}

.error .text {
    text-align: center;
}

.error a {
    font-family: "Yusei Magic", sans-serif;
    font-size: 20px;
    text-align: center;

    display: block;
    width: 170px;

    background-color: #0fa099;
    color: #ffffff;

    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;

    padding: 5px 0;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.error a:hover {
    background-color: #ffffff;
    color: #0fa099;
    transition: all 0.3s;
}































@media (min-width:800px) {

    /* index home
    -------------------------------------*/



    /*     header     */
    .header_memu {
        display: block;
    }

    .header_memu a:hover {
        color: #0fa099;
        text-decoration: underline;
        text-underline-offset: 0.3em;
    }

    header .menu-header {
        display: none;
    }



    /*     top     */
    .top {
        padding-top: 150px;
        padding-bottom: 50px;

        background-image: url(./images/top_background_mobile.png);
        background-repeat: repeat-x;
        background-position: center;
    }

    .icon-mobile {
        display: block;

        text-align: right;
    }

    .icon-smart {
        display: none;
    }

    .top h2 {
        font-family: "Yusei Magic", sans-serif;
        font-size: 60px;
        letter-spacing: 0.2em;

        color: #063d36;

        position: absolute;
        top: 400px;
    }



    /*     list < choice >     */
    .list .inner {
        display: flex;
        justify-content: space-between;
    }

    .choice {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;

        margin-right: 2%;
    }

    .post {
        width: 100%;
    }

    .post h3 {
        width: auto;
    }



    /*     list < nav-category >     */
    .list .nav-category {
        display: block;
    }


    /*     about     */
    .about .inner {
        background-color: #fdf6e5;
        color: #063d36;

        padding: 0 30px;
        padding-top: 80px;
        padding-bottom: 30px;

        background-image: url(./images/about_icon.png);
        background-repeat: no-repeat;
        background-position: 7.55% 0;
        background-size: auto;
    }

    .about a {
        font-family: "Yusei Magic", sans-serif;
        font-size: 20px;
        text-align: center;

        display: block;
        width: 200px;

        background-color: #0fa099;
        color: #ffffff;

        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;

        padding: 5px 0;
        margin-top: 20px;
    }

    .about-text {
        margin-top: 0;
        margin-left: 50%;
    }





    /* index single
-------------------------------------*/



    /*     content     */
    .single .content {
        font-family: "M PLUS Rounded 1c";
        font-size: 18px;

        background-color: #ffffff;
        color: #061a17;

        margin-bottom: 50px;
        padding: 0 60px;
        padding-bottom: 30px;
    }



    /*     content < nav-next >     */
    .single .nav-next-max {
        display: block;
    }

    .single .nav-next-min {
        display: none;
    }



    .nav-tag {
        display: block;
    }


    .single main .inner {
        display: flex;
        justify-content: space-between;
    }

    .single .single-main {
        width: 78%;
    }

    .single .nav-tag {
        width: 19%;
    }


    /*     comment     */
    .single #comment {
        background-color: #ffffff;
        width: 400px;

        margin: 0 30px;
        padding: 10px;
    }







    /* profile
-----------------------------------------*/

    .profile {
        background-color: #fdf6e5;

        padding-top: 150px;
        padding-bottom: 50px;
    }

    .profile h2 {
        font-family: "Yusei Magic", sans-serif;
        font-size: 46px;
        text-align: center;

        color: #063d36;

        margin-bottom: 30px;
    }

    .profile p {
        font-family: "M PLUS Rounded 1c";
        font-size: 18px;
    }

    .profile-text {
        display: flex;
        justify-content: space-between;
        align-items: center;

        width: 80%;

        margin-left: auto;
        margin-right: auto;
    }

    .profile-text .profile-s {
        display: block;

        width: 250px;

        margin-left: 30px;
    }

    .profile-text p {
        margin-right: 0;
    }



    .profile-next {
        display: flex;
        justify-content: space-between;
        align-items: center;

        width: 80%;

        margin-left: auto;
        margin-right: auto;

        margin-top: 50px;
        margin-bottom: 100px;
        padding-right: 8px;
    }

    .profile-next .profile-v {
        display: block;

        width: 400px;

        margin-right: 30px;
    }

    .profile-text .profile-mobile {
        display: none;
    }

    .profile-next p {
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0;
    }




}