@charset "UTF-8"; /*common*/
* {
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
    line-height: 1;
    margin: 0;
    font-size: 16px;
}

a {
    text-decoration: none;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover {
    opacity: .6;
}

ol, ul, li {
    list-style: none;
}

main {
    display: block;
}

/*
---------------------------------------------
helper
---------------------------------------------
*/
.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex-nowrap {
    display: flex;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-start {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.flex-reverse {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-stretch {
    display: flex;
    justify-content: stretch;
}

.flex-column {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.flex-col-center {
    display: flex;
    align-items: center;
}

.flex-col-end {
    display: flex;
    align-items: flex-end;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.font-normal {
    font-weight: normal;
}

.font-bold {
    font-weight: bold;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

br.sp, img.sp, span.sp {
    display: none;
}

br.pc, img.pc, span.pc {
    display: inline;
}

.en {
    font-family: 'EB Garamond', serif;
    font-style: italic;
}

@media screen and (max-width: 767px) {
    .sp-block {
        display: block;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    br.sp, img.sp, span.sp {
        display: inline;
    }

    br.pc, img.pc, span.pc {
        display: none;
    }
}

/*
---------------------------------------------
header
---------------------------------------------
*/
/* header */
.header {
    position: fixed;
    height: 104px;
    width: 100%;
    z-index: 2;
    background: white;
}

.header .logo {
    margin-left: 240px;
    margin-top: 16px;
}

.header .logo-text {
    font-size: 11px;
    margin: 8px 0 0;
    font-weight: bold;
    text-align: center;
}

.header .right {
    margin-left: auto;
}

.header .phone a {
    background: #005a00;
    color: white;
    width: 300px;
    padding: 20px 45px;
}

.header .phone i {
    margin-right: 5px;
}

.fa-rotate-115 {
    transform: rotate(115deg);
}

.header .phone .address {
    font-size: 13px;
    font-weight: bold;
}

.header .phone .num {
    font-size: 28px;
    font-weight: bold;
    margin: 5px 0;
}

.header .phone .time {
    font-size: 13px;
}

.header .estimate {
    background: #f05a1e;
    color: white;
    width: 200px;
    padding: 20px 25px;
    height: 104px;
}

.header .estimate p {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    margin-left: 15px;
}

@media screen and (max-width: 1140px) {
    .header .logo {
        margin-left: 20px;
    }
}

@media screen and (max-width: 930px) {
    .header .pc {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .header {
        position: fixed;
        height: 76px;
        width: 100%;
        z-index: 1;
        background: white;
    }

    .header .inner {
        padding: 12px 15px;
    }

    .header .logo {
        margin-left: 0;
        margin-top: 0;
        width: 208px;
    }

    .header .logo img {
        width: 100%;
    }

    .header .logo-text {
        font-size: 10px;
        margin: 4px 0 0;
        text-align: left;
    }
}

/*
---------------------------------------------
hamburger
---------------------------------------------
*/
.menu {
    position: relative;
    right: 0;
    top: 0;
    z-index: 99999;
    cursor: pointer;
    margin-right: 15px;
    padding-top: 15px;
}

.menu p {
    font-size: 12px;
    text-align: center;
    margin-top: -8px;
}

.menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all 0.4s !important;
    box-sizing: border-box;
}

.menu-trigger {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
}

.menu-trigger span {
    position: absolute;
    left: 12px;
    width: 35px;
    height: 4px;
    background-color: #333;
}

.menu-trigger span:nth-of-type(1) {
    top: 19px;
}

.menu-trigger span:nth-of-type(2) {
    top: 29px;
}

.menu-trigger span:nth-of-type(3) {
    bottom: 17px;
}

.menu-trigger span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.4s;
}

.menu-trigger.active span {
    background-color: #333;
}

.menu-trigger.active span:nth-of-type(1) {
    transform: scale(0) translateY(20px);
    background-color: #333;
}

.menu-trigger.active span:nth-of-type(2) {
    transform: rotate(-45deg);
    background-color: #333;
}

.menu-trigger.active span:nth-of-type(2)::after {
    transform: rotate(90deg);
    background-color: #333;
}

.menu-trigger.active span:nth-of-type(3) {
    transform: scale(0) translateY(-20px);
    background-color: #333;
}

.menu-trigger.active span:nth-of-type(2) {
    width: 30px;
}

@media screen and (max-width: 767px) {
    .menu {
        position: relative;
        right: 20px;
        top: 8px;
        z-index: 99999;
        cursor: pointer;
        margin-right: 0;
        padding-top: 0px;
    }

    .menu-trigger {
        width: 35px;
        height: 35px;
    }

    .menu-trigger span:nth-of-type(1) {
        top: 4px;
    }

    .menu-trigger span:nth-of-type(2) {
        top: 16px;
    }

    .menu-trigger span:nth-of-type(3) {
        bottom: 2px;
    }
}

/*
---------------------------------------------
drawer
---------------------------------------------
*/
.drawer-sp {
    position: fixed;
    top: 104px;
    right: -245px;
    height: 100%;
    width: 100%;
    background: white;
    overflow-y: scroll;
    z-index: 11;
    width: 245px;
    padding: 36px 28px 0 35px;
    transition: .5s;
    /*top: 136px;*/
}

.drawer-sp.show {
    right: 0;
}

.drawer-sp .list {
    margin-bottom: 34px;
}

.drawer-sp .list li {
    margin-bottom: 14px;
}

.drawer-sp .list li a {
    color: #333;
    font-size: 15px;
    font-weight: bold;
}

.drawer-sp .sns li {
    margin-bottom: 14px;
}

.drawer-sp .sns li a {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    color: white;
    font-size: 20px;
}

.drawer-sp .sns li .insta {
    background: #eb2d73;
}

.drawer-sp .sns li .facebook {
    background: #37559b;
}

.drawer-sp .sns li .twitter {
    background: #3796d7;
}

.header .phone-sp {
    background: none;
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
}

.header .phone-sp a {
    display: block;
    color: #333;
}

.header .phone-sp .address {
    font-size: 11px;
    font-weight: bold;
}

.header .phone-sp .num {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
}

.header .phone-sp .time {
    font-size: 11px;
}

.header .estimate-sp {
    background: #f05a1e;
    color: white;
    width: 100%;
    padding: 19px 23px;
    border-radius: 5px;
    height: auto;
}

.header .drawer-sp .estimate-sp p {
    font-size: 15px;
    margin-left: 7px;
}

@media screen and (max-width: 767px) {
    .drawer-sp {
        top: 76px;
    }
}

/*
---------------------------------------------
footer
---------------------------------------------
*/
/* top */
.footer {
    position: relative;
    padding-top: 36px;
    padding-bottom: 31px;
    background: #005a00;
    color: white;
    text-align: center;
}

.footer a {
    color: white;
}

.footer .list {
    flex-wrap: wrap;
    max-width: 850px;
    margin: 0 auto 6px;
}

.footer .list li {
    margin-bottom: 25px;
    border-right: solid 1px white;
    padding-right: 25px;
    margin-right: 25px;
    font-weight: bold;
}

.footer .list li:first-child {
    border-left: solid 1px white;
    padding-left: 25px;
}

.footer .list li:last-child, .footer .list li:nth-child(5) {
    margin-right: 0;
}

.footer .sns {
    margin-bottom: 21px;
}

.footer .sns li {
    margin: 0 12px;
}

.footer .footer-logo {
    margin-bottom: 34px;
}

.footer .copyright {
    font-size: 12px;
}

.pagetop {
    position: fixed;
    right: 60px;
    bottom: 60px;
}

.pagetop a {
    background: rgba(14, 55, 97, .8);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    z-index: 1;
    color: white;
}

@media screen and (max-width: 767px) {
    .footer {
        padding-top: 20px;
        padding-bottom: 13px;
    }

    .footer .list {
        padding: 0 24px;
        justify-content: flex-start;
    }

    .footer .list li:first-child {
        border-left: none;
        padding-left: 0;
    }

    .footer .list li {
        width: 50%;
        margin-bottom: 13px;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        text-align: left;
        font-size: 11px;
    }

    .footer .sns li {
        margin: 0 8px;
    }

    .footer .footer-logo {
        width: 208px;
        margin: 0 auto 13px;
    }

    .footer .footer-logo img {
        width: 100%;
    }

    .footer .copyright {
        font-size: 8px;
    }

    .pagetop {
        right: 5px;
    }

    .pagetop a {
        width: 49px;
        height: 49px;
        font-size: 13px;
    }
}

/*
---------------------------------------------
contents-inner
---------------------------------------------
*/
.wrapper {
    min-width: 1120px;
}

.contents-inner {
    max-width: 1120px;
    margin: auto;
    width: 100%;
}

@media screen and (max-width: 1150px) {
    .contents-inner {
        min-width: 1100px;
    }
}

@media screen and (max-width: 767px) {
    .wrapper {
        min-width: 100%;
    }

    .contents-inner {
        width: 100%;
        min-width: 100%;
        padding: 0 15px;
    }
}

/*
---------------------------------------------
main
---------------------------------------------
*/
.main {
    position: relative;
    padding-top: 104px;
}

@media screen and (max-width: 767px) {
    .main {
        padding-top: 76px;
    }
}

/* icon-banner */
.icon-banner {
    background: #f0f7fa;
    padding: 0 15px;
}

.icon-banner .list li {
    width: 16%;
    padding: 10px 0;
}

.icon-banner .list li a {
    background: white;
    border-radius: 5px;
    color: white;
    height: 50px;
    font-weight: bold;
    font-size: 20px;
}

.icon-banner .list li .column {
    flex-direction: column;
}

.icon-banner .list li .column p {
    color: #333;
    margin-bottom: 3px;
    font-size: 11px;
}

.icon-banner .list li .column .img {
    width: 25px;
}

.icon-banner .list li .column .img img {
    width: 100%;
}

.icon-banner .list li .insta {
    background: #eb2d73;
}

.icon-banner .list li .facebook {
    background: #37559b;
}

.icon-banner .list li .twitter {
    background: #3796d7;
}

.icon-banner .list li .term, .icon-banner .list li .failure {
    background: #3ca835;
    font-size: 11px;
    flex-direction: column;
}

.icon-banner .list li .term .text, .icon-banner .list li .failure .text {
    display: inline-block;
    margin-bottom: 3px;
}

#home ._kv {
    text-align: center;
    /* height: 700px; */
}

#home ._kv img {
    width: 100%;
}

/* btn-wrap */
.btn-wrap {
    position: fixed;
    top: 156px;
    z-index: 1;
}

.btn-wrap .list li {
    margin-bottom: 26px;
}

.btn-wrap .list li a {
    background: white;
    border-radius: 0 30px 30px 0;
    height: 48px;
    width: 170px;
    color: #3ca936;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.btn-wrap .list li a .icon {
    width: 48px;
    height: 48px;
    background: #3ca936;
    padding: 9px 0 0 10px;
    margin-right: 12px;
}

.news {
    background: white;
    border-radius: 0 10px 10px 0;
    width: 170px;
    height: 238px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.news .title {
    background: #3ca936;
    border-radius: 0 10px 0 0;
    height: 42px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    padding: 15px 0 0 15px;
}

.news .inner {
    padding: 15px;
    font-size: 13px;
    line-height: 1.6;
}

.news .inner time {
    font-size: 13px;
    color: #3ca936;
}

.news .inner a {
    display: block;
    color: #333;
}

.news .inner a:first-child {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .news {
        background: #000;
        border-radius: 00;
        width: 100%;
        height: auto;
        box-shadow: none;
    }

    .news .inner {
        padding: 8px 10px;
        font-size: 11px;
    }

    .news .inner a {
        display: flex;
        color: white;
    }

    .news .inner a:first-child {
        margin-bottom: 0px;
    }

    .news .inner time {
        color: white;
        margin-right: 13px;
        font-size: 11px;
    }
}

/* sns-wrap */
.sns-wrap {
    position: fixed;
    right: 0;
    top: 145px;
    z-index: 1;
}

.sns-wrap .list li {
    margin-bottom: 30px;
}

.sns-wrap .list li a {
    width: 70px;
    height: 70px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    border-radius: 40px 0 0 40px;
    padding-left: 10px;
    color: white;
    font-size: 29px;
}

.sns-wrap .list li .column {
    flex-direction: column;
}

.sns-wrap .list li .column p {
    font-size: 12px;
    font-weight: bold;
    color: #051E46;
    margin-bottom: 3px;
}

.sns-wrap .list li .column .img {
    width: 36px;
}

.sns-wrap .list li .column .img img {
    width: 100%;
}

.sns-wrap .list li .insta {
    background: #eb2d73;
}

.sns-wrap .list li .facebook {
    background: #37559b;
}

.sns-wrap .list li .twitter {
    background: #3796d7;
}

/* top-contact */
#home .top-contact {
    width: 800px;
    margin: 60px auto;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

#home .top-contact > div {
    width: 400px;
    height: 120px;
    font-size: 14px;
    padding-top: 23px;
    text-align: center;
}

#home .top-contact a {
    display: block;
    color: white;
}

#home .top-contact .phone {
    background: #005a00;
    color: white;
}

#home .top-contact .phone i {
    margin-right: 10px;
}

#home .top-contact .phone .num {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0;
}

#home .top-contact .estimate {
    background: #f05a1e;
    color: white;
}

