html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, em, img, dl, dt, dd, ol, ul, li, form, label,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figcaption, figure, footer, header, menu, nav, section, time, video {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

body {
    margin-top: 80px;
    color: #484545;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 600;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0px auto;
}

a {
    color: #3A9800;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

ol.list,
ul.list {
    margin: 0px 0px 0px 1.5em;
}

p + ol.list,
p + ul.list {
    margin: 0.5em 0px 0px 1.5em;
}

ol.list + p,
ul.list + p {
    margin: 0.5em 0px 0px;
}

ol.list > li + li,
ul.list > li + li {
    margin: 0.5em 0px 0px;
}

figcaption {
    margin-top: 1em;
    text-align: center;
}

.btn_link {
    display: table;
    padding: 0.75em 4em;
    margin: 30px auto 0px;
    border-radius: 2em;
    background-color: #BA0712;
    color: #fff;
}
.btn_link:hover {
    opacity: 0.75;
    text-decoration: none;
}

.center {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .pc_center {
        text-align: center;
    }
}

.blk_center {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.bw > span,
h1 > span,
h2 > span,
h3 > span,
h4 > span,
h5 > span,
h6 > span,
figcaption > span {
    display: inline-block;
}

strong {
    color: #C13D27;
    font-weight: bold;
}

.mt1em {
    margin-top: 1em;
}

.ml1em {
    margin-left: 1em;
}

.mt30 {
    margin-top: 30px;
}

.mt60 {
    margin-top: 60px;
}

.mw400 {
    max-width: 400px;
}

div[class="col"],
div[class^="col-"] {
    margin-top: 60px;
}

.row.no_mt {
    margin-top: -60px;
}

.container {
    padding: 0px 10px;
    width: 100%;
}
@media screen and (min-width: 1100px) {
    .container {
        margin: 0px auto;
        width: 1100px;
        max-width: 1100px;
    }
}

.header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999;
    height: 80px;
    background-color: #fff;
    color: #fff;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@media screen and (min-width: 1100px) {
    .header .container {
        width: 1200px;
        max-width: 1200px;
    }
}


.header_title {
    max-width: 300px;
}

.header_title a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.header_menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.header_menu li {
    margin: 0px 2em;
}

.header_menu a {
    color: #484545;
    font-weight: bold;
    text-decoration: none;
}

.header_menu a:hover {
    color: #3A9800;
}

@media screen and (max-width: 767.98px) {
    .header_menu {
        display: none;
    }
}

.header_mb {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9999;
}
@media print, (min-width: 768px) {
    .header_mb {
        display: none;
    }
}

.header_mb .btn_nav {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 9999;
    width: 70px;
    height: 70px;
    border-radius: 5px;
}
.header_mb .btn_nav > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 4px;
    transform: translateX(-50%) translateY(-50%);
    background-color: #CB001A;
    transition: 0.2s;
}
.header_mb .btn_nav > span:before,
.header_mb .btn_nav > span:after {
    display: block;
    position: absolute;
    left: 0px;
    width: 24px;
    height: 4px;
    background-color: #CB001A;
    transition: 0.3s;
    content: "";
}
.header_mb .btn_nav > span:before {
    top: 9px;
}
.header_mb .btn_nav > span:after {
    top: -9px;
}
.header_mb .btn_nav.js_open:after {
    content: "";
}
.header_mb .btn_nav.js_open {
    background-color: #CB001A;
}
.header_mb .btn_nav.js_open > span {
    background: transparent;
}
.header_mb .btn_nav.js_open > span:before,
.header_mb .btn_nav.js_open > span:after {
    top: 0px;
    background-color: #fff;
}
.header_mb .btn_nav.js_open > span:before {
    transform: rotate(-45deg);
}
.header_mb .btn_nav.js_open > span:after {
    transform: rotate(-135deg);
}

.header_mb .site_title {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 70%;
}

.header_mb .toggle_area {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9998;
    overflow-y: auto;
    background-color: #CB001A;
}

.header_mb .toggle_area_title {
    margin-top: 40px;
    font-size: 6vw;
    font-weight: bold;
    text-align: center;
}

.header_mb .toggle_area_link {
    list-style: none;
    margin: 40px auto 0px;
    width: 60%;
}

.header_mb .toggle_area_link li {
    border-bottom: 1px solid #fff;
}

.header_mb .toggle_area_link a {
    display: block;
    padding: 1em 0px;
    color: #fff;
    font-size: 5vw;
    font-weight: bold;
}

.header_mb .toggle_area_sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0px 0px;
    list-style: none;
}

.header_mb .toggle_area_sns li {
    margin: 0px 10px;
}

.header_mb .toggle_area_sns li img {
    max-width: 60px;
}

.header_mb .menu li {
    margin: 0px;
    border-bottom: 1px solid #fff;
    list-style-type: none;
}

.header_mb .menu li a {
    position: relative;
    display: block;
    padding: 1em 2em;
    font-size: 2.5vw;
    font-weight: bold;
}
.header_mb .menu li a:after {
    position: absolute;
    top: 50%;
    right: 2em;
    transform: translateY(-50%);
    font-family: FontAwesome;
    content: "\f105";
}
.header_mb .menu li a:link,
.header_mb .menu li a:visited,
.header_mb .menu li a:active,
.header_mb .menu li a:hover {
    color: #fff;
    text-decoration: none;
}

.header_mb .toggle_area .tel_num {
    margin: 30px 0px 0px;
    text-align: center;
}

.header_mb .toggle_area .tel_num p {
    color: #fff;
    font-size: 16px;
}

