body {
    padding: 0;
    margin: 0;
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    background-color: #f9f9f9c9;
}


.pc {display: none;}
header {
    height: 400px;
    align-content: space-evenly;
    background-image: url(https://support.enetshop.jp/iiinecko/yawatomo/comic/aruaru/head.webp);
    background-size: cover;
    position: relative;
    padding: 0px 0 63px;
    background-color: #f3efe4;
}

header .title {
    width: 80%;
    margin: 0 auto;
    position: absolute;
    top: 31px;
    left: 44px;

}

.section {
    margin-bottom: 64px;
}

.section-title {
    position: sticky;
    top: 0;
    background: #f3efe4;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 71px;
    justify-content: center;
}


.section-title img {
    width: 55px;
    height: 55px;
    border-radius: 71px;
    animation: rote 8s infinite linear;
}

@keyframes rote {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-title h2 {
    width: 50%;
    line-height: 1.05;
}

.section-title h2 .date {
    font-size: 16px;
    margin-left: 5px;
    color: #696969;
}


.section-body {
    width: 85%;
    margin: 30px auto;
}




.item {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.item.is-in {
    opacity: 1;
    transform: translateY(0);
}


.section-body img {
    width: 100%;
    height: 83vw;
}

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #fffaeb;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 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%);
    width: 87%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

#g-nav ul li {
    width: calc(89% / 3);
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333333;
    text-decoration: none;
    padding: 2px 0;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid #a3a3a3;
    width: 100%;
    margin: 0 auto;
    font-size: 13px;
}

#g-nav li img {
    border-radius: 81px;
}

#g-nav li a span {
    font-size: 10px;
    color: #797979;
    margin-left: 5px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #d1c092d9;
    border-radius: 10px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #ffffff;
    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: 31px;
}

.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%;
}