#home .top-contact .estimate .title {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
    color: #ffe632;
}

#home .top-contact .estimate i {
    font-size: 24px;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    #home .top-contact {
        width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    #home .top-contact > div {
        width: 50%;
        height: 85px;
        font-size: 11px;
        padding-bottom: 13px;
        padding-top: 12px;
    }

    #home .top-contact .phone i {
        margin-right: 3px;
    }

    #home .top-contact .phone .num {
        font-size: 18px;
        margin: 10px 0;
    }

    #home .top-contact .estimate .title {
        font-size: 14px;
    }

    #home .top-contact .estimate i {
        font-size: 14px;
        margin-right: 3px;
    }
}

/* _column */
#home ._column {
    background: #d8eed7;
    padding: 47px 0 80px;
}

#home ._column li {
    width: 24%;
}

#home ._column img {
    max-width: 100%;
}

#home ._column .page-title {
    font-size: 24px;
    font-weight: bold;
    color: #3ca936;
    text-align: center;
    margin-bottom: 46px;
    line-height: 1.4;
}

#home ._column .page-title::before {
    display: inline-block;
    left: 0;
    top: 0;
    content: "";
    background: url(../images/icon_giass.png) no-repeat center/cover;
    width: 70px;
    height: 70px;
    margin-right: 20px;
}

