@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

body {
    font-family: Helvetica Neue, Helvetica, YuGothic, Yu Gothic, 'ヒラギノ角ゴ Pro W3', Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, "ＭＳＰゴシック", sans-serif;
    font-size: 14px;
    color: #555;
    min-width: 100%;
    line-height: 1.9;
    background-color: #a5d124;
}

header {
    border-top: 2px solid #fdb365;
    background-image: url(../images/m_bg_gr.jpg);
    background-repeat: repeat;
}

a {
    color: #ff9900;
}

.header-area {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-left: 20px;
}

.logo-area {
    width: 320px !important;
    font-size: 86%;
    line-height: 1.5;
}

.logo-ja {
    color: #000000;
    font-size: 190%;
    line-height: 1.6;
    font-weight: 700;
    font-family: YuMincho, Yu Mincho, '游明朝', "ヒラギノ明朝 ProN W6", HiraMinProN-W6, "HG明朝E", "ＭＳ Ｐ明朝", MS PMincho, "MS 明朝", serif;
}

.logo-en {
    color: #980000;
    font-weight: 700;
    text-decoration: underline;
    font-family: Helvetica Neue, Helvetica, YuGothic, Yu Gothic, 'ヒラギノ角ゴ Pro W3', Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, sans-serif;
}

.nav-area {
    width: 660px !important;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.updated-date {
    text-align: right;
    color: #777777;
    font-size: 86%;
    line-height: 1.5;
    display: inherit;
}

main {
    background-color: #ffffff;
    color: #333333;
}

.page-title {
    background: #F2F2F2;
}

.page-title h2 {
    margin: 0 auto;
    max-width: 980px;
    font-size: 160%;
    padding-bottom: 30px;
}

.breadcrumb-area {
    margin: 0 auto;
    max-width: 980px;
    padding-top: 10px;
    padding-bottom: 60px;
    font-weight: 500;
}

.container {
    max-width: 980px;
    margin: 0 auto;
}

footer {
    background-color: #000
}

.footer-area {
    padding-bottom: 10px;
}

.back-to-top-wrapper {
    text-align: right;
}

.back-to-top {
    background-repeat: no-repeat;
    background-position: right top;
    background-image: url(../images/img_to_top.png);
    padding-top: 23px;
    padding-right: 35px;
    margin-right: 5px;
}

.back-to-top span {
    display: none;
}

.copyright {
    text-align: center;
    line-height: 1.6;
    font-size: 80%;
    margin-top: 50px;
}

.copyright span {
    color: #ffffff;
}

.copyright span span {
    color: #980000;
}

@media screen and (max-width: 768px) {

    header>div {
        padding-left: 30px;
        padding-top: 25px;
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .page-title h2 {
        font-size: 140%;
        padding-left: 5px;
        padding-bottom: 14px;
    }

    .breadcrumb-area {
        padding-left: 10px;
        padding-bottom: 40px;
    }

    .copyright {
        font-size: 80%;
    }
}


/* ------------------------------
   custom layout
------------------------------ */
.custom-row {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
}

.custom-col-50 {
    width: 50%;
}

.custom-col-50 img {
    max-width: 100%;
    height: auto;
    padding-top: 10px;
}

@media screen and (max-width: 768px) {
    .custom-row {
        flex-direction: column;
        gap: 0;
        padding-top: 15px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 50px;
    }

    .custom-col {
        width: 100%;
    }
}


/* ------------------------------
   left_sidebar page template
------------------------------ */
.container.left-sidebar {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.main.left-sidebar {
    flex: 1 1 0%
}

.sidebar.left-sidebar {
    flex: 0 0 70px;
    padding-top: 30px;
}

@media screen and (max-width: 768px) {
    .container.left-sidebar {
        flex-direction: column;
        gap: 0;
    }

    .main.left-sidebar,
    .sidebar.left-sidebar {
        flex: 1 1 auto;
    }

    .sidebar.left-sidebar {
        padding-left: 10px;
    }
}