@charset "utf-8";

html {
    margin-top: 0;
}

.entry-title {
    display: none;
}

body {
    background-color: #c9fdf9;
    color: #fff;
    font-size: 16px;
    font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
}

img {
    width: 100%;
    max-width: 260px;
    height: 100%;
    vertical-align: bottom;
    object-fit: cover;
}

.inner {
    width: 73.2%;
    max-width: 796px;
    margin-left: auto;
    margin-right: auto;
}

.main-inner {
    position: relative;
    max-width: 300px;
    background-color: #e68b42;
    margin-left: auto;
    margin-right: auto;
}

.tree-back {
    width: 73.1%;
    max-width: 515px;
    margin-left: auto;
    margin-right: auto;
    background-color: #de965c;
}

h2 {
    max-width: 260px;
    display: grid;
    padding: 15px;
    background-color: #a1724c;
    text-align: center;
    margin: 50px 20px 40px;
    font-size: 28px;
}

article {
    max-width: 274px;
    width: 100%;
}

a:hover {
    color: #e1f45f;
    transition: 0.5s;
}

.triangle-half {
    position: absolute;
    display: block;
    width: 75px;
    height: 500px;
    background: #e68b42;
    /* 左半分の三角形 */
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    right: -73px;
    bottom: 0px;
}

.triangle-half-right {
    position: absolute;
    display: block;
    width: 75px;
    height: 500px;
    background: #e68b42;
    /* 右半分の三角形 */
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    left: -73px;
    bottom: 0px;
}

/*header
----------------------*/
header {
    background-color: rgba(255, 255, 255, 0.5);
    position: fixed;
    z-index: 100000000;
    width: 100%;
    padding: 20px 0;
}

header .inner {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    width: 120px;
    z-index: 10000;
}

.global li {
    list-style: none;
}

/* overlay-styles.css */
.hamburger-overlay {
    position: fixed;
    top: 23px;
    right: 45px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer !important;
    display: flex;
    /* ← 子要素をボタン内に配置する */
    flex-direction: column;
    /* ← 縦に並べる（三本線用） */
    justify-content: center;
    /* ← 縦方向の中央 */
    align-items: center;
    /* ← 横方向の中央 */
    gap: 6px;
    /* ← 線同士の間隔を確保 */
}

.hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) {
    top: 14px;
}

.hamburger-overlay__line:nth-of-type(2) {
    top: 23px;
}

.hamburger-overlay__line:nth-of-type(3) {
    top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
    background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 100, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.nav-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
    transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
    transition-delay: 0.4s;
}

.nav-overlay__link {
    display: inline-block;
    padding: 20px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color .3s;
}

.nav-overlay__link:hover {
    color: #e1f45f;
    transition: 0.5s;
}

.nav-overlay__list li {
    list-style: none;
    margin-left: -1rem;
}


/*main
----------------------*/
main {
    overflow: hidden;
}

.main-inner {
    position: relative;
}

.triangle-half-right-middle {
    position: absolute;
    width: 150px;
    height: 100px;
    background: #e68b42;
    /* 左半分の三角形 */
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    right: -148px;
    top: 500px;
}

.triangle-half-top {
    position: absolute;
    width: 150px;
    height: 100px;
    background: #e68b42;
    /* 左半分の三角形 */
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    left: -148px;
    top: 200px;
}

/*mainvisual*/
.mainvisual {
    padding: 270px 0 300px;
    background-color: #b2fab9;
    position: relative;
}

.apple1 {
    max-width: 52px;
    max-height: 55px;
    position: absolute;
    top: 200px;
    display: flex;
    transform-origin: top center;
}

.apple2 {
    max-width: 52px;
    max-height: 55px;
    position: absolute;
    top: 150px;
    right: 40px;
    display: flex;
    transform-origin: top center;
}

.apple3 {
    max-width: 52px;
    max-height: 55px;
    position: absolute;
    right: 150px;
    display: flex;
    transform-origin: top center;
    top: 410px;
}