#home ._column .list li a {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.3;
}

#home ._column .list li .time {
    margin: 19px 0 13px;
    display: block;
}

#home ._column .btn {
    background: #3ca936;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    width: 300px;
    line-height: 60px;
    display: block;
    text-align: center;
    margin: 65px auto 0;
}

@media screen and (max-width: 767px) {
    #home ._column {
        padding: 15px 0 20px;
    }

    #home ._column .page-title {
        font-size: 15px;
        margin-bottom: 23px;
    }

    #home ._column .page-title::before {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    #home ._column .list li {
        width: 49%;
        margin-bottom: 14px;
    }

    #home ._column .list li a {
        font-size: 11px;
    }

    #home ._column .list li .img img {
        width: 100%;
    }

    #home ._column .list li .time {
        margin: 8px 0 5px;
    }

    #home ._column .btn {
        border-radius: 3px;
        font-size: 13px;
        width: 200px;
        line-height: 40px;
        margin: 16px auto 0;
    }
}

/* _worries */
#home ._worries {
    background: url(../images/worries_bg.jpg) no-repeat center/cover;
    height: 1080px;
    padding: 80px 0;
}

@media screen and (max-width: 767px) {
    #home ._worries {
        height: auto;
        padding: 15px 0;
    }

    #home ._worries .img img {
        width: 100%;
    }
}

/* _selection */
#home ._selection {
    background: #f0f7fa;
    padding: 93px 0 80px;
}

#home ._selection .title-wrap {
    position: relative;
    text-align: center;
}

#home ._selection .title-wrap::after {
    position: absolute;
    top: -23px;
    right: 0;
    content: "";
    background: url(../images/selection_bg01.png) no-repeat center/cover;
    width: 187px;
    height: 187px;
}

#home ._selection .page-title {
    font-size: 42px;
    font-weight: bold;
    color: #005a00;
    margin-bottom: 50px;
    line-height: 1.3;
}

#home ._selection .lead {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 60px;
}

#home ._selection .box {
    max-width: 890px;
    margin: 0 auto 60px;
}

#home ._selection .box.flex-reverse {
    justify-content: space-between;
}

#home ._selection .box .img {
    width: 445px;
}

#home ._selection .box .body {
    width: 405px;
    line-height: 2;
}

#home ._selection .list {
    width: 1035px;
    margin: auto;
}

