/*===========================
    COMMON style
===========================*/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&family=Noto+Sans+JP:wght@100..900&display=swap');

/* for PC */
.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

/* for Mobile( max 992px) */
@media screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}

body {
    overflow-x: hidden;
    color: #242729;
    text-rendering: optimizeLegibility;
    word-wrap: break-word;
    font-family: 'Noto Sans JP', 游ゴシック体, YuGothic-M, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro',
        'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;

    font-optical-sizing: auto;
}

body.iframe {
    margin-top: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    border-style: none;
    vertical-align: middle;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

@media (max-width: 575.98px) {

    img.w-100,
    img.w-75,
    img.w-50,
    .btn-wrap.w-100,
    .btn-wrap.w-75,
    .btn-wrap.w-50 {
        width: 100% !important;
    }
}

hr {
    overflow: visible;
    box-sizing: content-box;
    height: 0;
}

hr.info-sep {
    margin: 1.5rem 15px;
    width: 100%;
    border-top: none;
    border-bottom: 1px solid #d3d3d3;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-inline label,
.form-check label {
    margin: 0 0.5rem;
}

.form-check {
    padding-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.7;
}

abbr[data-original-title],
abbr[title] {
    border-bottom: 0;
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;

    -webkit-text-decoration: underline dotted;
}

address {
    font-style: normal;
    line-height: inherit;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

dfn {
    font-style: italic;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a:hover {
    color: #0f7b3b;
    text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
    text-decoration: none;
}

/*===========================
    BASE style
===========================*/
.container {
    max-width: 1200px;
}

.bg_cover {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.headline-img {
    height: 450px;
    background-image: url(/assets/img/common_bg.png);
    background-position: center -690px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

#main-contents {
    margin: 3rem 0;
}

#main-contents .container {
    position: relative;
}

#main-contents section {
    margin-top: 100px;
}

#main-contents section:first-child {
    margin-top: 0;
}

#main-contents h1 {
    position: relative;
    margin-top: 80px;
    margin-bottom: 100px;
    letter-spacing: 0.3125rem;
    font-weight: 600;
    font-size: 3.625rem;
    line-height: 1.5;
}

#main-contents h1.services-h1 {
    margin-bottom: 20px;
}

#main-contents h1 strong {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    font-size: 1.75rem;
}

#main-contents h1 span {
    display: block;
    margin-top: 15px;
    font-weight: 400;
    font-size: 1rem;
}

#main-contents h1:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: #0f7b3b;
    content: '';
}

#main-contents h2 {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 10px;
    border-left: 4px solid #0f7b3b;
}

#main-contents .h2-supplement {
    margin-bottom: 1rem;
    color: #ed5095;
    font-weight: 600;
    font-size: 1.5rem;
}

#main-contents .h2-supplement span {
    position: relative;
}

#main-contents .h2-supplement span::before,
#main-contents .h2-supplement span::after {
    position: absolute;
    bottom: -5px;
    display: inline-block;
    width: 1px;
    height: 40px;
    background: #ed5095;
    content: '';
}

#main-contents .h2-supplement span::before {
    left: 0;
}

#main-contents .h2-supplement span::after {
    right: 0;
}

#main-contents .h2-supplement span {
    padding: 0 20px;
}

#main-contents .h2-supplement span::before {
    transform: rotate(-30deg);
}

#main-contents .h2-supplement span::after {
    transform: rotate(30deg);
}

@media screen and (max-width: 767.98px) {
    #main-contents .h2-supplement {
        font-size: 1.15rem;
    }

    #main-contents .h2-supplement span {
        display: inline-block;
        padding: 0 15px;
    }

    #main-contents .h2-supplement span::before {
        transform: rotate(-20deg);
    }

    #main-contents .h2-supplement span::after {
        transform: rotate(20deg);
    }
}

#main-contents h3 {
    position: relative;
    margin-bottom: 1.5rem;
    margin-left: 20px;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.8;
}

#main-contents h3 span {
    padding-right: 1rem;
    background-color: #fff;
}

#main-contents h3 strong {
    font-size: 90%;
}

#main-contents h3:after {
    position: absolute;
    top: 20px;
    left: -20px;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f0b80f;
    content: '';
}

#main-contents h3:before {
    position: absolute;
    top: 55%;
    right: 0;
    z-index: -1;
    width: 98%;
    height: 1px;
    border-bottom: 1px solid #f0b80f;
    content: '';
}

#main-contents h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-bottom: 2px solid #d7d7d8;
    background-color: #f1f2f3;
    font-size: 1.35rem;
}

#main-contents h5 {
    margin: 1.5rem 0 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #9bc0a7;
    color: #0f7b3b;
}

#main-contents h6 {
    position: relative;
    margin: 0 0 1.2rem;
    padding: 10px 15px;
    background-color: #dff1e5;
    text-align: center;
    font-size: 1rem;
}

#main-contents h6::before {
    position: absolute;
    top: 100%;
    left: calc(50% - 6px);
    border: 12px solid transparent;
    border-top: 12px solid #dff1e5;
    content: '';
}

