/* color */

body {
    color: #595757;
}

.c_accent {
    color: #bb956e;
}

.bg_accent {
    background-color: #bb956e;
}

.bg_gray {
    background-color: #efefef;
}

.bg_gray-light {
    background-color: #f0f0f0;
}

.bg_gray-deep {
    background-color: #f0f0f0;
}


/* font */

body {
    /* font-family: "Varela Round", "Kosugi Maru", sans-serif; */
    font-family: "Zen Antique Soft", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-weight: 400;
    font-style: normal;
    letter-spacing: .025em;
    line-height: 1.4em;
}

.en {
    font-family: "Averia Serif Libre", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
bold {
    font-weight: normal;
}


/* title */

.section_title {
    font-size: 1.2em;
    margin-bottom: 40px;
    text-align: center;
}

.section_title .en {
    display: block;
    font-size: 2.2em;
    margin-bottom: 15px;
}

@media screen and (max-width:991px) {
    .section_title {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .section_title .en {
        font-size: 1.8em;
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .section_title {
        margin-bottom: 40px;
    }
}


/* link */

a {
    text-decoration: none;
    color: #595757;
}

a,
a:hover {
    transition: 0.3s;
}

a:hover {
    color: #bb956e;
    /* opacity: 0.75; */
}


/* button */

.button {
    background-color: #595757;
    color: #fff;
    font-size: 20px;
    padding: 20px 20px;
    border-radius: 0px;
    width: 250px;
    max-width: 100%;
    letter-spacing: 2px;
    margin: auto;
    display: block;
    text-align: center;
}

.button:hover {
    color: #fff;
    background-color: #bb956e;
    opacity: 1;
}

.singleColumnPreNext .flex {
    gap: 20px;
}

.singleColumnPreNextBox a {
    padding: 10px;
    background: #ddd;
    color: #595757;
    display: block;
}

.singleColumnPreNextBox a:hover {
    color: #fff;
    background-color: #bb956e;
    opacity: 1;
}

.singleColumnPreNextBox .text_m {
    font-size: 14px;
    display: none;
}


/* img */

img {
    width: 100%;
    max-width: 100%;
}


/* animation
///////////////////////////////////////////////////////////////////*/

.sa {
    opacity: 0;
    transition: all 0.3s ease;
}

.sa.show {
    opacity: 1;
    transform: none;
}

.sa--lr {
    transform: translate(-100px, 0);
}

.sa--rl {
    transform: translate(100px, 0);
}

.sa--up {
    transform: translate(0, 100px);
}

.sa--down {
    transform: translate(0, -100px);
}

.sa--scaleUp {
    transform: scale(0.5);
}

.sa--scaleDown {
    transform: scale(1.5);
}

.sa--rotateL {
    transform: rotate(180deg);
}

.sa--rotateR {
    transform: rotate(-180deg);
}

@media screen and (max-width: 1024px) {
    .sa {
        opacity: 1;
    }
    .sa--lr {
        transform: translate(0px, 0);
    }
    .sa--rl {
        transform: translate(0px, 0);
    }
    .sa--up {
        transform: translate(0px, 0);
    }
}