body {
    color: #333;
    font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: .1rem
}

a {
    color: #00a138;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

a:hover {
    color: #08ff5e
}

img {
    max-width: 100%;
    height: auto
}

.loadingAnim {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center
}

.loadingAnim_line {
    line-height: 1;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    overflow: hidden;
    width: 150px;
    height: 1.25em;
    margin: auto;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
    text-align: center
}

.loadingAnim_line:after {
    position: absolute;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100%;
    margin: auto auto auto 0;
    content: ' ';
    -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
    animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
    background-color: #00a138;
    will-change: transform, width
}

.loadingAnim_line:before {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    display: block;
    content: 'LOADING';
    -webkit-animation: loadingAnim_text 1s ease .1s infinite alternate both;
    animation: loadingAnim_text 1s ease .1s infinite alternate both;
    letter-spacing: .5em;
    color: #fff;
    will-change: opacity
}

.loaded .loadingAnim_line {
    overflow: hidden;
    height: 0
}

.loaded .loadingAnim_line:after {
    -webkit-animation: none;
    animation: none
}

.loaded .loadingAnim_line:before {
    -webkit-animation: none;
    animation: none;
    content: 'LOADED!';
    color: #ccc
}

.loadingAnim:before,
.loadingAnim:after {
    line-height: 1;
    position: fixed;
    z-index: 99;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 50%;
    margin-right: auto;
    margin-left: auto;
    content: ' ';
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    background-color: #eee
}

.loadingAnim:before {
    top: 0
}

.loadingAnim:after {
    bottom: 0
}

.loaded .loadingAnim:before {
    height: 0;
    -webkit-transform: translateY(-1%);
    transform: translateY(-1%)
}

.loaded .loadingAnim:after {
    height: 0;
    -webkit-transform: translateY(1%);
    transform: translateY(1%)
}

#header {
    position: fixed;
    z-index: 2;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-top: 2px solid #00a138;
    -webkit-box-shadow: 0 3px 3px rgba(1, 1, 1, 0.2);
    box-shadow: 0 3px 3px rgba(1, 1, 1, 0.2)
}

#header .inner {
    position: relative;
    padding: 0 10px;
    height: 68px
}

#header .inner #logo {
    padding-top: 8px;
    width: 292px
}

#header .inner #navi {
    position: absolute;
    top: 0;
    right: 140px;
    text-align: center;
    font-size: 1.4rem
}

#header .inner #navi ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

#header .inner #navi ul li {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 25px
}

#header .inner #navi ul li a {
    display: block;
    position: relative;
    color: #333;
    font-weight: 500
}

#header .inner #navi ul li a span {
    display: block;
    font-family: "YakuHanJP", "Roboto", "sans-serif";
    font-size: 1rem;
    color: #00a138;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

#header .inner #navi ul li a:hover {
    -webkit-animation-duration: 1s;
    -webkit-animation-name: flash;
    animation-duration: 1s;
    animation-name: flash
}

#header .inner .mail_contact {
    position: absolute;
    top: 0;
    right: 0
}

#header .inner .mail_contact a {
    display: block;
    background: #00a138;
    color: #FFFFFF;
    padding: 15px 25px;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center
}

#header .inner .mail_contact a span {
    display: block;
    font-family: "YakuHanJP", "Roboto", "sans-serif";
    font-size: 1rem
}

#header .inner .mail_contact a:hover {
    background: #00d44a
}

#page-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999
}

#page-top a {
    display: block;
    background: #84c134;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center
}

#page-top a:hover {
    background: #9cd256
}

#page-top a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f077";
    font-weight: 900
}

#footer {
    position: relative
}

#footer .inner {
    padding-bottom: 70px;
    background-color: #00a138;
    color: #FFFFFF
}

#footer .inner .foot_navi {
    padding: 70px 0
}

#footer .inner .foot_navi>ul {
    width: 1024px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

#footer .inner .foot_navi>ul>li {
    width: 20%
}

#footer .inner .foot_navi>ul>li>a {
    position: relative;
    padding-left: 20px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #FFFFFF
}

#footer .inner .foot_navi>ul>li>a:hover {
    -webkit-animation-duration: 1s;
    -webkit-animation-name: flash;
    animation-duration: 1s;
    animation-name: flash
}

#footer .inner .foot_navi>ul>li>a:before {
    content: "";
    background-color: #fff30a;
    width: 10px;
    height: 4px;
    position: absolute;
    top: .6em;
    left: 0
}

#footer .inner .foot_sub_navi {
    margin-top: 10px;
    font-size: 1.2rem
}

#footer .inner .foot_sub_navi li {
    margin-bottom: 5px
}

