<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
/***************************/
/**Color */
/***************************/
.co_red {
    color: #d9001b;
}

.co_green {
    color: #01533c;
}

/***************************/
/**bg */
/***************************/
/********************************************/
/* ttl */
/********************************************/
.border_bottom_ttl {
    position: relative;
    padding-bottom: 0.6em;
    margin-bottom: 1.5em;
    color: #01533c;
    font-size: 2.4rem;
    font-weight: 500;
}

.border_bottom_ttl:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #777;
}

.mincho_ttl {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
}

/********************************************/
/* btn */
/********************************************/
.gray_btn {
    text-align: center;
}

.gray_btn a {
    display: inline-block;
    position: relative;
    min-width: 450px;
    padding: 1.4em 1.5em;
    background: #b9b9b9;
    letter-spacing: 0.1em;
    text-align: center;
    font-size: 1.8rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
}

.gray_btn a:before {
    position: absolute;
    top: 6px;
    left: 6px;
    content: "";
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: solid 1px #777;
    box-sizing: border-box;
    z-index: 2;
}

.gray_btn a:hover {
    background: #777;
    color: #fff;
}

.gray_btn a:hover:before {
    border-color: #b9b9b9;
}

.green_btn a {
    display: block;
    padding: 1em;
    background: #24872c;
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.green_btn a:hover {
    opacity: .75;
}

.block_btn {
    display: block;
}

.block_btn a {
    display: block;
    width: 100%;
}

/********************************************/
/* 追加 */
/********************************************/
.object_fit {
    position: relative;
}

.object_fit:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.object_fit img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    /*IE対策*/
}

/*=============================================*/
/*media query    Tablet ipad 5.7inch */
/*=============================================*/
@media screen and (max-width: 768px) {
    /********************************************/
    /* ttl */
    /********************************************/
    .border_bottom_ttl {
        font-size: 2.0rem;
    }
    /********************************************/
    /* btn */
    /********************************************/
    .gray_btn a {
        min-width: auto;
        font-size: 1.6rem;
    }
    .green_btn a {
        font-size: 1.6rem;
    }
}
</pre></body></html>