body {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
    position: relative;
    letter-spacing: 0.1rem;
    background: #fefefe
  }
  
  body.bg-deco:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -3;
    width: 100%;
    height: 100vh;
    background: url(../img/logo.png) no-repeat center;
    opacity: 0.1
  }
  
  @media all and (max-width: 800px) {
    body.bg-deco:before {
      background-size: contain
    }
  }
  
  a {
    color: #6ba748;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer
  }
  
  img {
    max-width: 100%;
    height: auto
  }
  
  .bold {
    font-weight: 600
  }
  
  h2, h3 {
    line-height: 1.4
  }
  
  .mincho {
    font-family: "Noto Sans JP", sans-serif
  }
  
  @media screen and (min-width: 639px) {
    .sp {
      display: none
    }
  }
  
  @media screen and (max-width: 639px) {
    .pc {
      display: none
    }
  }
  
  @media screen and (min-width: 896px) {
    .tb {
      display: none
    }
  }
  
  @-webkit-keyframes view-zoomin {
    0% {
      opacity: 0;
      -webkit-transform: scale(0.95);
      transform: scale(0.95)
    }
    100% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1)
    }
  }
  
  @keyframes view-zoomin {
    0% {
      opacity: 0;
      -webkit-transform: scale(0.95);
      transform: scale(0.95)
    }
    100% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1)
    }
  }
  
  @-webkit-keyframes view-slideup {
    0% {
      opacity: 0;
      -webkit-transform: translate(0, 35px);
      transform: translate(0, 35px)
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0)
    }
  }
  
  @keyframes view-slideup {
    0% {
      opacity: 0;
      -webkit-transform: translate(0, 35px);
      transform: translate(0, 35px)
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0)
    }
  }
  
  .animation {
    opacity: 0
  }
  
  .slideup.on {
    opacity: 1;
    -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
    animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1)
  }
  
  .zoomin.on {
    opacity: 1;
    -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
    animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1)
  }
  
  .loader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fdfdfd;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999
  }
  
  .loader::after {
    -webkit-animation: loader 0.5s linear infinite;
    animation: loader 0.5s linear infinite;
    border: 1px solid #a2cc89;
    border-radius: 50%;
    border-right: 1px solid rgba(162, 204, 137, 0.2);
    border-top: 1px solid rgba(162, 204, 137, 0.2);
    content: "";
    height: 70px;
    width: 70px
  }
  
  .loader.off {
    display: none
  }
  
  @-webkit-keyframes loader {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg)
    }
  }
  
  @keyframes loader {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0)
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg)
    }
  }
  
  @-webkit-keyframes hd-scrolled {
    0% {
      opacity: 0;
      -webkit-transform: translate(0, -100%);
      transform: translate(0, -100%)
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0)
    }
  }
  
  @keyframes hd-scrolled {
    0% {
      opacity: 0;
      -webkit-transform: translate(0, -100%);
      transform: translate(0, -100%)
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0)
    }
  }
  
  #l-header {
    width: 100%;
    position: relative
  }
  
  #l-header.is-fixed {
    z-index: 200;
    top: 0;
    left: 0;
    position: fixed;
    background: #fefefe;
    -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.1)
  }
  
  #l-header.is-fixed .inner #logo img {
    -webkit-filter: invert(0);
    filter: invert(0)
  }
  
  #l-header.is-fixed .inner #logo .logo1 {
    display: none
  }
  
  #l-header.is-fixed .inner #logo .logo2 {
    display: block
  }
  
  @media all and (max-width: 800px) {
    #l-header.is-fixed .inner {
      padding: 0
    }
    #l-header.is-fixed .inner #logo {
      display: none
    }
  }
  
  #l-header.is-fixed #header_nav ul li a {
    color: #232323
  }
  
  #l-header.is-fixed #header_nav ul li a span {
    color: #2ca763
  }
  
  #l-header.is-fixed #header_nav ul li a::after {
    background: #a2cc89
  }
  
  #l-header.is-fixed #header_nav ul li a:hover span, #l-header.is-fixed #header_nav ul li a.active span {
    color: #a2cc89
  }
  
  #l-header.is-fixed #header_nav .dropdown .dropdown-li a {
    color: #fefefe
  }
  
  #l-header.is-fixed #header_nav .dropdown .dropdown-li a::after {
    display: none
  }
  
  #l-header.is-hide {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }
  
  #l-header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 1000px;
    margin: 0 auto;
    padding: 8px 0 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
  
  @media all and (max-width: 800px) {
    #l-header .inner {
      min-width: initial
    }
  }
  
  #l-header .inner #logo {
    width: 350px;
    padding-left: 20px
  }
  
  #l-header .inner #logo img {
    -webkit-filter: invert(0);
    filter: invert(0)
  }
  
  #l-header .inner #logo .logo1 {
    display: block
  }
  
  #l-header .inner #logo .logo2 {
    display: none
  }
  
  @media all and (max-width: 1200px) {
    #l-header .inner #logo {
      width: 200px
    }
  }
  
  #l-header .head-right {
    margin-left: auto;
    margin-right: 5px
  }

  #l-header .head-right.type01 {
    margin-left: 0;
    margin-right: 20px
  }
  
  @media all and (max-width: 800px) {
    #l-header .head-right {
      display: none
    }
  }
  
  #header_nav {
    position: relative;
    width: 600px;
    /* margin-right: 80px */
    margin-right: 20px
  }
  
  #header_nav ul {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
  
  #header_nav ul li {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
  }
  
  #header_nav ul li a {
    display: block;
    letter-spacing: 0;
    position: relative;
    line-height: 1.5;
    font-size: 1.5rem;
    padding: 0 5px 0 10px;
    color: #232323;
    font-weight: 500
  }
  
  @media all and (max-width: 1200px) {
    #header_nav ul li a {
      font-size: 1.1rem
    }
  }
  
  #header_nav ul li a span {
    display: block;
    font-size: 1.2rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    color: #2ca763;
    position: relative;
    letter-spacing: 0.1rem
  }
  
  #header_nav ul li a:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 0;
    background: #a2cc89;
    left: 0;
    top: 0;
    -webkit-transition: 0.2s height ease-in;
    transition: 0.2s height ease-in
  }
  
  #header_nav ul li a:hover span, #header_nav ul li a.active span {
    color: #a2cc89
  }
  
  #header_nav ul li a:hover:after, #header_nav ul li a.active:after {
    height: 100%
  }
  
  #header_nav ul li.mail {
    display: none
  }
  
  #header_nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 999;
    padding-top: 30px
  }
  
  #header_nav .dropdown .dropdown-li {
    border-right: 0;
    margin: 0 0 5px;
    background: #111
  }
  
  #header_nav .dropdown .dropdown-li a {
    display: block;
    width: 160px;
    padding: 10px 8px;
    color: #fefefe;
    font-size: 1.2rem
  }
  
  #header_nav .dropdown .dropdown-li a:after {
    display: none
  }
  
  #header_nav .dropdown .dropdown-li:hover {
    background: #a2cc89
  }
  
  #header_nav .dropdown .dropdown-li.foot_only {
    display: none
  }
  
  #page-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999
  }
  
  #page-top a {
    display: block;
    background: #86bd65;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    text-align: center
  }
  
  #page-top a:hover {
    opacity: 0.6
  }
  
  @media all and (max-width: 639px) {
    #page-top {
      bototm: 20px
    }
  }
  
  @-webkit-keyframes zoom-in {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1)
    }
    100% {
      -webkit-transform: scale(1.12);
      transform: scale(1.12)
    }
  }
  
  @keyframes zoom-in {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1)
    }
    100% {
      -webkit-transform: scale(1.12);
      transform: scale(1.12)
    }
  }
  
  .swiper-slide-active .slide-img, .swiper-slide-duplicate-active .slide-img, .swiper-slide-prev .slide-img {
    -webkit-animation: zoom-in 11s linear 0s 1 normal both;
    animation: zoom-in 11s linear 0s 1 normal both;
    height: 90%;
  }
  
  .swiper-slide {
    position: relative;
    overflow: hidden
  }
  
  .slide-img {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 85vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
  
  .slide-img img {
    width: 100%;
    height: 100%;
    /*-o-object-fit: cover;
    object-fit: cover;*/
    font-family: "object-fit: cover;"
  }
  
  @media all and (max-width: 1200px) {
    .slide-img {
      height: 50vw
    }
  }
  
  @media all and (max-width: 639px) {
    .slide-img {
      height: 50vh
    }
    .slide-img img {
      -o-object-fit: cover;
      object-fit: cover;
    }
  }
  
  #slideshow {
    position: relative;
    overflow: hidden
  }
  
  #catch {
    z-index: 50;
    position: absolute;
    left: 3%;
    bottom: 2%;
    opacity: 1;
    width: 720px;
    text-align: center
  }
  
  #catch.on {
    opacity: 1;
    -webkit-transition: 2s;
    transition: 2s
  }
  
  @media all and (max-width: 1200px) {
    #catch {
      width: 60%
    }
  }
  
  @media all and (max-width: 639px) {
    #catch {
      width: 55%;
      bottom: 5%;
    }
    #slideshow{
      height:225px;
      
    }
  }
  
  #catch .title_c {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 3px 4px #666
  }
  
  @media all and (max-width: 1200px) {
    #catch .title_c {
      font-size: 2rem
    }
  }
  
  @media all and (max-width: 639px) {
    #catch .title_c {
      font-size: 1.5rem
    }
  }
  
  .bg_contact {
    position: relative;
    padding-top: 80px
  }
  
  .bg_contact:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 80%;
    background: url(../img/bg_footer.jpg) no-repeat center bottom/cover
  }
  
  .bg_contact .inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    background: #EDEDED;
    background: #fefefe;
    padding: 20px;
    border-radius: 20px 20px 0 0
  }
  
  @media all and (max-width: 639px) {
    .bg_contact .inner {
      width: 90%;
      margin-bottom: 10px
    }
  }
  
  .contact_lead {
    font-size: 1.3em;
    color: #342612;
    text-align: center
  }
  
  @media all and (max-width: 639px) {
    .contact_lead {
      font-size: 1em
    }
  }
  
  .map-wrap iframe {
    -webkit-box-shadow: 0 0 0 4px #fefefe;
    box-shadow: 0 0 0 4px #fefefe
  }
  
  @media all and (max-width: 639px) {
    .map-wrap {
      position: relative;
      padding-bottom: 65%;
      height: 0;
      overflow: hidden
    }
    .map-wrap iframe, .map-wrap object, .map-wrap embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%
    }
  }
  
  .contact_wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }
  
  .contact_wrap .contact_left, .contact_wrap .contact_right {
    width: 49%;
    padding: 20px 10px
  }
  
  .contact_wrap .contact_right {
    text-align: right
  }
  
  .contact_wrap .contact_left {
    margin-right: 2%
  }
  
  @media all and (max-width: 639px) {
    .contact_wrap {
      width: 94%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column
    }
    .contact_wrap .contact_left, .contact_wrap .contact_right {
      width: 100%;
      font-size: 0.9em;
      letter-spacing: 0;
      font-weight: normal
    }
    .contact_wrap .contact_right {
      text-align: left
    }
    .contact_wrap .contact_left {
      margin-right: auto;
      border-right: 0;
      border-bottom: 1px solid rgba(51, 105, 155, 0.5)
    }
  }
  
  .contact_bnr {
    margin: 10px auto
  }
  
  .contact_bnr>li {
    text-align: center
  }
  
  .contact_bnr>li a, .contact_bnr>li span {
    display: block;
    padding: 0;
    margin: 10px auto 15px;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    width: 360px;
    letter-spacing: 0.1rem
  }
  
  .contact_bnr>li a:before, .contact_bnr>li span:before {
    margin-right: 5px
  }
  
  @media all and (max-width: 639px) {
    .contact_bnr>li a, .contact_bnr>li span {
      padding: 5px 0 0 0;
      max-width: 90%;
      font-size: 1.5rem
    }
  }
  
  .contact_bnr>li .bnr_tel {
    background: #ffe151;
    font-size: 3.5rem;
    white-space: nowrap;
    color: #000000;
    font-family: "Roboto Condensed", sans-serif;
    border-radius: 50px;
    border: 1px solid #ffe151
  }
  
  .contact_bnr>li .bnr_tel:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: bold;
    font-size: 3rem
  }
  
  .contact_bnr>li .bnr_tel:hover {
    color: #000000;
    background: transparent
  }
  
  @media all and (max-width: 639px) {
    .contact_bnr>li .bnr_tel {
      font-size: 2rem;
      max-width: 100%
    }
    .contact_bnr>li .bnr_tel:before {
      font-size: 1.8rem
    }
  }
  
  .contact_bnr>li .bnr_mobile {
    background: #a2cc89;
    letter-spacing: 0.15em
  }
  
  .contact_bnr>li .bnr_mobile:before {
    font-family: "Font Awesome 5 Free";
    content: "\f3cd";
    font-weight: bold
  }
  
  .contact_bnr>li .bnr_mobile:hover {
    background: #555
  }
  
  .contact_bnr>li .bnr_fax {
    background: #ffffff;
    border: 1px solid #a2cc89;
    color: #a2cc89
  }
  
  .contact_bnr>li .bnr_fax:before {
    font-family: "Font Awesome 5 Free";
    content: "\f1ac";
    font-weight: bold
  }
  
  .contact_bnr>li .bnr_mail {
    font-family: "Noto Serif JP", serif;
    background: #86bd65;
    color: #fefefe;
    border-radius: 30px
  }
  
  .contact_bnr>li .bnr_mail:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: bold
  }
  
  .contact_bnr>li .bnr_mail:hover {
    background: #a2cc89;
    color: #fff
  }
  
  #l-footer {
    font-size: 1.4rem;
    position: relative
  }
  
  #l-footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0
  }
  
  @media all and (max-width: 800px) {
    #l-footer .inner {
      display: none
    }
  }
  
  .footer_navi {
    padding: 10px 0;
    margin: 0 auto
  }
  
  .footer_navi ul {
    margin: 0 auto;
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 5px
  }
  
  .footer_navi ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-bottom: 4px;
    margin: 0 0.5% 4px
  }
  
  .footer_navi ul li a {
    color: #a2cc89;
    font-size: 1.2rem;
    position: relative;
    padding-left: 20px;
    font-weight: 600
  }
  
  .footer_navi ul li a span {
    display: none
  }
  
  .footer_navi ul li a:before {
    content: "";
    background-color: #2ca763;
    width: 10px;
    height: 3px;
    position: absolute;
    top: 8px;
    left: 0
  }
  
  .footer_navi ul li a:hover {
    color: #2ca763
  }
  
  .footer_navi ul li .dropdown {
    display: none
  }
  
  .footer_navi ul li .dropdown .dropdon-li a {
    font-size: 1.2rem
  }
  
  .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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
  
  .column2 .child1 {
    width: 35%
  }
  
  .column2 .child2 {
    width: 62%
  }
  
  @media all and (max-width: 800px) {
    .column2 .child1, .column2 .child2 {
      width: 100%;
      border: 0
    }
  }
  
  .flogo {
    width: 230px;
    text-align: center;
    margin: 0 auto;
    min-height: 0
  }
  
  @media all and (max-width: 639px) {
    .flogo {
      margin: 0 auto 10px;
      width: 90%
    }
  }
  
  .address {
    text-align: center
  }
  
  .copyright {
    padding: 5px 0;
    background: #2ca763;
    color: #fefefe;
    font-size: 1.2rem
  }
  
  @media all and (max-width: 800px) {
    .copyright {
      background: #a2cc89;
      padding: 30px 0;
      font-size: 12px;
      padding-bottom: 90px
    }
  }
  
  #fixed_btn {
    position: fixed;
    bottom: 15%;
    right: 0;
    z-index: 300
  }
  
  @media all and (max-width: 800px) {
    #fixed_btn {
      top: auto;
      bottom: 1%;
      right: auto;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex
    }
  }
  
  #fixed_btn #tel_btn {
    width: 90px;
    height: 75px;
    padding: 10px 5px;
    background: #33699b;
    text-align: center;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in
  }
  
  #fixed_btn #tel_btn i {
    display: block;
    font-size: 3rem
  }
  
  #fixed_btn #tel_btn a {
    color: #fefefe
  }
  
  #fixed_btn #tel_btn a span {
    font-size: 1.2rem
  }
  
  #fixed_btn #tel_btn.is-fixed {
    top: auto;
    bottom: 20%
  }
  
  #fixed_btn #tel_btn:hover {
    background: #a2cc89
  }
  
  @media all and (max-width: 800px) {
    #fixed_btn #tel_btn {
      width: 110px;
      height: 60px
    }
    #fixed_btn #tel_btn i {
      font-size: 2rem
    }
  }
  
  #fixed_btn #question_btn {
    width: 90px;
    height: 75px;
    padding: 10px 5px;
    background: #2ca763;
    text-align: center;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    line-height: 1.5
  }
  
  #fixed_btn #question_btn i {
    display: block;
    font-size: 3rem
  }
  
  #fixed_btn #question_btn a {
    color: #fefefe
  }
  
  #fixed_btn #question_btn a span {
    font-size: 1.2rem
  }
  
  #fixed_btn #question_btn.is-fixed {
    top: auto;
    bottom: 20%
  }
  
  #fixed_btn #question_btn:hover {
    background: #a2cc89
  }
  
  @media all and (max-width: 800px) {
    #fixed_btn #question_btn {
      width: 110px;
      height: 60px
    }
    #fixed_btn #question_btn i {
      font-size: 2rem
    }
  }
  
  .reason {
    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
  }
  
  .reason li {
    position: relative;
    margin-bottom: 50px;
    padding: 30px;
    background: #fefefe;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 10px rgba(34, 34, 34, 0.1);
    box-shadow: 0 0 10px rgba(34, 34, 34, 0.1)
  }
  
  .reason li:nth-child(2n) {
    -webkit-transform: translateY(50px);
    transform: translateY(50px)
  }
  
  @media all and (max-width: 639px) {
    .reason li {
      width: 100%;
      margin-bottom: 40px;
      padding: 20px 15px
    }
    .reason li:nth-child(2n) {
      -webkit-transform: none;
      transform: none
    }
  }
  
  .reason.col3 {
    margin-top: 50px
  }
  
  @media all and (max-width: 639px) {
    .reason.col3 {
      width: 95%
    }
  }
  
  .reason.col3 li {
    width: 31%;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #a2cc89;
    padding: 20px 15px
  }
  
  .reason.col3 li:nth-child(2n) {
    -webkit-transform: none;
    transform: none
  }
  
  .reason.col3 h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    margin-bottom: 15px
  }
  
  .reason.col3 .img {
    height: 200px
  }
  
  @media all and (max-width: 1200px) {
    .reason.col3 .img {
      height: 250px
    }
  }
  
  @media all and (max-width: 639px) {
    .reason.col3 .img {
      height: 200px
    }
  }
  
  .reason .img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 10px
  }
  
  .reason .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;"
  }
  
  .reason h3 {
    font-size: 2.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    text-align: center;
    color: #2ca763
  }
  
  @media all and (max-width: 800px) {
    .reason h3 {
      font-size: 1.8rem
    }
  }
  
  .reason .num {
    position: absolute;
    top: -5%;
    left: -5%
  }
  
  .reason .num p {
    width: 60px;
    height: 60px;
    padding: 10px;
    text-align: center;
    background: #2ca763;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1
  }
  
  .reason .num p span {
    font-size: 2.5rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    display: block;
    font-weight: 600
  }
  
  .news-box {
    margin: 0 auto 0;
    padding: 15px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    background: #fefefe;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }
  
  @media all and (max-width: 639px) {
    .news-box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      width: 100%;
      padding: 10px
    }
  }
  
  .news-title {
    text-align: center;
    font-weight: 400;
    font-size: 1.8rem;
    padding: 10px 20px;
    line-height: 1.6;
    color: #342612
  }
  
  .news-title span {
    font-size: 3rem;
    display: block;
    font-weight: 600;
    color: #a2cc89;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    margin-bottom: 0px
  }
  
  @media all and (max-width: 639px) {
    .news-title {
      padding: 5px 10px;
      width: 100%;
      font-size: 2rem
    }
    .news-title span {
      font-size: 1.4rem
    }
  }
  
  .news-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px
  }
  
  @media all and (max-width: 639px) {
    .news-right {
      width: 100%;
      margin: 10px 0 0
    }
  }
  
  .top-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  
  .top-list li {
    width: 48%;
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
    position: relative;
    margin: 0 4% 5% 0
  }
  
  .top-list li:nth-child(2n) {
    margin-right: 0
  }
  
  .top-list li .top-list_img {
    width: 93%;
    padding: 10px
  }
  
  .top-list li .top-list_img img {
    width: 100%;
    border: 3px solid #342612
  }
  
  @media all and (max-width: 639px) {
    .top-list li {
      width: 95%;
      margin: 0 auto 20px;
      padding: 5px
    }
  }
  
  .top-list .top-list_ttl {
    width: 80%;
    background: #a2cc89;
    border-radius: 15px 0 0 0;
    text-align: center;
    padding: 10px 0;
    position: relative;
    font-size: 1.8rem;
    margin: -30px 0 0 auto;
    font-weight: 600;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.1rem;
    -webkit-box-shadow: 0 0 8px rgba(52, 38, 18, 0.2);
    box-shadow: 0 0 8px rgba(52, 38, 18, 0.2)
  }
  
  .top-list .top-list_ttl span {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 225, 81, 0.9);
    left: 50%;
    top: -35px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500
  }
  
  @media all and (max-width: 639px) {
    .top-list .top-list_ttl {
      font-size: 1.4rem;
      padding: 6px 0;
      width: 90%
    }
    .top-list .top-list_ttl span {
      font-size: 1.6rem;
      top: -30px
    }
  }
  
  .top-list .top-list_txt {
    padding: 15px;
    border-radius: 0 0 15px 0;
    width: 80%;
    margin-left: auto;
    background: #fefefe
  }
  
  @media all and (max-width: 639px) {
    .top-list .top-list_txt {
      font-size: 1.1rem;
      width: 90%;
      letter-spacing: 1.5
    }
  }
  
  .top-list .notes {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
    color: #805d2c
  }
  
  .sec1 {
    position: relative;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd
  }
  
  .sec1:before {
    position: absolute;
    content: "";
    width: 40%;
    height: 100%;
    left: 0;
    top: 0;
    background: #f0f0f0;
    border-right: 2px solid #ddd
  }
  
  @media all and (max-width: 639px) {
    .sec1:before {
      width: 20%
    }
  }
  
  .staff-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
  
  .staff-wrap:not(:last-of-type) {
    margin-bottom: 50px;
    border-bottom: 2px solid #f6f4eb;
    padding-bottom: 50px
  }
  
  .staff-wrap .staff-left {
    width: 27%;
    text-align: center
  }
  
  .staff-wrap .staff-right {
    width: 70%
  }
  
  .staff-wrap .staff-name {
    font-size: 2.5rem;
    color: #33699b
  }
  
  .staff-wrap .staff-name .category {
    display: inline-block;
    padding: 3px 5px;
    border: 2px solid #a2cc89;
    color: #a2cc89;
    font-size: 1.4rem
  }
  
  .staff-wrap .staff-name .eng {
    color: #6d5026
  }
  
  @media all and (max-width: 639px) {
    .staff-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column
    }
    .staff-wrap .staff-left, .staff-wrap .staff-right {
      width: 90%;
      margin: 0 auto
    }
    .staff-wrap .staff-left {
      padding: 10px 15px
    }
    .staff-wrap .staff-name {
      font-size: 2rem
    }
    .staff-wrap .staff-name .category {
      font-size: 1.2rem
    }
    .staff-wrap .staff-name .eng {
      font-size: 1.6rem
    }
  }
  
  .service-list>li {
    position: relative;
    padding: 10px 10px 20px 20px
  }
  
  .service-list>li:not(:last-child) {
    margin-bottom: 30px;
    border-bottom: 2px solid #f6f4eb
  }
  
  .service-list .service-ttl {
    font-size: 3rem;
    color: #a2cc89;
    letter-spacing: 0.2rem;
    margin-bottom: 10px
  }
  
  .service-list .service-ttl:before {
    font-family: "Font Awesome 5 Free";
    content: "\f7d9";
    font-weight: bold;
    margin-right: 5px;
    font-size: 2.2rem;
    color: #777
  }
  
  .service-list .service-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
  
  .service-list .service-container .service-img {
    display: block;
    margin-right: 40px;
    position: relative;
    width: 430px
  }
  
  .service-list .service-container .service-txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
  }
  
  @media all and (max-width: 639px) {
    .service-list li {
      padding: 10px
    }
    .service-list .service-ttl {
      line-height: 1.5;
      font-size: 1.9rem;
      text-align: center
    }
    .service-list .service-ttl:before {
      font-size: 1.6rem
    }
    .service-list .service-container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: colmun;
      flex-direction: colmun
    }
    .service-list .service-container .service-img {
      width: 90%px;
      margin: 0 auto 20px
    }
    .service-list .service-container .service-txt {
      width: 100%;
      -webkit-box-flex: 1;
      -ms-flex: auto;
      flex: auto
    }
  }
  
  .single {
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 0;
    position: relative
  }
  
  .single02 {
    margin: 0 auto;
    padding: 80px 0
  }
  
  .single03 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
    position: relative
  }


  .single03 .feelist{
    margin-bottom: 50px;
    line-height: 25px;
  }
  .single03 .feelist h2{
    font-size:25px;
    font-weight: bold;
    color:#a2cc89;"
  }
  .single03 .feelist .l_title{
    font-weight:bold;
  }
  .single03 .feelist .l_menu{
    font-size: 18px;
  }

  .single03 .feelist table tr{
    font-size:18px;
    text-align: left;
    border-bottom: #a2cc89 1px dotted;
  }
  .single03 .feelist table tr th{
    text-align: left;
    padding-right: 20px;
    line-height: 50px;
  }


  


  .margin-top {
    margin-top: -80px
  }
  
  @media all and (max-width: 639px) {
    .margin-top {
      margin-top: -30px
    }
  }
  
  .lsingle, .rsingle {
    width: 48.44%
  }
  
  .lsingle {
    float: left
  }
  
  .rsingle {
    float: right
  }
  
  .mbox {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 20px
  }
  
  .mbox.transparent {
    background: transparent
  }
  
  .mbox.shadow {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1)
  }
  
  @media all and (max-width: 639px) {
    .mbox {
      padding: 15px
    }
  }
  
  .mbox2 {
    border: 3px solid #ccc;
    background: #fefefe;
    margin-right: auto;
    margin-left: auto;
    padding: 30px
  }
  
  @media all and (max-width: 639px) {
    .mbox2 {
      padding: 15px
    }
  }
  
  .small-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0
  }
  
  .small-box2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px
  }
  
  .small-box3 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0
  }
  
  .bg-grid {
    background: rgba(255, 255, 255, 0.9);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
    background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
    background-size: 20px 20px;
    background-repeat: repeat
  }
  
  .bg-grid2 {
    background: url(../img/grid2.png) repeat
  }
  
  .bg-map {
    background: url(../img/map.png) no-repeat right bottom
  }
  
  @media all and (max-width: 639px) {
    .bg-map {
      background-size: auto 200px;
      background-position: right top
    }
  }
  
  .bg_common {
    padding-top: 80px
  }
  
  .bg_02 {
    position: relative
  }
  
  .bg_02::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg_02.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
  }
  
  .wave-img {
    height: 300px;
    position: relative;
    z-index: 2;
    overflow: hidden
  }
  
  .wave-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
  }
  
  .wave-img.wave01 {
    margin-top: -100px
  }
  
  .wave-img.wave01 img {
    -o-object-position: center bottom;
    object-position: center bottom
  }
  
  .wave-img.wave02 {
    margin-top: -80px;
    margin-bottom: -10px
  }
  
  .wave-img.wave02 img {
    -o-object-position: center top;
    object-position: center top
  }
  
  @media all and (max-width: 800px) {
    .wave-img {
      height: 200px
    }
  }
  
  @media all and (max-width: 639px) {
    .wave-img {
      height: 150px
    }
  }
  
  #main {
    float: left;
    width: 76%
  }
  
  @media all and (max-width: 800px) {
    #main {
      float: none;
      width: 100%
    }
  }
  
  #side {
    float: right;
    position: -webkit-sticky;
    position: sticky;
    right: 0;
    top: 0;
    width: 21%;
    padding-right: 10px
  }
  
  @media all and (max-width: 800px) {
    #side {
      float: none;
      width: 100%;
      position: static;
      margin-top: 40px
    }
  }
  
  #col2-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto
  }
  
  #col2-wrap #col2-main {
    width: 78%
  }
  
  @media all and (max-width: 800px) {
    #col2-wrap #col2-main {
      width: 100%;
      margin: 0 auto;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2
    }
  }
  
  #col2-wrap #col2-side {
    width: 20%;
    padding: 60px 0 0
  }
  
  @media all and (max-width: 800px) {
    #col2-wrap #col2-side {
      width: 95%;
      margin: 0 auto 20px;
      padding-top: 30px
    }
  }
  
  .mtitle {
    line-height: 1.5;
    font-weight: normal;
    margin-bottom: 48px;
    font-size: 2rem;
    position: relative;
    text-align: center;
    letter-spacing: 0.2rem
  }
  
  .mtitle span {
    display: block;
    font-size: 5rem;
    margin-bottom: -15px;
    color: #a2cc89;
    line-height: 2;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500
  }
  
  .mtitle:after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -10px;
    height: 1px;
    width: 60px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(44, 167, 99, 0.5)), to(#2ca763));
    background-image: linear-gradient(to right, rgba(44, 167, 99, 0.5), #2ca763)
  }
  
  .mtitle.white {
    color: #fff
  }
  
  .mtitle.white:after {
    background-image: -webkit-gradient(linear, left top, right top, from(#ddd), to(#fefefe));
    background-image: linear-gradient(to right, #ddd, #fefefe)
  }
  
  .mtitle.white span {
    color: #fefefe
  }
  
  .mtitle.center {
    text-align: center
  }
  
  .mtitle.mtitle_left {
    text-align: left
  }
  
  .mtitle.mtitle_left:after {
    left: 0;
    -webkit-transform: inherit;
    transform: inherit
  }
  
  .mtitle.mtitle_left2 {
    text-align: left;
    font-size: 1.2rem;
    line-height: 2.5
  }
  
  .mtitle.mtitle_left2 span {
    font-size: 2.5rem
  }
  
  .mtitle.mtitle_left2:after {
    left: 0;
    bottom: 0;
    -webkit-transform: inherit;
    transform: inherit
  }
  
  @media all and (max-width: 639px) {
    .mtitle {
      font-size: 1.3rem;
      text-align: center
    }
    .mtitle span {
      font-size: 3rem;
      line-height: 1.1;
      margin-bottom: 0px
    }
  }
  
  .mtitle2 {
    color: #342612;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative
  }
  
  .mtitle2 span {
    font-size: 3.5rem;
    letter-spacing: 0.1rem;
    margin-right: 15px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    color: #2ca763;
    font-weight: normal;
    font-weight: 600
  }
  
  @media all and (max-width: 639px) {
    .mtitle2 {
      font-size: 1.2rem
    }
    .mtitle2 span {
      font-size: 2rem
    }
  }
  
  .mtitle2:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 1px;
    background: #342612
  }
  
  .mtitle2_1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
    border-bottom: 1px solid;
    -o-border-image: linear-gradient(to right, #a2cc89 0%, #fff 100%);
    border-image: -webkit-gradient(linear, left top, right top, from(#a2cc89), to(#fff));
    border-image: linear-gradient(to right, #a2cc89 0%, #fff 100%);
    border-image-slice: 1;
    line-height: 1.3;
    font-weight: 300
  }
  
  .mtitle2_1 .en {
    font-size: 4rem;
    letter-spacing: 0.1rem;
    margin-right: 15px;
    color: #a2cc89;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 300
  }
  
  .mtitle2_1 .small {
    font-size: .9em;
    color: #2ca763;
    padding-left: 10px
  }
  
  @media all and (max-width: 639px) {
    .mtitle2_1 {
      font-size: 1.3rem;
      padding-bottom: 5px
    }
    .mtitle2_1 .en {
      font-size: 2.5em;
      display: block
    }
  }
  
  .mtitle2_1.white {
    color: #fff
  }
  
  .mtitle2_1.white span {
    color: #fefefe
  }
  
  .mtitle3 {
    margin: 0 auto 30px;
    position: relative;
    text-align: center
  }
  
  .mtitle3 .eng {
    position: relative;
    font-size: 4.2rem;
    color: #a2cc89;
    z-index: 2;
    display: block;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500
  }
  
  .mtitle3 .ja {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    z-index: 2;
    font-size: 2.4rem;
    color: #342612
  }
  
  .mtitle3.type1 .eng {
    color: #6d5026
  }
  
  .mtitle3.gray .eng {
    color: #777
  }
  
  .mtitle3.sbc .eng {
    color: #2ca763
  }
  
  .mtitle3.white span {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2)
  }
  
  .mtitle3.white span.eng {
    color: #fff
  }
  
  .mtitle3.mtitle_left {
    text-align: left;
    margin-left: 5px;
    margin-right: 0
  }
  
  @media all and (max-width: 639px) {
    .mtitle3 {
      text-align: center;
      margin: 0 auto 25px
    }
    .mtitle3 .eng {
      font-size: 2.8rem
    }
    .mtitle3 .ja {
      font-size: 1.6rem
    }
  }
  
  .mtitle-bll {
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif
  }
  
  .mtitle-bll:before {
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    font-weight: bold;
    margin-right: 5px;
    color: #a2cc89
  }
  
  .mtitle-bll:after {
    position: absolute;
    content: "";
    display: block;
    bottom: -1px;
    width: 100px;
    height: 1px;
    background: #2ca763
  }
  
  @media all and (max-width: 639px) {
    .mtitle-bll {
      font-size: 1.6rem
    }
  }
  
  .mtitle4 {
    font-weight: normal;
    text-align: center;
    font-size: 2.6rem;
    line-height: 1.5;
    letter-spacing: 0.1rem
  }
  
  .mtitle4 span {
    position: relative;
    display: inline-block;
    min-width: 10%
  }
  
  .mtitle4 span:before, .mtitle4 span:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 2rem;
    background-color: #a2cc89
  }
  
  .mtitle4 span:before {
    left: -11px;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg)
  }
  
  .mtitle4 span:after {
    right: -11px;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg)
  }
  
  .mtitle4.white span:before, .mtitle4.white span:after {
    background-color: #ffe151
  }
  
  @media all and (max-width: 639px) {
    .mtitle4 {
      font-size: 2rem
    }
  }
  
  @media all and (max-width: 320px) {
    .mtitle4 span:before {
      left: -3px
    }
    .mtitle4 span:after {
      right: -3px
    }
  }
  
  .mtitle5 {
    margin: 0 auto 35px;
    text-align: center;
    position: relative;
    z-index: 3
  }
  
  .mtitle5:before {
    display: block;
    position: relative;
    content: attr(data-title);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 7rem;
    text-align: center;
    color: transparent;
    background-image: linear-gradient(89.74deg, #a2cc89 -2.33%, #89cc98 30.93%, #7fccb5 64.97%, #A1D2B8 99.77%);
    -webkit-background-clip: text;
    letter-spacing: 0;
    white-space: nowrap
  }
  
  .mtitle5 .ja {
    font-size: 3rem;
    color: #555555
  }
  
  .mtitle5.white {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.1)
  }
  
  .mtitle5.white:before {
    color: #fff
  }
  
  .mtitle5.white span {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.1)
  }
  
  .mtitle5.white span:after {
    background-color: #eee
  }
  
  .mtitle5.mtitle_left {
    text-align: left;
    margin-left: 0;
    margin-right: 0
  }
  
  .mtitle5.mtitle_left:before {
    text-align: left
  }
  
  .mtitle5.mtitle_right {
    text-align: right;
    margin-left: auto;
    margin-right: 0
  }
  
  @media all and (max-width: 639px) {
    .mtitle5 {
      text-align: center;
      padding-top: 35px
    }
    .mtitle5:before {
      font-size: 3.5rem;
      white-space: nowrap;
      top: 0px
    }
    .mtitle5 .ja {
      font-size: 1.5rem
    }
  }
  
  .mtitle_sub {
    padding-left: 0.5em;
    font-weight: 600;
    position: relative;
    border-left: 6px solid #a2cc89;
    margin: 8px 0;
    font-size: 1.1em;
    letter-spacing: 0.2rem;
    border-bottom: 1px solid #ddd
  }
  
  .mtitle_sub:before {
    position: absolute;
    left: -6px;
    bottom: 0;
    content: "";
    width: 6px;
    height: 50%;
    background-color: #ddd
  }
  
  .mtitle_box {
    background: #a2cc89;
    color: #fefefe;
    font-size: 1.8rem;
    position: relative;
    padding: 10px;
    margin-bottom: 10px;
    font-weight: 400
  }
  
  .mtitle_box span {
    font-weight: normal;
    font-size: 14px;
    padding-left: 10px
  }
  
  .mtitle_box:before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f30a";
    font-weight: bold;
    display: block;
    right: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff
  }
  
  @media all and (max-width: 639px) {
    .mtitle_box {
      font-size: 1.5rem
    }
  }
  
  .mtitle_box2 {
    background: #a2cc89;
    font-size: 2.2rem;
    color: #fff;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.1rem;
    padding: 12px 10px 12px 20px;
    margin-bottom: 25px
  }
  
  .mtitle_box2 .small-cap {
    font-weight: normal;
    font-size: 14px
  }
  
  .mtitle_box2:before {
    background-color: #2ca763;
    content: "";
    display: block;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    position: absolute;
    bottom: -10px;
    right: -150px;
    width: 300px;
    height: 280px
  }
  
  @media all and (max-width: 639px) {
    .mtitle_box2 {
      font-size: 15px;
      line-height: 1.5;
      padding: 10px 10px 10px 15px;
      padding-right: 40px
    }
    .mtitle_box2 span {
      font-size: 12px
    }
    .mtitle_box2:before {
      width: 215px;
      right: -170px
    }
  }
  
  .mtitle-fukidashi {
    position: relative;
    display: block;
    margin: 30px auto 35px;
    padding: 15px 10px;
    min-width: 120px;
    max-width: 800px;
    color: #fff;
    font-size: 3rem;
    font-weight: 600;
    background: #a2cc89;
    text-align: center;
    letter-spacing: .3rem
  }
  
  @media all and (max-width: 639px) {
    .mtitle-fukidashi {
      font-size: 2.5rem;
      margin: 15px auto 5px;
      padding: 10px;
      letter-spacing: .2rem
    }
  }
  
  .mtitle-fukidashi.mini {
    font-size: 30px;
    padding: 1.5rem 2rem;
    border: 3px solid #d8d8d8;
    border-radius: 10px;
    background: #000;
    margin: 30px auto;
    text-align: center;
    width: 550px;
    position: relative
  }
  
  .mtitle-fukidashi.mini:before {
    position: absolute;
    top: 99%;
    left: 5em;
    width: 0;
    height: 0;
    content: '';
    border-width: 14px 12px 0 12px;
    border-style: solid;
    border-color: #d8d8d8 transparent transparent transparent
  }
  
  @media all and (max-width: 639px) {
    .mtitle-fukidashi.mini:before {
      top: 100%
    }
  }
  
  @media all and (max-width: 639px) {
    .mtitle-fukidashi.mini {
      font-size: 20px
    }
  }
  
  .mtitle-fukidashi:before {
    content: "";
    position: absolute;
    top: 98%;
    left: 50%;
    margin-left: -30px;
    border: 30px solid transparent;
    border-top: 30px solid #a2cc89
  }
  
  @media all and (max-width: 639px) {
    .mtitle-fukidashi:before {
      margin-left: -20px;
      border: 20px solid transparent;
      border-top: 20px solid #F67200
    }
  }
  
  .mtitle-fukidashi .sub {
    font-size: 3rem;
    display: block;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    letter-spacing: .8rem
  }
  
  @media all and (max-width: 639px) {
    .mtitle-fukidashi .sub {
      font-size: 1.5rem;
      letter-spacing: .5rem
    }
  }
  
  .mtitle-fukidashi p {
    margin: 0;
    padding: 0
  }
  
  .mtext1 {
    font-size: 2rem;
    line-height: 2
  }
  
  .mtext1.bold {
    font-weight: 600
  }
  
  @media all and (max-width: 639px) {
    .mtext1 {
      font-size: 1.5rem;
      line-height: 1.6
    }
  }
  
  .mtext2 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    line-height: 1.4
  }
  
  @media all and (max-width: 639px) {
    .mtext2 {
      font-size: 1.8rem
    }
  }
  
  .mtitle_category {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: normal
  }
  
  .mtitle_category:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0ca";
    font-weight: bold;
    margin-right: 5px;
    color: #a2cc89
  }
  
  .mtitle_point {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 15px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600
  }
  
  .mtitle_point:before {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: #a2cc89;
    position: absolute;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0
  }
  
  .mtitle_point span {
    display: block;
    color: #a2cc89;
    font-size: 1.2rem
  }
  
  .mtitle_fki {
    position: relative;
    padding: 1.5rem 2rem;
    border: 3px solid #d8d8d8;
    border-radius: 10px;
    background: #f9f9f9
  }
  
  .mtitle_fki:before {
    position: absolute;
    bottom: -14px;
    left: 1em;
    width: 0;
    height: 0;
    content: '';
    border-width: 14px 12px 0 12px;
    border-style: solid;
    border-color: #d8d8d8 transparent transparent transparent
  }
  
  .mtitle_fki:after {
    position: absolute;
    bottom: -10px;
    left: 1em;
    width: 0;
    height: 0;
    content: '';
    border-width: 14px 12px 0 12px;
    border-style: solid;
    border-color: #f9f9f9 transparent transparent transparent
  }
  
  .mtitle_re {
    background: #FDC800;
    padding: 15px;
    border-radius: 20px;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 30px
  }
  
  @media all and (max-width: 639px) {
    .mtitle_re {
      font-size: 1.8rem;
      padding: 5px;
      border-radius: 10px;
      margin-bottom: 10px
    }
  }
  
  .mtitle_sideline {
    margin-top: 20px;
    position: relative;
    padding: 0 65px;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    color: #2ca763;
    font-size: 2.5rem
  }
  
  .mtitle_sideline:before {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #a2cc89
  }
  
  .mtitle_sideline span {
    position: relative;
    padding: 0 1em;
    background: #fff
  }
  
  @media all and (max-width: 1200px) {
    .mtitle_sideline {
      padding: 0
    }
  }
  
  @media all and (max-width: 1200px) {
    .mtitle_sideline {
      font-size: 1.5rem
    }
    .mtitle_sideline span {
      padding: 0 15px
    }
  }
  
  @media all and (max-width: 639px) {
    .mtitle_sideline {
      font-size: 1.2rem
    }
    .mtitle_sideline span {
      padding: 0 5px
    }
  }
  
  .mtitle_l {
    border-bottom: 1px solid #a2cc89;
    color: #2ca763;
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 600
  }
  
  .mtitle_l.type-sub {
    color: #2ca763
  }
  
  @media all and (max-width: 639px) {
    .mtitle_l.type-sub {
      font-size: 2rem;
      margin-bottom: 50px
    }
  }
  
  .mtitle_l.type-contact {
    color: #2ca763
  }
  
  @media all and (max-width: 639px) {
    .mtitle_l.type-contact {
      font-size: 1.6rem;
      margin-bottom: 50px
    }
  }
  
  .mtitle_l span {
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400
  }
  
  @media all and (max-width: 639px) {
    .mtitle_l span {
      display: block
    }
  }
  
  .btn01 a {
    background: #fff;
    text-align: center;
    width: 300px;
    margin: 0 auto;
    color: #a2cc89;
    display: block;
    padding: 8px 5px;
    font-weight: 400;
    border: 2px solid #a2cc89;
    border-radius: 35px
  }
  
  .btn01 a:hover {
    background: #a2cc89;
    border-color: #a2cc89;
    color: #fff
  }
  
  @media all and (max-width: 639px) {
    .btn01 a {
      width: 95%
    }
  }
  
  .btn02 {
    max-width: 350px;
    width: 100%;
    margin: 20px auto 20px
  }
  
  .btn02 a {
    display: block;
    position: relative;
    padding: 15px 0;
    background-color: #ffe151;
    line-height: 24px;
    letter-spacing: 0.1rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: #000000
  }
  
  .btn02 a:hover a {
    color: #a2cc89;
    background-color: #2ca763
  }
  
  .btn02 a i {
    display: block;
    position: absolute;
    top: 50%;
    right: -10px;
    width: 50px;
    height: 2px;
    background-color: #2ca763;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
  }
  
  .btn02 a:hover i {
    width: 34px
  }
  
  @media all and (max-width: 639px) {
    .btn02 {
      width: 260px
    }
    .btn02 a {
      font-size: 1.4rem
    }
  }
  
  .btn02.type-sub a {
    background-color: #2ca763
  }
  
  .news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
  
  .news dt {
    width: 6em;
    padding: 3px 5px;
    background: #33699b;
    text-align: center;
    font-weight: 600;
    color: #fff
  }
  
  .news dd {
    padding: 5px;
    background: #fff;
    width: calc(100% - 7em);
    margin-left: 10px
  }
  
  .news dt:not(:last-child), .news dd:not(:last-child) {
    margin-bottom: 5px
  }
  
  .news-bl {
    margin-top: 45px
  }
  
  .news-bl dt {
    float: left;
    width: 8em;
    padding: 5px;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    background: #33699b;
    border-radius: 20px
  }
  
  .news-bl dd {
    padding: 0 0 10px 9.2em;
    line-height: 1.6;
    border-bottom: 1px dotted #dddddd;
    margin: 0 0 10px
  }
  
  .news-bl dd a {
    color: #000000
  }
  
  .news-bl dd a:hover {
    opacity: .5
  }
  
  .news-bl dd:last-child {
    margin: 0;
    border-bottom: none
  }
  
  @media all and (max-width: 639px) {
    .news-bl dt {
      float: none
    }
    .news-bl dd {
      padding: 8px 5px 5px
    }
  }
  
  .bg-greet {
    margin: 0 auto 0;
    max-width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    position: relative;
    z-index: 1;
    background: url(../img/page-title.jpg) no-repeat center/cover
  }
  
  @media all and (max-width: 800px) {
    .bg-greet {
      max-width: calc(100% - 15px)
    }
  }
  
  @media all and (max-width: 639px) {
    .bg-greet {
      background: url(../img/page-title.jpg) no-repeat 90%/cover
    }
  }
  
  .bg-greet:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #a2cc89;
    opacity: 0.6
  }
  
  .bg-greet .inner {
    margin: 0 auto;
    padding: 60px 0;
    max-width: 1200px
  }
  
  .bg-greet .inner>.mtitle {
    text-align: left;
    color: #fff;
    text-shadow: 0 0 8px rgba(52, 38, 18, 0.4);
    font-size: 3rem;
    margin-bottom: 0;
    margin-left: 10%
  }
  
  .bg-greet .inner>.mtitle span {
    display: inline-block;
    font-size: 5.5rem;
    padding-right: 30px;
    color: #fff
  }
  
  .bg-greet .inner>.mtitle span:first-letter {
    color: #fff
  }
  
  .bg-greet .inner>.mtitle:after {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(221, 221, 221, 0)), to(rgba(221, 221, 221, 0)));
    background-image: linear-gradient(to right, rgba(221, 221, 221, 0), rgba(221, 221, 221, 0))
  }
  
  @media all and (max-width: 800px) {
    .bg-greet .inner>.mtitle {
      padding-left: 15px;
      font-size: .9rem
    }
    .bg-greet .inner>.mtitle span {
      font-size: 2.5rem;
      padding-right: 10px;
      display: block
    }
  }
  
  @media all and (max-width: 800px) {
    .bg-greet {
      width: calc(100% - 20px);
      margin-top: 10px
    }
    .bg-greet .inner {
      width: 99%;
      padding: 60px 0 20px
    }
  }
  
  .top-bg {
    position: relative
  }
  
  .top-bg:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#daebd0), to(#a2cc89));
    background-image: linear-gradient(to bottom, #daebd0, #a2cc89);
    background: url(../img/greet-img.jpg) no-repeat center/cover
  }
  
  .bg-01 {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(51, 105, 155, 0.5)), color-stop(50%, rgba(51, 105, 155, 0.4)), color-stop(50.1%, #eacd9a), to(#eacd9a));
    background-image: linear-gradient(to right, rgba(51, 105, 155, 0.5) 0%, rgba(51, 105, 155, 0.4) 50%, #eacd9a 50.1%, #eacd9a 100%)
  }
  
  @media all and (max-width: 639px) {
    .bg-01 {
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(162, 204, 137, 0.4)), color-stop(55%, rgba(162, 204, 137, 0.4)), color-stop(55.1%, #eacd9a), to(#eacd9a));
      background-image: linear-gradient(to bottom, rgba(162, 204, 137, 0.4) 0%, rgba(162, 204, 137, 0.4) 55%, #eacd9a 55.1%, #eacd9a 100%)
    }
  }
  
  .bg-02 {
    position: relative
  }
  
  .bg-02:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #e4fff5), to(#f0faf7));
    background-image: linear-gradient(180deg, #fff 0%, #e4fff5 50%, #f0faf7 100%);
    background-position: 50%;
    z-index: -1
  }
  
  @media all and (max-width: 639px) {
    .bg-02:before {
      background-size: 160%
    }
  }
  
  .bg-03 {
    position: relative
  }
  
  .bg-03:before {
    position: absolute;
    content: "";
    width: 80%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f5f5f4
  }
  
  .bg-03.type1:before {
    left: auto;
    right: 0
  }
  
  .bg-03.type2:before {
    background: #EDEDED
  }
  
  .bg-04 {
    position: relative
  }
  
  .bg-04:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(16deg, rgba(116, 116, 116, 0.05) 0%, rgba(116, 116, 116, 0.05) 25%, transparent 25%, transparent 96%, rgba(177, 177, 177, 0.08) 96%, rgba(177, 177, 177, 0.08) 100%), linear-gradient(236deg, rgba(148, 148, 148, 0.04) 0%, rgba(148, 148, 148, 0.04) 53%, transparent 53%, transparent 59%, rgba(56, 56, 56, 0.02) 59%, rgba(56, 56, 56, 0.02) 100%), linear-gradient(284deg, rgba(16, 16, 16, 0.03) 0%, rgba(16, 16, 16, 0.03) 46%, transparent 46%, transparent 71%, rgba(181, 181, 181, 0.1) 71%, rgba(181, 181, 181, 0.1) 100%), linear-gradient(316deg, rgba(197, 197, 197, 0.02) 0%, rgba(197, 197, 197, 0.02) 26%, transparent 26%, transparent 49%, rgba(58, 58, 58, 0.02) 49%, rgba(58, 58, 58, 0.02) 100%), linear-gradient(90deg, #fefefe, #fefefe)
  }
  
  .bg-04.type1:before {
    background-image: linear-gradient(-164deg, rgba(162, 204, 137, 0.06) 0%, rgba(162, 204, 137, 0.06) 25%, transparent 25%, transparent 96%, rgba(162, 204, 137, 0.1) 96%, rgba(162, 204, 137, 0.1) 100%), linear-gradient(210deg, rgba(44, 167, 99, 0.09) 0%, rgba(44, 167, 99, 0.09) 53%, transparent 53%, transparent 59%, rgba(162, 204, 137, 0.06) 59%, rgba(162, 204, 137, 0.06) 100%), linear-gradient(255deg, rgba(44, 167, 99, 0.1) 0%, rgba(44, 167, 99, 0.1) 46%, transparent 46%, transparent 71%, rgba(162, 204, 137, 0.06) 71%, rgba(162, 204, 137, 0.06) 100%), linear-gradient(316deg, rgba(162, 204, 137, 0.08) 0%, rgba(162, 204, 137, 0.08) 26%, transparent 26%, transparent 49%, rgba(243, 243, 213, 0.6) 49%, rgba(243, 243, 213, 0.6) 100%), linear-gradient(90deg, #f6f6e1, #f6f6e1)
  }
  
  .title-bg {
    position: relative
  }
  
  .title-bg span {
    position: absolute;
    top: 2%;
    left: 2%;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12rem;
    color: #f3f3d5
  }
  
  @media all and (max-width: 1200px) {
    .title-bg span {
      font-size: 10rem
    }
  }
  
  @media all and (max-width: 800px) {
    .title-bg span {
      font-size: 6rem;
      letter-spacing: 0.05em
    }
  }
  
  @media all and (max-width: 639px) {
    .title-bg span {
      font-size: 4.5rem
    }
  }
  
  .title-bg.base span {
    color: #78b554
  }
  
  .title-bg.beige span {
    color: #f6f4eb
  }
  
  .title-bg.gray span {
    color: #dbdbdb
  }
  
  .title-bg.white span {
    color: #fff
  }
  
  .title-bg.center span {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%
  }
  
  .title-bg.right span {
    left: auto;
    right: 2%
  }
  
  .chosei {
    margin-bottom: 80px
  }
  
  @media all and (max-width: 800px) {
    .chosei {
      margin-bottom: 40px
    }
  }
  
  .chosei2 {
    margin-bottom: 40px
  }
  
  @media all and (max-width: 800px) {
    .chosei2 {
      margin-bottom: 30px
    }
  }
  
  .sec2-wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }
  
  .sec2-wrap .sec2-txt {
    width: 45%;
    padding: 90px 0 0 90px;
    position: relative;
    z-index: 2;
    line-height: 2;
    max-width: 750px;
    margin-left: auto
  }
  
  .sec2-wrap .sec2-img-wrap {
    position: relative;
    margin-left: auto;
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  
  .sec2-wrap .sec2-img-wrap .img-01 {
    width: 25%;
    aspect-ratio: 3/ 5;
    mix-blend-mode: multiply
  }
  
  .sec2-wrap .sec2-img-wrap .img-02 {
    width: 46%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    aspect-ratio: 5/ 3;
    -ms-flex-item-align: end;
    align-self: flex-end;
    position: relative
  }
  
  .sec2-wrap .sec2-img-wrap .img-02:before {
    position: absolute;
    content: "";
    right: 0;
    top: -50px;
    width: 50px;
    height: 50px;
    background: url(../img/deco02.png) no-repeat center/contain;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1)
  }
  
  .sec2-wrap .sec2-img-wrap .img-03 {
    width: 62%;
    aspect-ratio: 6/3.5;
    margin-right: auto
  }
  
  @media all and (max-width: 800px) {
    .sec2-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column
    }
    .sec2-wrap .sec2-txt {
      width: 100%;
      padding: 50px 20px 90px;
      margin-top: -400px;
      margin-left: 0
    }
    .sec2-wrap .sec2-txt li {
      background: #ffffff90;
      padding: 0 15px 15px
    }
    .sec2-wrap .sec2-img-wrap {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
      width: 60%;
      opacity: .7
    }
    .sec2-wrap .sec2-img-wrap .img-03 {
      margin-right: 0
    }
  }
  
  @media all and (max-width: 639px) {
    .sec2-wrap .sec2-img-wrap {
      width: 90%;
      mix-blend-mode: multiply;
      position: absolute;
      right: 0;
      top: 0
    }
    .sec2-wrap .sec2-img-wrap .img-01 {
      opacity: .8
    }
    .sec2-wrap .sec2-img-wrap .img-02 {
      opacity: .5
    }
    .sec2-wrap .sec2-img-wrap .img-03 {
      opacity: .6
    }
    .sec2-wrap .sec2-txt {
      width: 100%;
      margin-top: 30px;
      padding: 50px 30px 70px
    }
    .sec2-wrap .sec2-txt li {
      background: #ffffff70;
      padding: 0 5px 5px
    }
  }
  
  .img-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
  }
  
  .img-square {
    width: 60%;
    aspect-ratio: 13 / 7;
    margin: 30px auto
  }
  
  .img-square img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
  }
  
  @media all and (max-width: 639px) {
    .img-square {
      width: 80%;
      margin: 0px auto 30px
    }
  }
  
  .wave-img {
    height: 300px;
    position: relative;
    z-index: 2;
    overflow: hidden
  }
  
  .wave-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
  }
  
  .wave-img.wave01 {
    margin-top: -100px
  }
  
  .wave-img.wave01 img {
    -o-object-position: center bottom;
    object-position: center bottom
  }
  
  .wave-img.wave02 {
    margin-top: -80px;
    margin-bottom: -10px
  }
  
  .wave-img.wave02 img {
    -o-object-position: center top;
    object-position: center top
  }
  
  @media all and (max-width: 800px) {
    .wave-img {
      height: 200px
    }
  }
  
  @media all and (max-width: 639px) {
    .wave-img {
      height: 150px
    }
  }
  
  .bg-gradient {
    background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(254, 254, 254, 0.5)), color-stop(50%, rgba(238, 238, 238, 0.7)), to(rgba(170, 170, 170, 0.5)));
    background-image: linear-gradient(to right bottom, rgba(254, 254, 254, 0.5) 0%, rgba(238, 238, 238, 0.7) 50%, rgba(170, 170, 170, 0.5) 100%)
  }
  
  .bg-pattern {
    background: url(../img/back01.gif);
    background-size: 400px
  }
  
  .bg-base {
    background: rgba(162, 204, 137, 0.1)
  }
  
  .bg-sub {
    background: rgba(44, 167, 99, 0.1)
  }
  
  .bg-gray {
    background: #EDEDED
  }
  
  .bg-beige {
    background: rgba(246, 244, 235, 0.8)
  }
  
  .bg-beige2 {
    background: rgba(246, 244, 235, 0.5)
  }
  
  .tbl {
    width: 100%
  }
  
  .tbl th, .tbl td {
    padding: 5px;
    vertical-align: middle;
    border: 1px solid #a2cc89;
    text-align: center
  }
  
  .tbl th span, .tbl td span {
    font-size: 1rem;
    display: block
  }
  
  .tbl th {
    background: rgba(162, 204, 137, 0.3);
    font-weight: 500;
    color: #2ca763
  }
  
  .tbl .cell01 {
    width: 25%
  }
  
  .tbl_new {
    margin: 0 auto;
    width: 100%
  }
  
  @media all and (max-width: 1200px) {
    .tbl_new {
      width: 95%
    }
  }
  
  @media all and (max-width: 639px) {
    .tbl_new th {
      width: 36%
    }
  }
  
  .tbl_new tr th, .tbl_new tr td {
    vertical-align: middle;
    padding: 15px 10px
  }
  
  .tbl_new tr th {
    font-weight: 700;
    width: 27%;
    color: #2ca763;
    font-size: 1.1em
  }
  
  .tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
    background: rgba(243, 243, 213, 0.4)
  }
  
  .tbl-border {
    width: 100%;
    border-top: 1px solid #ccc
  }
  
  .tbl-border th, .tbl-border td {
    padding: 15px;
    border-bottom: 1px solid #ccc;
    vertical-align: middle
  }
  
  .tbl-border th {
    width: 25%;
    font-weight: 600;
    font-size: 1.1em;
    color: #ffffff;
    background: #2ca763;
    border-right: 1px solid #2ca763;
    text-align: center
  }
  
  @media all and (max-width: 639px) {
    .tbl-border th {
      width: 30%
    }
  }
  
  .company {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px
  }
  
  .company th, .company td {
    padding: 15px 10px;
    vertical-align: middle
  }
  
  .company th {
    text-align: left;
    width: 25%;
    position: relative;
    background: #33699b;
    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: #f9f9f9;
    border-width: 10px;
    border-left-color: #33699b;
    margin-top: -10px
  }
  
  .company td {
    background: #f9f9f9;
    padding-left: 20px
  }
  
  .company td a {
    color: #a2cc89;
    text-decoration: underline
  }
  
  .tbl0 {
    width: 100%
  }
  
  .tbl0 th, .tbl0 td {
    padding: 3px 5px;
    border: 0
  }
  
  .tbl0 th {
    padding-left: 0;
    font-weight: normal;
    background: none;
    width: 25%;
    color: #111
  }
  
  .tbl0 th:after, .tbl0 th:before {
    display: none
  }
  
  @media all and (max-width: 639px) {
    .tbl0 th {
      width: 40%
    }
  }
  
  .ggmap {
    position: relative;
    padding-bottom: 36.25%;
    height: 0;
    overflow: hidden
  }
  
  .ggmap iframe, .ggmap object, .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
  }
  
  .list_common li {
    padding-bottom: 5px;
    padding-left: 1rem;
    margin-bottom: 5px;
    border-bottom: 1px dotted #cccccc
  }
  
  .list_common li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
  }
  
  .list_check li {
    padding-bottom: 5px;
    font-weight: 600;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(52, 38, 18, 0.5)
  }
  
  .list_check li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: bold;
    margin-right: 10px;
    color: #33699b
  }
  
  @media all and (max-width: 639px) {
    .list_check li {
      width: 98%;
      margin: 0 auto 10px;
      font-size: 1.3rem
    }
  }
  
  .list_disc li {
    padding: 4px
  }
  
  .list_disc li:before {
    content: "●";
    color: #a2cc89;
    margin-right: 5px
  }
  
  .ol-list {
    counter-reset: number;
    list-style: none;
    margin: 0;
    padding: 0
  }
  
  .ol-list li {
    line-height: 2;
    border-bottom: 1px solid #aaa;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: 600
  }
  
  .ol-list li span {
    font-weight: normal;
    display: block;
    padding: 10px;
    line-height: 1.6
  }
  
  .ol-list li:before {
    counter-increment: number;
    content: counter(number);
    background: rgba(162, 204, 137, 0.3);
    display: inline-block;
    width: 2em;
    height: 2em;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    color: #222;
    margin-right: 0.3em
  }
  
  @media all and (max-width: 639px) {
    .ol-list li {
      font-size: 1.3rem
    }
    .ol-list li span {
      font-size: 0.9em
    }
    .ol-list li:before {
      width: 100%;
      font-size: 1.8rem;
      margin-right: 0;
      margin-bottom: .5rem
    }
  }
  
  .ol-list2 {
    counter-reset: number;
    list-style: none;
    padding: 5px
  }
  
  .ol-list2.type1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
  
  .ol-list2.type1>li {
    width: 48%
  }
  
  .ol-list2.type1>li:nth-child(2n) {
    margin-left: 4%
  }
  
  @media all and (max-width: 639px) {
    .ol-list2.type1>li {
      width: 100%
    }
    .ol-list2.type1>li:nth-child(2n) {
      margin-left: 0
    }
  }
  
  .ol-list2 li {
    line-height: 2;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-weight: 600;
    font-size: 1.8rem;
    color: #333;
    border-bottom: 1px solid #a2cc89
  }
  
  .ol-list2 li:last-child {
    border-bottom: none
  }
  
  .ol-list2 li .small {
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
    color: #333
  }
  
  @media all and (max-width: 639px) {
    .ol-list2 li .small {
      font-size: 1.1rem
    }
  }
  
  .ol-list2 li:before {
    counter-increment: number;
    content: counter(number) ".";
    display: inline-block;
    text-align: center;
    color: #86bd65;
    font-size: 3rem;
    line-height: 1.3;
    margin-right: 5px;
    border-radius: 100%
  }
  
  @media all and (max-width: 639px) {
    .ol-list2 li {
      font-size: 1.3rem
    }
    .ol-list2 li span {
      font-size: 0.9em
    }
    .ol-list2 li:before {
      font-size: 1.8rem
    }
  }
  
  .list-inline li {
    display: inline-block;
    padding: 3px
  }
  
  .list-inline li:not(:last-of-type):after {
    content: "/";
    margin: 0 5px;
    color: #a2cc89;
    font-weight: normal
  }
  
  @media all and (max-width: 639px) {
    .list-inline li {
      display: block;
      padding: 0
    }
    .list-inline li:before {
      content: "-";
      color: #a2cc89
    }
    .list-inline li:not(:last-of-type):after {
      display: none
    }
  }
  
  .menu-list {
    margin-bottom: 30px
  }
  
  .menu-list.non {
    margin-bottom: 0px
  }
  
  .menu-list>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 4px
  }
  
  .menu-list>li p {
    display: inline-block;
    line-height: 1.5;
    font-weight: 400
  }
  
  .menu-list>li:before {
    background: radial-gradient(#aaa 20%, transparent 0) center center/8px 8px;
    content: '';
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    margin: 0 1.2em
  }
  
  @media all and (max-width: 639px) {
    .menu-list>li:before {
      margin: 0 5px
    }
  }
  
  .menu-list>li .left {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    max-width: 60%
  }
  
  .menu-list>li .left .small {
    color: #a2cc89;
    padding-left: 5px;
    display: block
  }
  
  .menu-list>li .left .small:before {
    content: "["
  }
  
  .menu-list>li .left .small:after {
    content: "]"
  }
  
  @media all and (max-width: 639px) {
    .menu-list>li .left {
      font-size: 1.6rem;
      max-width: 65%
    }
    .menu-list>li .left .small {
      font-size: 1rem
    }
  }
  
  .menu-list>li .right {
    width: 20%
  }
  
  .price {
    font-weight: bold;
    color: #760001;
    padding: 0 4px
  }
  
  .price2 {
    text-align: center;
    margin: 8px 0
  }
  
  .price2 span {
    font-weight: 600;
    color: #2ca763;
    font-size: 1.1em
  }
  
  .list-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  
  .list-center li {
    max-width: 250px
  }
  
  .list-center li:not(:last-child) {
    margin: 0 5px 5px
  }
  
  @media all and (max-width: 639px) {
    .list-center li {
      width: 220px
    }
    .list-center li:not(:last-child) {
      margin: 0 0 5px
    }
  }
  
  .blog-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
  
  .blog-wrap * {
    -webkit-transition: 0.3s;
    transition: 0.3s
  }
  
  .blog-wrap>li {
    width: 32%;
    margin: 0 0.5% 15px 0.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    background: #fefefe;
    border: 1px solid #e6e1c8;
    position: relative
  }
  
  @media all and (max-width: 1200px) {
    .blog-wrap>li {
      width: 49%
    }
  }
  
  .blog-wrap>li>a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
  }
  
  .blog-wrap>li>a:hover~.blog-img img {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
  }
  
  @media all and (max-width: 639px) {
    .blog-wrap>li {
      width: 90%;
      margin: 0 auto 10px
    }
  }
  
  .blog-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ccc
  }
  
  .blog-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-family: "object-fit: cover;"
  }
  
  .blog-img:hover img {
    opacity: 1 !important;
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
  }
  
  .blog-date {
    color: #a2cc89;
    background: #a2cc89;
    color: #fff;
    width: 100px;
    padding: 8px 5px;
    line-height: 1.3;
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 10px;
    display: block
  }
  
  .blog-date .year {
    margin-top: 10px;
    display: block;
    font-size: 1.5rem
  }
  
  .blog-date .month {
    font-size: 1.2rem
  }
  
  .blog-date .day {
    font-size: 1.8rem;
    display: inline-block
  }
  
  .blog-date .day:before {
    content: "/";
    padding: 0 3px 0 0
  }
  
  .blog-date2 {
    color: #78b554;
    font-size: 0.9em;
    margin-bottom: 5px;
    margin-right: 5px
  }
  
  .blog-date2:before {
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    margin-right: 5px
  }
  
  .blog-title {
    font-weight: 600;
    color: #342612;
    line-height: 1.3;
    border-left: 1px solid rgba(52, 38, 18, 0.3);
    padding-left: 15px;
    margin-bottom: 10px
  }
  
  .blog-txt {
    font-size: 14px;
    line-height: 1.5;
    color: #a2cc89
  }
  
  @media all and (max-width: 639px) {
    .blog-txt {
      font-size: 12px
    }
  }
  
  .pages {
    text-align: center;
    margin-top: 30px
  }
  
  .pages .page_next, .pages .page_prev {
    display: inline;
    margin: 0 20px
  }
  
  .pages .page_next a, .pages .page_prev a {
    color: #6ba748;
    padding: 3px 5px;
    background: #fff
  }
  
  .category_nav {
    border: 1px solid #dddddd
  }
  
  .category_nav li a {
    display: block;
    padding: 15px;
    border-bottom: 1px dotted #dddddd;
    background-color: #ffffff
  }
  
  .category_nav li a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0a9";
    font-weight: bold;
    margin-right: 5px
  }
  
  .category_nav li a:hover {
    background: #EDEDED
  }
  
  .category_nav li:last-child a {
    border-bottom: none
  }
  
  .cut {
    overflow: hidden;
    zoom: 1
  }
  
  .w300 {
    width: 300px
  }
  
  .spbr {
    display: none
  }
  
  .color1 {
    color: #a2cc89
  }
  
  .color2 {
    color: #2ca763
  }
  
  .color3 {
    color: #33699b
  }
  
  .color4 {
    color: #f33d10
  }
  
  .num a {
    color: #342612;
    font-weight: 600;
    font-size: 2.7rem;
    text-align: center
  }
  
  @media all and (max-width: 639px) {
    .num a {
      font-size: 2rem
    }
  }
  
  .num a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    font-weight: bold;
    margin-right: 5px
  }
  
  .num a:hover {
    color: #33699b
  }
  
  .telbox {
    max-width: 700px;
    margin: 0 auto 20px;
    padding: 20px;
    background: #eee;
    text-align: center
  }
  
  .telbox .inner {
    background: #fff;
    padding: 10px
  }
  
  .breadcrumb {
    max-width: 1200px;
    margin: 20px auto 20px;
    font-size: 1.2rem
  }
  
  .breadcrumb li {
    display: inline;
    color: #555
  }
  
  .breadcrumb li a {
    color: #a2cc89
  }
  
  .breadcrumb li+li:before {
    margin: 0 10px;
    content: ">"
  }
  
  .form {
    margin: 0 auto;
    width: 90%
  }
  
  .form dl dt {
    float: left;
    width: 280px;
    padding-top: 20px;
    font-weight: 600
  }
  
  .form dl dt span {
    color: #fff;
    background: #a2cc89;
    padding: 5px 10px;
    margin-right: 5px;
    font-size: 11px;
    border-radius: 15px;
    position: relative;
    top: -2px
  }
  
  .form dl dd {
    padding-left: 280px;
    padding-bottom: 20px;
    padding-top: 23px;
    line-height: 1.5;
    border-bottom: 1px dotted #cccccc
  }
  
  .form dl dd:last-child {
    border-bottom: none
  }
  
  .form .textarea, .form textarea {
    border: 1px solid #ddd;
    padding: 5px;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none
  }
  
  .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 {
    cursor: pointer;
    display: block;
    color: #111;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 8px 5px;
    margin: 0 auto;
    width: 250px;
    background: #a2cc89;
    border: 1px solid #a2cc89;
    border-radius: 25px;
    color: #fff
  }
  
  .form button:hover {
    background: #fff;
    color: #a2cc89
  }
  
  .form button:before {
    font-weight: normal;
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-weight: bold;
    margin-right: 10px
  }
  
  .form .select-wrap {
    position: relative;
    overflow: hidden;
    display: inline-block;
    min-width: 192px;
    min-width: 12em;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    color: #333
  }
  
  .form .select-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 2;
    display: block;
    width: 200%;
    width: -webkit-calc(100% + 5em);
    margin: 0;
    padding: 11px 35px 11px 11px;
    padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
    background: transparent;
    border: 0;
    outline: none;
    line-height: 1.5
  }
  
  .form .entypo-down-open-mini:before {
    font-family: "FontAwesome";
    content: "\f0ab";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    right: 0.75rem;
    margin-top: -8px;
    margin-top: -0.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    color: #a2cc89
  }
  
  .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: 17px;
    height: 17px;
    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: #a2cc89;
    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 #fff;
    box-shadow: 20px -1px #fff
  }
  
  .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: 0 20px 5px 0;
    overflow: hidden;
    display: inline-block
  }
  
  .form label.checkbox_text:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 0px;
    top: 0;
    border: 1px solid #ccc;
    z-index: 3;
    padding: 1px
  }
  
  .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 #a2cc89;
    border-bottom: 3px solid #a2cc89;
    -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
  }
  
  .fm-txt {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px
  }
  
  .memo {
    border: 2px solid rgba(246, 244, 235, 0.5);
    background: url(../img/bg01.jpg);
    padding: 15px
  }
  
  .thanks {
    padding: 40px;
    border: 3px solid #a2cc89;
    -webkit-box-shadow: 0 0 0 8px rgba(162, 204, 137, 0.2);
    box-shadow: 0 0 0 8px rgba(162, 204, 137, 0.2);
    max-width: 700px;
    margin: 0 auto;
    background: #fefefe
  }
  
  @media all and (max-width: 639px) {
    .thanks {
      max-width: 90%;
      padding: 30px 20px
    }
  }
  
  .shadow {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15)
  }
  
  .policy {
    padding: 30px;
    background: #fff;
    border-top: 0;
    margin-top: 30px;
    border-radius: 20px
  }
  
  .mtitle_small {
    position: relative;
    font-size: 2rem;
    color: #33699b;
    line-height: 1.4;
    margin-bottom: 30px
  }
  
  .mtitle_small:before {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #a2cc89;
    position: absolute;
    left: 0;
    bottom: -15px
  }
  
  @media all and (max-width: 639px) {
    .mtitle_small {
      font-size: 1.4rem
    }
  }
  
  .mtitle_small2 {
    position: relative;
    margin-bottom: 10px;
    padding-left: 2rem;
    font-size: 2rem
  }
  
  .mtitle_small2:before {
    content: "";
    background-color: #a2cc89;
    width: 10px;
    height: 4px;
    position: absolute;
    top: 0.6em;
    left: 0
  }
  
  .gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
  
  .gallery li {
    width: calc((100% - 20px) / 3);
    margin: 0 10px 20px 0
  }
  
  @media all and (-ms-high-contrast: none) {
    .gallery li {
      width: 32%
    }
  }
  
  .gallery li:nth-child(3n) {
    margin-right: 0
  }
  
  .gallery li a {
    background: rgba(246, 244, 235, 0.2);
    display: block;
    text-align: center;
    padding: 0px;
    height: 240px
  }
  
  .gallery li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    border-radius: 20px
  }
  
  .gallery li p {
    font-size: 13px;
    margin: 3px 0 10px
  }
  
  @media all and (max-width: 800px) {
    .gallery li {
      width: 48%;
      margin: 0 1% 20px
    }
    .gallery li:nth-child(2n) {
      margin-right: 0
    }
    .gallery li:nth-child(3n) {
      margin: 0 1% 20px
    }
    .gallery li a {
      height: 120px
    }
  }
  
  .top-works-gallery li a {
    background: rgba(246, 244, 235, 0.2);
    display: block;
    text-align: center;
    padding: 0px;
    height: 220px
  }
  
  .top-works-gallery li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;"
  }
  
  @media all and (max-width: 639px) {
    .top-works-gallery li a {
      height: 140px
    }
  }
  
  .list2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
  
  .list2.js-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
  
  .list2.jc-b {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
  
  .list2.type1 li {
    background: #fff;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    padding: 15px
  }
  
  .list2>li, .list2 .child {
    width: 48%;
    margin: 0 1% 35px
  }
  
  .list2>li img, .list2 .child img {
    width: 100%;
    margin-bottom: 20px
  }
  
  @media all and (max-width: 639px) {
    .list2>li, .list2 .child {
      width: 100%;
      margin: 0 auto 20px
    }
  }
  
  .list2.type2 {
    margin: 20px 0
  }
  
  .list2.type2>li, .list2.type2 .child {
    margin: 0 1% 15px;
    background: #2ca763;
    color: #fff;
    padding: 10px;
    font-size: 2rem
  }
  
  .list2.type2>li:before, .list2.type2 .child:before {
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    font-weight: bold;
    margin: 0 10px
  }
  
  @media all and (max-width: 639px) {
    .list2.type2>li, .list2.type2 .child {
      font-size: 1.2rem
    }
  }
  
  .list2.type03>li, .list2.type03 .child {
    width: 45%;
    margin: 0 2% 35px
  }
  
  .list2.type03>li img, .list2.type03 .child img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 30px
  }
  
  @media all and (max-width: 639px) {
    .list2.type03>li, .list2.type03 .child {
      width: 100%;
      margin: 0 auto 20px
    }
  }
  
  .list3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
  
  .list3.js-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
  
  .list3>li, .list3 .child {
    width: 31%;
    margin: 0 calc(2.33% + (2.33% / 2)) 30px 0
  }
  
  .list3>li:nth-child(3n), .list3 .child:nth-child(3n) {
    margin-right: 0
  }
  
  @media all and (max-width: 639px) {
    .list3>li:nth-child(3n), .list3 .child:nth-child(3n) {
      margin-right: auto
    }
  }
  
  @media all and (max-width: 639px) {
    .list3>li, .list3 .child {
      width: 95%;
      margin: 0 auto 20px
    }
  }
  
  .list4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
  
  .list4.js-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
  
  .list4>li, .list4 .child {
    width: 20%;
    margin: 0 1% 30px 0
  }
  
  .list4>li:nth-child(4n), .list4 .child:nth-child(4n) {
    margin-right: 0
  }
  
  @media all and (max-width: 639px) {
    .list4>li:nth-child(4n), .list4 .child:nth-child(4n) {
      margin-right: auto
    }
  }
  
  @media all and (max-width: 800px) {
    .list4>li, .list4 .child {
      width: 48%;
      margin: 0 auto 20px
    }
  }
  
  @media all and (max-width: 639px) {
    .list4>li, .list4 .child {
      width: 95%;
      margin: 0 auto 50px
    }
  }
  
  .mtitle-check {
    margin: 20px auto;
    font-weight: 600;
    margin: 0 auto 15px;
    background: #2ca763;
    color: #fff;
    padding: 5px 10px;
    font-size: 2rem;
    max-width: 400px
  }
  
  .mtitle-check:before {
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    font-weight: bold;
    margin: 0 10px
  }
  
  @media all and (max-width: 639px) {
    .mtitle-check {
      font-size: 1.5rem
    }
  }
  
  .prv dt {
    color: #a2cc89;
    border-bottom: 1px solid #ccc;
    margin: 10px 0
  }
  
  .top-business-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1500px;
    margin: 30px auto 0
  }
  
  .top-business-list li {
    width: 23%;
    margin: 0 calc(.23% + (.23% / 2)) 50px 0;
    position: relative
  }
  
  .top-business-list li:nth-child(3n) {
    margin-right: 0
  }
  
  @media all and (max-width: 639px) {
    .top-business-list li:nth-child(3n) {
      margin-right: auto
    }
  }
  
  .top-business-list li img {
    width: 100%;
    border: 4px solid #fefefe;
    border-radius: 30px
  }
  
  .top-business-list li img:hover {
    opacity: .5;
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out
  }
  
  @media all and (max-width: 1200px) {
    .top-business-list li {
      width: 48%;
      margin: 0 calc(.33% + (.33% / 2)) 50px 0
    }
    .top-business-list li:nth-child(2n) {
      margin-right: 0
    }
  }
  
  @media all and (max-width: 639px) {
    .top-business-list li {
      width: 90%;
      margin: 0 auto 30px
    }
    .top-business-list li:nth-child(2n) {
      margin: 0 auto 30px
    }
    .top-business-list li:nth-child(3n) {
      margin: 0 auto 30px
    }
  }
  
  .top-business-list .top-business-txt {
    position: relative;
    max-width: 90%;
    background: #fefefe;
    z-index: 2;
    margin: -30px auto 0;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    border: 2px solid #a2cc89
  }
  
  .top-business-list .top-business-txt .title {
    line-height: 1.5;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
    color: #a2cc89
  }
  
  @media all and (max-width: 639px) {
    .top-business-list .top-business-txt .title {
      font-size: 1.5rem;
      line-height: 2
    }
  }
  
  .top-business-list .top-business-txt .cap {
    font-size: 1.3rem;
    font-family: "Noto Sans JP", sans-serif;
    padding: 30px 0 0;
    font-weight: 400
  }
  
  @media all and (max-width: 639px) {
    .top-business-list .top-business-txt {
      padding: 15px;
      margin-top: -20px
    }
  }
  
  .topbnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto 0;
    max-width: 1500px
  }
  
  .topbnr li {
    width: 24%;
    margin-bottom: 25px;
    -webkit-box-shadow: 0 0 0 2px #a2cc89;
    box-shadow: 0 0 0 2px #a2cc89;
    overflow: hidden;
    position: relative
  }
  
  @media all and (max-width: 1200px) {
    .topbnr li:nth-child(4n) {
      margin-right: 1%
    }
  }
  
  @media all and (max-width: 639px) {
    .topbnr li:nth-child(4n) {
      margin-right: auto
    }
  }
  
  .topbnr li img {
    width: 100%
  }
  
  .topbnr li:before {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 0;
    height: 0;
    border-bottom: 18px solid transparent;
    border-left: 18px solid transparent;
    border-right: 18px solid #33699b;
    border-top: 18px solid #a2cc89;
    z-index: 20
  }
  
  .topbnr li:hover {
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in
  }
  
  @media all and (max-width: 1200px) {
    .topbnr li {
      width: 48%;
      margin: 0 1% 3%
    }
  }
  
  @media all and (max-width: 639px) {
    .topbnr li {
      width: 95%;
      margin: 0 auto 25px
    }
  }
  
  .top-bnr-wrap {
    position: relative
  }
  
  .top-bnr-wrap .caption {
    padding: 10px
  }
  
  .top-bnr-wrap a {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    z-index: 10
  }
  
  .top-bnr-wrap .top-bnr-title {
    position: relative;
    display: block;
    background: #555;
    color: #fefefe;
    letter-spacing: 0.2rem;
    border-top: 4px solid #a2cc89;
    text-align: center;
    font-size: 2.2rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 15px 0
  }
  
  @media all and (max-width: 639px) {
    .top-bnr-wrap .top-bnr-title {
      font-size: 1.5rem
    }
  }
  
  .top-bnr-wrap:hover a {
    cursor: pointer
  }
  
  .top-bnr-wrap:hover .top-bnr-title {
    background: #a2cc89;
    color: #ffe151
  }
  
  .top-cont02 {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%
  }
  
  .top-cont02 .inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
  
  .top-cont02 .inner .top-cont02-img {
    width: 45%
  }
  
  .top-cont02 .inner .top-cont02-img .img01 {
    z-index: 0;
    width: 90%
  }
  
  .top-cont02 .inner .top-cont02-img .img02 {
    width: 45%;
    z-index: 1;
    margin-top: -60px;
    margin-left: auto
  }
  
  .top-cont02 .inner .top-cont02-txt {
    width: 50%
  }
  
  .top-cont02 .inner .top-cont02-txt p+p {
    margin-top: 15px
  }
  
  @media all and (max-width: 800px) {
    .top-cont02 .inner {
      max-width: 650px;
      margin-left: auto;
      margin-right: auto
    }
    .top-cont02 .inner .top-cont02-img {
      width: 100%;
      margin-bottom: 20px;
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1
    }
    .top-cont02 .inner .top-cont02-img .img02 {
      margin-top: -80px;
      max-width: 350px
    }
    .top-cont02 .inner .top-cont02-txt {
      width: 100%;
      margin: auto
    }
    .top-cont02 .inner .top-cont02-txt p+p {
      margin-top: 10px
    }
  }
  
  @media all and (max-width: 639px) {
    .top-cont02 .inner {
      max-width: calc(100% - 10px)
    }
    .top-cont02 .inner .top-cont02-img .img02 {
      margin-top: -40px;
      max-width: 300px
    }
  }
  
  .top-intro {
    position: relative;
    padding: 5em auto 8em
  }
  
  .top-intro.type-contact:before {
    background: url(../img/flow01.jpg) no-repeat 50% 100%/cover
  }
  
  .top-intro.type-contact:after {
    display: none
  }
  
  .top-intro.type-contact .top-box2 {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1)
  }
  
  .top-intro:before {
    right: 8%;
    top: 5%;
    background: url(../img/4.jpg) no-repeat 50% 100%/cover;
    position: absolute;
    content: "";
    width: 40%;
    height: 60%;
    z-index: -1;
    opacity: 0.8
  }
  
  @media all and (max-width: 800px) {
    .top-intro:before {
      background-size: cover;
      background-position: 70% 70%;
      height: 55%;
      width: 100%;
      top: 5%
    }
  }
  
  @media all and (max-width: 639px) {
    .top-intro:before {
      background-size: cover;
      background-position: 70% 100%;
      height: 50%;
      width: 100%
    }
  }
  
  .top-intro:after {
    left: 8%;
    top: 7%;
    background: url(../img/top-intro-after.png) no-repeat 50% 100%/cover;
    position: absolute;
    content: "";
    width: 20%;
    height: 30%;
    z-index: -1;
    opacity: 0.3
  }
  
  @media all and (max-width: 800px) {
    .top-intro:after {
      background-size: cover;
      background-position: 70% 70%;
      height: 25%;
      width: 35%;
      z-index: 10;
      top: 35%;
      left: auto;
      right: 0%
    }
  }
  
  @media all and (max-width: 639px) {
    .top-intro:after {
      background-size: cover;
      background-position: 70% 100%;
      height: 20%;
      width: 30%;
      z-index: 10;
      top: 30%;
      left: auto;
      right: 5%
    }
  }
  
  .top-intro.concept {
    margin: 6em auto 6em
  }
  
  .top-intro.concept:before {
    left: 15%;
    right: auto;
    background: url(../img/bg-concept.jpg) no-repeat center/cover
  }
  
  @media all and (max-width: 639px) {
    .top-intro.concept:before {
      left: 0
    }
  }
  
  .top-intro.concept .top-box {
    margin: 30px 20px 30px auto
  }
  
  @media all and (max-width: 639px) {
    .top-intro.concept .top-box {
      margin-top: 180px
    }
  }
  
  .top-intro_title {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    position: absolute;
    text-align: left;
    font-size: 6rem;
    line-height: 1.3;
    left: 2%;
    top: 50px;
    font-weight: normal;
    white-space: nowrap;
    z-index: 3
  }
  
  @media all and (max-width: 639px) {
    .top-intro_title {
      -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
      writing-mode: initial;
      font-size: 3rem;
      top: 20px;
      left: 0
    }
    .top-intro_title:before {
      left: 0;
      top: 50%;
      width: 100px;
      height: 70px;
      margin: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%)
    }
  }
  
  .top-box2 {
    max-width: 700px;
    background: #fff;
    padding: 45px 35px;
    position: relative;
    z-index: 5;
    margin: 130px auto 30px 45px;
    position: relative;
    line-height: 2;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", sans-serif
  }
  
  @media all and (max-width: 800px) {
    .top-box2 {
      max-width: 80%;
      padding: 20px;
      margin-top: 180px;
      margin-bottom: 0
    }
  }
  
  @media all and (max-width: 639px) {
    .top-box2 {
      max-width: 90%;
      font-size: 1.1rem;
      margin-top: 180px;
      margin-bottom: 0
    }
  }
  
  .top-box {
    max-width: 750px;
    margin: 30px auto;
    background: #fefefe;
    padding: 25px;
    border: 1px dashed #a2cc89
  }
  
  @media all and (max-width: 639px) {
    .top-box {
      max-width: 95%;
      padding: 15px
    }
  }
  
  .base {
    color: #a2cc89
  }
  
  .top-recruit {
    background: url(../img/top-recruit.jpg) no-repeat center/cover
  }
  
  .top-recruit .top-recruit-box {
    max-width: 600px;
    margin-left: auto;
    padding: 35px 25px;
    background: rgba(254, 254, 254, 0.9);
    font-size: 1.7rem;
    line-height: 2
  }
  
  @media all and (max-width: 639px) {
    .top-recruit {
      padding: 25px 0
    }
    .top-recruit .top-recruit-box {
      width: 90%;
      margin: 0 auto;
      padding: 20px;
      font-size: 1.3rem
    }
  }
  
  .notion {
    margin: -30px auto 20px;
    text-align: center
  }
  
  .notion span {
    background: #264f75;
    color: #fefefe;
    font-size: 1.8rem;
    padding: 10px 40px
  }
  
  .note {
    padding: 15px;
    margin-top: 10px;
    background: #f6f4eb;
    max-width: 700px;
    margin: 35px auto 0;
    border: 6px solid #fefefe
  }
  
  .flow-dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px 0
  }
  
  .flow-dl dt {
    background: #a2cc89;
    font-size: 3rem;
    color: #fff;
    width: 50px;
    text-align: center;
    margin-right: 20px
  }
  
  .flow-dl dt span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: -10px
  }
  
  .flow-dl dd {
    width: calc(100% - 80px)
  }
  
  .flow-dl dt:not(:last-child), .flow-dl dd:not(:last-child) {
    margin-bottom: 20px
  }
  
  .txt1 {
    padding-left: 10px
  }
  
  .fee-box {
    margin: 10px 0 20px;
    font-weight: 600;
    background: lemonchiffon;
    padding: 5px
  }
  
  .fee-box span {
    display: block;
    font-weight: normal
  }
  
  .blog-month {
    margin-bottom: 10px
  }
  
  .blog-month ul li {
    border: 1px solid #33699b;
    padding: 5px 0;
    margin-bottom: 5px;
    text-align: center;
    letter-spacing: 0;
    background: lemonchiffon
  }
  
  .blog-month ul li a {
    color: #342612
  }
  
  #a01, #a02, #a03, #a04, #a05, #a06 {
    display: block;
    padding-top: 70px;
    margin-top: -70px
  }
  
  .greet-wrap {
    position: relative;
    padding: 80px 0 30px;
    margin-top: 50px
  }
  
  .greet-wrap:before {
    position: absolute;
    content: "";
    width: 85%;
    height: 100%;
    left: 50%;
    top: 0;
    background: url(../img/greet-img.jpg) no-repeat center/cover;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
  }
  
  @media all and (max-width: 639px) {
    .greet-wrap:before {
      width: 95%;
      height: 90%
    }
  }
  
  .greet-box {
    max-width: 800px;
    color: #fefefe;
    padding: 25px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    line-height: 1.9;
    position: relative
  }
  
  @media all and (max-width: 800px) {
    .greet-box {
      width: 70%;
      padding: 15px;
      font-size: 1.1rem
    }
  }
  
  @media all and (max-width: 639px) {
    .greet-box {
      width: 95%
    }
  }
  
  .greet_lead {
    font-size: 2.5rem;
    color: #86bd65;
    text-align: center;
    margin-bottom: 10px
  }
  
  @media all and (max-width: 639px) {
    .greet_lead {
      font-size: 1.3rem
    }
  }
  
  .list-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  
  .list-center li {
    max-width: 250px
  }
  
  .list-center li:not(:last-child) {
    margin: 0 5px 5px
  }
  
  @media all and (max-width: 639px) {
    .list-center li {
      width: 220px
    }
    .list-center li:not(:last-child) {
      margin: 0 0 5px
    }
  }
  
  .side-list li {
    max-width: 200px;
    margin: 0 auto
  }
  
  .side-list li img {
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in
  }
  
  .side-list li:hover img {
    -webkit-transform: translateY(5px);
    transform: translateY(5px)
  }
  
  @media all and (max-width: 800px) {
    .side-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-pack: distribute;
      justify-content: space-around
    }
    .side-list li {
      max-width: initial;
      width: 24%
    }
  }
  
  @media all and (max-width: 639px) {
    .side-list li {
      width: 48%;
      margin-bottom: 10px
    }
  }
  
  .faq-dl .faq-inner {
    padding: 10px;
    margin-bottom: 20px
  }
  
  .faq-dl .faq-inner:not(:last-of-type) {
    margin-bottom: 35px;
    padding-bottom: 20px;
    background: url(../img/bg-border.png) repeat-x left bottom
  }
  
  .faq-dl .faq-inner dt, .faq-dl .faq-inner dd {
    position: relative;
    padding: 10px 10px 10px 55px
  }
  
  .faq-dl .faq-inner dt:before, .faq-dl .faq-inner dd:before {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    left: 0;
    top: 0
  }
  
  .faq-dl .faq-inner dt {
    margin-bottom: 10px
  }
  
  .faq-dl .faq-inner dt:before {
    content: "Q";
    color: #a2cc89;
    font-size: 3rem;
    background: rgba(162, 204, 137, 0.2)
  }
  
  .faq-dl .faq-inner dt:hover {
    background: rgba(162, 204, 137, 0.1)
  }
  
  .faq-dl .faq-inner dd {
    background: rgba(255, 225, 81, 0.1);
    margin-bottom: 10px
  }
  
  .faq-dl .faq-inner dd:before {
    content: "A";
    color: #eac200;
    font-size: 3rem;
    background: rgba(255, 225, 81, 0.2)
  }
  
  .content-top {
    position: relative;
    height: 500px;
    margin-bottom: 50px
  }
  
  .content-top:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 800px;
    height: 100%
  }
  
  .content-top.content-01:before {
    background: url(../img/content-01.jpg) no-repeat center/cover
  }
  
  .content-top.content-02:before {
    background: url(../img/content-02.jpg) no-repeat center/cover
  }
  
  .content-top.content-03:before {
    background: url(../img/content-03.jpg) no-repeat center/cover
  }
  
  .content-top .inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 25px;
    margin: 0px 10px 0px auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    background: #fefefe
  }
  
  @media all and (max-width: 639px) {
    .content-top {
      padding: 40px 0;
      height: auto
    }
    .content-top:before {
      width: 100%
    }
    .content-top .inner {
      padding: 30px 15px;
      margin: 0 auto 80px;
      max-width: 90%;
      background: rgba(254, 254, 254, 0.7);
      top: auto;
      -webkit-transform: inherit;
      transform: inherit
    }
  }
  
  .point-title {
    position: relative;
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    border-bottom: 1px solid #f33d10;
    line-height: 1.3;
    margin-bottom: 15px
  }
  
  .point-title span {
    color: #f33d10;
    font-size: 4rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500
  }
  
  @media all and (max-width: 639px) {
    .point-title {
      font-size: 1.6rem
    }
    .point-title span {
      font-size: 2.2rem
    }
  }
  
  .slider1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 0px;
    background-repeat: repeat
  }
  
  .slider1 .viewport {
    width: 100%;
    margin: 0 auto;
    height: 230px;
    position: relative
  }
  
  .slider1 .buttons {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    position: absolute;
    top: 30%;
    left: 0;
    width: 10px;
    height: 10px;
    color: #a2cc89;
    text-decoration: none;
    margin: 0 5px;
    z-index: 5;
    cursor: pointer;
    font-size: 60px
  }
  
  .slider1 .next {
    right: 10px;
    left: auto;
    top: 30%
  }
  
  .slider1 .buttons:hover {
    opacity: 0.6
  }
  
  .slider1 .disable {
    visibility: hidden
  }
  
  .slider1 .overview {
    list-style: none;
    position: absolute;
    padding: 0;
    margin: 0;
    width: 180px;
    left: 0;
    top: -1px
  }
  
  .slider1 .overview li {
    width: 230px;
    height: 300px;
    float: left;
    text-align: center;
    vertical-align: middle;
    display: table;
    z-index: 99999;
    overflow: hidden;
    font-weight: bold
  }
  
  .slider1 img {
    width: 230px;
    height: 240px;
    padding-bottom: 5px;
    vertical-align: middle;
    text-align: center;
    -o-object-fit: cover;
    object-fit: cover
  }
  
  .slider1 li p {
    width: 230px;
    height: 0px;
    text-align: center;
    color: #a2cc89 !important;
    font-weight: bold;
    font-size: 13px !important;
    border-radius: 10px
  }
  
  #blog_flexwrap {
    color: #222222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin: 40px auto
  }
  
  @media (max-width: 960px) {
    #blog_flexwrap {
      width: calc(100% - 16px)
    }
  }
  
  #blog_flexwrap #blog_side {
    width: 300px;
    margin-left: 40px
  }
  
  #blog_flexwrap #blog_side section {
    margin-bottom: 25px
  }
  
  #blog_flexwrap #blog_main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
  }
  
  #blog_flexwrap #blog_main section {
    padding: 24px;
    margin-bottom: 25px
  }
  
  .blog_sttl01 {
    text-indent: 5px;
    border-top: 1px dashed #a2cc89;
    border-bottom: 1px dashed #a2cc89;
    color: #a2cc89;
    background: #fff;
    padding: 5px 0;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: center
  }
  
  .blog_mttl {
    width: calc(100% - 20px);
    color: #a2cc89;
    font-size: 2.3rem;
    letter-spacing: 0.1rem;
    overflow: hidden;
    font-weight: bold;
    margin: 0px 0 16px;
    line-height: 1.8
  }
  
  @media (max-width: 1200px) {
    .blog_mttl {
      font-size: 1.8rem
    }
  }
  
  .blog_time {
    padding-top: 0px;
    font-weight: normal;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: right
  }
  
  @media (max-width: 479px) {
    .blog_time {
      font-size: 1.2rem
    }
  }
  
  .blog_time:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin-right: 5px;
    font-weight: normal
  }
  
  .blog_box {
    min-height: 500px;
    position: relative
  }
  
  .blog_box img {
    max-width: 100%;
    padding: 16px 0
  }
  
  .pages {
    width: calc(100% - 20px);
    margin-top: 40px;
    font-size: 1.2rem
  }
  
  .pages a {
    display: block;
    padding: 5px 10px;
    border: 1px solid #a2cc89;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }
  
  .pages a:link, .pages a:visited {
    color: #a2cc89
  }
  
  .pages a:hover {
    opacity: 0.6
  }
  
  .pages .page_next {
    float: left;
    width: calc(45% - 20px)
  }
  
  .pages .page_prev {
    float: right;
    text-align: right;
    width: calc(45% - 20px)
  }
  
  .archive * {
    -webkit-transition: 0.3s;
    transition: 0.3s
  }
  
  .archive ul {
    margin: 8px 0 0
  }
  
  .archive li {
    background: #f6f4eb;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px;
    background: #fff
  }
  
  .archive li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px
  }
  
  .archive li a:link, .archive li a:visited {
    color: #333
  }
  
  .archive li a:hover {
    color: #a2cc89
  }
  
  .blog_side_list {
    position: relative;
    margin: 0 0 16px !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  
  .blog_side_list .blog_bx {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 100% !important;
    border: 1px solid #ccc;
    position: relative;
    padding: 8px;
    margin-bottom: 8px;
    background: #fff
  }
  
  .blog_side_list .blog_bx a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1
  }
  
  .blog_side_list .blog_bx .blog_bx_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
  
  .blog_side_list .blog_bx .blog_bx_flex div {
    width: calc(100% - 120px);
    padding: 0
  }
  
  .blog_side_list .blog_bx:hover {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px;
    box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px
  }
  
  .blog_side_list .blog_bx figcaption {
    width: 100px;
    height: 70px;
    display: block;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    margin-bottom: 0px;
    -webkit-box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
    box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px
  }
  
  .blog_side_list .blog_bx * {
    -webkit-transition: 0.3s;
    transition: 0.3s
  }
  
  .blog_side_list .blog_bx img {
    vertical-align: middle;
    height: 70px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;"
  }
  
  .blog_side_list .blog_bx:hover img {
    opacity: 1 !important
  }
  
  .blog_side_list .blog_bx .ttl {
    font-weight: bold;
    font-size: 1.2rem;
    color: #a2cc89;
    float: none;
    background: #fff;
    padding: 0 0px;
    border-bottom: 1px dashed #a2cc89;
    font-family: "Noto Serif JP", serif
  }
  
  .blog_side_list .blog_bx .ttm {
    float: none;
    padding-top: 0px;
    font-size: 1.2rem;
    color: #888;
    font-weight: normal
  }
  
  .blog_side_list .blog_bx .ttm:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin-right: 5px;
    font-weight: normal
  }
  
  .blog_side_list .blog_bx .blog_ttl {
    clear: both;
    font-weight: normal;
    color: #a2cc89;
    font-size: 1.2rem;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }
  
  .blog_side_list.list .ttl {
    display: none
  }
  
  .blog_top_list {
    position: relative;
    margin: 0 0px 16px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
  
  .blog_top_list:after {
    content: "";
    display: block;
    width: 31%
  }
  
  .blog_top_list .blog_bx {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: calc(33.33% - 16px) !important;
    font-size: 12px;
    margin: 25px 0;
    position: relative;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    background-color: #FFFFFF;
    border: 1px solid #a2cc89;
    padding: 10px
  }
  
  .blog_top_list .blog_bx:nth-child(3) {
    margin-right: 0px
  }
  
  .blog_top_list .blog_bx a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1
  }
  
  .blog_top_list .blog_bx .blog_bx_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff
  }
  
  .blog_top_list .blog_bx .blog_bx_flex div {
    width: 100%;
    padding: 16px
  }
  
  .blog_top_list .blog_bx:hover {
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
    -webkit-box-shadow: 3px 3px 10px #9E9E9E;
    box-shadow: 3px 3px 10px #9E9E9E
  }
  
  .blog_top_list .blog_bx figcaption {
    display: block;
    text-align: center;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    float: none
  }
  
  .blog_top_list .blog_bx * {
    -webkit-transition: 0.3s;
    transition: 0.3s
  }
  
  .blog_top_list .blog_bx p {
    line-height: 1.6em;
    font-size: 13px;
    display: none
  }
  
  .blog_top_list .blog_bx img {
    vertical-align: middle;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;"
  }
  
  .blog_top_list .blog_bx:hover img {
    opacity: 1 !important;
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }
  
  .blog_top_list .blog_bx .ttl {
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    float: left;
    background: #a2cc89;
    padding: 0 15px;
    margin-bottom: 5px;
    font-family: "Noto Serif JP", serif
  }
  
  .blog_top_list .blog_bx .ttm {
    padding-top: 0px;
    font-size: 12px;
    font-weight: normal;
    color: #aaa
  }
  
  .blog_top_list .blog_bx .ttm:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f017";
    margin: 0 5px;
    font-weight: normal
  }
  
  .blog_top_list .blog_bx .blog_ttl {
    clear: both;
    font-weight: normal;
    font-size: 1.4rem;
    color: #a2cc89
  }
  
  .blog_top_list .blog_bx .blog_text {
    margin-top: 5px
  }
  
  @media (max-width: 960px) {
    .blog_top_list {
      position: relative;
      margin: 0 0 16px !important;
      padding: 0 !important;
      width: 100% !important;
      height: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start
    }
    .blog_top_list .blog_bx {
      -webkit-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out;
      width: 100% !important;
      border: 1px solid #ccc;
      position: relative;
      padding: 8px;
      margin-bottom: 8px;
      background: #fff
    }
    .blog_top_list .blog_bx a {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1
    }
    .blog_top_list .blog_bx .blog_bx_flex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between
    }
    .blog_top_list .blog_bx .blog_bx_flex div {
      width: calc(100% - 120px);
      padding: 0
    }
    .blog_top_list .blog_bx:hover {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
      -webkit-box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px;
      box-shadow: rgba(17, 17, 17, 0.2) 0px 5px 10px 5px
    }
    .blog_top_list .blog_bx figcaption {
      width: 100px;
      height: 70px;
      display: block;
      text-align: center;
      background-position: center center;
      background-repeat: no-repeat;
      float: left;
      margin-bottom: 0px;
      -webkit-box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px;
      box-shadow: rgba(17, 17, 17, 0.1) 0 0 1px 1px
    }
    .blog_top_list .blog_bx * {
      -webkit-transition: 0.3s;
      transition: 0.3s
    }
    .blog_top_list .blog_bx img {
      vertical-align: middle;
      height: 70px;
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      font-family: "object-fit: cover;"
    }
    .blog_top_list .blog_bx:hover img {
      opacity: 1 !important
    }
    .blog_top_list .blog_bx .ttl {
      font-weight: bold;
      font-size: 1.2rem;
      color: #a2cc89;
      float: none;
      background: #fff;
      padding: 0 0px;
      border-bottom: 1px dashed #a2cc89;
      font-family: "Noto Serif JP", serif
    }
    .blog_top_list .blog_bx .ttm {
      float: none;
      padding-top: 0px;
      font-size: 1.2rem;
      color: #888;
      font-weight: normal
    }
    .blog_top_list .blog_bx .ttm:before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      content: "\f017";
      margin-right: 5px;
      font-weight: normal
    }
    .blog_top_list .blog_bx .blog_ttl {
      clear: both;
      font-weight: normal;
      color: #a2cc89;
      font-size: 1.2rem;
      margin-bottom: 8px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap
    }
    .blog_top_list .blog_bx {
      width: calc(50% - 16px)
    }
    .blog_top_list .blog_bx figcaption {
      border-radius: 0
    }
    #blog_flexwrap {
      display: -webkit-block;
      display: block;
      width: 95%;
      margin: 20px auto 30px
    }
    #blog_flexwrap #blog_main {
      width: 100%;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      margin-bottom: 32px
    }
    #blog_flexwrap #blog_side {
      width: 100%;
      margin-left: 0px
    }
    .pages {
      width: 100%
    }
    .pages .page_next {
      float: none;
      width: calc(100% - 20px);
      margin-bottom: 8px
    }
    .pages .page_prev {
      float: none;
      text-align: left;
      width: calc(100% - 20px)
    }
  }
  
  .w80 {
    width: 80%;
    margin: 0 auto
  }
  
  @media all and (max-width: 639px) {
    .w80 {
      width: 100%
    }
  }
  
  .top-bnr-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    padding: 0 10px
  }
  
  .top-bnr-list li {
    width: 48%
  }
  
  .top-bnr-list li a {
    display: block;
    width: 100%;
    height: 100%
  }
  
  .top-bnr-list li a:hover img {
    -webkit-transition: 0.3s -webkit-transform ease-in-out;
    transition: 0.3s -webkit-transform ease-in-out;
    transition: 0.3s transform ease-in-out;
    transition: 0.3s transform ease-in-out, 0.3s -webkit-transform ease-in-out;
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
  }
  
  .top-bnr-list li .top-bnr-img {
    width: 80%;
    height: 250px;
    margin: 0 auto;
    overflow: hidden
  }
  
  .top-bnr-list li .top-bnr-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;"
  }
  
  @media all and (max-width: 639px) {
    .top-bnr-list li .top-bnr-img {
      height: 200px
    }
  }
  
  .top-bnr-list li .top-bnr-title2 {
    text-align: center;
    margin: -35px auto 20px;
    position: relative;
    z-index: 5;
    width: 70%;
    background: #fefefe;
    padding: 15px;
    -webkit-box-shadow: 0 0 8px rgba(162, 204, 137, 0.2);
    box-shadow: 0 0 8px rgba(162, 204, 137, 0.2);
    font-family: "Noto Sans JP", sans-serif
  }
  
  .top-bnr-list li .top-bnr-title2 .en {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 2rem;
    margin-top: -10px;
    border-bottom: 1px solid #a2cc89;
    line-height: 1.3;
    display: block
  }
  
  @media all and (max-width: 639px) {
    .top-bnr-list li .top-bnr-title2 .en {
      font-size: 2.5rem
    }
  }
  
  @media all and (max-width: 639px) {
    .top-bnr-list li {
      width: 90%;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin: 0 auto 20px
    }
  }
  
  .transparent_box {
    position: relative;
    z-index: 1;
    border: 1px solid #fff;
    -o-border-image: url(../img/bdr.png) 3/3px repeat;
    border-image: url(../img/bdr.png) 3/3px repeat;
    padding: 60px 40px;
    color: #fff
  }
  
  .transparent_box a {
    color: #fff
  }
  
  .transparent_box:hover {
    background: #fff;
    color: #a2cc89;
    opacity: .8;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
  }
  
  .transparent_box:hover a {
    color: #a2cc89
  }
  
  .transparent_box .inner {
    width: auto;
    margin: 0 auto
  }
  
  @media all and (max-width: 639px) {
    .transparent_box {
      padding: 40px 10px
    }
  }
  
  .mtitle_big {
    position: relative;
    margin-bottom: 30px;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: .5em;
    letter-spacing: .05em;
    font-family: "Roboto Condensed", sans-serif
  }
  
  .mtitle_big span {
    display: block;
    color: #a2cc89;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.5rem
  }
  
  .mtitle_big.b-n {
    margin-bottom: 0px;
    letter-spacing: .5rem
  }
  
  @media all and (max-width: 639px) {
    .mtitle_big.b-n {
      font-size: 2rem;
      letter-spacing: .2rem
    }
    .mtitle_big.b-n span {
      font-size: 1.3rem
    }
  }
  
  .single_bnr {
    margin: 0 auto;
    max-width: 97%;
    padding: 20px 0
  }
  
  .bg_06 {
    position: relative;
    background-image: url(../img/index_bnr_01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 auto 50px;
    width: 80%
  }
  
  @media screen and (max-width: 667px) {
    .bg_06 {
      background-position: center;
      width: 100%
    }
  }
  
  .listFlow li {
    margin-bottom: 9px;
    padding-bottom: 9px
  }
  
  .listFlow .lastItem {
    margin-bottom: 0;
    padding-bottom: 0;
    background: none
  }
  
  .listFlow h4 {
    font-size: 20px;
    font-weight: normal;
    border-bottom: solid 1px #ccc;
    margin-bottom: 10px;
    overflow: hidden
  }
  
  .listFlow dl {
    display: table;
    width: 100%
  }
  
  .listFlow dl dt {
    display: table-cell;
    padding: 10px 0;
    border: 1px solid #a2cc89;
    width: 100px;
    background: #a2cc89;
    font-size: 1.2rem;
    font-weight: normal;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2
  }
  
  .listFlow dl dt .num {
    display: block;
    font-size: 2.5rem
  }
  
  .listFlow dl dd {
    display: table-cell;
    padding: 15px 20px;
    border-top: 1px solid #c8c8c8;
    border-right: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    vertical-align: middle;
    background-color: white
  }
  
  @media all and (max-width: 639px) {
    .listFlow h4 {
      font-size: 18px;
      font-weight: normal;
      border-bottom: solid 1px #ccc;
      margin-bottom: 5px;
      overflow: hidden
    }
    .listFlow dl {
      display: block;
      width: 100%
    }
    .listFlow dl dt {
      display: block;
      padding: 5px 0;
      width: 100%;
      border: none
    }
    .listFlow dl dt .num {
      display: block
    }
    .listFlow dl dd {
      display: block;
      padding: 15px 10px;
      border: none
    }
  }
  
  .guide_title {
    font-size: 15px;
    color: #444;
    overflow: hidden;
    letter-spacing: 1px;
    border-bottom: 1px solid #AD9A41;
    margin-bottom: 5px;
    height: 25px
  }
  
  .guide_title::after {
    margin-left: 10px;
    font-family: 'FontAwesome';
    color: #AD9A41;
    content: "\f101"
  }
  
  .guide_title.active::after {
    margin-left: 10px;
    font-family: 'FontAwesome';
    content: "\f103";
    color: #AD9A41
  }
  
  .about-img {
    width: 40% !important;
    aspect-ratio: 12 / 19;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    border-radius: 0;
    margin-left: 3% !important
  }
  
  .about-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
  }
  
  @media all and (max-width: 639px) {
    .about-img {
      width: 100% !important;
      aspect-ratio: 65 / 65
    }
  }
  
  .about-gallery {
    max-width: 100%;
    min-height: 500px
  }
  
  @media all and (max-width: 639px) {
    .about-gallery {
      min-height: 200px
    }
  }
  
  .about-gallery .slick-slide {
    width: auto;
    height: 300px;
    margin: 0 0px;
    position: relative;
    overflow: hidden;
    padding: 5px;
    -o-object-fit: contain;
    object-fit: contain
  }
  
  .about-gallery .slick-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
  }
  
  @media all and (max-width: 639px) {
    .about-gallery .slick-slide {
      width: 200px;
      padding: 1px;
      height: 200px
    }
  }
  
  .about-gallery .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
  }
  
  .about-gallery .slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 180px;
    z-index: 1;
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16))
  }
  
  @media all and (max-width: 639px) {
    .about-gallery .slick-arrow {
      display: none !important
    }
  }
  
  .about-gallery .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #09000d;
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 24px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 0;
    background-color: transparent
  }
  
  @media all and (max-width: 639px) {
    .about-gallery .slick-arrow::before {
      display: none
    }
  }
  
  .about-gallery .slick-next {
    right: 0
  }
  
  .about-gallery .slick-prev {
    left: 0
  }
  
  .about-gallery .slick-next:before {
    right: 28px
  }
  
  @media all and (max-width: 639px) {
    .about-gallery .slick-next:before {
      display: none
    }
  }
  
  .about-gallery .slider-2 .slick-next::before {
    left: 20px
  }
  
  .about-gallery .slick-prev::before {
    border-width: 0 0 3px 3px;
    right: 22px
  }
  
  @media all and (max-width: 639px) {
    .about-gallery .slick-prev::before {
      right: 15px
    }
  }
  
  .about-gallery .dots-2 .slick-dots {
    text-align: center
  }
  
  .about-gallery .slick-dots li {
    display: inline-block
  }
  
  .about-gallery .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    margin: 6px;
    font-size: 0;
    padding: 0;
    border: 0;
    outline: none;
    cursor: pointer;
    background: #b4bdb7;
    border-radius: 50%
  }
  
  .about-gallery .slick-dots button:before {
    display: none
  }
  
  .about-gallery .slick-active button {
    background: #2ca763
  }
  
  .about-gallery .dots-2 .slick-dots .slick-active button {
    background: #2ca763
  }
  
  .reason-title {
    width: 100%;
    max-width: 500px;
    margin: 3% auto
  }
  
  @media all and (max-width: 639px) {
    .reason-title {
      max-width: 80%
    }
  }
  
  @media all and (max-width: 639px) {
    .list-covid img {
      width: 75%
    }
  }
  


  /* link */
  .mvDetail__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 3;
    position: relative;
  }

  .mvDetail__list li {
    width: 50px;
    margin: 0 20px 0 0;
  }

  .mvDetail__list li:last-child {
    margin: 0;
  }

  .mvDetail__list a {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: block;
  }

  .mvDetail__list a i {
    display: block;
    font-size: 20px;
  }

  .mvDetail__list a:hover {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0.7;
  }

  @media all and (max-width: 1367px) {
    .mvDetail__list li {
      width: 30px;
      margin: 0 10px 0 0;
    }
  }

  @media all and (max-width: 639px) {
    .mvDetail__list li {
      width: 20px;
      margin: 0 5px 0 0;
    }
  }

  .timetable {
    width: 90%;
    margin: 0 auto;
    border-top: 3px solid #19ad4a;
    border-collapse: collapse;
    border-spacing: 0;
}

.timetable th,.timetable td {
  border-bottom: 1px solid #e8e5dc;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  font-weight: 500 !important;
  font-size: 1.3rem;
  letter-spacing: .1em
}

@media all and (max-width: 896px) {
  .timetable th,.timetable td {
      font-size:1.1rem
  }
}

@media all and (max-width: 639px) {
  .timetable {
    width: 90%;
  }
  
  .timetable th,.timetable td {
      font-size:1rem
  }
}

@media all and (max-width: 639px) {
  .timetable th,.timetable td {
      padding:5px
  }
}

.timetable .circle,.timetable .triangle {
  color: rgba(25,173,74,.6)
}

.timetable .circle:before {
  content: "●"
}

.timetable .triangle:before {
  content: "▲"
}