#footer .inner .foot_sub_navi li:last-child {
    margin-bottom: 0
}

#footer .inner .foot_sub_navi li a {
    color: #FFFFFF
}

#footer .inner .foot_sub_navi li a:hover {
    -webkit-animation-duration: 1s;
    -webkit-animation-name: flash;
    animation-duration: 1s;
    animation-name: flash
}

#footer .inner .foot_sub_navi li a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    margin-right: 10px;
    color: #fff30a
}

#footer .inner .foot_middle {
    margin: 0 auto 20px;
    width: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

#footer .inner .foot_middle .flogo {
    width: 400px
}

#footer .inner .foot_middle .iso {
    text-align: center;
    font-size: 1.2rem;
    width: 170px
}

#footer .inner .foot_middle .iso span {
    display: block;
    margin: 0 auto 5px;
    width: 120px
}

#footer .inner .copyright {
    text-align: center;
    font-size: 1.2rem
}

#sp_navi,
#humberger,
#drawernav {
    display: none
}

.contact_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-top: 30px
}

.contact_btn li {
    width: 40%;
    margin: 0 2%
}

.contact_btn li a {
    display: block;
    border: 1px solid #00a138;
    padding: .7em 0;
    text-align: center;
    font-size: 2rem
}

.contact_btn li a:before {
    margin-right: 10px
}

.contact_btn li a.tel_btn {
    background: #FFFFFF;
    color: #00a138
}

.contact_btn li a.tel_btn:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: 900
}

.contact_btn li a.mail_btn {
    background: #00a138;
    color: #FFFFFF
}

.contact_btn li a.mail_btn:hover {
    background: #00d44a
}

.contact_btn li a.mail_btn:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: 900
}

.contact_btn.contact_btn_02 li {
    width: 100%
}

.contact_btn.contact_btn_03 li a {
    font-size: 1.5rem
}

.slideshow {
    position: relative
}

.slideshow #catch {
    position: absolute;
    z-index: 998;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: fadeIn 6s ease 0s 1 normal;
    -webkit-animation: fadeIn 6s ease 0s 1 normal
}

.swiper-slide {
    padding: 35rem 0;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.slide_01 {
    background-image: url(../img/bg_slide_01.jpg)
}

.slide_02 {
    background-image: url(../img/bg_slide_02.jpg)
}

.slide_03 {
    background-image: url(../img/bg_slide_03.jpg);
    background-position: center 80%
}

.slide_04 {
    background-image: url(../img/bg_slide_04.jpg)
}

.single {
    margin: 0 auto;
    width: 1024px;
    padding-bottom: 70px
}

.single_inner {
    margin: 0 auto;
    width: 768px
}

.single_01 {
    margin: 0 auto;
    width: 95%;
    padding-bottom: 70px
}

.single_02 {
    margin: 0 auto;
    width: 1024px;
    padding-bottom: 50px
}

.main_contents {
    padding-top: 30px
}

.bg_common {
    padding-top: 70px
}

.bg_b {
    margin-bottom: 70px
}

.bg_01 {
    background-image: url(../img/bg_01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.bg_02 {
    background-image: url(../img/bg_02.jpg);
    background-repeat: repeat;
    background-position: center top
}

.half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.half .child {
    width: 50%
}

.triple {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.triple .child {
    width: 33.3%
}

.column2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -3%
}

.column2 .child {
    width: 50%;
    margin: 0 3% 3% 0
}

.column2 .child:nth-child(2n) {
    margin: 0 0 3% 0
}

.column3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -3%
}

.column3 .child {
    width: 31.3%;
    margin: 0 3% 3% 0
}

.column3 .child:nth-child(3n) {
    margin: 0 0 3% 0
}

.column4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-bottom: -3%
}

.column4 .child {
    width: 22.7%;
    margin: 0 3% 3% 0
}

.column4 .child:nth-child(4n) {
    margin: 0 0 3% 0
}

.column5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -1%
}

.column5 .child {
    width: 19.2%;
    margin: 0 1% 1% 0
}

.column5 .child:nth-child(5n) {
    margin: 0 0 1% 0
}

.mtitle_big {
    position: relative;
    margin-bottom: 20px;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2
}

.mtitle_big span {
    display: block;
    color: #00a138;
    font-family: "YakuHanJP", "Roboto", "sans-serif";
    font-size: 1.5rem
}

.mtitle_middle {
    background-color: #333;
    color: #FFFFFF;
    padding: 8px 0 8px 10px;
    font-size: 1.8rem;
    letter-spacing: .1em;
    margin-bottom: 20px;
    border-left: 5px solid #00a138;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mtitle_small {
    position: relative;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px
}