#main-contents .hd-atnt {
    display: inline-block;
    margin-bottom: 40px;
    padding: 10px 20px;
    background-color: #f9c100;
    font-weight: 600;
    font-size: 1.25rem;
}

#main-contents a[href*='.pdf']::after,
#main-contents a[href*='.doc']::after,
#main-contents a[href*='.docx']::after,
#main-contents a[href*='.xls']::after,
#main-contents a[href*='.xlsx']::after,
#main-contents a[href*='.zip']::after,
#main-contents a.external-link::after,
{
margin-left: 0.375rem;
vertical-align: middle;
font-weight: 900;
font-size: 1.375rem;
}

#main-contents a[href*='.pdf']::after {
    padding-right: 25px;
    background: url(/assets/img/icon-pdf.png) no-repeat center center;
    background-size: 22px auto;
    content: '';
}

#main-contents a[href*='.doc']::after,
#main-contents a[href*='.docx']::after {
    padding-right: 25px;
    background: url(/assets/img/icon-word.png) no-repeat center center;
    background-size: 22px auto;
    content: '';
}

#main-contents a[href*='.xls']::after,
#main-contents a[href*='.xlsx']::after {
    padding-right: 25px;
    background: url(/assets/img/icon-excel.png) no-repeat center center;
    background-size: 22px auto;
    content: '';
}

#main-contents a[href*='.zip']::after {
    padding-right: 25px;
    background: url(/assets/img/icon-zip.png) no-repeat center center;
    background-size: 22px auto;
    content: '';
}

#main-contents a.external-link::after {
    padding-right: 25px;
    background: url(/assets/img/icon-external.png) no-repeat center center;
    background-size: 22px auto;
    content: '';
}

#main-contents a.no-icon:after {
    display: none;
}

@media (max-width: 1000px) {
    #main-contents .hd-atnt {
        position: unset;
        top: 0;
        right: auto;
        margin-bottom: 40px;
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    body.headline-img {
        max-height: 260px;
    }

    body.toppage.headline-img {
        max-height: 355px;
    }

    #main-contents h1 {
        margin-top: 60px;
        margin-bottom: 60px;
        letter-spacing: 0.15rem;
        font-size: 1.75rem;
        ;
    }

    #main-contents h1 strong {
        font-size: 1rem;
    }

    #main-contents h1 span {
        font-size: 0.75rem;
    }

    #main-contents h2 {
        font-size: 1.5rem;
    }

    #main-contents h3 {
        font-size: 1.25rem;
    }

    #main-contents h3:after {
        top: 15px;
    }

    .table-responsive:before {
        color: red;
        content: '※以下の表は横にスクロールできます。';
    }
}

.g-recaptcha {
    margin-top: 1.5rem;
    margin-right: auto;
    margin-left: auto;
    width: 300px;
    text-align: center;
}

/*===========================
    HEADDER style
===========================*/

.header-area {
    position: relative;
    z-index: 999;
    padding-top: 6px;
    background: #fff;
    -webkit-box-shadow: 0 0 6px 0 rgb(0 0 0 / 40%);
    box-shadow: 0 0 6px 0 rgb(0 0 0 / 40%);
}

.header-area .navbar-area .container {
    position: relative;
}

.header-area .navbar-brand img {
    height: 80px;
}

#mainNav {
    padding: 0;
}

