@charset "UTF-8";

.pane-contents,
.edit-format {
    background: #fff;
}

/* .pane-contents--container {
    width: 1200px;
} */
/* .pane-main {
    
} */

@media screen and (max-width: 768px) {}


/* ==================================================
Page Head Custom
================================================== */
#page-head {}

@media screen and (max-width: 768px) {

    #page-head {}

}

/* ==================================================
Page Body
================================================== */
#page-body {
    overflow-x: hidden;
    max-width: 700px;
    position: relative;
}

.none {
    display: none;
}

.flex {
    display: flex;
    justify-content: center;
    margin-inline: auto;
    align-items: flex-start;
}

.articleSet {
    position: relative;
}

#head-title {
    margin-top: 60px;
}


.seasonsfont {
  font-family: "the-seasons", sans-serif;
  letter-spacing: 1.3px;
    }

.title {
    font-size: 60px;
    line-height: 1;
}


.layoutgrp {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* LEFT COLUMN */
.left {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.top-left {
    margin-bottom: 10px;
}
.leftcredit {
    font-size:11px;
}

.num {
    margin: 0 0 5px 0;
    font-family: "Cascadia Mono", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: left;
}

.season {
    font-size: 12px;
    text-align: left;
    text-decoration: underline;

}

/* RIGHT COLUMN */
.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.autumnmood {
    margin: 0;
    font-size: 20px;
    text-align: left;
}

.top-right-text {
    text-align: left;
    font-size:11px;
}


.checkbtn {
    display: inline-block;
    position: relative;
    font-size: 14px;
    padding-bottom: 10px;
}

.checkbtn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid black;
}

/* タブレット用 */
@media screen and (max-width: 768px) {
    .logo {
        top: 70px;
    }

}

/* SP用 */
@media screen and (max-width: 480px) {
.layoutgrp {
  gap: 5px;
  width: 95%;
}
.autumnmood {
  font-size: 13px;
}
.season {
  font-size: 9px;
}
.top-right-text {
    font-size:7px;
}
.leftcredit {
    font-size:7px;
}

}







/* Fade in */
.inView {
    opacity: 0;
}

.imgFade {
    opacity: 0;
}

.imgAnim {
    -webkit-animation-name: imgAnim;
    animation-name: imgAnim;
    -webkit-animation-duration: 1.6s;
    animation-duration: 1.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@keyframes imgAnim {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

.imgFade.fadeT {
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    z-index: 5;
}

.imgAnim.fadeT {
    -webkit-animation-name: imgAnim;
    animation-name: imgAnim;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.imgFade.fadeR {
    opacity: 0;
    transform: translateX(50px);
    position: relative;
    z-index: 5;
}

.imgFade.fadeL {
    opacity: 0;
    transform: translateX(-50px);
    position: relative;
    z-index: 5;
}

.imgAnim.fadeR {
    -webkit-animation-name: imgAnim;
    animation-name: imgAnim;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.imgAnim.fadeL {
    -webkit-animation-name: imgAnim;
    animation-name: imgAnim;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}