.mtitle_small:before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #00a138;
    position: absolute;
    left: 0;
    bottom: -15px
}

.mtitle {
    position: relative;
    border-bottom: 2px solid #EEEEEE;
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-size: 2.2rem;
    font-weight: 500
}

.mtitle:before {
    font-family: "Font Awesome 5 Free";
    content: "\f068";
    font-weight: 900;
    margin-right: 5px;
    color: #00a138
}

.mtitle:after {
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 3px;
    background-color: #00a138
}

.mtitle_border {
    margin-bottom: 30px;
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.4;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    padding: 10px 0 20px
}

.mtitle_border span {
    display: block;
    color: #00a138;
    font-family: "YakuHanJP", "Roboto", "sans-serif";
    font-size: 1.6rem
}

.mtitle_top {
    margin-bottom: 30px;
    color: #FFFFFF;
    font-size: 2em;
    font-weight: 500;
    letter-spacing: .2em
}

.mtitle_sub {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 1.8rem;
    font-weight: 500
}

.mtitle_sub:before {
    content: "";
    background-color: #00a138;
    width: 10px;
    height: 4px;
    position: absolute;
    top: .6em;
    left: 0
}

.mtitle_message {
    margin-bottom: 15px;
    font-family: "YakuHanJP", Noto Serif JP, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: .2rem
}

.mtitle_service {
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 500;
    text-align: center
}

.mtitle_flow {
    padding: 0 0 30px 120px;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 2.5
}

.mtitle_flow span {
    display: inline-block;
    position: absolute;
    left: 0;
    z-index: 1;
    width: auto;
    text-align: center;
    color: #FFFFFF;
    line-height: 1.8;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    padding: 10px 20px
}

.mtitle_flow span:before,
.mtitle_flow span:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg)
}

.mtitle_flow span:after {
    background: #00a138;
    content: "";
    z-index: -1
}

.mtitle_voice {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 1.8rem;
    font-weight: 500;
    border-bottom: 1px dotted #CCCCCC
}

.mtitle_circle {
    position: relative;
    background: #00a138;
    color: #FFFFFF;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    line-height: 180px;
    text-align: center
}

.mtitle_circle h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 1.2;
    font-family: "YakuHanJP", "Roboto", "sans-serif";
    font-size: 1.7rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: .3em
}

.mtitle_circle h3 span {
    display: block;
    font-size: 1.6rem
}

.cbtn {
    margin-top: 30px
}

.cbtn a,
.cbtn button {
    display: block;
    position: relative;
    width: 320px;
    max-width: 100%;
    background: #00a138;
    color: #FFFFFF;
    padding: 20px 0;
    text-align: center;
    font-weight: 500;
    letter-spacing: .3em
}

.cbtn a:after,
.cbtn button:after {
    position: absolute;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    -webkit-transition: .2s;
    transition: .2s
}

.cbtn a:hover:after,
.cbtn button:hover:after {
    right: 10px
}

.cbtn.cbtn_01 {
    position: absolute;
    bottom: -8%
}

.cbtn.cbtn_02 a,
.cbtn.cbtn_02 button {
    margin: 0 auto
}

.abtn {
    margin-top: 30px
}

.abtn a,
.abtn button {
    display: table;
    background: #FFFFFF;
    border: 1px solid #00a138;
    color: #00a138;
    padding: .3em 3em;
    border-radius: 100px;
    margin: 0 auto
}

.abtn a:after,
.abtn button:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    margin-left: 10px
}

.abtn a:hover,
.abtn button:hover {
    background: #00a138;
    color: #FFFFFF
}

.news_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff30a;
    margin-bottom: 100px
}

.news_box .news_ttile {
    background: #00a138;
    color: #FFFFFF;
    width: 230px;
    padding: 20px 0
}

.news_box .news_bx {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px
}

.news-top dt {
    float: left;
    width: 7em
}

.news-top dd {
    padding: 0 0 10px 8em;
    border-bottom: 1px dotted #aaa;
    margin: 0 0 10px
}

.news-top dd:last-child {
    margin: 0;
    border-bottom: none
}

.news-bl dt {
    float: left;
    width: 7em;
    margin-bottom: 10px;
    padding: 3px 5px;
    background: #00a138;
    color: #FFFFFF;
    text-align: center
}

.news-bl dd {
    padding: 0 0 10px 9em;
    line-height: 1.6;
    border-bottom: 1px dotted #CCCCCC;
    margin: 0 0 10px
}

.news-bl dd:last-child {
    margin: 0;
    border-bottom: none
}

.tbl {
    width: 100%;
    background-color: #FFFFFF
}

.tbl th,
.tbl td {
    vertical-align: middle;
    border: 1px solid #CCCCCC;
    padding: 10px
}