#home ._selection .list li {
    background: url(../images/selection_bg02.png) no-repeat center/cover;
    width: 240px;
    height: 240px;
    font-size: 22px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.3;
}

#home ._selection .list li:not(:last-child) {
    margin-right: 25px;
}

@media screen and (max-width: 767px) {
    #home ._selection {
        padding: 12px 0 7px;
    }

    #home ._selection .title-wrap::after {
        background: none;
    }

    #home ._selection .page-title {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 1.3;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #home ._selection .page-title::after {
        top: 0;
        right: 0;
        content: "";
        background: url(../images/selection_bg01.png) no-repeat center/cover;
        width: 72px;
        height: 72px;
        margin-left: 16px;
    }

    #home ._selection .lead {
        font-size: 13px;
        margin-bottom: 15px;
    }

    #home ._selection .box {
        padding: 0 25px;
        margin-bottom: 30px;
    }

    #home ._selection .box .body, #home ._selection .box .img {
        width: 100%;
    }

    #home ._selection .box .img img {
        width: 100%;
    }

    #home ._selection .box .body {
        margin-top: 12px;
        font-size: 11px;
    }

    #home ._selection .list {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 25px;
    }

    #home ._selection .list li {
        width: 36vw;
        margin-bottom: 13px;
        height: 36vw;
        font-size: 12px;
    }

    #home ._selection .list li:not(:last-child) {
        margin-right: 0;
    }
}

/* _free */
#home ._free {
    background: #ffd746;
    height: 620px;
    padding: 76px 0 80px;
    color: white;
    text-align: center;
}

#home ._free .page-title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 40px;
}

#home ._free .lead {
    font-size: 17px;
    line-height: 1.3;
}

#home ._free .box {
    border: dashed 1px black;
    max-width: 700px;
    margin: 33px auto 49px;
    padding: 20px;
    text-align: center;
    background: #FFF;
}

#home ._free .box .title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    color: #000;
}

#home ._free .box .list {
    margin-top: 28px;
}

#home ._free .box .list li {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #f05a1e;
}

#home ._free .box .list li:not(:last-child) {
    margin-right: 40px;
}

#home ._free .box .list li::before {
    display: inline-block;
    content: "";
    background: url(../images/icon_check.png) no-repeat center/cover;
    width: 28px;
    height: 29px;
    margin-right: 13px;
}

#home .top-contact.yellow .phone {
    padding: 0;
}

#home .top-contact.yellow .phone a {
    background: #005a00;
    padding-top: 23px;
    height: 120px;
}

@media screen and (max-width: 767px) {
    #home ._free {
        height: auto;
        padding: 27px 0 0;
    }

    #home ._free .page-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    #home ._free .lead {
        font-size: 11px;
    }

    #home ._free .box {
        margin: 19px auto 20px;
        padding: 20px 20px 10px;
    }

    #home ._free .box .title {
        font-size: 12px;
    }

    #home ._free .box .list {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 0 15px;
    }

    #home ._free .box .list li {
        font-size: 13px;
        width: 50%;
        margin-bottom: 10px;
        justify-content: flex-start;
    }

    #home ._free .box .list li:not(:last-child) {
        margin-right: 0;
    }

    #home ._free .box .list li::before {
        width: 18px;
        height: 18px;
        margin-right: 3px;
    }

    #home .top-contact.yellow .phone a {
        background: #005a00;
        color: white;
        padding-bottom: 13px;
        padding-top: 12px;
    }
}

/* _reason */
#home ._reason {
    background: #FFFEE6;
    padding: 78px 0 1px;
}

#home ._reason .page-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 52px;
}

#home ._reason .box {
    position: relative;
    background: #FFFFFF;
    border: solid 4px #E1CD6E;
    width: 900px;
    margin: 0 auto 36px;
    padding: 30px 45px;
}

#home ._reason .box .icon {
    position: absolute;
    top: -18px;
    left: 30px;
}

#home ._reason .box .title {
    font-size: 24px;
    font-weight: bold;
    margin-left: 92px;
    margin-bottom: 36px;
    line-height: 1.3;
}

#home ._reason .box .text {
    line-height: 2;
}

@media screen and (max-width: 767px) {
    #home ._reason {
        padding: 28px 0 0;
    }

    #home ._reason .page-title {
        font-size: 20px;
        margin-bottom: 23px;
    }

    #home ._reason .box {
        width: 100%;
        border: solid 2px #E1CD6E;
        margin: 0 auto 22px;
        padding: 15px 17px;
    }

    #home ._reason .box .icon {
        top: -9px;
        left: 15px;
        width: 63px;
    }

    #home ._reason .box .icon img {
        width: 100%;
    }

    #home ._reason .box .title {
        font-size: 13px;
        margin-left: 74px;
        margin-bottom: 26px;
    }

    #home ._reason .box .text {
        font-size: 11px;
        line-height: 1.6;
    }
}

/* _survey */
#home ._survey {
    padding-bottom: 100px;
}

#home ._survey .inner {
    position: relative;
    background: #f5fcff url(../images/survey_bg01.jpg) no-repeat left/contain;
    height: 874px;
}

#home ._survey .inner .contents-inner {
    position: relative;
}

#home ._survey .inner .box {
    position: absolute;
    top: 80px;
    right: 0;
    background: white;
    max-width: 800px;
    padding: 75px;
}

#home ._survey .inner .box .lead {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 37px;
    line-height: 1.3;
}

#home ._survey .inner .box .title {
    font-size: 36px;
    font-weight: bold;
    color: #005a00;
    line-height: 1.5;
    margin-bottom: 30px;
}

#home ._survey .inner .box .text {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 40px;
}

#home ._survey .inner .box .text span {
    font-weight: bold;
    font-size: 18px;
    color: #f05a1e;
}