.navlayer {
    position: fixed;
    bottom: 0;
    z-index: 998;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.275);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.dropdown-open .navlayer {
    height: 100%;
    opacity: 1;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #mainNav .navbar-nav li a {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .navbar {
        padding-bottom: 0;
    }

    #mainNav .navbar-nav {
        padding-top: 3rem;
    }

    #mainNav .navbar-nav li a {
        position: relative;
        display: block;
        padding: 0.75rem 0.5rem 1.75rem;
        color: #222;
        letter-spacing: 1.5px;
        font-size: 1rem;
        transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    }

    #mainNav .navbar-nav li a:hover {
        color: #0f7b3b;
    }

    #mainNav .navbar-nav>li:nth-child(5)>a,
    #mainNav .navbar-nav>li:last-child>a {
        padding: 0.75rem;
        border-radius: 4px;
        background-color: #0f7b3b;
        color: #ffff;
        text-decoration: none;
    }

    #mainNav .navbar-nav>li:nth-child(5)>a:hover,
    #mainNav .navbar-nav>li:last-child>a:hover {
        background-color: #72af43;
        opacity: 0.8;
    }

    #mainNav .navbar-nav li a[id]::before {
        position: absolute;
        bottom: 0;
        left: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: rgba(15, 123, 58, 0.80);
        content: '';
        transition: transform 0.25s ease-out;
        transform: scaleX(0);
        transform-origin: bottom right;
    }

    #mainNav .navbar-nav>li:nth-child(5)>a:after,
    #mainNav .navbar-nav>li:last-child>a:after {
        display: none;
    }

    .dropdown-toggle::after {
        margin-left: 0;
        border: 0;
    }

    #mainNav .navbar-nav li a:hover::before {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    #mainNav .navbar-nav li:hover .dropdown-menu.show {
        top: 0;
        visibility: visible;
        opacity: 1;
        transform: translateZ(0);
    }

    #mainNav .navbar-nav li {
        margin-left: 1.25rem;
        transition: 0.25s all;
    }

    #mainNav .navbar-nav .dropdown-menu {
        position: absolute;
        top: 120px;
        left: 50%;
        z-index: 1;
        padding: 0;
        max-width: 1200px;
        width: 100%;
        border: 0;
        border-radius: 0;
        background-color: #fff;
        -webkit-box-shadow: 0 5px 5px 0 rgb(0 0 0 / 40%);
        box-shadow: 0 5px 5px 0 rgb(0 0 0 / 40%);
        transition: 0.25s all;
        transform: translateX(-50%);
    }

    #mainNav .navbar-nav li .dropdown-menu a {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    #mainNav .navbar-nav li .dropdown-menu a:hover {
        color: #0f7b3b;
    }

    .dropdown-hover:hover>.dropdown-menu {
        display: inline-block;
    }

    .dropdown-hover>.dropdown-toggle:active {
        /*Without this, clicking will make it sticky*/
        pointer-events: none;
    }

    .nav-s-title {
        margin: 1.25rem 1rem 0.75rem;
        padding: 0.25rem;
        border-bottom: 1px solid #d3d3d3;
        font-weight: 600;
        font-size: 1.25rem;
    }

    .header-area .button-area {
        position: absolute;
        top: 5px;
        right: 20px;
        display: flex;
    }

    .header-area .button-area .gsc-input {
        font-size: 14px;
    }

    .header-area .button-area table.gsc-search-box td.gsc-input {
        width: 220px;
    }

    /*
    .header-area .button-area div {
        padding-left: 0.5rem;
    }

    .header-area .button-area div a {
        padding: 0.5rem 1rem;
        border-right: 1px solid #f0f0f0;
        border-radius: 0 0 2px 2px;
        color: #242729;
        font-size: 0.875rem;
    }

    .header-area .button-area div.contact a:before,
    .header-area .button-area div.access a:before {
        display: inline-block;
        margin-right: 6px;
        width: 18px;
        height: 20px;
        background: url(/assets/img/icon-mail.png) no-repeat;
        background-size: contain;
        content: '';
        vertical-align: middle;
    }

    .header-area .button-area div.access a:before {
        background: url(/assets/img/icon-access.png) no-repeat;
        background-size: contain;
    }

    .header-area .button-area div a:hover {
        color: #0f7b3b;
    }
        */
}

@media (min-width: 881px) and (max-width: 1023px) {
    .header-area .navbar-brand img {
        height: 65px;
    }

    #mainNav .navbar-nav li a {
        font-size: 0.875rem;
    }

    #mainNav .navbar-nav li {
        margin-left: 0.75rem;
    }
}

@media (min-width: 768px) and (max-width: 880px) {
    .header-area .navbar-brand img {
        height: 50px;
    }

    .header-area .button-area div a {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    #mainNav .navbar-nav li {
        margin-left: 0.5rem;
    }

    #mainNav .navbar-nav li a {
        padding: 0.5rem 0.25rem 1.5rem;
        font-size: 0.875rem;
    }

    #mainNav .navbar-nav>li:nth-child(5)>a,
    #mainNav .navbar-nav>li:last-child>a {
        padding: 0.5rem;
    }

    #mainNav .navbar-nav .dropdown-menu {
        top: 108px;
    }
}

/* ハンバーガーメニューの時 */
@media (max-width: 767.98px) {
    .header-area {
        padding-top: 0;
    }

    .header-area .navbar-area .container {
        z-index: 9998;
        padding: 0;
    }

    .header-area {
        z-index: 9999;
    }

    .header-area .navbar-brand img {
        height: 44px;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus,
    .navbar-toggler:active,
    .navbar-toggler-icon:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-area .navbar .navbar-toggler .toggler-icon {
        position: relative;
        display: block;
        margin: 7px 0;
        width: 30px;
        height: 2px;
        background-color: #0f7b3b;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .navbar-area .navbar .navbar-toggler[aria-expanded='true'] .toggler-icon:nth-of-type(1) {
        top: 9px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .navbar-area .navbar .navbar-toggler[aria-expanded='true'] .toggler-icon:nth-of-type(2) {
        opacity: 0;
    }

    .navbar-area .navbar .navbar-toggler[aria-expanded='true'] .toggler-icon:nth-of-type(3) {
        top: -9px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    #mainNav .navbar-nav li a,
    .button-area a {
        position: relative;
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #d3d3d3;
        color: #222;
        font-size: 1rem;
    }

    #mainNav .navbar-nav li a.arw::before {
        position: absolute;
        top: 0;
        right: 10px;
        bottom: 0;
        margin: auto;
        width: 23px;
        height: 23px;
        border-radius: 50%;
        background: #0f7b3b;
        content: '';
    }

    #mainNav .navbar-nav li a.arw::after {
        position: absolute;
        top: 0;
        right: 16px;
        bottom: 4px;
        margin: auto;
        width: 10px;
        height: 10px;
        border: none;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        content: '';
        transform: rotate(45deg);
    }

    #mainNav .navbar-nav li a.arw.now-open::after {
        position: absolute;
        top: 5px;
        bottom: 0;
        border: none;
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
    }

    #mainNav .navbar-nav .dropdown-menu {
        padding: 0;
        border-radius: 0;
    }

    #mainNav .navbar-nav .dropdown-menu a {
        position: relative;
        display: block;
        padding: 0.7rem 2rem;
        border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
        background-color: #e6f1eb;
        vertical-align: middle;
        text-decoration: none;
    }

    #mainNav .navbar-nav .dropdown-menu a::after {
        position: absolute;
        top: 0;
        right: 10px;
        bottom: 0;
        margin: auto;
        width: 0.5em;
        height: 0.5em;
        border-top: 1px solid #0f7b3b;
        border-right: 1px solid #0f7b3b;
        content: '';
        vertical-align: middle;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header-area .navbar-brand img {
        height: 45px;
    }
}

