@charset "UTF-8";

.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fadein.is-show {
    opacity: 1;
    transform: translateY(0);
}

.subTitle__content--harvest .text,
.subTitle__content--present .text {
    margin: 50px 8% 30px;
}

.subTitle__content--harvest .img,
.subTitle__content--present .img {
    display: block;
    width: 100%;
}

.subTitle__content--payment {
    background-image: url(../image/paymentImg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;

}

.subTitle__content--payment .text {
    padding: 80px 16%;
    font-family: 'Zen Old Mincho';
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
    white-space: nowrap;
}

.subTitle__content--payment .text span {
    font-size: 1.6rem;
    font-weight: 400;
    display: block;
    text-align: left;
}

.subTitle__content--flow ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flowItem {
    display: block;
    background-repeat: no-repeat;
    width: 84%;
    height: 326px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 40px 7.3% 20px;
}

.flowItem {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

.flowItem.show {
    opacity: 1;
    transform: translateY(0);
}

.flowItem a {
    text-decoration: underline;
}

.flowItem a:link {
    color: #3e6286;
}

.flowItem a:visited {
    color: #2F6442
}

.flowItem--1 {
    background-image: url(../image/card_1.svg);
}
.flowItem--2 {
    background-image: url(../image/card_2.svg);
}
.flowItem--3 {
    background-image: url(../image/card_3.svg);
}
.flowItem--4 {
    background-image: url(../image/card_4.svg);
}

.flowIcon {
    width: 100px;
    height: 100px;
    margin-bottom: -20px;
}

.flowItem--2 .flowIcon {
    width: 80px;
    height: 80px;
}

h4 {
    font-family:'Zen Old Mincho';
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    font-weight: 500;
    color: var(--darkGreen);
}

.flowLine {
    width: 18px;
    height: 1px;
    background-color: #BFAE98;
}

.flowText {
    letter-spacing: 0.12em;
}

.arrow {
    margin-top: 20px;
    width: 40px;
    height: 40px;
}

.orderBtn {
    margin-top: 80px;
}

.comment {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Zen Old Mincho';
    font-size: 1.2rem;
    line-height: 2.0;
    letter-spacing: 0.05em;
}

.btn--order {
    margin-top: 10px;
}