.header_mb .toggle_area .tel_num a {
    font-size: 24px;
    font-weight: bold;
    font-family: Verdana, Hiragino Kaku Gothic W6 JIS2004, sans-serif;
    letter-spacing: 2px;
    line-height: 1;
}
.header_mb .toggle_area .tel_num a:before {
    display: inline-block;
    margin: 0px 0.5em 0px 0px;
    transform: scale(-1, 1);
    font-family: FontAwesome;
    content: "\f095";
}
.header_mb .toggle_area .tel_num a:link,
.header_mb .toggle_area .tel_num a:visited,
.header_mb .toggle_area .tel_num a:active,
.header_mb .toggle_area .tel_num a:hover {
    color: #fff;
    text-decoration: none;
}

.header_mb .toggle_area > a {
    display: table;
    padding: 1em 2em;
    margin: 30px auto 30px;
    border: 1px solid #fff;
    text-align: center;
}
.header_mb .toggle_area > a:before {
    margin: 0px 1em 0px 0px;
    font-family: FontAwesome;
}
.header_mb .toggle_area > a:nth-of-type(1):before {
    content: "\f003";
}
.header_mb .toggle_area > a:nth-of-type(2):before {
    content: "\f019";
}
.header_mb .toggle_area > a:link,
.header_mb .toggle_area > a:visited,
.header_mb .toggle_area > a:active,
.header_mb .toggle_area > a:hover {
    color: #fff;
    text-decoration: none;
}

h2 {
    display: table;
    margin: 0px auto;
    position: relative;
    padding: 0px 0px 10px;
    color: #3A9800;
    font-size: 28px;
    font-weight: bold;
}
h2::before {
    position: absolute;
    bottom: 0px;
    left: -0.5em;
    right: -0.5em;
    height: 2px;
    background-color: #3A9800;
    content: "";
}

.area_main img {
    width: 100%;
}

.area_message {
    margin-top: 90px;
}

.text_green {
    color: #3A9800;
    font-size: 24px;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    text-align: center;
    line-height: 2;
}

.area_kouyaku {
    margin-top: 90px;
}

.area_kouyaku {
    position: relative;
    margin-top: 90px;
    padding: 90px 0px;
}
.area_kouyaku::before {
    position: absolute;
    top: 0px;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    bottom: 0px;
    z-index: -1;
    background-color: #F8F8F8;
    content: "";
}

.box_num {
    position: relative;
    margin-top: 20px;
    padding: 40px 30px 30px;
    background-color: #fff;
    min-height: 100%;
}

.box_num_number {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 2em;
    height: 2em;
    background-color: #3A9800;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.box_num_title {
    color: #3A9800;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.box_num_content {
    margin-top: 1em;
}

.area_kouyaku_kadai {
    margin-top: 60px;
    padding: 30px;
    background-color: #fff;
}

.area_kouyaku_juujitsu {
    margin-top: 90px;
}

.area_kouyaku_juujitsu h3 img {
    max-width: 240px;
}

.box_juujitsu {
    position: relative;
    padding: 20px;
    min-height: 100%;
    border-radius: 10px;
    background-color: #EBDE71;
}

.box_juujitsu .list {
    font-size: 14px;
}

.box_juujitsu_title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.box_juujitsu_title span:nth-of-type(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    background-color: #fff;
    border-radius: 50%;
    color: #DBC931;
}

.box_juujitsu_title span:nth-of-type(2) {
    margin: 0px 0px 0px 0.5em;
}

.box_juujitsu_content {
    position: relative;
    margin-top: 1em;
}

.box_juujitsu_content_image {
    position: absolute;
    top: 0px;
    right: 0px;
    max-width: 100px;
}

.box_juujitsu_image {
    position: absolute;
    top: 0px;
    right: 0px;
    max-width: 100px;
}

.area_kouyaku_tenbou {
    margin-top: 90px;
}

.area_kouyaku_tenbou h3 img {
    max-width: 240px;
}

.area_profile {
    position: relative;
    margin-top: 90px;
    padding: 90px 0px;
}
.area_profile::before {
    position: absolute;
    top: 0px;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    bottom: 0px;
    z-index: -1;
    background-color: #F4FAF2;
    content: "";
}

.bg_profile {
    padding: 60px 30px;
    margin-top: 60px;
    background-color: #fff;
}

.area_work {
    margin-top: 90px;
}

.area_nyuukai {
    padding: 30px 60px 0px;
    margin-top: 90px;
    background-color: #F8F8F8;
}

.area_nyuukai_title {
    margin-top: 30px;
    color: #3A9800;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.area_nyuukai_title + p {
    margin-top: 1em;
    text-align: center;
}

.area_contact {
    margin-top: 90px;
}

.area_contact_title {
    color: #3A9800;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}

.area_thanks {
    padding: 30px 60px;
    margin-top: 90px;
    background-color: #F8F8F8;
    text-align: center;
}

.form_item_title {
    padding: 10px 0px;
    font-weight: bold;
}

.form_item input[type="text"],
.form_item input[type="tel"],
.form_item input[type="email"],
.form_item textarea {
    width: calc(100% - 2em);
    padding: 1em;
    margin: 0px;
}

.mfp_buttons button {
    background: none;
    background-color: #BA0712;
    border: none;
    border-radius: 2em;
    outline: none;
    appearance: none;
    padding: 10px 4em;
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: none;
    cursor: pointer;
}
.mfp_buttons button:hover {
    background: none;
    background-color: #BA0712;
    box-shadow: none;
    opacity: 0.75;
}

.footer {
    padding: 30px 0px;
    margin-top: 60px;
    background-color: #71A72C;
    text-align: center;
    color: #fff;
}

.footer_title img {
    max-width: 240px;
}

.footer_info {
    margin-top: 1em;
    font-size: 12px;
}

.footer_info span {
    display: inline-block;
    margin: 0px 2em;
}