/*===========================
    FOOTER style
===========================*/
.footer-area {
    padding: 40px 0;
    background-color: #afd3f4;
    color: #222;
    font-size: 0.875rem;
}

footer .site_logo {
    margin-bottom: 0.5rem;
}

footer .site_logo img {
    height: 60px;
}

footer .contents_menu strong {
    display: block;
    margin-top: 0.7rem;
    font-size: 1rem;
}

footer .contents_menu li {
    margin-top: 0.5rem;
    list-style: none;
}

footer .contents_menu a {
    color: #222;
}

footer .contents_menu li a:hover {
    opacity: 0.75;
}

.footer-area .contents_menu li a::before {
    padding-right: 5px;
    content: '－';
}

.footer-area .button-area li {
    width: 100%;
    list-style: none;
}

.footer-area .button-area li a {
    margin-bottom: 0.75rem;
    padding: 1rem;
    width: 100%;
    border: 2px solid #f0b80f;
    border-radius: 30px;
    background-color: #f0b80f;
    color: #242729;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.footer-area .button-area li a:hover {
    box-sizing: border-box;
    border: 2px solid #f0b80f;
    background-color: #fff;
    color: #f0b80f;
}

.pageTop {
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 98;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #0f7b3b;
    box-shadow: 0 5px 10px rgb(0 0 0 / 25%);
    text-indent: -99999px;
    cursor: pointer;
}

.pageTop:before {
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 6px);
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    content: '';
    transform: rotate(45deg);
}

@media (max-width: 767.98px) {
    footer .contents_menu li a:hover {
        opacity: 1;
    }

    footer .contents_menu ul {
        display: flex;

        flex-wrap: wrap;
    }

    footer .contents_menu li {
        width: 50%;

        flex: 0 0 auto;
    }

    .pageTop {
        right: 15px;
        bottom: 60px;
        width: 40px;
        height: 40px;
    }

    .pageTop:before {
        top: calc(50% - 2.5px);
        left: calc(50% - 5px);
        width: 10px;
        height: 10px;
    }
}

/*===========================
    SIDE NAV style
===========================*/
.sub-nav {
    margin-left: 2rem;
    padding: 0 5px;
    border: 5px solid #f1f2f3;
    background-color: #fff;
}

.sub-nav ul {
    margin: 0;
    list-style: none;
}

.sub-nav li {
    border-bottom: 1px solid #d3d3d3;
}

.sub-nav li:last-child {
    border: 0;
}

.sub-nav li a {
    position: relative;
    display: block;
    padding: 1rem 0.75rem 1rem 1.75rem;
    color: #242729;
    font-size: 0.9375rem;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}

.sub-nav li a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.5rem;
    display: block;
    margin: auto;
    width: 8px;
    height: 8px;
    border-top: solid 1px #222;
    border-right: solid 1px #222;
    content: '';
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.sub-nav li>ul>li {
    border-bottom: none;
}

.sub-nav li>ul>li a {
    padding: 0.25rem 1rem 0.25rem 3rem;
}

.sub-nav li>ul>li:last-child a {
    margin-bottom: 1rem;
}

.sub-nav li>ul>li a::before {
    display: inline-block;
    margin-top: 12px;
    margin-left: 24px;
    width: 6px;
    height: 6px;
    border-radius: 5px;
    background-color: #222;
    content: '';
    vertical-align: top;
}

@media (min-width: 992px) {
    .sub-nav li a:hover {
        color: #0f7b3b;
    }

    .sub-nav li a:hover {
        transform: translateX(10px);
    }
}

@media (max-width: 991.98px) {
    .sub-nav {
        margin-top: 4rem;
        margin-left: 0;
        padding-left: 0rem;
    }
}

/*===========================
    CONTENTS style
===========================*/
dl.cmn-data,
dl.list-data,
dl.cmn-form {
    margin-right: 0;
    margin-left: 0;
}