.tbl th {
    background: #00a138;
    color: #FFFFFF;
    font-weight: normal
}

.tbl_new {
    width: 100%;
    background-color: #FFFFFF
}

.tbl_new tr th,
.tbl_new tr td {
    vertical-align: top;
    padding: 10px
}

.tbl_new tr th {
    width: 20%;
    font-weight: normal
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
    background: #F5F5F5
}

.tbl_form tr th {
    text-align: left;
    width: 25%
}

.company {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px
}

.company th,
.company td {
    padding: 10px;
    vertical-align: middle
}

.company th {
    text-align: left;
    width: 20%;
    position: relative;
    background: #00a138;
    color: #FFFFFF;
    font-weight: normal
}

.company th::after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: #FFFFFF;
    border-width: 10px;
    border-left-color: #00a138;
    margin-top: -10px
}

.company td {
    background: #FFFFFF;
    padding-left: 20px
}

.tbl_company {
    width: 100%
}

.tbl_company th,
.tbl_company td {
    vertical-align: middle
}

.tbl_company th {
    width: 15%;
    border-bottom: 1px solid #00a138;
    padding: 12px;
    font-weight: 500
}

.tbl_company td {
    padding: 22px;
    border-bottom: 1px solid #DDDDDD;
    line-height: 1.8em
}

.tbl_01 th {
    width: 20%
}

.list_common li {
    padding-bottom: 10px;
    padding-left: 1rem;
    margin-bottom: 10px;
    border-bottom: 1px dotted #CCCCCC
}

.list_common li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
}

.list_common li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 5px 0 -1rem;
    color: #00a138;
    padding: 1px
}

.list_check li:before {
    content: "\f058";
    color: #00a138
}

.list_note li {
    margin-bottom: 5px;
    padding-left: 1.5em
}

.list_note li:last-child {
    margin-bottom: 0
}

.list_note li:before {
    content: "※";
    margin: 0 5px 0 -1.5em;
    color: #FF0000
}

.list_disc li {
    margin-bottom: 5px;
    padding-left: 1.5em
}

.list_disc li:last-child {
    margin-bottom: 0
}

.list_disc li:before {
    content: "・";
    margin: 0 5px 0 -1.5em;
    color: #fff30a
}

.list_line li {
    position: relative;
    display: inline-block;
    padding: 0 10px
}

.list_line li:after {
    position: absolute;
    right: 0;
    content: "/"
}

.list_line li:last-child:after {
    display: none
}

.list_macker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold
}

.list_macker li {
    width: 18.4%;
    margin: 0 2% 1% 0
}

.list_macker li:nth-child(5n) {
    margin: 0 0 1% 0
}

.rounded-list {
    counter-reset: li;
    padding-left: 1em;
    list-style: none
}

.rounded-list li {
    position: relative;
    padding: .4em .4em .4em 2em;
    margin: .5em 0;
    background: #fafafa;
    border-radius: .3em;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.rounded-list li:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #00a138;
    color: #FFFFFF;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.works-area {
    display: table;
    width: 100%;
    margin-bottom: 40px
}

.works-area .before-img,
.works-area p,
.works-area .after-img {
    display: table-cell;
    vertical-align: middle;
    text-align: center
}

.works-area .before-img,
.works-area .after-img {
    background-color: #f8f8f8;
    width: 45%
}

.works-area p {
    padding: 0 2%
}

.works-area div img {
    width: auto;
    max-width: 4100px;
    height: 100%;
    max-height: 330px
}

.works-area:last-child {
    margin-bottom: 0
}

.ggmap {
    position: relative;
    padding-bottom: 60.25%;
    height: 0;
    overflow: hidden
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

#rss li {
    border-bottom: 1px solid #CCCCCC
}

#rss li a {
    display: block;
    padding: 10px;
    color: #333;
    position: relative
}

#rss li a:after {
    position: absolute;
    top: 50%;
    right: 3%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    color: #00a138
}

#rss li a:hover {
    background: #F8F8F8
}

.sns_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px
}

.sns_list li {
    width: 31.3%;
    margin-right: 3%
}

.sns_list li:last-child {
    margin: 0
}

.sns_btn {
    overflow: hidden;
    color: #FFFFFF;
    position: relative;
    display: block;
    border-radius: 100px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    vertical-align: middle
}

.sns_btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.sns_btn i {
    font-size: 2rem;
    position: relative;
    top: 3px;
    margin-right: 10px
}

.sns_btn span {
    display: inline-block;
    position: relative;
    -webkit-transition: .5s;
    transition: .5s
}

.sns_btn:hover {
    color: #FFFFFF
}