#home ._survey .inner .box .point {
    background: #3ca936;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 20px;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    #home ._survey {
        padding-bottom: 0;
    }

    #home ._survey .inner {
        background: #f5fcff url(../images/survey_bg01_sp.jpg) no-repeat top/contain;
        height: auto;
        padding-top: 119px;
        padding-bottom: 20px;
    }

    #home ._survey .inner .box {
        position: static;
        padding: 18px 0 0;
    }

    #home ._survey .inner .box .box-inner {
        padding: 0 25px;
        text-align: center;
    }

    #home ._survey .inner .box .lead {
        font-size: 13px;
        margin-bottom: 15px;
    }

    #home ._survey .inner .box .title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 17px;
    }

    #home ._survey .inner .box .text {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 14px;
        text-align: left;
    }

    #home ._survey .inner .box .text span {
        font-size: 12px;
    }

    #home ._survey .inner .box .point {
        font-size: 13px;
        padding: 12px 17px;
        text-align: center;
    }
}

/* _compare */
#home ._compare .page-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 52px;
}

#home ._compare .sub-title {
    background: #37AAC8;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
    margin-bottom: 20px;
}

#home ._compare .table {
    border: solid 1px #333;
    width: 100%;
    margin-bottom: 60px;
}

#home ._compare .table td, #home ._compare .table th {
    border: solid 1px #333;
    text-align: center;
    padding: 15px 0;
    width: 33%;
}

#home ._compare .table th {
    background: #f2f2f2;
    font-size: 18px;
    font-weight: bold;
}

#home ._compare .table th.better {
    background: #3ca936;
    color: white;
}

#home ._compare .table td .mark {
    color: #37aac8;
    font-size: 45px;
}

#home ._compare .table td .text {
    font-size: 14px;
    line-height: 1.5;
}

#home ._compare .table td.better {
    background: #fffee6;
}

#home ._compare .table td.better .mark {
    color: #3ca936;
}

@media screen and (max-width: 767px) {
    #home ._compare {
        margin-top: 24px;
    }

    #home ._compare .page-title {
        font-size: 20px;
        margin-bottom: 17px;
    }

    #home ._compare .sub-title {
        font-size: 12px;
        padding: 9px 14px;
        margin-bottom: 11px;
    }

    #home ._compare .table {
        margin-bottom: 20px;
    }

    #home ._compare .table td, #home ._compare .table th {
        padding: 15px 10px;
    }

    #home ._compare .table th {
        font-size: 11px;
        vertical-align: middle;
    }

    #home ._compare .table td .mark {
        font-size: 26px;
    }

    #home ._compare .table td .text {
        font-size: 11px;
        text-align: left;
    }
}

/* _guarantee */
#home ._guarantee {
    background: url(../images/guarantee_bg01.jpg);
    height: 1297px;
    padding: 77px 0 80px;
}

#home ._guarantee .lead {
    font-size: 20px;
    font-weight: bold;
    color: #005a00;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

#home ._guarantee .title {
    text-align: center;
    margin-bottom: 40px;
}

#home ._guarantee .box {
    background: white;
    padding: 57px 115px 1px;
}

#home ._guarantee .box .text {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 20px;
}

#home ._guarantee .box .text span {
    font-size: 18px;
    font-weight: bold;
    color: #f05a1e;
}

#home ._guarantee .box .case {
    position: relative;
    ; background: #37AAC8;
    padding: 17px 28px;
    max-width: 660px;
    margin: 0 auto 46px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    color: white;
}

#home ._guarantee .box .case::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 26px 20px 0 20px;
    border-color: #37abc8 transparent transparent transparent;
}

#home ._guarantee .list {
    width: 770px;
    margin: 0 auto 45px;
}

#home ._guarantee .list li:not(:last-child) {
    margin-right: 25px;
}

#home ._guarantee .list li {
    background: url(../images/selection_bg02.png) no-repeat center;
    width: 240px;
    height: 240px;
    font-size: 22px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.3;
}

#home ._guarantee .point {
    font-size: 28px;
    font-weight: bold;
    color: #005a00;
    text-align: center;
    margin-bottom: 57px;
    line-height: 1.3;
}

@media screen and (max-width: 767px) {
    #home ._guarantee {
        height: auto;
        padding: 21px 0 0;
    }

    #home ._guarantee .lead {
        font-size: 12px;
        margin-bottom: 15px;
    }

    #home ._guarantee > .title {
        width: 225px;
        margin: 0 auto 19px;
    }

    #home ._guarantee .title img {
        width: 100%;
    }

    #home ._guarantee .box {
        padding: 0;
    }

    #home ._guarantee .box .box-inner {
        padding: 19px 24px;
    }

    #home ._guarantee .box .text {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    #home ._guarantee .box .text span {
        font-size: 12px;
    }

    #home ._guarantee .box .case {
        padding: 10px;
        margin: 0 auto 20px;
        font-size: 12px;
    }

    #home ._guarantee .box .case::after {
        bottom: -11px;
        border-width: 11px 10px 0 10px;
    }

    #home ._guarantee .list {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 18px;
    }

    #home ._guarantee .list li:not(:last-child) {
        margin-right: 0;
    }

    #home ._guarantee .list li {
        background: url(../images/selection_bg02.png) no-repeat center/cover;
        width: 29.5vw;
        height: 29.5vw;
        font-size: 11px;
        line-height: 1.4;
    }

    #home ._guarantee .point {
        font-size: 16px;
        padding-bottom: 15px;
        margin-bottom: 0;
    }
}

/* _question */
#home ._question {
    padding-top: 96px;
    padding-bottom: 60px;
}

#home ._question .page-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 55px;
}

#home ._question .box {
    background: #F0F7FA;
    padding: 40px;
    margin-bottom: 30px;
}