.cmn-data dt,
.cmn-data dd {
    margin-bottom: 0.2rem;
    padding: 0.75rem;
}

.cmn-form dt,
.cmn-form dd {
    margin-bottom: 0;
    padding: 1rem;
    border-bottom: 1px solid #d3d3d3;
    border-left: 1px solid #d3d3d3;
}

.cmn-form dd {
    border-right: 1px solid #d3d3d3;
}

.cmn-form dt:first-child,
.cmn-form dt:first-child+dd {
    border-top: 1px solid #d3d3d3;
}

.cmn-form dt.dt-rowspan {
    border-bottom: none;
}

.must {
    margin-left: 5px;
    color: #dc3545;
    font-size: 120%;
}

.cmn-form dd input {
    margin-bottom: 10px;
}

.cmn-form dd input:last-child {
    margin-bottom: 0;
}

.cmn-data .sumNo {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d3d3d3;
    color: #0f7b3b;
    font-size: 110%;
}

.cmn-data dt,
.cmn-form dt {
    background-color: #f1f2f3;
}

.list-data dt,
.list-data dd {
    margin-bottom: 0;
    padding: 0.75rem;
    border-bottom: 1px solid #d3d3d3;
}

.history-list dt,
.history-list dd {
    position: relative;
    margin-bottom: 0;
    padding: 1rem 0.75rem;
}

.history-list dt:nth-child(4n-1),
.history-list dd:nth-child(4n) {
    background-color: #f1f2f3;
}

.history-list dt {
    padding-right: 30px;
    min-height: 56px;
}

.history-list dt span {
    position: absolute;
    top: 16px;
    right: 20px;
}

.data-list-wrap a {
    position: relative;
    margin: 10px 0 0 0;
    padding-left: 25px;
}

.data-list-wrap a:before {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100vh;
    background-color: #72af43;
    content: '';
}

.cmn-list li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 15px;
    list-style: none;
}

.cmn-list li::before {
    position: absolute;
    top: 10px;
    left: 0;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100vh;
    background-color: #72af43;
    content: '';
}

.cmn-list-ol {
    margin: 0 0 0 1.5rem;
}

.cmn-list-ol li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 15px;
}

@media (max-width: 767.98px) {
    .cmn-form dt.dt-rowspan {
        display: none;
    }

    .history-list dt span {
        position: static;
        display: block;
    }
}

.cmn-table thead tr {
    background-color: #0084bd;
    color: #fff;
    text-align: left;
}

.cmn-table th,
.cmn-table td,
.info-table th,
.info-table td {
    padding: 12px 15px;
}

.cmn-table tbody tr {
    border-bottom: 1px solid #d3d3d3;
}

.cmn-table tbody tr:nth-of-type(even) {
    background-color: #f1f2f3;
}

.cmn-table tbody tr:last-of-type {
    border-bottom: 2px solid #0084bd;
}

.cmn-table tbody tr.active-row {
    color: #0084bd;
    font-weight: bold;
}

.info-table thead th {
    background-color: #bae2b2;
    text-align: center;
}

.info-table tbody th,
.login-table th {
    background-color: #e0f8db;
}

.info-table tbody th.sbth {
    background-color: #f1f2f3;
    white-space: nowrap;
}

.info-table tbody th.sbtd {
    white-space: nowrap;
}

.login-table th {
    vertical-align: middle;
}

a.member-inline {
    margin-top: -120px;
    padding-top: 120px;
}

.form-inline .form-control {
    margin: 0 8px;
}

.form-inline .form-control:first-child {
    margin-left: 0;
}

.mdgErr {
    color: #c50704;
}

.mdgErr::before {
    margin-right: 0.25rem;
    color: #c50704;
    content: '!';
    font-weight: 900;
}

/* company        */
.col-hd {
    width: 115px;
}

.col-dt {
    width: calc(100% - 115px);
}

/* philosophy        */
.philosophy {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    padding: 30px 20px;
    width: 100%;
    border-top: 1px solid #0f7b3b;
    border-bottom: 1px solid #0f7b3b;
    color: #0f7b3b;
    text-align: center;
    font-weight: 600;
    font-size: 1.75rem;
}

/* FAQ */
.faq_title {
    position: relative;
    padding: 0.5rem 2.75rem 0.5rem 2.5rem;
    border-bottom: 1px dotted #d3d3d3;
    cursor: pointer;

    user-select: none;
}

.faq_title::before {
    margin-right: 1rem;
    margin-left: -2.4rem;
    color: #0f7b3b;
    content: 'Q.';
    font-size: 1.25rem;
}

.faq_title::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #0f7b3b;
    border-left: 2px solid #0f7b3b;
    content: '';
    transition-duration: 0.3s;
    transform: rotate(45deg);
}

.faq_title:hover,
.faq_title:active,
.faq_title.is-active {
    color: #0f7b3b;
}

.faq_title.is-active::after {
    transform: rotate(-135deg);
}

.faq_content {
    overflow: hidden;
    padding: 0 1.5em;
    height: 0;
    opacity: 0;
    transition-duration: 0.3s;
}