.sns_btn:hover span {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg)
}

.facebook_btn {
    background: #4267b2
}

.insta_btn {
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat
}

.insta_btn:before {
    background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat
}

.line_btn {
    background: #00b82b
}

.article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #00a138;
    color: #FFFFFF
}

.article .article_image {
    width: 60%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.article .article_detail {
    position: relative;
    width: 40%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 50px 0
}

.article .article_detail .article_title {
    position: absolute;
    top: -80px;
    right: 80px
}

.article .article_detail .inner {
    margin: 0 auto;
    width: 80%
}

.article.article_b {
    margin-bottom: 100px
}

.article.article_01 .article_image {
    background-image: url(../img/article_01.jpg)
}

.article.article_02 .article_image {
    background-image: url(../img/article_02.jpg)
}

.article.article_03 .article_image {
    background-image: url(../img/article_03.jpg)
}

.article.article_04 .article_image {
    background-image: url(../img/article_04.jpg)
}

.article.article_05 .article_image {
    background-image: url(../img/article_05.jpg)
}

.article.article_06 .article_image {
    background-image: url(../img/article_06.jpg)
}

.link_block {
    position: relative;
    background: #FFFFFF
}

.link_block::before,
.link_block::after {
    display: block;
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    background: #00a138;
    -webkit-transition: all 0.4s 0s ease;
    transition: all 0.4s 0s ease;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}

.link_block::before {
    left: 0;
    top: 0
}

.link_block::after {
    right: 0;
    bottom: 0
}

.link_block a {
    display: block;
    padding: 15px;
    color: #333;
    font-size: 1.8rem;
    font-weight: 500;
    -webkit-transition: all 0.4s 0s ease;
    transition: all 0.4s 0s ease;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}

.link_block a::before,
.link_block a::after {
    display: block;
    content: "";
    width: 1px;
    height: 0;
    position: absolute;
    background: #00a138;
    -webkit-transition: all 0.4s 0s ease;
    transition: all 0.4s 0s ease;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}

.link_block a::before {
    left: 0;
    top: 0
}

.link_block a::after {
    right: 0;
    bottom: 0
}

.link_block a .image {
    margin-bottom: 15px
}

.link_block a figcaption {
    position: relative
}

.link_block a figcaption .icon_link_arrow {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.link_block a figcaption .icon_link_arrow:before {
    font-family: "Font Awesome 5 Free";
    content: "\f152";
    font-weight: 900;
    color: #00a138
}

.link_block:hover::before,
.link_block:hover::after {
    width: 100%
}

.link_block:hover a::before,
.link_block:hover a::after {
    height: 100%
}

.category_tab {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px
}

.category_tab:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    background: #00a138
}

.category_tab li {
    position: relative;
    width: 25%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #00a138;
    border-top: 3px solid #00a138;
    border-right: 3px solid #00a138;
    border-left: 3px solid #00a138;
    color: #FFFFFF;
    padding: 20px 10px;
    cursor: pointer;
    margin-left: 20px
}

.category_tab li:last-child {
    margin-right: 20px
}

.category_tab li.active {
    background: #FFFFFF;
    color: #333
}

.category_tab li.active:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    background: #FFFFFF
}

.panel {
    display: none
}

.news_list li {
    padding: 20px;
    border-bottom: 1px dotted #333
}

.news_list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #333
}

.news_list li a .news_date {
    margin-right: 20px
}

.news_list li a .news_category {
    background: #333;
    color: #FFFFFF;
    padding: 5px;
    margin-right: 30px;
    min-width: 140px;
    text-align: center
}

.blog_date {
    display: inline-block;
    margin: 0 20px 20px 0
}

.blog_date:before {
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    font-weight: 900;
    margin-right: 5px
}

.blog_category {
    display: inline-block;
    background: #333;
    color: #FFFFFF;
    padding: 5px;
    margin-bottom: 20px;
    min-width: 140px;
    text-align: center
}

.pages {
    overflow: hidden;
    margin-top: 50px
}

.pages .page_next,
.pages .page_prev {
    display: inline-block;
    border: 1px solid #00a138;
    padding: 10px 20px
}

.pages .page_next {
    float: left
}

.pages .page_prev {
    float: right
}

.company_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.company_nav li {
    width: 48.44%;
    margin: 0 3% 3% 0
}

.company_nav li:nth-child(2n) {
    margin: 0 0 3% 0
}

.company_nav li .inner {
    display: block;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    border: 2px solid #00a138;
    height: 250px;
    cursor: pointer
}