@keyframes shakeX {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(20deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-20deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.shakeX {
    animation: shakeX 1.2s ease-in-out;
}

.bird1 {
    position: absolute;
    width: 56px;
    height: 56px;
    right: 55px;
    bottom: 220px;
    animation: moveA 4s infinite alternate ease-in-out;
}

.bird2 {
    position: absolute;
    width: 56px;
    height: 56px;
    left: 0;
    top: -25px;
    animation: moveB 7s infinite alternate ease-in-out;
    z-index: 9999;
}

.bird3 {
    width: 45px;
    height: 45px;
    position: absolute;
    right: -15px;
    top: 10px;
    animation: moveC 3s infinite alternate ease-in-out;
    z-index: 9999;
}

@keyframes moveA {
    from {
        transform: translate(0, 0);
        /* 左下 */
    }

    to {
        transform: translate(500px, -500px);
        /* 右上 */
    }
}

@keyframes moveB {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-400px, -300px);
    }
}

@keyframes moveC {
    from {
        transform: translate(0, 0);
        /* 左下 */
    }

    to {
        transform: translate(500px, -150px);
        /* 右上 */
    }
}

.mainvisual::after {
    content: "";
    display: block;
    width: 100%;
    height: 17px;
    background: url(/blog/wp-content/themes/09_blog/images/tree-bg2.png) repeat-x center;
    position: absolute;
    bottom: -15px;
    left: 0;
    z-index: 999;
}

.mainvisual h2 {
    max-width: 100%;
    width: 580px;
    font-size: 25px;
    display: block;
    padding: 5px 0;
    background-color: #e8a067;
    margin: auto;
}

/*post*/
.posts {
    display: grid;
    gap: 45px 50px;
    margin-bottom: 20px;
    position: relative;
}

.post {
    position: relative;
    display: grid;
    width: 100%;
    padding: 0 20px;
}

.posts article {
    padding: 0;
}

.post-inner {
    background-color: #a1724c;
    padding: 15px 12px;
    align-items: stretch;
    position: relative;
}

.post-inner h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.post-inner p {
    color: #dfdfdf;
}

.post-inner .time {
    font-size: 12px;
    margin-bottom: 5px;
}

.post-inner .tag {
    font-size: 14px;
}

.post-inner .continuation {
    font-size: 18px;
}

.thumbnail {
    aspect-ratio: 5/3;
    border-radius: 85px 85px 0 0;
    overflow: hidden;
    max-width: 375px;
    max-height: 250px;
}

article {
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.posts article .float:hover {
    transform: translateY(-5px);
}

.post-box {
    border-radius: 85px 85px 0 0;
    /* 上の角を丸くする */
    overflow: hidden;
    /* 中身がはみ出さないように */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* アニメーション */
}

.post-box:hover {
    transform: translateY(-6px);
    /* 上に6px浮く */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.20);
    /* 影を強調して浮かせる */
}

/*side*/
.slide a {
    font-size: 20px;
}

.slide {
    position: relative;
}

.search-container {
    display: flex;
    grid-template-columns: 60% 35%;
    /* 幅を固定 */
    flex: 5%;
    /* 間隔はお好みで変更可能 */
    grid-auto-flow: column;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
}

.pagination a,
.pagination span {
    padding: 6px 12px;
    text-decoration: none;
}

.pagination a:hover {
    color: #e1f45f;
}

.pagination .current {
    color: #fff;
}

.page-nav {
    display: flex;
    justify-content: center;
    gap: 55px;
}

/*category*/
.category-list ul {
    display: grid;
    justify-content: center;
    row-gap: 20px;
    text-align: center;
}

/*profile*/
.profile {
    width: 100%;
    text-align: center;
}

.profile h2 {
    margin-left: auto;
    margin-right: auto;
}

.profile .inner {
    max-width: 100%;
    width: 260px;
}

.profile img {
    max-width: 120px;
    max-height: 110px;
    margin-bottom: 30px;
}