.faq_content.is-open {
    margin-bottom: 1.5rem;
    padding: 1.5em;
    height: auto;
    background-color: #f1f2f3;
    line-height: normal;
    opacity: 1;
}

/* Case study tab       */
#cases .nav-tabs {
    margin-top: 60px !important;
    border-color: #d3d3d3;
}

#cases .nav-tabs li {
    width: 25%;
    text-align: center;
}

#cases .nav-tabs .nav-link {
    padding: 1rem;
    border: 0;
}

#cases .nav-tabs .nav-link:hover,
#cases .nav-tabs .nav-link:focus {
    border: 0;
}

#cases .nav-tabs .nav-link.active {
    border: 1px solid #d3d3d3;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    font-weight: 600;
}

/* Streamline card       */
#streamline h3 {
    margin-top: 3rem;
}

#streamline .card-header {
    background-color: #0f7b3b;
    color: #fff;
}

#streamline .card-body {
    padding: 0;
    border-radius: 0 0 4px 4px;
    background-color: #fffd96;
}

#stremline .title-wrap {
    display: table;
    width: 100%;
}

#streamline h6.card-title {
    display: table-cell;
    padding: 20px 10px;
    width: 9999px;
    background-color: #f1f2f3;
    vertical-align: middle;
    font-weight: 400;
    line-height: 1.5;
}

#streamline h6.card-title::before {
    border-top-color: #f1f2f3;
}

#streamline .card-text {
    padding: 30px 0 20px;
    color: #f3104e;
    text-align: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.attent-text {
    margin: 60px 0 15px 0;
    text-align: center;
}

.attent-text span {
    display: inline;
    background: linear-gradient(transparent 65%, #fffea7 65%);
    color: #f3104e;
    font-weight: 900;
    font-size: 1.5rem;
}

.attent-text p {
    font-weight: 600;
    font-size: 1rem;
}

.attent-box {
    margin: 2rem 0;
    padding: 1rem;
    border: 4px solid #0f7b3b;
}

#main-contents .attent-box h6 {
    background-color: #0863b1;
    color: #fff;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.75;
}

#main-contents .attent-box h6::before {
    display: none;
}

.marker-yellow {
    background: linear-gradient(transparent 40%, #fdfb8d 40%);
}

strong.important-text {
    color: #c50704;
    text-decoration: underline;
    font-weight: 600;
}

.important-text {
    color: #c50704;
    font-weight: 600;
}

.underline-text {
    text-decoration: underline;
}

.large-text {
    font-size: 125%;
}

@media (min-width: 768px) {
    #streamline h6.card-title {
        height: 124px;
    }
}

@media (max-width: 767.98px) {
    .marker-yellow {
        background: #fdfb8d;
    }

    .philosophy {
        font-size: 1.25rem;
    }
}

/* News List style       */
.newIcon {
    display: none;
}

.newIcon.is-show {
    display: inline-block;
}

/*===========================
    TOPPAGE style
===========================*/

#top-contents h2 {
    position: relative;
    margin-bottom: 2rem;
    color: #162427;
    font-size: 2rem;
    font-size: 3.25rem;
    font-family: 'Josefin+Sans', 'Noto Sans JP', 游ゴシック体, YuGothic-M, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro',
        'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#top-contents h2 span {
    margin-left: 20px;
    font-size: 1.2rem;
}

#top-contents h4 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #0084bd;
}

#top-contents a:hover {
    opacity: 0.8;
}

#top-contents .service {
    margin-bottom: 40px;
    padding: 2rem 0 1rem;
}

#top-contents .service .service-box {
    margin-bottom: 80px;
}

#top-contents .service .service-box:nth-child(odd) {
    margin-left: 60px;
}

#top-contents .service .service-img {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

#top-contents .service .service-img:before {
    position: absolute;
    top: 0;
    left: 0;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;

    text-orientation: mixed;
}

#top-contents .service .service-box:nth-child(2) .service-img:before {
    color: #87bd9d;
    content: 'SERVICE 01';
}

#top-contents .service .service-box:nth-child(3) .service-img:before {
    color: #c7dfb4;
    content: 'SERVICE 02';
}

#top-contents .service .service-box:nth-child(4) .service-img:before {
    color: #87bd9d;
    content: 'SERVICE 03';
}

#top-contents .service .service-box:nth-child(5) .service-img:before {
    color: #c7dfb4;
    content: 'SERVICE 04';
}

#top-contents .service .service-box:nth-child(6) .service-img:before {
    color: #87bd9d;
    content: 'SERVICE 05';
}

#top-contents .service .service-box:nth-child(7) .service-img:before {
    color: #c7dfb4;
    content: 'SERVICE 06';
}

#top-contents .service .service-bg {
    position: relative;
}

#top-contents .service .service-bg:before {
    position: absolute;
    top: 40px;
    left: -280px;
    z-index: -1;
    display: block;
    width: calc(100% + 280px);
    height: 96%;
    border-radius: 10px;
    background-color: #eef0f3;
    content: '';
}

#top-contents .service .service-box h3 {
    color: #0f7b3b;
}