#home ._question .box dt {
    font-size: 22px;
    font-weight: bold;
    color: #3ca936;
    margin-bottom: 20px;
    line-height: 1.3;
}

#home ._question .box dt::before {
    display: flex;
    justify-content: center;
    align-items: center;
    content: "Q";
    width: 55px;
    height: 55px;
    font-size: 22px;
    font-weight: bold;
    color: white;
    background: #3ca936;
    border-radius: 50%;
    margin-right: 25px;
    flex-shrink: 0;
}

#home ._question .box dd {
    font-size: 17px;
    line-height: 1.8;
}

#home ._question .box dd::before {
    display: flex;
    justify-content: center;
    align-items: center;
    content: "A";
    width: 55px;
    height: 55px;
    font-size: 22px;
    font-weight: bold;
    color: white;
    background: #005a00;
    border-radius: 50%;
    margin-right: 25px;
    flex-shrink: 0;
}

@media screen and (max-width: 767px) {
    #home ._question {
        padding-top: 30px;
        padding-bottom: 10px;
    }

    #home ._question .page-title {
        font-size: 20px;
        margin-bottom: 26px;
    }

    #home ._question .box {
        padding: 14px 10px;
        margin-bottom: 20px;
    }

    #home ._question .box dt {
        font-size: 12px;
        margin-bottom: 11px;
    }

    #home ._question .box dt::before {
        width: 31px;
        height: 31px;
        font-size: 12px;
        margin-right: 9px;
    }

    #home ._question .box dd {
        font-size: 11px;
        line-height: 1.5;
    }

    #home ._question .box dd::before {
        width: 31px;
        height: 31px;
        font-size: 12px;
        margin-right: 9px;
    }
}

/* _form */
#home ._form {
    background: #3ca936;
    padding: 79px 0;
}

#home ._form .page-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

#home ._form .inner {
    background: white;
    padding: 60px 115px 1px;
}

#home ._form .inner .title-wrap {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 49px;
}

#home ._form .inner .title-wrap .step {
    position: relative;
    background: #ffd746;
    color: #3ca936;
    padding: 19px 25px;
    width: 129px;
}

#home ._form .inner .title-wrap .step::before {
    position: absolute;
    top: 0;
    right: -29px;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 0 30px 29px;
    border-color: transparent transparent transparent #ffd746;
}

#home ._form .inner .title-wrap .title {
    background: #3ca936;
    color: white;
    padding: 19px 25px 19px 51px;
    width: calc(100% - 129px);
}

#home ._form .inner .block {
    margin-bottom: 73px;
}

#home ._form .inner .table {
    width: 100%;
}

#home ._form .inner .table th, #home ._form .inner .table td {
    vertical-align: middle;
    font-size: 17px;
    padding: 10px 0;
    min-height: 98px;
}

#home ._form .inner .table th {
    width: 235px;
}

#home ._form .inner .table th .sm {
    display: block;
    font-size: 14px;
}

#home ._form .inner .table th .required {
    color: #f01e1e;
    font-size: 16px;
}

#home ._form .inner .table .col2 {
    width: 46%;
}

#home ._form .inner .table .col2:first-child {
    border-right: solid 1px #333;
}

#home ._form .inner .table .col2:last-child {
    padding-left: 20px;
}

#home ._form textarea, #home ._form input[type="text"] {
    border: solid 1px #333;
    border-radius: 10px;
    padding: 28px 40px;
}

#home ._form textarea {
    width: 100% !important;
    height: 170px !important;
}

#home ._form .w-xs {
    width: 160px;
}

#home ._form .w-sm {
    width: 210px;
}

#home ._form .w-md {
    width: 250px;
}

#home ._form .w-xl {
    width: 260px;
}

#home ._form .w-bl {
    width: 100%;
}

#home ._form input[type="radio"] {
    display: none;
    font-size: 16px;
}

#home ._form .radio-label {
    position: relative;
    padding-left: 39px;
    font-size: 17px;
    margin-right: 30px;
}

#home ._form .radio-label::before {
    position: absolute;
    left: 0;
    top: -2px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    height: 28px;
    width: 28px;
    content: "";
}

#home ._form .radio-label::after {
    position: absolute;
    left: 7px;
    top: 47%;
    background: #005a00;
    border-radius: 50%;
    content: '';
    display: block;
    margin-top: -7px;
    opacity: 0;
    height: 16px;
    width: 16px;
    z-index: 100;
}

#home ._form input[type=radio]:checked + .radio-label::after {
    opacity: 1;
}

#home ._form .note {
    color: white;
    font-weight: bold;
    margin: 45px 0 35px;
    text-align: center;
    line-height: 1.5;
}

#home ._form .box {
    background: white;
    padding: 30px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 800px;
    margin: auto;
    border-radius: 5px;
    overflow-y: scroll;
    height: 520px;
}

#home ._form .box h4 {
    margin-bottom: 5px;
}

#home ._form .box .text {
    margin-bottom: 1.5rem;
}

#home ._form .check-wrap {
    margin: 34px 0 30px;
}

#home ._form input[type="checkbox"] {
    display: none;
    font-size: 16px;
}

#home ._form .checkbox-label {
    position: relative;
    padding-left: 30px;
    display: inline-block;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

#home ._form .checkbox-label::before {
    position: absolute;
    left: 0;
    top: -5px;
    background: white;
    border: 1px solid #333;
    height: 22px;
    width: 22px;
    content: "";
    border-radius: 5px;
}

#home ._form .checkbox-label::after {
    position: absolute;
    left: 6px;
    top: -7px;
    content: '';
    display: block;
    opacity: 0;
    width: 9px;
    height: 16px;
    transform: rotate(40deg);
    border-bottom: 4px solid #14508c;
    border-right: 4px solid #14508c;
}