.profile-font {
    font-size: 18px;
}

.profile .inner {
    display: grid;
}

.profile-inner {
    padding-bottom: 50px;
}

.school {
    font-size: 18px;
    letter-spacing: -0.1em;
    margin-bottom: 12px;
}

.name {
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 12px;
}

/*grass*/
.grass-inner {
    background-color: #9cee26;
    height: 100px;
}

/*footer
----------------------*/
footer {
    padding-top: 100px;
    padding-bottom: 180px;
    background-color: #de965c;
}

@media(825px<width) {
    .inner {
        width: 73.2%;
    }

    .main-inner {
        max-width: 1000px;
        width: 73.2%;
    }

    .triangle-half {
        position: absolute;
        display: block;
        width: 1000px;
        height: 500px;
        background: #e68b42;
        clip-path: polygon(0 100%, 100% 100%, 0 0);
        right: -100px;
        bottom: 0px;
    }

    .hamburger {
        display: none;
    }

    /*bird*/
    .bird1 {
        position: absolute;
        width: 115px;
        height: 115px;
        right: 200px;
        bottom: 175px;
        z-index: 9999;
    }

    .bird2 {
        position: absolute;
        width: 100px;
        height: 100px;
        left: 10px;
        top: -30px;
    }

    .bird3 {
        width: 102px;
        height: 102px;
        position: absolute;
        right: 5px;
        top: 50px;
    }

    /*apple*/
    .apple1 {
        max-width: 95px;
        max-height: 102px;
        position: absolute;
        left: 105px;
        top: 150px;
    }

    .apple2 {
        max-width: 95px;
        max-height: 102px;
        position: absolute;
        right: 215px;
        top: 100px;
    }

    .apple3 {
        max-width: 95px;
        max-height: 102px;
        position: absolute;
        top: 500px;
        right: 500px;
    }

    .global ul {
        color: #ef854c;
        display: grid;
        grid-auto-flow: column;
        gap: 30px;
    }

    h2 {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 350px;
    }

    .mainvisual h2 {
        font-size: 50px;
    }

    .mainvisual::after {
        background: url(/blog/wp-content/themes/09_blog/images/tree-bg.png) repeat-x center bottom;
        height: 62px;
        bottom: -60px;
    }

    /*post*/
    .post {
        padding: 0;
    }

    .posts {
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
        gap: 45px 50px;
        width: 80%;
        margin: 0 auto 60px;
        grid-template-columns: 1fr 1fr;
    }

    .posts img {
        max-width: 375px;
    }

    .posts article {
        width: 100%;
        max-width: 375px;
    }

    .form {
        max-width: 580px;
    }

    .search-button {
        font-size: 20px;
        padding: 16px 49px;
    }

    /*category*/
    .category ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 38px;
        justify-self: center;
        text-align: left;
    }

    .slide ul {
        gap: 20px;
    }

    /*profile*/
    .profile-inner {
        display: grid;
        grid-auto-flow: column;
        gap: 50px;
        align-items: center;
        justify-self: center;
        margin-top: 80px;
        padding-bottom: 200px;
    }

    .profile img {
        max-width: 355px;
        max-height: 275px;
        margin-bottom: 0;
    }

    .profile .inner {
        text-align: left;
    }

    /*traiangle*/
    .triangle-half-top {
        width: 300px;
        height: 150px;
        left: -298px;
    }

    .triangle-half-right-middle {
        width: 300px;
        height: 150px;
        right: -298px;
        top: 550px;
    }

    .triangle-half {
        position: absolute;
        display: block;
        width: 1000px;
        height: 550px;
        background: #e68b42;
        /* 左半分の三角形 */
        clip-path: polygon(0 100%, 100% 100%, 0 0);
        right: -998px;
        bottom: 0px;
    }

    .triangle-half-right {
        position: absolute;
        display: block;
        width: 1000px;
        height: 550px;
        background: #e68b42;
        /* 右半分の三角形 */
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        left: -998px;
        bottom: 0px;
    }

}