#top-contents .service .service-box:nth-child(odd) h3 {
    color: #72af43;
}

#top-contents .service .service-box h3 span,
#top-contents .service .service-box:nth-child(odd) h3 span {
    font-size: 1.5rem;
}

#top-contents .news {
    margin-top: 100px;
    margin-bottom: 40px;
    padding: 2rem 0;
    background-color: #eef0f3;
}

#top-contents .news .news-title {
    /*margin: 40px 0 20px;*/
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.75rem;
}

#top-contents .news .news-title::before {
    display: block;
    padding-bottom: 10px;
    width: 40px;
    border-top: 4px solid #f0b80f;
    content: '';
}

#top-contents .news .news_scroll {
    overflow: scroll;
    overflow-x: hidden;
    width: 98%;
    height: 160px;
}

#top-contents .news li {
    margin-bottom: 8px;
}

@media (min-width: 576px) {
    #top-contents .news li .col-sm-2 {
        max-width: 115px;

        flex: 0 0 115px;
    }

    #top-contents .news li .col-sm-8 {
        max-width: calc(100% - 230px);

        flex: 0 0 calc(100% - 230px);
    }
}

#top-contents .news li .news-cat {
    display: block;
    border: 1px solid #215f9d;
    color: #215f9d;
    text-align: center;
    font-size: 90%;
}

#top-contents .news .news_scroll::-webkit-scrollbar {
    width: 15px;
}

#top-contents .news .news_scroll::-webkit-scrollbar-track {
    background-color: transparent;
}

#top-contents .news .news_scroll::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #d7dce4;
}

#top-contents .topSlide .container {
    position: relative;
}

#top-contents .topSlide .dotswap {
    position: absolute;
    top: -115px;
    right: 250px;
}

#top-contents .topSlide .dotswap .slick-dots {
    width: 250px;
}

#top-contents .topSlide .dotswap .slick-dots li {
    display: inline-block;
    margin: 4px;
    width: 24px;
    height: 8px;
    background: #464646;
    cursor: pointer;
}

#top-contents .topSlide .dotswap .slick-dots button {
    display: block;
    margin: 0;
    padding: 0;
    width: 0;
    height: 8px;
    outline: none;
    border: 0;
    background: #72af43;
    font-size: 0;
    opacity: 0;
    cursor: pointer;
}

#top-contents .topSlide .dotswap .slick-dots .slick-active button {
    background: #72af43;
    opacity: 1;
}

#top-contents .topSlide .slick-dots li button::before {
    display: none;
}

#top-contents .slidebtn {
    position: absolute;
    top: -65px;
    width: 100%;
}

#top-contents .btn-slide-l,
#top-contents .btn-slide-r {
    z-index: 1;
    display: block;
    padding: 1.25rem 0.5rem;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.4);
    color: #222;
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
}

#top-contents .btn-slide-l {
    border: 4px solid #ed5095;
    background-color: #fbdcea;
}

#top-contents .btn-slide-l:hover {
    background-color: #facce1;
    color: #ed5095;
    opacity: 1;
}

#top-contents .btn-slide-r {
    border: 4px solid #4e9de6;
    background-color: #c3def7;
}

#top-contents .btn-slide-r:hover {
    background-color: #b5d5f3;
    color: #4e9de6;
    opacity: 1;
}

#top-fixed-parts {
    padding: 1rem 0;
    background-color: #4e9de6;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 2.5rem;
}

#top-fixed-parts a {
    display: flex;

    align-items: center;
    justify-content: center;
}

#top-fixed-parts span {
    margin: 0 1rem;
    font-size: 1.5rem;
}

#top-fixed-parts span.btn-arw:before {
    display: inline-block;
    height: 16px;
    content: '';
    vertical-align: middle;
}

#top-fixed-parts span.btn-arw {
    position: relative;
    padding: 0.4rem 2.8rem 0.5rem 1rem;
    border-radius: 4px;
    background-color: #0863b5;
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
}

#top-fixed-parts.yelw {
    position: sticky;
    top: 126px;
    z-index: 10;
    padding: 1rem 0;
    background-color: #fff966;
    color: #215f9d;
    text-align: center;
    font-weight: 600;
    font-size: 2.25rem;
}

@media (max-width: 767.999px) {
    #top-fixed-parts.yelw {
        top: 71px;
        font-size: 1.5rem;
    }
}

