@charset "UTF-8";

.pane-contents,
.edit-format {
    background: #F6F5F1;
}

/* .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;
}


.seasons {
    font-family: "the-seasons", sans-serif;
    letter-spacing: 0.2em;
    line-height: 1;
    font-style: italic;
    font-size: 36px;
}

.seasons p {
    margin: 0;
    padding: 0;
}


.subtitle {
    font-family: "classico-urw", sans-serif;
    font-size: 22px;
    letter-spacing: 0.3em;
    font-weight: 400;
    font-style: normal;
    font-family: "classico-urw", sans-serif;
}

.lefttitle {
    text-align: left;
    padding: 0px 0px 10px 10px;
}

.bottlecredit {
    width: 71%;
    text-align: left;
    font-size: 13px;
    margin: 0 auto;
    margin-top: 0px;
}

.rightgrp {
    display: flex;
    justify-content: flex-end;
}

.righttitle {
    text-align: left;
}

.grp1 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
}

.item1 {
    width: 42%;
}

.item2 {
    width: 58%;
}

.item2_2 {
    width: 82%;
    margin: 0 auto;
}

.item2_2 p {
    
}

.holdercredit {
    width: 71%;
    margin: 0 auto;
}

.grp2 {
    display: flex;
    align-items: center;
    margin: 0 auto;
}


.item3 {
    width: 50%;
    text-align: left;
    line-height: 2.2em;
}

.item3 .usetitle {
    padding-left: 20px;
    margin-bottom: 2px;
}

.howtotxt,
.exampleoftxt {
    padding-left: 48px;
}

.item4 {
    width: 50%;
    text-align: left;
    line-height: 2.2em;

}

.item4 .usetitle {
    padding-left: 40px;
    margin-bottom: 2px;
}

.centerimg {
    width: 65%;
    margin: 0 auto;
}

.centerimg-m {
    width: 78%;
    margin: 0 auto;
}

.centerimg-l {
    width: 90%;
    margin: 0 auto;
}

.centertxt {
    font-size: 13px;
    text-align: center;
}

.lefttxt {
    font-size: 13px;
    text-align: justify;
}

.caption {
    font-size: 11px;
    text-align: justify;
}

.righttxt {
    font-size: 11px;
    text-align: right;
}

.layoutgrp {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.line-wrap {
    padding-left: 20px;
}

.line-wrap2 {
    padding-left: 40px;
}

.line {
    width: 260px;
    height: 1px;
    background: black;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;

}

.line.aos-animate {
    transform: scaleX(1);
}

.edit-format .btn-block a,
.edit-format .btn-block a.type-rectangle {
    color: #000;
    background: #f6f5f1;
}

#btn-archives a.type-archives {
    background: transparent;
}

/* タブレット用 */
@media screen and (max-width: 768px) {
    .logo {
        top: 70px;
    }

}

/* SP用 */
@media screen and (max-width: 480px) {

    .lefttitle {
        padding: 0px 0px 10px 20px;
    }

    .seasons {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .centerimg {
        width: 70%;
    }

    .bottlecredit {
        font-size: 11px;
    }

    .grp1 {
        width: 90%;
    }

    .lefttxt {
        font-size: 11px;
    }

    .caption {
        font-size: 9px;
    }

    .righttxt {
        font-size: 9px;
        white-space: nowrap;
    }

    .righttitle {
        text-align: left;
        padding-right: 15px;
    }

    .line {
        width: 165px;
    }

    .howtotxt,
    .exampleoftxt {
        padding-left: 24px;
        line-height: 1.6em;
        font-size: 11px;
    }

    .item3 .usetitle,
    .item4 .usetitle {
        padding-left: 15px;
    }

    .line-wrap {
        padding-left: 15px;
    }

    .line-wrap2 {
        padding-left: 15px;
    }

    .layoutgrp {
        gap: 5px;
        width: 95%;
    }

    .num {
        right: 10px;
    }

    .style {
        font-size: 16px;
        padding-left: 10px;
    }

    .check {
        right: 10px;
        font-size: 13px;
        padding-right: 10px;
    }

    .stylecenter {
        font-size: 20px;
        padding-bottom: 10px;
    }
}







/* 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;
}