#home ._form input[type=checkbox]:checked + input + .checkbox-label::after {
    opacity: 1;
}

#home ._form .btn {
    background: #F05A1E;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    color: white;
    width: 300px;
    margin: auto;
    display: block;
    line-height: 80px;
    border: none;
    cursor: pointer;
    box-shadow: none;
}

#home ._form .btn:hover {
    opacity: 0.6;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 767px) {
    #home ._form {
        padding: 30px 0;
    }

    #home ._form .page-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    #home ._form .inner {
        padding: 15px 15px 1px;
    }

    #home ._form .inner .block {
        margin-bottom: 20px;
    }

    #home ._form .inner .title-wrap {
        font-size: 14px;
        margin-bottom: 15px;
    }

    #home ._form .inner .title-wrap .step {
        padding: 10px;
        width: 60px;
    }

    #home ._form .inner .title-wrap .step::before {
        right: -15px;
        border-width: 17px 0 17px 15px;
    }

    #home ._form .inner .title-wrap .title {
        padding: 10px 10px 10px 30px;
        width: calc(100% - 60px);
    }

    #home ._form .inner .table th, #home ._form .inner .table td {
        display: block;
        width: 100%;
        min-height: auto;
        font-size: 15px;
        padding: 5px 0;
    }

    #home ._form .inner .table th .sm {
        font-size: 12px;
    }

    #home ._form textarea, #home ._form input[type="text"] {
        border-radius: 5px;
        padding: 10px;
    }

    #home ._form .inner .table .col2:first-child {
        border-right: none;
    }

    #home ._form .inner .table .col2:last-child {
        padding-left: 0;
    }

    #home ._form .inner .table .col2 {
        width: 100%;
        margin-bottom: 10px;
    }

    #home ._form .inner .table .list > div {
        width: 100%;
        padding: 10px 0;
    }

    #home ._form .w-xs {
        width: 20%;
    }

    #home ._form .w-sm {
        width: 195px;
    }

    #home ._form .w-xl {
        width: 46%;
    }

    #home ._form .radio-label {
        font-size: 14px;
        margin-right: 0;
    }

    #home ._form .note {
        margin: 20px 0;
        font-size: 14px;
    }

    #home ._form .box {
        padding: 15px;
        height: 300px;
        font-size: 13px;
        line-height: 1.5;
    }

    #home ._form .check-wrap {
        margin: 20px 0;
    }

    #home ._form .checkbox-label {
        font-size: 14px;
    }

    #home ._form .btn {
        font-size: 16px;
        width: 100%;
        line-height: 50px;
    }

    #home ._form .radio-label::after {
        top: 58%;
    }
}

/*下層共通*/
.under_h2 {
    background-position: center;
    padding: 80px 0;
    text-align: center;
    font-size: 36px;
    color: #005a00;
    margin-bottom: 30px;
    font-weight: bold;
    background: #d8eed7;
}

@media screen and (max-width: 767px) {
    .under_h2 {
        font-size: 24px;
        padding: 40px 0;
        margin-bottom: 40px;
    }
}

/*コラム一覧*/
.columnlist_container {
    width: 1120px;
    margin: 0 auto 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.columnlist_item {
    width: 266px;
    margin-right: 18px;
}

.columnlist_img img {
    max-width: 100%;
    border: 1px solid #ccc;
}

.columnlist_item:nth-child(4n) {
    margin-right: 0;
}

.columnlist_item a {
    color: #333;
    font-size: 14px;
    line-height: 1.3;
    display: block;
}

.columnlist_time {
    margin: 15px 0 10px;
}

.columnlist_title {
    margin-bottom: 50px;
}

.pager {
    width: 386px;
    margin: 24px auto 70px;
    display: flex;
    justify-content: space-between;
}

.pager .pager_icon {
    width: 44px;
    height: 44px;
    background: #f0f7fa;
    border-radius: 100%;
    font-size: 16px;
}

.pager .pager_icon a {
    color: #14508c;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pager .pager_icon:first-child {
    background: #143c64;
}

.pager .pager_icon:first-child a {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .columnlist_container {
        max-width: 100%;
        padding: 0 15px;
        justify-content: flex-start;
    }

    .columnlist_item {
        max-width: 48%;
    }

    .columnlist_item {
        margin-right: 4%;
    }

    .columnlist_item:nth-child(even) {
        margin-right: 0%;
    }

    .columnlist_item a {
        font-size: 11px;
    }

    .columnlist_time {
        margin: 8px 0 5px;
    }

    .columnlist_title {
        margin-bottom: 14px;
    }

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

    .pager {
        max-width: 100%;
        padding: 0 15px;
    }

    .pager .pager_icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/*記事詳細*/
.column_article {
    width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 2;
}

.column_title {
    margin-bottom: 65px;
}

.column_title h3 {
    font-size: 24px;
    text-align: center;
    color: #005a00;
    margin-bottom: 10px;
    font-weight: bold;
}

.column_article h4 {
    background: #f0f7fa;
    padding: 4px 10px;
    color: #14508c;
    margin: 20px 0;
    font-weight: bold;
}

.column_article h5 {
    color: #14508c;
    font-size: 18px;
    font-weight: bold;
}

.column_article ul,.column_article ol {
    padding-left: 2rem;
}

.column_article ul li {
    list-style: disc;
    margin: 10px;
}

.column_article ol li {
    list-style: decimal;
    margin: 10px;
}

.column_article ol li ul {
    padding-left: 1rem;
}

.column_article ol li ul li {
    list-style: disc;
    margin: 10px;
}

.column_article a {
    padding: 0 5px;
    display: inline-block;
    color: #005a00;
    text-decoration: underline;
}

article img {
    margin: 40px auto;
    display: block;
}

.column_title time {
    color: #3ca936;
    text-align: center;
    display: block;
    font-size: 13px;
}

.column_btn {
    width: 900px;
    margin: 100px auto 80px;
    /* display: flex; */
    position: relative;
}

.column_btn li {
    width: 280px;
    height: 60px;
    background: #d8eed7;
    border-radius: 5px;
    margin: 0 auto;
}

.column_btn .column_btn1 {
    margin-left: 0;
}

.column_btn .itiran_btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.column_btn .column_btn3 {
    margin-right: 0;
}

.column_btn li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #005a00;
    font-weight: bold;
}

.column_btn .list-top a {
    background: #005a00;
    color: white;
    border-radius: 5px;
}

.column_btn .prev {
    position: absolute;
}

.column_btn .next {
    position: absolute;
    top: 0;
    right: 0;
}

.column_btn .itiran_btn {
    background: #14508c;
}

.column_btn .itiran_btn a {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .column_article {
        max-width: 100%;
        padding: 0 15px;
        font-size: 14px;
        line-height: 1.8;
    }

    .column_btn {
        max-width: 100%;
        padding: 0 15px;
    }

    .column_btn li {
        width: 200px;
        max-width: 30%;
    }

    .column_btn .next {
        right: 15px;
    }

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

    .column_title {
        margin-bottom: 40px;
    }

    .column_article h5, .column_article h4 {
        font-size: 16px;
    }

    .column_btn li {
        height: 40px;
        font-size: 14px;
    }

    .column_btn {
        margin: 40px 0;
    }
}

#company .company_sec1, #company .company_sec2 .inner, #company .company_sec3 {
    width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

#company h3 {
    font-size: 25px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 55px;
    font-weight: bold;
}

