﻿body {
    color: #111;
    font-family: "YakuHanJP", Lato, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: .1em
  }
  
  a {
    color: #1a6db7;
    text-decoration: none;
    transition: all 0.3s ease
  }
  
  a:hover {
    color: #2487e0
  }
  
  img {
    max-width: 100%;
    height: auto
  }
  
  .ja {
    font-family: "YakuHanJP", Lato, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"
  }
  
  .en {
    font-family: "YakuHanJP", "Oswald", "sans-serif";
    text-transform: uppercase
  }
  
  .loader {
    align-items: center;
    background: #fff;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 6;
    perspective: 100px
  }
  
  .loader::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -50px;
    margin-left: -39px;
    width: 101px;
    height: 78px;
    animation: rotate 2.5s linear infinite;
    background: url(../img/loader.png) no-repeat center/contain
  }
  
  .loader.off {
    display: none
  }
  
  @keyframes rotate {
    0% {
      transform: rotateY(0)
    }
  
    25% {
      opacity: 0
    }
  
    50% {
      opacity: 1
    }
  
    75% {
      opacity: 0
    }
  
    100% {
      transform: rotateY(360deg)
    }
  }
  
  .permit {
    background-color: #1a6db7;
    color: #fff;
    font-size: 1.1rem
  }
  
  .permit .permit_contents {
    max-width: 1160px;
    margin: 0 auto
  }
  
  #header {
    position: absolute;
    z-index: 5;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 3px rgba(1, 1, 1, 0.2)
  }
  
  #header.is-fixed .inner {
    display: none
  }
  
  #header.is-fixed #navi {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 3px rgba(1, 1, 1, 0.2)
  }
  
  #header .inner {
    margin: 0 auto;
    max-width: 1160px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
  }
  
  #header #logo {
    width: 340px
  }
  
  #header #head_right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
  }
  
  #header .phone {
    margin-right: 20px
  }
  
  #header .contact_btn {
    margin-right: 20px
  }
  
  #header .contact_btn:last-child {
    margin-right: 0
  }
  
  #navi {
    background-color: #fff;
    width: 100%;
    padding: 20px 0
  }
  
  #navi ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 1160px
  }
  
  #navi li {
    position: relative;
    flex: 1 0 auto
  }
  
  #navi li:after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(20deg);
    transform: translate(0, -50%) rotate(20deg);
    width: 1px;
    height: 20px;
    background: #bbb
  }
  
  #navi li:first-child:before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(20deg);
    transform: translate(0, -50%) rotate(20deg);
    width: 1px;
    height: 20px;
    background: #bbb
  }
  
  #navi li a {
    color: #111;
    font-weight: 600;
    line-height: 1.4
  }
  
  #navi li a:hover {
    color: #1a6db7
  }
  
  #navi li span {
    display: block;
    color: #1a6db7;
    font-size: 1.2rem
  }
  
  #page-top {
    position: fixed;
    bottom: 55px;
    right: 10px;
    z-index: 5
  }
  
  #page-top a {
    display: inline-block;
    -webkit-transition: 0.15s ease;
    transition: 0.15s ease;
    text-decoration: none;
    color: #111;
    font-size: 1.4rem;
    line-height: 80px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt"
  }
  
  #page-top a:before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    margin: auto;
    border-top: 1px solid #111;
    border-right: 1px solid #111;
    width: 15px;
    height: 15px;
    -webkit-transition: 0.15s ease;
    transition: 0.15s ease;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
  }
  
  #footer {
    background-color: #1a6db7;
    color: #fff;
    font-size: 1.4rem
  }
  
  #footer .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1160px;
    margin: 0 auto;
    padding: 60px 0;
    align-items: center
  }
  
  #footer .link_list {
    background-color: #fff;
    padding: 60px 0
  }
  
  #footer .link_list>ul {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
  }
  
  #footer .link_list>ul a {
    color: #111
  }
  
  #footer .link_list>ul a:hover {
    text-decoration: underline
  }
  
  #footer .link_list>ul>li>a {
    color: #1a6db7;
    font-weight: 600
  }
  
  #footer .sub_link_list {
    margin-top: 15px;
    font-size: 1.2rem
  }
  
  #footer .sub_link_list li {
    margin-top: 10px
  }
  
  #footer .sub_link_list li a {
    position: relative;
    padding-left: 15px
  }
  
  #footer .sub_link_list li a:before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    color: #63bb0e
  }
  
  #footer .copyright {
    font-size: 1rem;
    text-align: center
  }
  
  .flogo {
    margin: 0 auto 30px;
    width: 300px
  }
  
  .foot_contact {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding-right: 3%
  }
  
  .foot_contact .foot_image {
    width: 20%
  }
  
  .foot_contact .foot_detail {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 80%
  }
  
  .foot_contact .foot_logo {
    width: 11%
  }
  
  .foot_contact .foot_title {
    font-size: 2rem;
    font-weight: 600
  }
  
  .foot_contact .foot_txt {
    width: 24%
  }
  
  .foot_contact .area_title {
    font-size: 1.8rem;
    font-weight: 600
  }
  
  .hours {
    font-size: 1.4rem
  }
  
  .hours dt,
  .hours dd {
    margin-bottom: 5px
  }
  
  .hours dt {
    clear: both;
    float: left;
    width: 7em;
    background-color: #fff;
    border: 1px solid #1a6db7;
    color: #1a6db7;
    text-align: center
  }
  
  .hours dd {
    padding-left: 8em
  }
  
  #sp_navi,
  #drawernav,
  #humberger,
  #nav-toggle,
  #gloval-nav {
    display: none
  }
  
  #slideshow {
    position: relative;
    overflow: hidden
  }
  
  #catch {
    position: absolute;
    top: 55%;
    left: 50%;
    z-index: 2;
    width: 600px;
    -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 {
    overflow: hidden;
    position: relative
  }
  
  .slide-img {
    overflow: hidden;
    height: 100vh
  }
  
  .slide-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;"
  }
  
  .contact_btn li a,
  .contact_btn li button {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 1em 3em;
    border-radius: 100px;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center
  }
  
  .contact_btn li a span,
  .contact_btn li button span {
    position: relative
  }
  
  .contact_btn li a:before,
  .contact_btn li button:before {
    display: block;
    transition: all .3s ease;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%
  }
  
  .contact_btn li a:after,
  .contact_btn li button:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
  }
  
  .contact_btn li a:hover:before,
  .contact_btn li button:hover:before {
    width: 100%
  }
  
  .contact_btn li .contact_other {
    background-color: #1a6db7;
    color: #fff
  }
  
  .contact_btn li .contact_other:before {
    background-color: #1760a1
  }
  
  .contact_btn li .contact_mail {
    background-color: #63bb0e;
    color: #fff
  }
  
  .contact_btn li .contact_mail:before {
    background-color: #56a30c
  }
  
  .contact_btn li .contact_shop {
    background-color: #fff;
    color: #1a6db7;
    border: 1px solid #1a6db7
  }
  
  .contact_btn li .contact_shop:before {
    background-color: #1a6db7
  }
  
  .contact_btn li .contact_shop:hover {
    color: #fff
  }
  
  .contact_btn li .contact_w_01 {
    width: 340px;
    padding: 1.5em 3em
  }
  
  .contact_btn li .contact_w_02 {
    margin: 30px auto 0
  }
  
  .contact_list {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    text-align: center
  }
  
  .contact_list li {
    width: 40%;
    margin: 0 2%
  }
  
  .contact_list li a {
    display: block;
    padding: 1em 0;
    border-radius: 100px;
    text-align: center;
    font-size: 2rem;
    font-weight: 600
  }
  
  .contact_list li a:before {
    margin-right: 10px
  }
  
  .contact_list li a.tel_btn {
    background: #fff;
    color: #1a6db7;
    font-weight: 600
  }
  
  .contact_list li a.tel_btn:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: 900
  }
  
  .contact_list li a.mail_btn {
    background: #1a6db7;
    color: #fff
  }
  
  .contact_list li a.mail_btn:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: 900
  }
  
  .phone {
    line-height: 1.4;
    text-align: center
  }
  
  .phone span {
    font-size: 1rem
  }
  
  .phone a {
    display: block;
    color: #1a6db7;
    font-size: 2.8rem;
    font-weight: 600
  }
  
  .phone a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: 900;
    margin-right: 10px
  }
  
  .single_01 {
    position: relative;
    margin: 0 auto;
    max-width: 1160px;
    padding-bottom: 80px
  }
  
  .single_02 {
    margin: 0 auto;
    max-width: 1024px;
    padding-bottom: 80px
  }
  
  .single_03 {
    margin: 0 auto;
    max-width: 80%;
    padding-bottom: 80px
  }
  
  .single_04 {
    margin: 0 auto;
    max-width: 768px;
    padding-bottom: 80px
  }
  
  .single_05 {
    margin: 0 auto;
    max-width: 1160px
  }
  
  .single_06 {
    margin: 0 auto;
    max-width: 1024px
  }
  
  .single_07 {
    margin: 0 auto;
    max-width: calc(100% - 100px)
  }
  
  .single_08 {
    margin: 0 auto;
    max-width: 768px
  }
  
  .single_09 {
    margin: 0 auto;
    padding-bottom: 80px
  }
  
  .bg_common {
    padding-top: 80px
  }
  
  .bg_b {
    margin-bottom: 80px
  }
  
  .bg_01 {
    background-color: #ebeff5
  }
  
  .bg_02 {
    background-color: #f5f5f5
  }
  
  .bg_03 {
    position: relative;
    background-image: url(../img/bg_03.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
  }
  
  .bg_04 {
    background: #f7f7f7
  }
  
  .bg_skew {
    position: relative;
    padding: 60px 0
  }
  
  .bg_skew:before {
    content: "";
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 90%;
    transform: skewY(4deg);
    background-image: linear-gradient(to right, #1a6db7 0%, #1a6db7 100%);
    z-index: -2
  }
  
  .bg_skew:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 90%;
    transform: skewY(-4deg);
    background-image: linear-gradient(to right, #63bb0e 0%, #63bb0e 100%);
    z-index: -3
  }
  
  .bg_recruit {
    background-image: url(../img/bg_recruit.png);
    background-repeat: no-repeat;
    background-position: center top
  }
  
  .half {
    display: flex;
    justify-content: space-between
  }
  
  .half .child {
    width: 50%
  }
  
  .triple {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
  }
  
  .triple .child {
    width: 33.3%
  }
  
  .four {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
  }
  
  .four .child {
    width: 25%
  }
  
  .column2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: -3%
  }
  
  .column2>.child {
    width: 48.44%;
    margin: 0 3% 3% 0
  }
  
  .column2>.child:nth-child(2n) {
    margin: 0 0 3% 0
  }
  
  .column3 {
    display: flex;
    justify-content: start;
    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: flex;
    justify-content: start;
    flex-wrap: wrap;
    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: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: -2%
  }
  
  .column5>.child {
    width: 18.4%;
    margin: 0 2% 2% 0
  }
  
  .column5>.child:nth-child(5n) {
    margin: 0 0 2% 0
  }
  
  .mtitle_page {
    position: relative;
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    line-height: 1.4;
    letter-spacing: .2em
  }
  
  .mtitle_page span {
    display: block;
    font-size: 1.5rem;
    letter-spacing: .1em
  }
  
  .mtitle_big {
    position: relative;
    margin-bottom: 40px;
    padding-top: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center
  }
  
  .mtitle_big:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 64px;
    height: 6px;
    border-radius: 3px;
    background: #1a6db7;
    transform: translateX(-50%)
  }
  
  .mtitle_big span {
    display: block;
    color: #1a6db7;
    font-size: 1.2rem;
    letter-spacing: .1em
  }
  
  .mtitle_big.white:before {
    background: #fff
  }
  
  .mtitle_middle {
    position: relative;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-size: 2rem;
    font-weight: 600
  }
  
  .mtitle_middle:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 2px;
    background-color: #1a6db7
  }
  
  .mtitle_small {
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 2rem;
    padding: 15px 30px;
    margin-bottom: 20px
  }
  
  .mtitle_small:before {
    position: absolute;
    top: 15%;
    left: 8px;
    width: 6px;
    height: 70%;
    content: '';
    background: #1a6db7
  }
  
  .mtitle_small span {
    font-size: .8em
  }
  
  .mtitle {
    margin-bottom: 15px;
    color: #1a6db7;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-align: center
  }
  
  .mtitle_sub {
    position: relative;
    padding-left: 20px;
    font-size: 1.6rem;
    font-weight: 600
  }
  
  .mtitle_sub:before {
    content: "";
    background-color: #1a6db7;
    width: 10px;
    height: 4px;
    position: absolute;
    top: .6em;
    left: 0
  }
  
  .mtitle_border {
    position: relative;
    margin-bottom: 20px;
    padding: .5em 1em;
    border: 1px solid #1a6db7;
    border-left: 10px solid #1a6db7;
    font-size: 1.8rem
  }
  
  .mtitle_point {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    text-align: center
  }
  
  .mtitle_point:after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #1a6db7;
    display: block;
    margin: 10px auto 0
  }
  
  .mtitle_top {
    margin-bottom: 20px;
    color: #1a6db7;
    font-size: 2.4rem;
    font-weight: 600
  }
  
  .mtitle_balloon {
    font-size: 3.5rem;
    margin-bottom: 30px
  }
  
  .mtitle_balloon span {
    position: relative;
    display: inline-block;
    padding-bottom: 24px;
    line-height: 1em;
    overflow: hidden
  }
  
  .mtitle_balloon span:before,
  .mtitle_balloon span:after {
    content: "";
    display: block;
    border-bottom: 3px solid #111;
    position: absolute;
    width: 50%;
    bottom: 6px
  }
  
  .mtitle_balloon span:before {
    left: -5px
  }
  
  .mtitle_balloon span:after {
    right: -5px
  }
  
  .mtitle_balloon span i {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #111;
    border-right: 3px solid #111;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    left: 50%;
    margin-left: -5px;
    bottom: 2px
  }
  
  .mtitle_balloon.mtitle_balloon_01 {
    text-align: center
  }
  
  .mtitle_ribon {
    position: absolute;
    top: -25px;
    left: -10px;
    width: 100%
  }
  
  .mtitle_ribon span {
    display: inline-block;
    background: #1a6db7;
    color: #fff;
    font-size: 2rem;
    padding: 10px 30px
  }
  
  .mtitle_ribon:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent #0d385e transparent transparent;
    position: absolute;
    left: 0;
    bottom: -10px
  }
  
  .mtitle_news {
    padding-top: .5em;
    display: inline-block;
    line-height: 1.4
  }
  
  .mtitle_news span {
    display: block;
    color: #1a6db7;
    font-size: 3.5rem
  }
  
  .mtitle_greeting {
    margin-bottom: 20px;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4
  }
  
  .mtitle_greeting span {
    display: block;
    color: #1a6db7;
    font-size: 1.2rem
  }
  
  .mtitle_greeting.white span {
    color: #fff
  }
  
  .mtitle_logo {
    margin-bottom: 30px;
    width: 300px
  }
  
  .a_btn {
    margin-top: 30px
  }
  
  .a_btn a,
  .a_btn span {
    display: table;
    position: relative;
    background: #fff;
    color: #1a6db7;
    padding: .5em 3em;
    border-radius: 100px;
    margin: 0 auto
  }
  
  .a_btn a:after,
  .a_btn span:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
  }
  
  .b_btn {
    display: block;
    margin-top: 30px;
    width: 300px;
    padding: 1em;
    text-align: center;
    color: #1a6db7;
    border: 1px solid #1a6db7;
    background-color: transparent;
    position: relative;
    -webkit-transition: .46s;
    transition: .46s
  }
  
  .b_btn:hover {
    background-color: #1a6db7;
    color: #fff
  }
  
  .b_btn:hover .b_btn_icon {
    background-color: #fff;
    right: 26px;
    width: 30px
  }
  
  .b_btn:hover .b_btn_icon:before {
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff
  }
  
  .b_btn .b_btn_icon {
    position: absolute;
    top: calc(50% - 1px);
    right: -30px;
    width: 60px;
    height: 1px;
    -webkit-transition: inherit;
    transition: inherit;
    background-color: #1a6db7
  }
  
  .b_btn .b_btn_icon:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    border-top: 4px solid transparent;
    border-left: 4px solid #1a6db7;
    border-right: 4px solid transparent;
    border-bottom: 4px solid #1a6db7;
    -webkit-transition: inherit;
    transition: inherit
  }
  
  .b_btn.b_btn_01 {
    margin: 30px auto 0
  }
  
  .b_btn.b_btn_white {
    color: #fff;
    border: 1px solid #fff
  }
  
  .b_btn.b_btn_white:hover {
    background-color: #fff;
    color: #1a6db7
  }
  
  .b_btn.b_btn_white:hover .b_btn_icon {
    background-color: #1a6db7
  }
  
  .b_btn.b_btn_white:hover .b_btn_icon:before {
    border-left: 4px solid #1a6db7;
    border-bottom: 4px solid #1a6db7
  }
  
  .b_btn.b_btn_white .b_btn_icon {
    background-color: #fff
  }
  
  .b_btn.b_btn_white .b_btn_icon:before {
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff
  }
  
  .c_btn {
    margin-top: 30px
  }
  
  .c_btn a,
  .c_btn button {
    display: block;
    position: relative;
    width: 320px;
    max-width: 100%;
    background: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: .3em
  }
  
  .c_btn a:after,
  .c_btn button:after {
    position: absolute;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    transition: .2s
  }
  
  .c_btn a:hover:after,
  .c_btn button:hover:after {
    right: 10px
  }
  
  .c_btn.c_btn_01 {
    position: absolute;
    bottom: -8%
  }
  
  .c_btn.c_btn_02 a,
  .c_btn.c_btn_02 button {
    margin: 0 auto
  }
  
  .d_btn {
    height: 3.125em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    transition: 0.9s all cubic-bezier(0.19, 1, 0.22, 1);
    margin-top: 30px;
    padding: 0 1em;
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: none;
    max-width: 300px;
    min-width: 280px;
    will-change: transform;
    color: #fff
  }
  
  .d_btn:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.6s all cubic-bezier(0.19, 1, 0.22, 1);
    top: 0;
    left: 0;
    transform: rotate(45deg)
  }
  
  .d_btn:hover {
    transform: scale(1.1);
    color: #fff
  }
  
  .d_btn:hover:before {
    opacity: 1;
    transform: scale(2) rotate(0deg)
  }
  
  .d_btn span {
    margin: 0 .3125em;
    position: relative;
    z-index: 1
  }
  
  .d_btn i {
    line-height: 1em;
    margin-left: .8em;
    position: relative;
    z-index: 1
  }
  
  .d_btn i:before {
    font-family: "Font Awesome 5 Free";
    content: "\2192";
    font-weight: 900
  }
  
  .d_btn.d_btn_01 {
    background: #1a6db7
  }
  
  .d_btn.d_btn_01 span,
  .d_btn.d_btn_01 i {
    color: #fff
  }
  
  .d_btn.d_btn_01:before {
    background: #fff
  }
  
  .d_btn.d_btn_01:hover span,
  .d_btn.d_btn_01:hover i {
    color: #1a6db7
  }
  
  .d_btn.d_btn_02 {
    background: #63bb0e
  }
  
  .d_btn.d_btn_02 span,
  .d_btn.d_btn_02 i {
    color: #1a6db7
  }
  
  .d_btn.d_btn_02:before {
    background: #1a6db7
  }
  
  .d_btn.d_btn_02:hover span,
  .d_btn.d_btn_02:hover i {
    color: #fff
  }
  
  .d_btn.d_btn_03 {
    margin: 30px auto 0
  }
  
  .e_btn {
    margin-top: 30px
  }
  
  .e_btn a,
  .e_btn span {
    display: table;
    position: relative;
    background: #fff;
    border: 1px solid #1a6db7;
    color: #1a6db7;
    padding: .5em 3em;
    border-radius: 100px;
    margin: 0 auto
  }
  
  .e_btn a:after,
  .e_btn span:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
  }
  
  .e_btn a:hover,
  .e_btn span:hover {
    background: #1a6db7;
    color: #fff
  }
  
  .f_btn {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    text-align: center
  }
  
  .f_btn a,
  .f_btn button {
    display: inline-block;
    padding: 26px 80px;
    background-color: #1a6db7;
    box-shadow: 6px 6px #14528a;
    color: #fff;
    font-weight: 600
  }
  
  .f_btn a:after,
  .f_btn button:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    padding-left: 20px
  }
  
  .f_btn a:hover,
  .f_btn button:hover {
    background-color: #14528a;
    box-shadow: 6px 6px #1a6db7
  }
  
  .news-bl dt {
    float: left;
    width: 7em;
    margin-bottom: 10px;
    padding: 3px 5px;
    background: #1a6db7;
    color: #fff;
    text-align: center
  }
  
  .news-bl dd {
    padding: 0 0 10px 9em;
    line-height: 1.6;
    border-bottom: 1px dotted #ddd;
    margin: 0 0 10px
  }
  
  .news-bl dd:last-child {
    margin: 0;
    border-bottom: none
  }
  
  .news_box {
    display: flex;
    justify-content: start;
    flex-wrap: wrap
  }
  
  .news_box .news_title {
    width: 20%
  }
  
  .news_box .news_list {
    width: 80%
  }
  
  .news_list li {
    border-bottom: 1px solid #ccc
  }
  
  .news_list li:first-child {
    border-top: 1px solid #ccc
  }
  
  .news_list li a,
  .news_list li .news_link {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 20px;
    color: #111
  }
  
  .news_list li a:hover,
  .news_list li .news_link:hover {
    background-color: #fbfcfd
  }
  
  .news_list li .news_date {
    margin-right: 20px;
    font-size: 1.2rem
  }
  
  .news_list li .news_category {
    background: #fff;
    border: 1px solid #1a6db7;
    color: #1a6db7;
    padding: 5px;
    margin-right: 30px;
    min-width: 140px;
    text-align: center
  }
  
  .tbl {
    width: 100%;
    background-color: #fff;
    font-size: 1.4rem
  }
  
  .tbl th,
  .tbl td {
    vertical-align: middle;
    border: 1px solid #ddd;
    padding: 10px
  }
  
  .tbl th {
    background: #1a6db7;
    color: #fff;
    font-weight: 500
  }
  
  .tbl_new {
    width: 100%
  }
  
  .tbl_new tr:nth-child(odd) th,
  .tbl_new tr:nth-child(odd) td {
    background: #f5f5f5
  }
  
  .tbl_new th,
  .tbl_new td {
    vertical-align: top;
    padding: 15px
  }
  
  .tbl_new th {
    text-align: left;
    font-weight: 500
  }
  
  .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: #1a6db7;
    color: #fff;
    font-weight: 600
  }
  
  .company th::after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: #fafafa;
    border-width: 10px;
    border-left-color: #1a6db7;
    margin-top: -10px
  }
  
  .company td {
    background: #fafafa;
    padding-left: 20px
  }
  
  .tbl_simple {
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 1.3rem
  }
  
  .tbl_simple th,
  .tbl_simple td {
    vertical-align: top;
    padding: 12px 10px;
    border-bottom: 1px solid #ddd
  }
  
  .tbl_simple th {
    background-color: #1a6db7;
    color: #fff;
    font-weight: 600
  }
  
  .tbl_simple span {
    color: #1a6db7
  }
  
  .tbl_company {
    width: 100%;
    font-size: 1.4rem
  }
  
  .tbl_company th,
  .tbl_company td {
    padding: 15px;
    vertical-align: middle
  }
  
  .tbl_company th {
    border-bottom: 1px solid #1a6db7;
    font-weight: 500;
    text-align: left
  }
  
  .tbl_company td {
    border-bottom: 1px solid #dcdcdc;
    line-height: 1.8em
  }
  
  .tbl_form {
    margin-bottom: 50px
  }
  
  .tbl_form th {
    text-align: left
  }
  
  .cell_01 {
    width: 25%
  }
  
  .cell_02 {
    width: 35%
  }
  
  .cell_type_01 {
    background-color: #edf4ff
  }
  
  .cell_type_02 {
    background-color: #ddecff
  }
  
  .cell_type_03 {
    background-color: #cde2ff
  }
  
  .list_common {
    font-size: 1.4rem
  }
  
  .list_common li {
    padding-bottom: 10px;
    padding-left: 1rem;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ddd
  }
  
  .list_check li {
    position: relative;
    padding-left: 1.5em
  }
  
  .list_check li:before {
    position: absolute;
    top: 0;
    left: 1.5em;
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    font-weight: 900;
    content: "\f14a";
    color: #1a6db7;
    margin: 0 5px 0 -1.5em;
    padding: 1px
  }
  
  .list_half {
    display: flex;
    justify-content: start;
    flex-wrap: wrap
  }
  
  .list_half li {
    width: 50%
  }
  
  .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
  }
  
  .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 -1em;
    color: #1a6db7
  }
  
  .list_link li a {
    color: #111
  }
  
  .list_link li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f0c1";
    font-weight: 900;
    margin-left: 1em;
    color: #666
  }
  
  .list_line li {
    position: relative;
    display: inline-block;
    padding-right: 10px
  }
  
  .list_line li:after {
    position: absolute;
    right: 0;
    content: "/"
  }
  
  .list_line li:last-child:after {
    display: none
  }
  
  .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;
    transition: all .3s ease-out;
    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: #1a6db7;
    color: #fff;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out
  }
  
  .ggmap {
    position: relative;
    padding-bottom: 40.25%;
    height: 0;
    overflow: hidden
  }
  
  .ggmap iframe,
  .ggmap object,
  .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
  }
  
  .fb_iframe_widget,
  .fb_iframe_widget span,
  .fb_iframe_widget iframe[style] {
    width: 100% !important
  }
  
  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%
  }
  
  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%
  }
  
  .article {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #1a6db7;
    color: #fff
  }
  
  .article .article_image {
    width: 55%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
  }
  
  .article .article_detail {
    width: 45%;
    box-sizing: border-box;
    padding: 80px 0
  }
  
  .article .article_detail .inner {
    margin: 0 auto;
    width: 80%
  }
  
  .article.article_b {
    margin-bottom: 50px
  }
  
  .article.article_white {
    background-color: #fff
  }
  
  .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/recruit_01.jpg)
  }
  
  .article.article_05 .article_image {
    background-image: url(../img/top_contents_01.jpg)
  }
  
  .article.article_06 .article_image {
    background-image: url(../img/article_06.jpg)
  }
  
  .top_blog {
    display: inline-block;
    position: relative;
    background-color: #fff;
    color: #111;
    padding-bottom: 3%;
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04)
  }
  
  .bg_01 .top_blog {
    background-color: #1c75c4;
    color: #fff
  }
  
  .top_blog:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #1a6db7;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
  }
  
  .bg_01 .top_blog:after {
    background-color: #fff
  }
  
  .top_blog:hover {
    color: #111
  }
  
  .bg_01 .top_blog:hover {
    color: #fff
  }
  
  .top_blog:hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
  }
  
  .top_blog .inner {
    padding: 20px 30px 40px
  }
  
  .date {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 500
  }
  
  .top_blog_title {
    margin-bottom: 10px
  }
  
  .top_blog_txt {
    font-size: 1.3rem
  }
  
  .blog_contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
  }
  
  .blog_contents .blog_main {
    width: 65%
  }
  
  .blog_contents .blog_side {
    width: 30%;
    background-color: #ebeff5;
    padding: 30px
  }
  
  .category_nav li {
    border-bottom: 1px dotted #ccc
  }
  
  .category_nav li a {
    display: block;
    padding: 10px 15px
  }
  
  .category_nav li a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    margin-right: 5px;
    color: #1a6db7;
    margin-right: 5px
  }
  
  .category_nav li a:hover {
    background-color: #fff
  }
  
  .category_nav li:last-child a {
    border-bottom: none
  }
  
  .blog_title {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 600
  }
  
  .blog_title:before {
    margin-right: 5px;
    color: #1a6db7
  }
  
  .blog_title.archive:before {
    font-family: "Font Awesome 5 Free";
    content: "\f187";
    font-weight: 900
  }
  
  .blog_title.new:before {
    font-family: "Font Awesome 5 Free";
    content: "\f044";
    font-weight: 900
  }
  
  .blog_article {
    padding: 0 30px 50px;
    background-color: #fff;
    margin-bottom: 50px
  }
  
  .blog_article:last-child {
    margin-bottom: 0
  }
  
  .blog_new {
    border-bottom: 1px dotted #1a6db7
  }
  
  .blog_new:last-child {
    border-bottom: none
  }
  
  .blog_new a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px
  }
  
  .blog_new a .image {
    width: 40%
  }
  
  .blog_new a .detail {
    width: 50%
  }
  
  .blog_new a .detail .entry_title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
  }
  
  .pages {
    overflow: hidden;
    margin-top: 50px
  }
  
  .pages .page_next,
  .pages .page_prev {
    display: inline-block
  }
  
  .pages .page_next a,
  .pages .page_prev a {
    display: block;
    padding: 10px 20px;
    background-color: #fff
  }
  
  .pages .page_next {
    float: left
  }
  
  .pages .page_prev {
    float: right
  }
  
  .gallery_ul {
    display: flex;
    justify-content: start;
    flex-wrap: wrap
  }
  
  .gallery_ul a {
    display: none;
    position: relative;
    overflow: hidden
  }
  
  .gallery_ul a img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    vertical-align: middle
  }
  
  .ie .gallery_ul a img {
    position: absolute;
    width: auto;
    height: auto;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%)
  }
  
  .gallery_ul a:first-child {
    display: block
  }
  
  .gallery_ul span {
    display: block;
    margin-top: 5px;
    text-align: center;
    font-size: 1.4rem
  }
  
  .gallery_ul.gallery_ul_01 li {
    width: 48.5%;
    margin: 0 3% 3% 0
  }
  
  .gallery_ul.gallery_ul_01 li:nth-child(2n) {
    margin: 0 0 3% 0
  }
  
  .gallery_ul.gallery_ul_01 a {
    height: 200px
  }
  
  .gallery_ul.gallery_ul_02 li {
    width: 31.3%;
    margin: 0 3% 3% 0
  }
  
  .gallery_ul.gallery_ul_02 li:nth-child(3n) {
    margin: 0 0 3% 0
  }
  
  .gallery_ul.gallery_ul_02 a {
    height: 300px
  }
  
  .ba li {
    position: relative
  }
  
  .ba li:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    position: absolute;
    top: 40%;
    right: -7%;
    font-size: 3rem;
    color: #1a6db7
  }
  
  .ba li:last-child:after {
    display: none
  }
  
  .sns_list {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-top: 30px
  }
  
  .sns_list li {
    width: 24%;
    margin-right: 1.2%
  }
  
  .sns_list li:last-child {
    margin: 0
  }
  
  .sns_btn {
    overflow: hidden;
    color: #fff;
    position: relative;
    display: block;
    border-radius: 100px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    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;
    transition: .5s
  }
  
  .sns_btn:hover {
    color: #fff
  }
  
  .sns_btn:hover span {
    -webkit-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    transform: rotateX(360deg)
  }
  
  .facebook_btn {
    background: #4267b2
  }
  
  .insta_btn {
    background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat
  }
  
  .insta_btn:before {
    background: -webkit-linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
    background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat
  }
  
  .line_btn {
    background: #00b82b
  }
  
  .twitter_btn {
    background: #55acee
  }
  
  .feature {
    font-size: 1.4rem
  }
  
  .feature_txt {
    background-color: #f5f5f5;
    padding: 30px 10px;
    text-align: center
  }
  
  .point_num {
    display: block;
    position: relative;
    left: 50%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #1a6db7;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    font-weight: 600
  }
  
  .point_num.point_num_01 {
    bottom: -15%
  }
  
  .point_num.point_num_02 {
    top: -5%
  }
  
  .top_main {
    overflow: hidden
  }
  
  .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: #1a6db7
  }
  
  .top_main .inner .top_main_contents {
    position: relative;
    width: 1160px;
    max-width: 100%;
    margin: 0 auto
  }
  
  .top_main .inner .top_main_contents .top_main_txt {
    position: relative;
    width: 700px;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 50px 50px 60px 50px
  }
  
  .top_main .inner .top_main_contents .top_main_img {
    overflow: hidden;
    position: absolute;
    left: 600px;
    top: 40px;
    width: 900px;
    max-width: 100%
  }
  
  .top_main .inner .top_main_contents .top_main_img img {
    width: 100%
  }
  
  .top_main .inner .top_main_contents .top_main_p {
    margin-bottom: 40px;
    line-height: 2
  }
  
  .representative {
    margin-bottom: 40px;
    font-family: "YakuHanJP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-weight: 600
  }
  
  .top_sub {
    position: relative
  }
  
  .top_sub:before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 55%;
    height: 100%;
    overflow: hidden
  }
  
  .top_sub:after {
    content: "";
    position: absolute;
    bottom: -80px;
    z-index: -1;
    background: #f3f3f3;
    width: 66%;
    height: 90%
  }
  
  .top_sub .top_sub_inner {
    padding: 40px 0
  }
  
  .top_sub .sub_detail {
    position: relative;
    z-index: 2;
    background: #fff;
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
    width: 50%;
    padding: 80px
  }
  
  .top_sub.sub_right:before {
    left: 0
  }
  
  .top_sub.sub_right:after {
    right: -50px
  }
  
  .top_sub.sub_right .sub_detail {
    margin-left: auto
  }
  
  .top_sub.sub_left:before {
    right: 0
  }
  
  .top_sub.sub_left:after {
    left: -80px
  }
  
  .top_sub.sub_left .sub_detail {
    margin-right: auto
  }
  
  .top_sub.top_sub_01:before {
    background-image: url(../img/top_sub_01.jpg)
  }
  
  .top_sub.top_sub_02:before {
    background-image: url(../img/top_sub_02.jpg)
  }
  
  .top_sub.top_sub_03:before {
    background-image: url(../img/top_sub_03.jpg)
  }
  
  .flex_type {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px
  }
  
  .flex_type:last-child {
    margin-bottom: 0
  }
  
  .flex_type_01 .flex_image {
    width: 20%
  }
  
  .flex_type_01 .flex_detail {
    width: 78%
  }
  
  .flex_type_02 .flex_image {
    width: 40%
  }
  
  .flex_type_02 .flex_detail {
    width: 57%
  }
  
  .mbox {
    background-color: #fff;
    padding: 90px 70px;
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04)
  }
  
  .sbox {
    background-color: #fff;
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
    padding: 30px
  }
  
  #faq {
    position: relative;
    margin-top: -70px
  }
  
  .voice_faq {
    padding-top: 20px;
    font-size: 1.4rem
  }
  
  .voice_faq dt {
    position: relative;
    border-top: 1px solid #ccc;
    padding: 10px 0 25px 72px
  }
  
  .voice_faq dt span {
    display: block;
    position: absolute;
    left: 0;
    top: -20px;
    width: 56px;
    line-height: 56px;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    background-color: #1a6db7;
    font-family: "Crimson Text", serif;
    font-weight: 100;
    letter-spacing: .05rem
  }
  
  .voice_faq dd {
    position: relative;
    padding: 0 40px 45px 72px
  }
  
  .voice_faq dd:last-child {
    padding-bottom: 0
  }
  
  .voice_faq dd span {
    display: block;
    position: absolute;
    left: 20px;
    top: -4px;
    font-size: 2rem;
    font-family: "Crimson Text", serif;
    font-weight: 100;
    letter-spacing: .05rem
  }
  
  .flow_contents {
    position: relative;
    margin-top: 5% !important
  }
  
  .flow_num {
    font-size: 4rem;
    color: #1a6db7;
    font-weight: 500;
    line-height: 1.2;
    position: absolute;
    top: -32px;
    left: -30px;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    z-index: 1
  }
  
  .index_bnr {
    display: block;
    position: relative;
    color: #fff;
    padding-top: 85.75%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
  }
  
  .index_bnr:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all .3s ease
  }
  
  .index_bnr:hover {
    color: #fff
  }
  
  .index_bnr:hover:before {
    background-color: rgba(0, 0, 0, 0.8)
  }
  
  .index_bnr .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 490px;
    padding: 60px 30px;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 3px solid #fff
  }
  
  .index_bnr .title {
    position: relative;
    font-size: 2.4rem;
    line-height: 1.4;
    text-align: center
  }
  
  .index_bnr .title span {
    display: block;
    font-size: 1.8rem;
    font-weight: 500
  }
  
  .index_bnr .title:after {
    content: "";
    display: block;
    border-bottom: 3px solid #fff;
    width: 60px;
    margin: 25px auto 35px
  }
  
  .index_bnr .txt {
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center
  }
  
  .index_bnr_01 {
    background-image: url(../img/index_bnr_01.jpg)
  }
  
  .index_bnr_02 {
    background-image: url(../img/index_bnr_02.jpg)
  }
  
  .img_contents {
    overflow: hidden;
    position: relative;
    padding-top: 120px;
    margin-bottom: 80px
  }
  
  .img_contents .img_area {
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -200px;
    z-index: 1
  }
  
  .img_contents .img_container {
    position: relative;
    z-index: 2
  }
  
  .img_contents .img_container .txt {
    display: inline-block;
    width: 46%
  }
  
  .img_contents .img_container .txt_01 {
    margin-bottom: 50px
  }
  
  .about_box {
    align-items: stretch;
    background-color: #fff;
    box-shadow: 0 4px 3px 0 rgba(0, 0, 0, 0.1)
  }
  
  .about_box .inner {
    position: relative;
    padding: 50px 25px;
    font-size: 1.4rem;
    color: #111
  }
  
  .page_bnr {
    display: flex;
    justify-content: start;
    flex-wrap: wrap
  }
  
  .page_bnr li {
    width: 22.7%;
    margin: 0 3% 3% 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0
  }
  
  .page_bnr li:nth-child(4n) {
    margin: 0 0 3% 0
  }
  
  .page_bnr li a {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    color: #111;
    font-size: 1.2rem;
    line-height: 1.2
  }
  
  .page_bnr li a:before {
    position: absolute;
    z-index: 2;
    display: block;
    content: "";
    right: 18px;
    top: 14px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #111;
    border-right: 2px solid #111;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transition: all 0.12s ease-in 0s
  }
  
  .page_bnr li a:after {
    position: absolute;
    z-index: 1;
    display: block;
    content: "";
    top: -2px;
    right: 0;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17, 20, 25, 0.3);
    border-radius: 50%;
    transition: all 0.12s ease-in 0s
  }
  
  .page_bnr li a:hover:before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff
  }
  
  .page_bnr li a:hover:after {
    background-color: #1a6db7;
    border: 1px solid #1a6db7
  }
  
  .page_bnr li a span {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0;
    padding-bottom: 12px
  }
  
  .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 #111
  }
  
  .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: #1a6db7
  }
  
  .category_tab {
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px
  }
  
  .category_tab:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    background: #1a6db7
  }
  
  .category_tab li {
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    background: #1a6db7;
    border-top: 3px solid #1a6db7;
    border-right: 3px solid #1a6db7;
    border-left: 3px solid #1a6db7;
    color: #fff;
    padding: 20px 10px;
    width: 28%;
    margin-left: 20px;
    font-weight: 600
  }
  
  .category_tab li.active {
    background: #fff;
    color: #1a6db7
  }
  
  .category_tab li.active:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    background: #fff
  }
  
  .category_tab li:last-child {
    margin-right: 20px
  }
  
  .vertical_image {
    display: block;
    position: relative;
    overflow: hidden;
    height: 250px
  }
  
  .vertical_image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
    vertical-align: middle
  }
  
  .small_image {
    display: block;
    position: relative;
    overflow: hidden;
    height: 200px
  }
  
  .small_image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
    vertical-align: middle
  }
  
  .transparent_box {
    position: relative;
    z-index: 1;
    border: 3px solid #fff;
    padding: 60px 40px 40px 60px;
    color: #fff
  }
  
  .transparent_box .inner {
    width: 60%;
    margin-left: auto
  }
  
  .slide_list {
    position: relative;
    padding-bottom: 80px
  }
  
  .slide_list li {
    margin-right: 3%
  }
  
  .slide_list li img {
    width: auto;
    height: 200px
  }
  
  .partner {
    overflow: hidden;
    position: relative;
    height: 420px
  }
  
  .partner:before,
  .partner:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    z-index: -1;
    height: 100%
  }
  
  .partner:before {
    left: 0;
    width: 68.0327%;
    background-image: url(../img/bg_partner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
  }
  
  .partner:after {
    left: 50%;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    width: 50%;
    background: #fff
  }
  
  .partner .container {
    padding-left: 54.2475%;
    text-align: center
  }
  
  .parallax {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 90px 0
  }
  
  .parallax:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(26, 109, 183, 0.5);
    top: 0;
    left: 0
  }
  
  .parallax_01 {
    background-image: url(../img/bg_parallax.jpg)
  }
  
  .parallax_heading {
    background-image: url(../img/bg_parallax.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 60px 0 105px
  }
  
  .top_business {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
  }
  
  .top_business .explanation {
    width: 30%
  }
  
  .top_business .detail {
    width: 64%
  }
  
  .new_bnr {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap
  }
  
  .new_bnr li {
    position: relative;
    overflow: hidden;
    width: 49%;
    height: 320px;
    box-sizing: border-box
  }
  
  .new_bnr li .bg {
    position: absolute;
    z-index: 1;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 420px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 3.0s ease-out;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    will-change: transform
  }
  
  .new_bnr li .bg.bg_new_01 {
    background-image: url(../img/bg_new_01.jpg)
  }
  
  .new_bnr li .bg.bg_new_02 {
    background-image: url(../img/bg_new_02.jpg)
  }
  
  .new_bnr li a {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: block
  }
  
  .new_bnr li .text {
    position: absolute;
    z-index: 3;
    bottom: 50px;
    left: 50px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2
  }
  
  .new_bnr li .text span {
    display: block;
    font-size: 1.5rem;
    font-weight: 500
  }
  
  .new_bnr li .btn {
    position: absolute;
    bottom: 58px;
    right: 50px;
    z-index: 1;
    display: block;
    width: 58px;
    height: 58px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.12s ease-in 0s
  }
  
  .new_bnr li .btn:before {
    position: absolute;
    z-index: 2;
    display: block;
    content: "";
    top: 25px;
    left: 24px;
    width: 6.5px;
    height: 6.5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.12s ease-in 0s
  }
  
  .new_bnr li:hover .bg {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.95)
  }
  
  .new_bnr li:hover .btn {
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    background-color: #1a6db7;
    border: 1px solid #1a6db7
  }
  
  .new_bnr li:hover .btn:before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff
  }
  
  .img_shadow {
    position: relative;
    transition: all 0.5s ease-in 0s
  }
  
  .img_shadow:after {
    position: absolute;
    z-index: 2;
    content: "";
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 0%, transparent 40%, #000 100%);
    opacity: .45;
    transition: all 0.5s ease-in 0s
  }
  
  .img_shadow:hover :after {
    background: linear-gradient(transparent 0%, transparent 40%, #000 100%);
    opacity: .65
  }
  
  .p_idx_works_item {
    position: relative;
    display: block
  }
  
  .p_idx_works_item:last-child {
    margin-bottom: 0
  }
  
  .p_idx_works_item a {
    display: block;
    position: relative;
    height: 270px
  }
  
  .p_idx_works_item a>.hover::before {
    opacity: .4;
    transition: opacity .4s
  }
  
  .p_idx_works_item a:hover>.hover::before {
    opacity: .8;
    pointer-events: auto
  }
  
  .p_idx_works_item .hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.6em;
    color: #fff;
    letter-spacing: .1rem
  }
  
  .p_idx_works_item .hover:before {
    background-color: #000;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mix-blend-mode: multiply
  }
  
  .p_idx_works_item .hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -.8em;
    width: 4.6em;
    height: 1px;
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #000), to(#000));
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #000 50%, #000 100%);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
  }
  
  .p_idx_works_item .title {
    position: relative;
    font-size: 2.4rem
  }
  
  .p_idx_works_item .title span {
    display: block;
    font-size: 1.2rem
  }
  
  .c-img_full {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    vertical-align: middle
  }
  
  .flow {
    padding-left: 120px;
    position: relative
  }
  
  .flow::before {
    content: "";
    width: 15px;
    height: 100%;
    background: #f5f5f5;
    margin-left: -8px;
    display: block;
    position: absolute;
    top: 0;
    left: 150px
  }
  
  .flow>li {
    position: relative
  }
  
  .flow>li:not(:last-child) {
    margin-bottom: 5vh
  }
  
  .flow>li .icon {
    font-size: 1rem;
    color: #fff;
    background-color: #1a6db7;
    padding: 8px 15px;
    display: block;
    position: absolute;
    top: 0;
    left: -120px;
    z-index: 2
  }
  
  .flow>li .icon::after {
    content: "";
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #1a6db7;
    position: absolute;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
  }
  
  .flow>li dl {
    padding-left: 70px;
    position: relative
  }
  
  .flow>li dl::before,
  .flow>li dl::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px
  }
  
  .flow>li dl::before {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    background: #1a6db7;
    border-radius: 50%;
    left: -4px
  }
  
  .flow>li dl::after {
    width: 50px;
    border-bottom: 1px dashed #999;
    position: absolute;
    left: 5px
  }
  
  .flow>li dl dt {
    font-weight: 600;
    color: #1a6db7;
    margin-bottom: 1vh
  }
  
  .accordion {
    margin-bottom: 2em
  }
  
  .accordion dt,
  .accordion dd {
    position: relative;
    padding: 1em
  }
  
  .accordion dt {
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    border-bottom: 1px dotted #ccc
  }
  
  .accordion dt:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    font-weight: 900;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.7rem
  }
  
  .accordion dt.on:after {
    font-family: "Font Awesome 5 Free";
    content: "\f068";
    font-weight: 900
  }
  
  .accordion dd {
    display: none
  }
  
  .top_greeting {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 35px 50px 60px 50px
  }
  
  .recruit_contents {
    display: flex;
    align-items: center
  }
  
  .recruit_contents .image {
    width: 59.72222%
  }
  
  .recruit_contents .image img {
    display: block;
    width: 100%;
    height: 482px;
    font-family: 'object-fit: cover; object-position: center;';
    object-fit: cover;
    object-position: center
  }
  
  .recruit_contents .detail {
    margin-left: -35px;
    width: 35%
  }
  
  .recruit_contents .title {
    margin-bottom: 30px;
    color: #1a6db7;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 2
  }
  
  .recruit_contents .txt {
    margin-bottom: 15px;
    line-height: 2
  }
  
  .list_bnr {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: -3%;
    text-align: center
  }
  
  .list_bnr li {
    width: 22.7%;
    margin: 0 3% 3% 0
  }
  
  .list_bnr li:nth-child(4n) {
    margin: 0 0 3% 0
  }
  
  .list_bnr .bnr_image {
    overflow: hidden;
    border-radius: 50%;
    width: 70%;
    margin: 0 auto 10px
  }
  
  .top_contents {
    display: flex;
    align-items: center
  }
  
  .top_contents .image {
    width: 60%
  }
  
  .top_contents .image img {
    display: block;
    width: 100%;
    height: 482px;
    font-family: 'object-fit: cover; object-position: center;';
    object-fit: cover;
    object-position: center
  }
  
  .top_contents .detail {
    margin-left: -35px;
    width: 30%
  }
  
  .top_contents .title {
    margin-bottom: 30px;
    color: #1a6db7;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.4
  }
  
  .top_contents .txt {
    margin-bottom: 40px;
    line-height: 2
  }
  
  .top_contents_last {
    justify-content: flex-end
  }
  
  .top_contents_last .image {
    order: 2
  }
  
  .top_contents_last .detail {
    margin-left: 0
  }
  
  .link_block {
    position: relative;
    background: #fff
  }
  
  .link_block::before,
  .link_block::after {
    display: block;
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    background: #1a6db7;
    -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 15px 25px;
    border: 1px solid #ccc;
    color: #111;
    font-size: 1.6rem;
    font-weight: 600;
    -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: #1a6db7;
    -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 {
    display: block;
    position: relative;
    overflow: hidden;
    height: 200px;
    margin-bottom: 15px
  }
  
  .link_block a .image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover;";
    vertical-align: middle
  }
  
  .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: #1a6db7
  }
  
  .link_block:hover::before,
  .link_block:hover::after {
    width: 100%
  }
  
  .link_block:hover a::before,
  .link_block:hover a::after {
    height: 100%
  }
  
  .img_decoration {
    position: relative
  }
  
  .img_decoration:before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    left: 0;
    top: -15px;
    z-index: -1;
    background-color: #fff
  }
  
  .img_decoration:after {
    content: "";
    position: absolute;
    background-position: -1px -1px;
    width: 125px;
    height: 125px;
    bottom: -15px;
    background-image: radial-gradient(circle at center center, #ffffff 55%, rgba(0, 0, 0, 0) 45%);
    background-size: 16px 16px;
    right: 0;
    z-index: -1
  }
  
  .policy {
    background-color: #fafafa;
    margin-top: 50px;
    padding: 50px
  }
  
  video {
    max-width: 100%;
    height: auto;
    max-height: 200px
  }
  
  .font-s {
    font-size: 1.4rem
  }
  
  .carousel {
    padding: 0 50px
  }
  
  .fly {
    display: block
  }
  
  .fly span {
    -webkit-transition: all .3s;
    transition: all .3s
  }
  
  .fly:hover span {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px)
  }
  
  .macker {
    background-image: -webkit-linear-gradient(left, transparent 50%, #fbff00 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, #fbff00 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, #fbff00 50%);
    background-image: -o-linear-gradient(left, transparent 50%, #fbff00 50%);
    background-image: linear-gradient(left, transparent 50%, #fbff00 50%);
    background-repeat: repeat-x;
    background-size: 200% .5em;
    background-position: 0 1em;
    transition: all 3.5s ease;
    font-style: normal;
    font-weight: 600;
    padding: 0 5px
  }
  
  .macker.active {
    background-position: -100% 1em
  }
  
  .cut {
    overflow: hidden;
    zoom: 1
  }
  
  @-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);
    -ms-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: #fafafa
  }
  
  .animation .animation-txt {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
  
  .effect_fade {
    opacity: 0;
    transform: translate(0, 45px);
    transition: all 2s
  }
  
  .effect_fade.effect_scroll {
    opacity: 1;
    transform: translate(0, 0)
  }
  
  .page_title_box {
    position: relative;
    background-image: url(../img/slider_02.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff
  }
  
  .page_title_box:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    background-image: url(../img/bg_slideshow.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    padding-top: 10%
  }
  
  .page_title_box .inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 1160px;
    padding: 230px 0 170px
  }
  
  .page_title_box.page_title_box_estate {
    background-image: url(../img/page_title_box_estate.jpg)
  }
  
  .breadcrumb_box {
    padding: 10px 0
  }
  
  .breadcrumb_box .breadcrumb {
    width: 1160px;
    margin: 0 auto;
    padding-left: 0;
    font-size: 1.3rem
  }
  
  .breadcrumb_box .breadcrumb li {
    display: inline
  }
  
  .breadcrumb_box .breadcrumb li+li:before {
    margin: 0 10px;
    content: ">"
  }
  
  .breadcrumb_box .breadcrumb li .home:before {
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    font-weight: 900
  }
  
  .form_dl dt {
    margin-bottom: 5px
  }
  
  .form_dl dd {
    margin-bottom: 15px
  }
  
  .form_dl dd:last-child {
    margin-bottom: 0
  }
  
  .form .required {
    position: relative;
    top: -1px;
    background: #63bb0e;
    color: #fff;
    padding: 0 5px;
    margin-right: 5px;
    font-size: 1.1rem
  }
  
  .form .textarea,
  .form textarea {
    border: 1px solid #ddd;
    padding: 5px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    box-sizing: border-box
  }
  
  .form .textarea {
    height: 30px
  }
  
  .form .textarea_02 {
    width: 48.5%;
    margin-right: 3%
  }
  
  .form .textarea_02:last-child {
    margin-right: 0
  }
  
  .form .textarea_03 {
    width: 20%;
    margin-right: 1%
  }
  
  .form .selectarea {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 0;
    box-sizing: border-box;
    height: 30px
  }
  
  .form button {
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease-in-out 0s;
    font-family: "YakuHanJP", Lato, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-size: 1.5rem
  }
  
  .form label.radio_text {
    cursor: pointer;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    padding: 0 0 3px 20px;
    display: inline-block;
    line-height: 1.2
  }
  
  .form label.radio_text:before {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    border-radius: 50%;
    left: 1px;
    top: 3px;
    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: #1a6db7;
    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;
    box-shadow: 20px -1px #63bb0e
  }
  
  .form label.radio_text input[type="radio"]:checked {
    box-shadow: none
  }
  
  .form label.radio_text input[type="radio"]:focus {
    opacity: 0.2;
    box-shadow: 20px -1px #eeebda
  }
  
  .form label.checkbox_text {
    cursor: pointer;
    position: relative;
    padding: 0 0 3px 25px;
    margin-right: 20px;
    overflow: hidden;
    display: inline-block;
    box-sizing: border-box;
    line-height: 1.2
  }
  
  .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 #1a6db7;
    border-bottom: 3px solid #1a6db7;
    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;
    box-shadow: 41px 0px #FFF;
    z-index: 2;
    margin: 0px;
    padding: 0px
  }
  
  .form label.checkbox_text input[type="checkbox"]:checked {
    box-shadow: none
  }
  
  .form label.checkbox_text input[type="checkbox"]:checked:focus {
    box-shadow: 40px 0px #666;
    opacity: 0.1
  }
  
  .form label.checkbox_text input[type="checkbox"]:focus {
    box-shadow: 41px 0px #EEE
  }

  /* フォームCMS */
  .form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
    background: #63BB0E !important;
    }

.submit-btn {
	background: #63BB0E !important;
	border: 1px solid #63BB0E !important;
    border-radius: 30px !important;
	}
	
	.submit-btn:hover {
	background: #ffffff !important;
	color: #63BB0E !important;
	}
	
	.submit-btn:hover::before {
	background: #63BB0E !important;
	}
	
	.submit-btn::before {
	transition: all .2s ease-in-out 0s;
	}
/* ------------------------ */