﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,300;0,400;1,300;1,400&family=Nunito:wght@300;400;600;700&display=swap');
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 18px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #f2b517;
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.3em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 3%;
  z-index: 10;
  margin-bottom: 0;
}
#totop a {
  display: block;
  transition: all 0.5s;
  position: relative;
  margin-bottom: 1px;
}
#totop a:not(:first-child):hover {
  opacity: 0.7;
}
#totop .txt {
  background: #b28e1d;
  color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  font-size: 16px;
  right: 0;
  white-space: nowrap;
  font-weight: bold;
  padding: 5px 10px 7px;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 0;
  overflow: hidden;
  opacity: 0;
}
#totop .txt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #b28f1d;
  right: -6px;
  top: calc(50% - 5px);
}
#totop a:hover > .txt {
  right: calc(100% + 10px);
  width: auto;
  overflow: visible;
  opacity: 1;
}
#totop img {
  position: relative;
  z-index: 2;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: #000000;
  font-family: 'UTMAvo';
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
  padding-top: 133px;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
  display: none;
}
#header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.h_top {
  background: #16460c;
  color: #fff;
  padding: 10px 0;
}
.h_top .container {
  display: flex;
  justify-content: space-between;
}
.h_top_info {
  display: flex;
}
.h_top_info li {
  font-size: 14px;
}
.h_top_info li:before {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/h_add.png") no-repeat center center/100% auto;
  width: 11px;
  height: 16px;
  margin-right: 10px;
  top: 2px;
}
.h_top_info li:not(:last-child) {
  margin-right: 50px;
}
.h_top_info li:nth-child(2):before {
  background-image: url("../W_images/h_mail.png");
  width: 20px;
  height: 14px;
}
.h_top_info li:nth-child(3):before {
  background-image: url("../W_images/h_tel.png");
  width: 16px;
}
.h_top_info li a {
  text-decoration: none;
  color: #fff;
}
.h_top_social {
  display: flex;
}
.h_top_social li:not(:last-child) {
  margin-right: 20px;
}
.h_main {
  background: #fff;
  position: relative;
  padding: 15px 0;
  z-index: 2;
}
.h_main:after {
  content: '';
  position: absolute;
  width: 100%;
  background: url("../W_images/h_bg.png") repeat-x bottom center;
  bottom: -70px;
  left: 0;
  pointer-events: none;
  height: 98px;
  z-index: -1;
}
.h_main .container {
  display: flex;
  justify-content: space-between;
}
.logo {
  margin: 0 0 -90px;
}
#gnavi {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.h_search {
  position: relative;
  border-left: 1px solid #eee;
}
.h_search_ttl {
  margin: 0;
  padding-left: 25px;
  cursor: pointer;
}
.h_search_form {
  position: absolute;
  right: 0;
  background: #f0f0f0;
  padding: 5px;
  width: 250px;
  border-radius: 30px;
  display: none;
  margin-top: 10px;
}
.h_search_form input {
  width: 100%;
  border: none;
  background: #fff;
  font-size: 13px;
  font-style: italic;
  padding: 10px 15px 12px;
  border-radius: 30px;
}
.h_search_form .button {
    text-decoration:none;
  background: #f8ca38;
  border: none;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 13px;
  cursor: pointer;
  padding: 10px 10px 12px;
  border-radius: 30px;
  transition: all 0.3s;color:#000;
}
.h_search_form .button:hover {
  background: #17470d;
  color: #fff;
}
.gnavi {
  display: flex;
}
.gnavi > li {
  position: relative;
  margin: 0 25px;
}
.gnavi > li > a {
  font-size: 16px;
  color: #000;
  display: block;
  text-transform: uppercase;
  padding: 7px 0;
  text-decoration: none;
  position: relative;
}
.gnavi > li > a:before {
  content: '';
  position: absolute;
  width: 0;
  transition: all 0.3s;
  left: 0;
  bottom: 0;
  height: 1px;
  background: #17470d;
}
.gnavi > li:hover > a:before, .gnavi > li.active > a:before {
  width: 100%;
}
.gnavi > li:hover > a, .gnavi > li.active > a {
  color: #17470d;
}
.submenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.submenu a {
  display: block;
  background: #17470d;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  margin-top: 1px;
  padding: 12px 15px;
  white-space: nowrap;
  transition: all 0.3s;
}
.submenu a:hover {
  background: #f8ca38;
  color: #17470d;
}
.gnavi > li.over > a:after {
  content: '';
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 3px 0 3px;
  border-color: #737373 transparent transparent transparent;
  margin-left: 3px;
  top: -5px;
}
#header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: #fff;
  -webkit-animation: header-fixed 0.6s;
  -moz-animation: header-fixed 0.6s;
  -ms-animation: header-fixed 0.6s;
  animation: header-fixed 0.6s;
}
#header.fixed .h_top {
  display: none;
}
#header.fixed .logo {
  margin: 0 0 -70px;
  width: 100px;
}
@keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
.main_slide p {
  margin: 0;
}
.main_slide img {
  width: 100%;
}
.box01 {
  padding: 80px 0;
  position: relative;
}
.box01:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 98px;
  background: url("../W_images/b01_bg.png") repeat-x top center;
  top: -80px;
  left: 0;
  pointer-events: none;
}
.box01 .container {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-start;
}
.b01_main {
  width: 50%;
  padding-left: 40px;
}
.b01_img {
  margin: 0;
  width: 50%;
  padding-right: 40px;
  position: relative;
  text-align: center;
  z-index: 2;
}
.b01_img:after {
  content: '';
  position: absolute;
  background: url("../W_images/b01_img_icon.png") no-repeat bottom center/100% auto;
  width: calc(100% + 280px);
  height: 100%;
  right: -40px;
  bottom: 0;
  z-index: -3;
  pointer-events: none;
}
.b01_img:before {
  content: '';
  position: absolute;
  background: #f7c937;
  width: 50%;
  height: calc(100% - 40px);
	left: -10px;
	top: 20px;
  z-index: -2;
	border-radius: 10px;
  pointer-events: none;
}
.b01_img img {
  width: 100%;
}
.b01_img .txt {
  position: absolute;
  right: 0;
  bottom: 50px;
  background: #fff;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  color: #e7af16;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.3em;
}
.b01_img .lager {
  display: block;
  font-size: 66.67%;
  font-weight: normal;
}
.b01_img .num {
  color: #16460c;
  font-size: 450%;
  font-weight: bold;
  display: inline-flex;
  align-items: flex-start;
  line-height: 1em;
}
.b01_img .plus {
  font-size: 24px;
  line-height: 1.5em;
}
.idx_h2 {
  font-size: 24px;
  line-height: 1.5em;
  color: #f2b517;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: 'Courier';
}
.idx_h2 .lager {
  display: block;
  color: #16460c;
  text-transform: uppercase;
  font-family: 'UTMAvo';
  font-size: 27px;
  margin-top: 10px;
}
.b01_txt {
  text-align: justify;font-size: 17px;
  margin: 0 0 25px;line-height: 1.5;
}
.b01_note {
  font-size: 24px;
  color: #16460c;
  font-weight: bold;
  margin-bottom: 20px;
}
.b01_note_list li {
  margin-left: 30px;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  background: url(../W_images/b01_arr.png) no-repeat top 3px left;
}
.b01_note_list li:last-child {
  margin-bottom: 0;
}
.box02 {
  background: #16460c;
  position: relative;
  padding: 80px 0;
  color: #fff;
}
.box02:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background: url("/userfile/config/ChoiceUs_Img.jpg") no-repeat left center/cover;
  top: 0;
  left: 50%;
}
.b02_main {
  width: 50%;
}
.box02 .idx_h2 .lager {
  color: #fff;
}
.b02_list li {
  font-size: 16px;
  margin-bottom: 30px;
  background: url("../W_images/b02_icon01.png") no-repeat left center;
  padding-left: 60px;
}
.b02_list li .ttl {
  display: block;
  color: #e7af16;
  font-size: 112.5%;
  font-weight: bold;
  margin-bottom: 10px;
}
.b02_list li:nth-child(2) {
  background-image: url("../W_images/b02_icon02.png");
}
.b02_list li:nth-child(3) {
  background-image: url("../W_images/b02_icon03.png");
}
.b02_list li:nth-child(4) {
  background-image: url("../W_images/b02_icon04.png");
}
.b02_list li:last-child {
  margin-bottom: 0;
}
.box03 {
  background: #fff3d5;
  padding: 80px 0;
}
.box03 .idx_h2 {
  text-align: center;
  margin-bottom: 15px;
}
.b03_txt {
  text-align: center;
  margin-bottom: 60px;
}
.b03_item {
  display: flex;
  position: relative;
  z-index: 2;
  padding: 80px 0;
  margin-bottom: 80px;
}
.b03_item:after {
  content: '';
  position: absolute;
  background: url("../W_images/b03_bg.png") no-repeat left 300px center #fff;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  min-width: 1400px;
  z-index: -3;
  pointer-events: none;
  border-radius: 20px;
}
.b03_item:nth-child(2n+1) {
  padding-left: 58px;
}
.b03_item:nth-child(2n) {
  padding-right: 58px;
}
.b03_item:nth-child(2n):after {
  left: auto;
  right: 0;
  background-position: right 300px center;
}
.b03_itm_img {
  margin: 0;
  width: 45%;
}
.b03_itm_img a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.b03_itm_img img {
  width: 100%;
  transition: all 0.7s;
}
.b03_itm_img a:hover img {
  transform: scale(1.1, 1.1);
}
.b03_itm_main {
  width: 55%;
}
.b03_item:nth-child(2n+1) .b03_itm_main {
  order: 2;
  padding-left: 100px;
}
.b03_item:nth-child(2n) .b03_itm_main {
  padding-right: 100px;
}
.b03_itm_ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 20px;
}
.b03_itm_ttl a {
  display: inline-block;
  color: #16460c;
  text-decoration: none;
  transition: all 0.3s;
}
.b03_itm_ttl a:hover {
  color: #f2b517;
}
.idx_btn {
  margin: 0;
}
.idx_btn a {
  display: inline-block;
  background: #f8ca38;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 200px;
  border-radius: 40px;
  font-size: 16px;
  color: #16460c;
  padding: 13px;
  transition: all 0.3s;
}
.idx_btn a:hover {
  background: #16460c;
  color: #fff;
}
.b03_itm_txt {
  text-align: justify;
  line-height: 1.7em;
  margin-bottom: 40px;
}
.b03_item:last-child {
  margin-bottom: 0;
}
.box04 {
  padding: 80px 0;
}
.box04 .idx_h2 {
  text-align: center;
  margin-bottom: 15px;
}
.b04_txt {
  text-align: center;
  margin-bottom: 40px;
}
.b04_list {
  display: flex;
}
.b04_item {
  width: calc(33.33% - 30px);
  margin: 0 45px 0 0;
}
.b04_item:last-child {
  margin-right: 0;
}
.b04_itm_img {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 10px;
}
.b04_itm_img img {
  width: 100%;
  transition: all 0.7s;
}
.b04_item a {
  display: block;
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
}
.b04_item a:hover .b04_itm_img img {
  transform: scale(1.1, 1.1);
}
.b04_itm_date {
  font-size: 16px;
  color: #f2b517;
  margin-bottom: 10px;
}
.b04_itm_date:before {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/b04_date.png") no-repeat center center/100% auto;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  top: 2px;
}
.b04_itm_ttl {
  color: #16460c;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 15px;
}
.b04_itm_txt {
    margin: 0;
    font-size: 16px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.b04_itm_txt span {
  color: #f00;
}
.b04_item a:hover {
  opacity: 0.7;
}
.box05 {
  background: url("../W_images/b05_bg.jpg") no-repeat bottom center #fff1cc;
  padding: 80px 0;
  position: relative;
}
.box05 .container {
  display: flex;
  justify-content: flex-end;
}
.b05_main {
  width: 50%;
  position: relative;
}
.b05_txt {
  font-style: italic;
  margin-bottom: 40px;
}
.b05_form input {
  display: block;
  width: 100%;
  border: none;
  padding: 12px 20px 15px;
  margin-bottom: 10px;
  font-style: italic;
  font-size: 16px;
}
.b05_form textarea {
  display: block;
  width: 100%;
  border: none;
  height: 100px;
  margin-bottom: 40px;
  font-size: 16px;
  font-style: italic;
  padding: 12px 20px;
}
.b05_form button {
  background: #f8ca38;
  display: block;
  margin: 0 auto;
  width: 200px;
  border: none;
  color: #16460c;
  font-size: 16px;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s;
}
.b05_form button:hover {
  background: #16460c;
  color: #fff;
}
.b05_main:before {
  content: '';
  position: absolute;
  background: url("../W_images/b05_img.png") no-repeat top center/100% auto;
  width: 275px;
  height: 330px;
    bottom: -110px;
	/*height: 379px;
  bottom: -120px;*/
  right: calc(100% + 20px);
  z-index: 2;
}
#footer {
  background: #17470d;
  color: #fff;
  position: relative;
}
#footer:after {
  content: '';
  position: absolute;
  width: 100%;
  background: url("../W_images/f_bg.png") repeat-x top center;
  height: 98px;
  top: -80px;
  left: 0;
  pointer-events: none;
}
.f_main {
  display: flex;
  justify-content: space-between;
}
.f_mod {
  max-width: 40%;
}
.f_logo {
  margin: 0 0 -15px;
}
.f_txt {
  font-size: 16px;
  text-align: justify;
  line-height: 1.6em;
  margin: 0 0 40px;
}
.f_social {
  margin: 0;
  font-size: 14px;
  color: #f8ca38;
  font-style: italic;
  display: flex;
  align-items: center;
}
.f_social a {
  margin-left: 10px;
  margin-top: -3px;
}
.f_ttl {
  font-weight: bold;
  margin: 60px 0 20px;
  text-transform: uppercase;
}
.f_menu a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}
.f_menu a:hover {
  color: #f8ca38;
}
.f_menu li {
  margin: 0 0 5px;
  position: relative;
  padding-left: 18px;
}
.f_menu li:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #f8ca38;
  border-radius: 50%;
  left: 0;
  top: 11px;
}
.f_info li {
  font-size: 16px;
  margin-bottom: 11px;
  position: relative;
  padding-left: 25px;
}
.f_info li:before {
  content: '';
  position: absolute;
  background: url("../W_images/f_add.png") no-repeat center center;
  width: 15px;
  height: 15px;
  left: 0;
  top: 3px;
}
.f_info li:nth-child(2):before {
  background-image: url("../W_images/f_home.png");
}
.f_info li:nth-child(3):before {
  background-image: url("../W_images/f_house.png");
}
.f_info li:nth-child(4):before {
  background-image: url("../W_images/f_tel.png");
}
.f_info li:nth-child(5):before {
  background-image: url("../W_images/f_mail.png");
  top: 4px;
}
.f_info a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
}
.copyright {
  margin: 30px 0 0;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #87ab7f;
  padding: 20px 0;
  color: #73a06a;
}
.copyright a {
  text-decoration: none;
  display: inline-block;
  color: #73a06a;
}
@media screen and (max-width: 1400px) {
  .container {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
  h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 14px;
  }
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 80px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: #17470d;
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnv-ico {
    width: 50px;
    height: 49px;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
  .h_top {
    display: none;
  }
  .logo {
    width: 80px;
    margin: 0 0 -30px;
    position: relative;
    z-index: 3;
  }
  #header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
  }
  .h_main:after {
    height: 50px;
    background-size: auto 100%;
    bottom: -36px;
    z-index: 2;
    pointer-events: none;
  }
  #gnavi {
    position: fixed;
    top: 80px;
    left: 0;
    background: #1e4707;
    padding: 70px 3% 30px;
    height: calc(100% - 80px);
    overflow: auto;
    display: block;
    width: 100%;
    display: none;
  }
  .h_search_form {
    position: relative;
    display: block;
    margin: 0 auto 30px;
  }
  .h_search_ttl {
    display: none;
  }
  .h_search {
    border: none;
  }
  .gnavi {
    display: block;
  }
  .gnavi > li {
    margin: 0;
  }
  .gnavi > li > a {
    color: #fff !important;
    border-bottom: 1px solid #577a4f;
    padding: 15px 20px;
    font-size: 14px;
  }
  .gnavi > li.over > a:after, .gnavi > li > a:before {
    display: none;
  }
  .submenu {
    position: relative;
  }
  .submenu a {
    font-size: 14px;
    padding: 15px 20px;
    margin: 0;
    background: #456428;
    border-bottom: 1px solid #577a4f;
  }
  .box01:before {
    height: 50px;
    background-size: auto 100%;
    top: -40px;
  }
  .box01 {
    padding: 45px 0;
  }
  .box01 .container {
    display: block;
  }
  .b01_main {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
  .idx_h2 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 25px;
  }
  .idx_h2 .lager {
    font-size: 22px;
    margin-top: 5px;
  }
  .b01_txt {
    margin-bottom: 30px;
  }
  .b01_note {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .b01_note_list li {
    background-size: 15px auto;
    padding-left: 24px;
    margin-left: 15px;
  }
  .b01_img {
    width: 95%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
  }
  .b01_img:after {
    width: 150%;
    right: -14%;
  }
  .b01_img .txt {
    font-size: 14px;
    width: 130px;
    height: 130px;
    right: -5%;
    bottom: 30px;
  }
  .box02 {
    padding: 45px 0;
  }
  .box02:after {
    display: none;
  }
  .b02_main {
    width: 100%;
  }
  .b02_list li {
    font-size: 14px;
    margin-bottom: 20px;
    background-size: 30px auto;
    padding-left: 45px;
  }
  .b02_list li .ttl {
    margin-bottom: 5px;
  }
  .box03 {
    padding: 45px 0;
  }
  .b03_txt {
    margin-bottom: 30px;
  }
  .b03_item {
    padding: 30px 3% !important;
    display: block;
    margin-bottom: 30px;
  }
  .b03_itm_main {
    width: 100%;
    padding: 0 !important;
    margin: 0 0 30px;
  }
  .b03_item:after {
    width: 100%;
    min-width: 100%;
    background-size: 500px auto;
    background-position: top center;
  }
  .b03_itm_ttl {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
  }
  .b03_itm_txt {
    margin-bottom: 20px;
  }
  .idx_btn a {
    font-size: 14px;
    padding: 10px;
    display: block;
    margin: 0 auto;
  }
  .b03_itm_img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .box04 {
    padding: 45px 0;
  }
  .b04_list {
    display: block;
  }
  .b04_item {
    width: 100%;
    margin: 0 0 30px;
  }
  .b04_itm_img {
    width: 200px;
    float: left;
    margin: 0 20px 0 0;
  }
  .b04_itm_date {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .b04_itm_ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .b04_itm_date:before {
    width: 13px;
    height: 13px;
    margin-right: 5px;
  }
  .b04_itm_txt {
    font-size: 14px;
  }
  .b04_item a {
    overflow: hidden;
  }
  .b04_item:last-child {
    margin-bottom: 0;
  }
  .b04_txt {
    margin-bottom: 30px;
  }
  .box05 {
    background: #fff1cc;
    padding: 45px 0 60px;
  }
  .b05_main {
    width: 100%;
  }
  .b05_main:before {
    display: none;
  }
  .b05_txt {
    margin-bottom: 20px;
  }
  .b05_form input, .b05_form textarea {
    font-size: 14px;
  }
  .b05_form button {
    font-size: 14px;
    padding: 10px;
  }
  #footer:after {
    height: 50px;
    background-size: auto 100%;
    top: -40px;
  }
  .f_main {
    display: block;
    padding: 20px 0 0;
  }
  .f_mod {
    max-width: 100%;
  }
  .f_logo {
    width: 200px;
    margin: 0 auto;
  }
  .f_txt {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .f_ttl {
    margin: 30px 0 15px;
  }
  .f_menu a {
    font-size: 14px;
  }
  .f_menu li:before {
    width: 5px;
    height: 5px;
    top: 6px;
  }
  .f_info li {
    font-size: 14px;
  }
  .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 425px) {
.h_main .container{align-items:center;}
 .logo {
     margin: -15px 0 -30px;
 }
  .b04_itm_img {
    width: 120px;
  }
  .b04_itm_txt {
    display: none;
  }
  .idx_h2 .lager {
    font-size: 18px;
  }
}