@media(390px<width<=825px) {
    h2 {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 260px;
    }

    .mainvisual h2 {
        font-size: 35px;
    }

    .main-inner {
        max-width: 500px;
        width: 73.2%;
    }

    .hamburger-overlay {
        right: 80px;
    }

    nav.global {
        display: none;
    }

    /*bird*/
    .bird1 {
        position: absolute;
        width: 85px;
        height: 85px;
        right: 40px;
        bottom: 215px;
    }

    .bird2 {
        position: absolute;
        width: 75px;
        height: 75px;
        left: -20px;
        top: -40px;
    }

    .bird3 {
        width: 60px;
        height: 60px;
        position: absolute;
        right: -25px;
        top: 60px;
    }

    /*apple*/
    .apple1 {
        max-width: 65px;
        max-height: 70px;
        top: 190px;
    }

    .apple2 {
        max-width: 65px;
        max-height: 70px;
        top: 130px;
        right: 85px;
    }

    .apple3 {
        max-width: 65px;
        max-height: 70px;
        right: 200px;
        top: 450px;
    }

    /*triangle*/
    .triangle-half-top {
        width: 250px;
        height: 150px;
        left: -248px;
    }

    .triangle-half-right-middle {
        width: 300px;
        height: 150px;
        right: -248px;
        top: 500px;
    }

    /*mainvisual*/
    h2 span,
    .mainvisual .single-title {
        font-size: 35px;
    }

    /*post*/
    .post {
        padding: 0 20px;
    }

    .posts img {
        max-width: 274px;
    }

    .posts {
        justify-content: center;
    }

    /*slide*/
    .slide-inner1 {
        background-color: #e68b42;
    }

    /*profile*/
    .profile {
        padding: 0 20px;
    }

    .profile-inner {
        padding-bottom: 50px;
    }

    /*traiangle*/
    .triangle-half {
        position: absolute;
        display: block;
        width: 240px;
        height: 500px;
        background: #e68b42;
        /* 左半分の三角形 */
        clip-path: polygon(0 100%, 100% 100%, 0 0);
        right: -238px;
        bottom: 0px;
    }

    .triangle-half-right {
        position: absolute;
        display: block;
        width: 240px;
        height: 500px;
        background: #e68b42;
        /* 右半分の三角形 */
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        left: -238px;
        bottom: 0px;
    }
}

@media(390px>=width) {
    nav.global {
        display: none;
    }
}

@media(390px<width<=465px) {
    .main-inner {
        width: 87%;
    }
}