#company .company_sec1 h3 {
    color: #005a00;
}

#company .company_sec2 {
    width: 100%;
    background: #ffefb5;
    padding: 90px 0 65px;
    color: #000;
}

#company .company_sec1 p {
    margin-bottom: 78px;
}

#company .company_sec3 {
    padding: 75px 0 100px;
}

#company table tr {
    border-bottom: 1px solid #dcdddd;
    border-top: 1px solid #dcdddd;
}

#company table th {
    width: 180px;
    padding: 30px;
    box-sizing: border-box;
    background: #d8eed7;
    font-weight: bold;
}

#company table td {
    padding: 30px 60px;
}

#company table a {
    color: #3ca835;
}

#company table {
    margin: 0 auto;
}

.breadcrumbs {
    margin: 30px auto;
    font-size: 12px;
}

.breadcrumbs a {
    color: #000;
}

.pagenation {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 40px 0 0;
}

.wp-pagenavi {
    text-align: center;
}

.wp-pagenavi a {
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    display: inline-block;
    padding: 8px 18px;
    margin: 0 8px;
    background: #f0f7fa;
    color: #143c64;
    border-radius: 50px;
}

.wp-pagenavi a:hover {
    color: #143c64;
}

.wp-pagenavi span {
    border-radius: 50px;
    border: 1px solid #000;
    padding: 7px 18px;
    margin: 0 8px;
    font-size: 16px;
    display: inline-block;
}

.wp-pagenavi .current {
    border-color: #143c64;
    background: #143c64;
    color: #FFF;
}

.column_article .accordion-title {
    margin-top: 40px;
    line-height: 1.75;
    background-color: #005a00;
    font-size: 20px;
    padding: 24px 40px 20px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    color: #ffffff;
}

.accordion-title .accordion__icon {
    background-color: #143C64;
}

.accordion-title::before, .accordion-title::after {
    content: '';
    display: block;
    background-color: #ffffff;
    position: absolute;
    bottom: 48%;
    width: 20px;
    height: 2px;
    right: 26.5px;
    z-index: 1;
}

.accordion-title::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.accordion-title.is-active::before {
    opacity: 0;
}

.accordion-title.is-active::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.accordion__link {
    color: #197DD2;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.accordion__link:hover, .accordion__link:focus {
    opacity: 0.6;
}

.accordion-content {
    position: relative;
    background-color: #fff;
    padding: 0px;
    line-height: 2;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.accordion-content .accordion__icon {
    background-color: #FFD20A;
}

.accordion-content.is-open {
    margin-top: 5px;
    padding: 25px 40px 25px;
    height: auto;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    #company .company_sec1, #company .company_sec2 .inner, #company .company_sec3 {
        max-width: 100%;
        padding: 0 15px;
        font-size: 14px;
        line-height: 1.8;
    }

    #company .company_sec3 {
        padding: 40px 0 50px;
    }

    #company h3 {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    #company br {
        display: none;
    }

    #company .company_sec1 p {
        margin-bottom: 39px;
    }

    #company .company_sec2 {
        padding: 45px 0 32px;
    }

    #company th, #company td {
        display: block;
    }

    #company table th {
        width: 100%;
        padding: 15px 30px;
        box-sizing: border-box;
        background: #d8eed7;
    }

    #company table td {
        padding: 15px 30px;
    }

    .column_article .accordion-title {
        font-size: 16px;
        padding: 20px;
        margin-bottom: 0;
    }

    .accordion-content.is-open {
        padding: 10px 20px;
    }
}

.mt20 {
    margin-top: 20px;
}

.mt40 {
    margin-top: 40px;
}

.other-input-area {
    width: calc(100% - 140px);
}

@media screen and (max-width: 767px) {
   .mt20 {
        margin-top: 0;
    }
    
    .mt40 {
        margin-top: 0px;
    }
    .other-input-area {
        width: 100%;
    }
}

#home ._form .mfp_element_radio:checked+.mfp_element_hidden+.radio-label::after {
    opacity: 1;
}