.btn-common,
.btn-wrap {
    position: relative;
    display: block;
    padding: 12px 40px 12px 20px;
    border-radius: 100vh;
    background-color: #72af43;
    color: #fff;
    text-decoration: none;
    line-height: 1.7;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-wrap input:disabled {
    cursor: not-allowed;
}

.btn-wrap-b {
    background-color: #084e87;
}

.btn-wrap {
    margin: 0 auto;
    padding: 0;
}

.btn-back {
    margin-bottom: 20px;
    background-color: #7d807b;
}

form .btn-common {
    display: inline;
}

.btn-common span {
    display: inline-block;
    color: #fff;
}

.btn-common:after,
.btn-wrap:after,
.btn-arw:after {
    position: absolute;
    top: 0;
    right: 27px;
    bottom: 0;
    display: block;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: '';
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.btn-wrap.btn-back::after {
    display: none;
}

.btn-back:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;
    display: block;
    margin: auto;
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
    content: '';
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

input[type='submit'],
.btn-wrap a {
    display: block;
    margin: 0 auto;
    padding: 12px 40px 12px 20px;
    width: 100%;
    outline: 0;
    border: none;
    background-color: transparent;
    color: #fff;
    transition: 0.3s;
}

.btn-small {
    position: relative;
    margin: 0 0.5rem;
    padding: 0.3rem 2.5rem 0.4rem 1.5rem;
    border: 0;
    border-radius: 100vh;
    background-color: #f0b80f;
    color: #222;
    font-size: 92%;
}

.btn-small.btn-clr-blue {
    background-color: #86b2db;
}

.btn-small:after {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    display: block;
    margin: auto;
    width: 8px;
    height: 8px;
    border-top: solid 1px #222;
    border-right: solid 1px #222;
    content: '';
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.fadein {
    opacity: 0;
    transition: 1.2s;
    transform: translateY(50px);
}

.fadein.on {
    opacity: 1;
    transform: translate(0);
}

.fadein.delay {
    transition-delay: 1s;
}

@media (min-width: 768px) {

    .btn-common:focus,
    .btn-common:hover,
    .btn-wrap:focus,
    .btn-wrap:hover {
        background-color: #9bc07e;
    }

    .btn-wrap-b:focus,
    .btn-wrap-b:hover {
        background-color: #1566a8;
    }

    .btn-back:focus,
    .btn-back:hover {
        background-color: #91968e;
    }

    .btn-common:hover::after,
    .btn-wrap:hover::after,
    .btn-arw:hover::after {
        right: 22px;
    }

    .btn-back:hover::before {
        left: 22px;
    }
}

@media (max-width: 767.98px) {
    #top-contents a:hover {
        opacity: 1;
    }

    #top-contents .topSlide .dotswap {
        position: static;
        margin-bottom: 1.5rem;
        width: 100%;
        text-align: center;
    }

    #top-contents .topSlide .dotswap .slick-dots {
        position: static;
        width: auto;
    }

    #top-contents .service {
        padding-top: 3rem;
    }

    #top-contents .service .service-box:nth-child(odd) {
        margin-left: -12px;
    }

    #top-contents .slidebtn {
        position: static;
        width: auto;
    }

    .btn-slide-l,
    .btn-slide-r {
        margin-bottom: 1.5rem;
    }

    #top-contents h2 {
        margin-bottom: 1.5rem;
        font-size: 2.5rem;
    }

    #top-contents h2 span {
        display: block;
        margin-bottom: 2rem;
        margin-left: 0;
        font-size: 1.2rem;
    }

    #top-contents .service .service-bg:before {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        border-radius: 0;
    }
}

/*----
電帳対話形式用 -------------------------------------*/

.dialogic-box .pr-10 {
    padding-right: 0;
}

.dialogic-box .pl-10 {
    padding-left: 0;
}

.dialogic-box figure {
    margin-bottom: 0;
}

.dialogic-box figcaption {
    padding: 8px;
    background: #f7f7f7;
    background: 0 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.8em;
    font-size: 0.6em;
    line-height: 1.4;
}

.dialogic-box .textbox {
    position: relative;
    padding: 2%;
    border: 3px solid #d7d7d8;
    border-radius: 7px;
    background-color: #fff;
}

.dialogic-box p {
    margin: 0;
    line-height: 1.7;
}

.dialogic-box {
    margin: 1.5em 0;
}

.dialogic-box .textbox:before {
    position: absolute;
    content: '';
}

.dialogic-box .textbox:after {
    position: absolute;
    content: '';
}

.textbox-r:after {
    top: 14px;
    left: -7px;
    border-top: 10px solid transparent;
    border-right: 12px solid #fff;
    border-bottom: 10px solid transparent;
}

.textbox-r:before {
    top: 14px;
    left: -11px;
    border-top: 10px solid transparent;
    border-right: 10px solid #d7d7d8;
    border-bottom: 10px solid transparent;
}

.textbox-l:after {
    top: 14px;
    right: -7px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid #fff;
}

.textbox-l:before {
    top: 14px;
    right: -11px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #d7d7d8;
}

.dialogic-box .num {
    margin-right: 0.5rem;
    padding: 0 0.5rem 0.125rem 0.5rem;
    border-radius: 3px;
    background-color: #0f7b3b;
    color: #fff;
    font-size: 1.125rem;
}

.dialogic-box .sbt {
    margin-bottom: 0.75rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid #0f7b3b;
    font-weight: 700;
    font-size: 1.25rem;
}

.dialogic-box .ssbt {
    margin-bottom: 0.5rem;
    color: #0f7b3b;
    font-weight: 700;
    font-size: 1.125rem;
}

.dialogic-box span,
.dialogic-box a {
    display: inline;
}