/*-----------------------------
sp-page
-----------------------------*/
.single {
    p {
        margin-bottom: 15px;
    }

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

    h3 {
        color: #fff;
        font-size: 22px;
        align-items: center;
        display: flex;
        justify-content: center;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    h3::before,
    h3::after {
        background-color: #a1724c;
        content: "";
        height: 5px;
        width: 100px;
    }

    h3::before {
        margin-right: 5px;
    }

    h3::after {
        margin-left: 5px;
    }

    h4 {
        text-align: center;
        font-size: 20px;
        text-decoration: underline 5px #a1724c;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    ul {
        margin-left: 1rem;
        list-style-type: disc;
    }

    ul ul {
        list-style-type: circle;
    }

    ul ul ul {
        list-style-type: square;
    }

    ol {
        margin-left: 1rem;
        list-style-type: decimal;
    }

    /*mainvisual*/
    .mainvisual h2 {
        max-width: 100%;
        width: 580px;
        font-size: 25px;
        display: block;
        background-color: transparent;
        padding: 30px 0;
        text-align: left;
    }

    .mainvisual .single-title {
        display: block;
        background-color: #e8a067;
        width: fit-content;
        margin-bottom: 5px;
        padding: 5px 20px;
        font-size: 25px;
        text-align: left;
    }

    .explanation {
        padding-top: 70px;
    }

    .contents .inner {
        display: grid;
        max-width: 100%;
        width: 220px;
        height: auto;
        background-color: #a1724c;
        padding-bottom: 20px;
        margin-top: 50px;
    }

    .content {
        text-align: center;
        padding-top: 14px;
        font-size: 22px;
        padding-bottom: 20px;
    }

    .contents ol {
        display: grid;
        gap: 10px;
        font-size: 16px;
        padding-left: 33px;
    }

    /*toc*/
    .ez-toc-title-container {
        display: table;
        width: 100%;
        text-align: center;
    }

    /*explanation*/
    .explanation {
        position: relative;
    }

    .triangle-half-right-middle {
        position: absolute;
        width: 150px;
        height: 100px;
        background: #e68b42;
        /* 左半分の三角形 */
        clip-path: polygon(0 100%, 100% 100%, 0 0);
        right: -148px;
        bottom: 300px;
    }

    .triangle-half-top {
        position: absolute;
        width: 150px;
        height: 100px;
        background: #e68b42;
        /* 左半分の三角形 */
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
        left: -148px;
        top: 0px;
    }

    .explanation-inner ol {
        list-style: disc;
    }

    .explanation-inner {
        margin-bottom: 30px;
    }

    .image {
        display: grid;
        gap: 30px;
        margin-bottom: 30px;
    }

    /*access*/

    .inner .access {
        display: grid;
    }

    .access-list ol {
        display: grid;
        gap: 15px;
        margin-bottom: 20px;
        text-align: left;
        list-style: disc;
    }

    .access img {
        justify-content: center;
    }

    /*last*/
    .last-inner p {
        margin-bottom: 25px;
    }

    .last-inner h2 {
        max-width: 100%;
        width: 260px;
    }

    /*slide*/
    .slide-inner1 {
        display: flex;
        justify-content: space-between;
        margin: 40px 0 40px;
        font-size: 18px;
    }

    /*comment*/

    .comment-form textarea,
    .comment-form input {
        display: block;
        background-color: #fff;
        color: #000;
        width: 100%;
        max-width: 400px;
        margin-top: 10px;
        border-radius: 5px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
        padding: 7px;
    }

    .comment-form {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 140px;
    }

    .comment-author.vcard {
        display: none;
    }

    .commets-list {
        list-style-type: none;
        margin-left: 0rem;
    }

    h3::before,
    h3::after {
        background-color: #a1724c;
        content: "";
        height: 5px;
        width: 44px;
    }

    .comment-reply-title {
        font-size: 20px;
    }

    input.submit {
        width: 100px;
        margin: 0;
        margin-left: auto;
        height: 30px;
        background-color: #a1724c;
        text-align: center;
        color: #fff;
        line-height: 1;
        padding: 8px 16px;
        cursor: pointer;
    }

    .submit:hover {
        transition: 0.5s;
        color: #e1f45f;
    }

    .comment-form-cookies-consent input {
        display: none;
    }

    .reply {
        display: none;
    }

    .widget_title {
        display: none;
    }

    .submit-button {
        background-color: #a1724c;
        border-radius: 5px;
        width: 100px;
        margin-left: auto;
        text-align: center;
        margin-top: 10px;
        display: block;
    }

    textarea {
        color: #000;
        white-space: pre-wrap;
        /* 改行も保持して自動折り返し */
        word-wrap: break-word;
        /* 長い単語も途中で折り返す */
        overflow-wrap: break-word;
        /* word-wrap の最新仕様対応 */
        width: 100%;
        /* 幅いっぱいに */
        box-sizing: border-box;
        /* padding含めて幅を計算 */
    }

    .pagetop {
        height: 50px;
        width: 50px;
        position: fixed;
        right: 15px;
        bottom: 50px;
        background: #fff;
        border: solid 2px #000;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: 0.2s;
    }

    .pagetop .arrow {
        height: 10px;
        width: 10px;
        border-top: 3px solid #000;
        border-right: 3px solid #000;
        transform: translateY(20%) rotate(-45deg);
    }

    .pagetop:hover {
        background-color: #e1f45f;
        transition: 0.5s;
    }

    .comment-body {
        display: none;
    }

    @media(390px<width<825px) {

        h3::before,
        h3::after {
            background-color: #a1724c;
            content: "";
            height: 5px;
            width: 60px;
        }

        .comment-reply-title {
            font-size: 24px;
        }

        a,
        button {
            cursor: revert;
            font-size: 16px;
        }

        .mainvisual .single-title {
            display: block;
            background-color: #e8a067;
            width: fit-content;
            margin-bottom: 5px;
            padding: 5px 20px;
            font-size: 35px;
            text-align: left;
        }

        .image {
            grid-template-columns: repeat(2, 1fr);
        }

        .access-img {
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .triangle-half-top {
            position: absolute;
            width: 250px;
            height: 150px;
            background: #e68b42;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            left: -248px;
            top: 0px;
        }

        .triangle-half-right-middle {
            position: absolute;
            width: 250px;
            height: 150px;
            background: #e68b42;
            clip-path: polygon(0 100%, 100% 100%, 0 0);
            right: -248px;
            bottom: 150px;
        }

        .pagetop {
            height: 60px;
            width: 60px;
            right: 50px;
            bottom: 50px;
        }

        .pagetop .arrow {
            height: 15px;
            width: 15px;
            border-top: 3px solid #000;
            border-right: 3px solid #000;
            transform: translateY(20%) rotate(-45deg);
        }
    }

    @media(825px<width) {

        h3::before,
        h3::after {
            background-color: #a1724c;
            content: "";
            height: 5px;
            width: 80px;
        }

        .comment-reply-title {
            font-size: 26px;
        }

        /* toc */
        div#ez-toc-container ul.ez-toc-list a:hover {
            color: #e1f45f;
        }

        .mainvisual::after {
            background: url(/blog/wp-content/themes/09_blog/images/tree-bg.png) repeat-x center bottom;
            height: 62px;
            bottom: -60px;
        }

        .inner .single-title {
            margin-right: auto;
        }

        .mainvisual .single-title {
            display: block;
            background-color: #e8a067;
            width: fit-content;
            margin-bottom: 5px;
            padding: 5px 20px;
            font-size: 50px;
            text-align: left;
        }

        /*explantain*/
        .explanation-inner p {
            margin-bottom: 75px;
        }

        .image {
            grid-template-columns: repeat(2, 1fr);
            justify-self: center;
            gap: 100px;
            margin-bottom: 110px;
        }

        .explanation-inner ol {
            display: grid;
            gap: 15px;
        }

        .triangle-half-top {
            position: absolute;
            width: 300px;
            height: 150px;
            background: #e68b42;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            left: -298px;
            top: 200px;
        }

        .triangle-half-right-middle {
            position: absolute;
            width: 300px;
            height: 150px;
            background: #e68b42;
            clip-path: polygon(0 100%, 100% 100%, 0 0);
            right: -298px;
            top: 400px;
        }

        /*access*/
        .access-list ol {
            margin-bottom: 0;
        }

        .access-list .access-img {
            max-width: 331px;
            max-height: 400px;
        }

        .access-inner {
            display: grid;
            gap: 60px;
            align-items: center;
            grid-auto-flow: column;
        }

        .access-img {
            max-width: 100%;
            max-height: 100%;
            width: 325px;
            height: 400px;
        }

        .pagetop {
            height: 70px;
            width: 70px;
            position: fixed;
            right: 50px;
            bottom: 50px;
        }

        .pagetop .arrow {
            height: 20px;
            width: 20px;
            border-top: 3px solid #000;
            border-right: 3px solid #000;
            transform: translateY(20%) rotate(-45deg);
        }

    }

    @media(390px>=width) {

        a,
        button {
            cursor: revert;
            font-size: 16px;
        }
    }
}