.company_nav li .inner.company_nav_01 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner.company_nav_02 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner.company_nav_03 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner.company_nav_04 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner.company_nav_05 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner.company_nav_06 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner.company_nav_07 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner.company_nav_08 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner.company_nav_09 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner.company_nav_10 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner.company_nav_11 {
    background-image: url(https://placehold.jp/500x250.png)
}

.company_nav li .inner:before {
    display: block;
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1
}

.company_nav li .inner:after {
    display: block;
    content: "";
    background: rgba(0, 161, 56, 0.7);
    height: 4rem;
    position: absolute;
    top: 50%;
    right: 24px;
    left: 24px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
    z-index: 1
}

.company_nav li .inner .company_nav_title {
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    right: 10px;
    left: 10px;
    z-index: 5;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    font-weight: 500
}

.company_nav li .inner .company_nav_more {
    opacity: 0;
    position: absolute;
    bottom: 20%;
    left: 50%;
    z-index: 5;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-size: 1.2rem;
    padding: 5px 15px;
    text-align: center
}

.company_nav li .inner .company_nav_more:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    margin-left: 5px
}

.company_nav li .inner:hover::after {
    height: 100%;
    left: 0;
    right: 0
}

.company_nav li .inner:hover .company_nav_more {
    opacity: 1
}

.history_list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.history_list li .history_list_year {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40vw;
    min-width: 193px;
    max-width: 193px
}

.history_list li .history_list_year .year_list .christian {
    margin-left: 10px;
    font-size: 1.5em;
    font-weight: bold
}

.history_list li .history_list_txt {
    padding: 0 0 30px;
    border-left: 1px dashed #333
}

.history_list li .history_list_txt .txt_list {
    position: relative;
    padding: 6px 0 0 45px
}

.history_list li .history_list_txt .txt_list:before {
    position: absolute;
    top: 16px;
    left: -7px;
    width: 12px;
    height: 12px;
    margin: auto;
    content: '';
    border-radius: 50%;
    background: #00a138
}

.faq dt:before,
.faq dd:before {
    margin-right: 10px;
    font-size: 2rem;
    color: #FFFFFF;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center
}

.faq dt {
    font-weight: 500;
    margin-bottom: 10px
}

.faq dt:before {
    content: "Q";
    background: #f60523
}

.faq dd {
    margin-bottom: 20px;
    background: #FFFFFF;
    padding: 0 1em 1em 40px;
    text-indent: -40px
}

.faq dd:before {
    content: "A";
    background: #00a138;
    text-indent: 0
}

.blockquote {
    position: relative;
    padding: 10px 15px 10px 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-style: italic;
    background: #fff30a
}

.blockquote:before {
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 15px;
    font-family: "Font Awesome 5 Free";
    content: "\f10d";
    font-weight: 900;
    color: #cfcfcf;
    font-size: 3rem;
    line-height: 1
}

.blockquote p {
    margin: 10px 0
}

.office_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.office_list li {
    width: 31.3%;
    margin: 0 2% 2% 0
}

.office_list li:nth-child(3n) {
    margin: 0 0 2% 0
}

.thumb_list {
    display: block;
    color: #333;
    font-size: 1.4rem
}

.thumb_list .thumb_image {
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    background: #eef6f3
}

.thumb_list .thumb_image img {
    -o-object-fit: contain;
    object-fit: contain;
    font-family: 'object-fit: contain;';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.thumb_list .thumb_image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: opacity .3s;
    transition: opacity .3s
}

.thumb_list .thumb_image:after {
    display: block;
    content: '';
    padding-top: 67%
}

.thumb_list .thumb_title {
    margin-bottom: 5px;
    font-size: 1.6rem;
    font-weight: bold
}

.thumb_list:hover {
    color: #333
}

.thumb_list:hover .thumb_image img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.detail_btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    text-align: center;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    background: #FFFFFF;
    padding: 3px 10px;
    font-size: 1.2rem
}

.detail_btn:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    color: #00a138;
    margin-right: 5px
}

.gallery_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.gallery_ul li {
    width: 31.3%;
    margin: 0 3% 3% 0;
    text-align: center
}

.gallery_ul li:nth-child(3n) {
    margin: 0 0 3% 0
}

.gallery_ul li a {
    display: none;
    position: relative;
    overflow: hidden;
    background: #FFFFFF
}

.gallery_ul li a img {
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.gallery_ul li a:before {
    display: block;
    content: '';
    padding-top: 75%
}

.gallery_ul li a:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.gallery_ul li a:first-child {
    display: block
}

.gallery_ul li span {
    display: block;
    margin-top: 5px
}

.download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #fff30a;
    color: #333
}

.download:hover {
    color: #333
}

.download .download_image {
    width: 80px
}

.download .download_detail {
    position: relative;
    width: calc(100% - 120px)
}

.download .download_detail .detail_title {
    margin-top: 20px
}

.flow_contents {
    position: relative
}

.flow_contents:after {
    position: absolute;
    top: 0;
    left: 33px;
    z-index: 0;
    width: 6px;
    height: 100%;
    background-image: url(../img/bg_flow.gif);
    background-repeat: repeat-y;
    background-position: 0 9px;
    content: ""
}

.flow_contents:last-child:after {
    display: none
}

.flow_contents .flow_list {
    margin-left: 120px;
    padding-bottom: 40px
}

.top_main {
    overflow: hidden;
    margin-bottom: 100px
}

.top_main .inner {
    position: relative;
    margin: 40px 0 60px
}

.top_main .inner:before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    z-index: -2;
    width: 1227px;
    height: 350px;
    max-width: 100%;
    background: #00a138
}

.top_main .inner .top_main_contents {
    position: relative;
    width: 1024px;
    max-width: 100%;
    margin: 0 auto
}

.top_main .inner .top_main_contents .top_main_txt {
    position: relative;
    width: 475px;
    max-width: 100%;
    background: #F5F5F5;
    padding: 35px 50px 60px 50px
}

.top_main .inner .top_main_contents .top_main_img {
    overflow: hidden;
    position: absolute;
    left: 500px;
    top: 0;
    width: 770px;
    max-width: 100%
}

.mbox {
    padding: 20px;
    border: 1px solid #CCCCCC;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.macker {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #fbff00));
    background-image: linear-gradient(left, transparent 50%, #fbff00 50%);
    background-repeat: repeat-x;
    background-size: 200% .3em;
    background-position: 0 1em;
    -webkit-transition: all 3.5s ease;
    transition: all 3.5s ease;
    font-style: normal;
    font-weight: bold;
    padding: 0 5px
}

.macker.active {
    background-position: -100% .8em
}

.policy {
    padding: 30px;
    border: 1px solid #EEEEEE;
    border-radius: 5px
}

.post {
    display: inline-block;
    width: 13em;
    margin-right: 1em
}

.post_name {
    display: inline-block;
    width: 7em
}

.camera {
    margin-left: 1em
}

.camera:before {
    font-family: "Font Awesome 5 Free";
    content: "\f083";
    font-weight: 900
}

.cut {
    overflow: hidden;
    zoom: 1
}

@-webkit-keyframes loadingAnim {
    0% {
        width: 0
    }
    100% {
        width: 100%;
        -webkit-transform: translate(100%);
        transform: translate(100%)
    }
}

@keyframes loadingAnim {
    0% {
        width: 0
    }
    100% {
        width: 100%;
        -webkit-transform: translate(100%);
        transform: translate(100%)
    }
}

@-webkit-keyframes loadingAnim_text {
    0% {
        opacity: 1;
        color: #00a138
    }
    50% {
        color: #333
    }
    100% {
        opacity: .5;
        color: #eee
    }
}

@keyframes loadingAnim_text {
    0% {
        opacity: 1;
        color: #00a138
    }
    50% {
        color: #333
    }
    100% {
        opacity: .5;
        color: #eee
    }
}

@-webkit-keyframes flash {
    0% {
        opacity: .4
    }
    100% {
        opacity: 1
    }
}

@keyframes flash {
    0% {
        opacity: .4
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes animation-bar {
    0% {
        left: 0;
        right: auto;
        width: 0
    }
    50% {
        left: 0;
        right: auto;
        width: 100%
    }
    51% {
        left: auto;
        right: 0;
        width: 100%
    }
    100% {
        left: auto;
        right: 0;
        width: 101%
    }
}

@keyframes animation-bar {
    0% {
        left: 0;
        width: 0
    }
    50% {
        left: 0;
        width: 100%
    }
    51% {
        left: 0;
        width: 100%
    }
    100% {
        left: 101%;
        width: 0
    }
}

@-webkit-keyframes animation-txt {
    0% {
        opacity: 0
    }
    50% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes animation-txt {
    0% {
        opacity: 0
    }
    50% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.animation.move .animation-bar:before {
    -webkit-animation: animation-bar 1s ease 0s 1 normal forwards;
    animation: animation-bar 1s ease 0s 1 normal forwards
}

.animation.move .animation-txt {
    -webkit-animation: animation-txt 0s ease .5s 1 normal forwards;
    animation: animation-txt 0s ease .5s 1 normal forwards
}

.animation .animation-box {
    display: block;
    text-align: center
}

.animation .animation-bar {
    position: relative;
    display: inline-block;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.animation .animation-bar:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: #84c134
}

.animation .animation-txt {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.effect_fade {
    opacity: 0;
    -webkit-transform: translate(0, 45px);
    transform: translate(0, 45px);
    -webkit-transition: all 2s;
    transition: all 2s
}

.effect_fade.effect_scroll {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.page_title_box {
    background-image: url(../img/bg_page_title_box.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 5rem 0 3rem
}

.page_title_box .inner {
    margin: 0 auto;
    width: 1024px
}

.page_title_box .inner .page_title {
    margin-bottom: 20px;
    letter-spacing: .2em;
    font-size: 4.5rem;
    font-weight: 500;
    text-shadow: 2px 2px 3px #FFFFFF
}

.page_title_box .inner .page_title span {
    display: block;
    color: #00a138;
    font-family: "YakuHanJP", "Roboto", "sans-serif";
    font-size: 1.5rem
}

.breadcrumb {
    position: relative;
    font-size: 1.3rem
}

.breadcrumb li {
    display: inline
}

.breadcrumb li+li:before {
    margin: 0 10px;
    content: ">"
}

.breadcrumb li .home:before {
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    font-weight: 900
}

.form .required {
    background: #FF4F4F;
    color: #FFFFFF;
    padding: 0 5px 0;
    margin-right: 5px;
    font-size: 1.1rem;
    border-radius: 2px;
    position: relative;
    top: -2px
}

.form .textarea,
.form textarea {
    border: 1px solid #ddd;
    padding: 5px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.form .textarea {
    height: 30px
}

.form .textarea02 {
    width: 48.5%;
    margin-right: 3%
}

.form .textarea02:last-child {
    margin-right: 0
}

.form .textarea03 {
    width: 20%;
    margin-right: 1%
}

.form button {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    border: none;
    font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.6rem
}

.form label.radio_text {
    cursor: pointer;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    padding-left: 20px;
    display: inline-block
}

.form label.radio_text:before {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    border-radius: 50%;
    left: 0px;
    top: 2px;
    content: '';
    z-index: 3
}

.form label.radio_text:after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    left: 3px;
    top: 5px;
    background-color: #00a138;
    z-index: 1
}

.form label.radio_text input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    left: -23px;
    top: 0px;
    margin: 0px;
    -webkit-box-shadow: 20px -1px #FFFFFF;
    box-shadow: 20px -1px #FFFFFF
}

.form label.radio_text input[type="radio"]:checked {
    -webkit-box-shadow: none;
    box-shadow: none
}

.form label.radio_text input[type="radio"]:focus {
    opacity: 0.2;
    -webkit-box-shadow: 20px -1px #eeebda;
    box-shadow: 20px -1px #eeebda
}

.form label.checkbox_text {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-right: 20px;
    overflow: hidden;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.form label.checkbox_text:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 0px;
    top: 0;
    border: 1px solid #ccc;
    z-index: 3
}

.form label.checkbox_text:after {
    content: '';
    position: absolute;
    top: 40%;
    left: 5px;
    display: block;
    margin-top: -9px;
    width: 8px;
    height: 12px;
    border-right: 3px solid #00a138;
    border-bottom: 3px solid #00a138;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1
}

.form label.checkbox_text input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    left: -40px;
    width: 20px;
    height: 20px;
    display: block;
    -webkit-box-shadow: 41px 0px #FFF;
    box-shadow: 41px 0px #FFF;
    z-index: 2;
    margin: 0px;
    padding: 0px
}

.form label.checkbox_text input[type="checkbox"]:checked {
    -webkit-box-shadow: none;
    box-shadow: none
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
    -webkit-box-shadow: 40px 0px #666;
    box-shadow: 40px 0px #666;
    opacity: 0.1
}

.form label.checkbox_text input[type="checkbox"]:focus {
    -webkit-box-shadow: 41px 0px #EEE;
    box-shadow: 41px 0px #EEE
}

/* フォームCMS */
.form-pattern-1 dd:not(.pattern-exclusion) .textarea {
    border-radius: 0px !important;
}

.form-contents dl dd label {	
	display:block ;
}	

.address-cms {
    border: 1px solid #ddd !important;
    border-radius: 0px !important;
    height: 30px !important;
    margin-bottom: 5px !important;
    padding: 5px !important;
    }
    
    .address-cms2 {
    width: 100% !important;
    }

.submit-btn::after {
    position: absolute;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    -webkit-transition: .2s;
    transition: .2s;
}

.submit-btn {
	background: #00A138 !important;
	border: 1px solid #00A138 !important;
  	font-size: 14px !important;
    border-radius: 0px !important;
}

.submit-btn:hover {
	background: #ffffff !important;
	color: #00A138 !important;
}

.submit-btn::before {
	display: none !important;
}

/* ------------------------ */