﻿@charset "UTF-8";
@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;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: 16px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #2b8523;
}
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.5em;
}
#totop {
  position: fixed;
  bottom: 5%;
  right: 3%;
  z-index: 10;
  margin-bottom: 0;
  width: 50px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
}
#totop a:hover {
  opacity: 0.7;
}
@-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                                     
font-family: 'Montserrat', sans-serif;
font-family: 'Oswald', sans-serif;
*/
/*==========================================================================*/
body {
  color: #666666;
  font-family: 'Montserrat', sans-serif;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
  display: none;
}
.h_top {
  background: #2b8523;
  color: #fff;
  padding: 12px 0;
}
.h_top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.h_time {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.h_lang {
  display: flex;
  color: #8faee6;
}
.h_lang li:not(:last-child):after {
  content: '|';
  position: relative;
  display: inline-block;
  margin: 0 10px;
}
.h_lang a {
  font-size: 14px;
  color: #8faee6;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.h_lang .active a, .h_lang a:hover {
  color: #fff;
}
.h_main {
  padding: 25px 0;
}
.h_main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  margin: 0;
}
.h_right_info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.h_tel {
  margin: 0 0 0 60px;
  font-size: 17px;
  color: #2b8523;
  font-weight: 600;
  display: flex;
  align-items: center;
}
    .h_tel .tel {
        color: #2b8523;
        font-family: 'Oswald', sans-serif;
        font-size: 20px;
        font-weight: 800;
        margin-left: 10px;
    }
.h_tel .ttl {
  text-decoration: underline;
}
.h_search {
    width: 435px;
    display: flex;
    border: 1px solid #2b8523;
    border-radius: 40px;
    justify-content: space-between;
    padding: 5px 10px 5px 20px;
}
    .h_search .button {
        flex-shrink: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 0 0 5px 15px;
        border-left: 1px solid #2b8523;
    }
.h_search input {
  font-size: 13px;
  width: 100%;
  border: none;
  font-weight: 600;
  opacity: 0.6;
  line-height: 1.3em;
}
.gnavi {
  display: flex;
  justify-content: flex-end;
}
.gnavi > li {
  position: relative;
  margin-left: 50px;
}
.submenu {
  position: absolute;
  z-index: 10;
  width: 250px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.gnavi > li > a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid #fff;
}
.gnavi > li > a:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 3px;
  background: #2b8523;
  bottom: -2px;
  left: calc(50% - 10px);
  transition: all 0.3s;
  opacity: 0;
}
.submenu a {
    display: block;
    background: #16670b;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    margin-top: 1px;
    font-size: 14px;
    transition: all 0.3s;
}
    .submenu a:hover {
        /*opacity: 1;*/
        background-color: #2b8523;
    }
#header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  -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 {
  padding: 5px 0;
}
#header.fixed .logo {
  width: 280px;
}
#header.fixed .h_main {
  padding: 10px 0;
}
#header.fixed .h_right_info {
  margin-bottom: 5px;
}
@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 img {
  width: 100%;
}
.main_slide p {
  margin: 0;
}
.idx_h2 {
    text-align: center;
    font-size: 48px;
    color: #2b8523;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.3em;
    margin-bottom: 30px;
    position: relative;
}
.idx_h2:after {
  content: '';
  position: relative;
  display: block;
  margin: 10px auto 0;
  background: url("/assets/images/idx_h2_icon.png") no-repeat center center #fff;
  width: 100px;
  height: 40px;
}
.idx_h2:before {
  content: '';
  position: absolute;
  width: 490px;
  height: 1px;
  background: #e1e1e1;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}
.box01 {
  padding: 90px 0 60px;
}
.box01 .idx_h2:before, .box01 .idx_h2:after {
  display: none;
}
.b01_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.b01_item {
  width: calc(33.33% - 15px);
  margin: 0px;
}
    .b01_item a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border: 1px solid #efefef;
        min-height: 235px;
        padding: 15px 10px;
        text-decoration: none;
        transition: all 0.3s;
        height: 100%;
    }
.b01_itm_ttl {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3em;
  min-height: 58px;
}
.b01_itm_img {
  margin: 0 0 20px;
}
.b01_item a:hover {
  transform: translateY(-10px);
}
.box02 {
  background: url("/assets/images/b02_bg.jpg") no-repeat center center/cover;
  padding: 15px 0;
  color: #fff;
}
.box02 .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.b02_img {
  margin: 0 0 0 30px;
  flex-shrink: 0;
}
.b02_ttl {
  margin: 0;
  font-size: 36px;
  text-align: center;
}
.b02_ttl .lager {
  display: block;
  font-weight: 800;
  font-size: 133.34%;
}
.b02_ttl .tel {
  font-size: 66.67%;
  display: block;
  color: #fcdc01;
  text-transform: uppercase;
  font-weight: 700;
}
.b02_ttl .tel .line {
  font-weight: 400;
  font-size: 75%;
  text-decoration: underline;
}
.box03 {
  padding: 90px 0;
}
.b03_tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 50px;
}
.b03_tab li {
  font-size: 18px;
  color: #5ac1be;
  border: 1px solid #5ac1be;
  border-radius: 40px;
  padding: 10px 30px;
  margin: 0 15px;
  transition: all 0.3s;
  cursor: pointer;
}
.b03_tab li:hover, .b03_tab li.current {
  color: #fff;
  background: #2b8523;
  border-color: #2b8523;
}
.b03_list {
  display: flex;
  flex-wrap: wrap;
}
.b03_main {
  display: none;
}
.b03_main.current {
  display: inherit;
}
.b03_item {
  width: calc(25% - 22.5px);
  margin: 0 30px 50px 0;
}
.b03_item:nth-child(4n) {
  margin-right: 0;
}
.b03_itm_img {
  background: #fbfbfb;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}
.b03_itm_img img {
  flex-shrink: 0;
  max-height: 100%;
}
.b03_item a {
  display: block;
  text-decoration: none;
  color: #666666;
  text-align: center;
  transition: all 0.3s;
}
.b03_item a:hover {
  transform: translateY(-10px);
}
.b03_itm_ttl {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
}
.b03_itm_price {
  margin: 0;
}
.b03_itm_price .new {
  font-weight: 700;
  color: #000;
  display: inline-block;
}
.b03_itm_price .old {
  text-decoration: line-through;
  margin-right: 20px;
  display: inline-block;
}
.b03_itm_img .new {
  position: absolute;
  background: #5ac1be;
  color: #fff;
  font-size: 13px;
  line-height: 1.5em;
  padding: 0 7px;
  border-radius: 40px;
  left: 30px;
  top: 30px;
  z-index: 2;
  min-width: 35px;
}
.b03_itm_img .discount {
  position: absolute;
  background: #2b8523;
  min-width: 35px;
  color: #fff;
  font-size: 13px;
  line-height: 1.5em;
  padding: 0 7px;
  border-radius: 40px;
  right: 30px;
  top: 30px;
  z-index: 2;
}
.box04 {
  background: url("/assets/images/b04_bg.jpg") no-repeat center center/cover;
  padding: 1px 0;
  margin: 50px 0;
}
.b04_list {
  margin: -52px auto;
  max-width: 1090px;
  padding: 0 105px;
}
.b04_list.slick-initialized .slick-slide {
  background: #2b8523;
  padding: 50px;
  color: #fff;
  margin: 0 2px;
}
.b04_itm_info {
  border: 1px dashed #fff;
  padding: 15px 50px 15px 15px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}
.b04_itm_img {
  flex-shrink: 0;
  margin: 0 50px 0 0;
}
.b04_itm_main {
  padding-top: 50px;
}
.b04_itm_ttl {
  text-decoration: underline;
  font-size: 18px;
  font-style: italic;
}
.b04_itm_name .lager {
  display: block;
  font-size: 112.5%;
  font-weight: bold;
  margin: 0 0 10px;
}
.b04_itm_name .txt {
  display: block;
  font-style: italic;
  margin: 10px 0 0;
}
.b04_itm_txt {
  border-top: 1px solid;
  margin: 50px 0 0;
  padding: 50px 0 0;
  font-size: 14px;
  text-align: justify;
  background: url("/assets/images/b04_icon.png") no-repeat left top 30px;
  font-style: italic;
}
.b04_list .slick-arrow {
  position: absolute;
  z-index: 2;
  width: 84px;
  height: 40px;
  background: url("/assets/images/b04_prev.png") no-repeat center center #000;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  text-indent: -5000000px;
}
.b04_list .slick-prev {
  left: 0;
}
.b04_list .slick-next {
  right: 0;
  background-image: url("/assets/images/b04_next.png");
}
.b04_list .slick-arrow:hover {
  background-color: #2b8523;
  opacity: 1;
}
.box05 {
  padding: 90px 0;
}
.b05_list {
  display: flex;
  flex-wrap: wrap;
}
.b05_item {
  width: calc(25% - 22.5px);
  margin: 0 30px 0 0;
}
.b05_item:nth-child(4n) {
  margin-right: 0;
}
.b05_item a {
  display: block;
  height: 100%;
  background: #f6f6f6;
  text-decoration: none;
  color: #666;
  transition: all 0.3s;
}
.b05_itm_img {
  margin: 0;
  position: relative;
}
.b05_itm_main {
  padding: 30px;
}
.b05_itm_img .date {
  position: absolute;
  width: 110px;
  left: 0;
  background: #2b8523;
  font-size: 14px;
  color: #fff;
  text-align: center;
  bottom: 10px;
  padding: 4px;
}
.b05_itm_ttl {
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3em;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
}
.b05_itm_txt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 15px;
  text-align: justify;
}
.b05_itm_more {
  margin: 0;
  font-size: 14px;
  color: #2b8523;
  text-decoration: underline;
}
.b05_itm_img img {
  width: 100%;
}
.b05_item a:hover {
  transform: translateY(-10px);
}
#footer {
  background: #f6f6f6;
  padding: 90px 0 0;
}
.f_ttl {
  text-align: center;
  font-size: 30px;
  color: #2b8523;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 20px;
  position: relative;
}
.f_ttl:after {
  content: '';
  position: relative;
  display: block;
  margin: 10px auto 0;
  background: url("/assets/images/idx_h2_icon.png") no-repeat center center #f6f6f6;
  width: 100px;
  height: 40px;
}
.f_ttl:before {
  content: '';
  position: absolute;
  width: 490px;
  height: 1px;
  background: #e1e1e1;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}
.f_des{
text-align: center;	
	
	
}
.f_form {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.f_form button {
  background: #2b8523;
  color: #fff;
  border: none;
  width: 135px;
  flex-shrink: 0;
  border-radius: 18px;
  padding: 16px;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 14px;
}
.f_form input {
  width: calc(100% - 150px);
  border: 1px solid #2b8523;
  border-radius: 18px;
  padding: 5px 20px;
  font-size: 14px;
  opacity: 0.7;
}
.f_main {
  display: flex;
  justify-content: space-between;
  /*align-items: flex-start;*/
  margin-bottom: 50px;
}
.f_col {
  width: calc(30% - 20px);overflow: hidden;
}
.f_col:nth-child(2) {
  
}
.f_col_ttl {
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 20px;
  font-size: 16px;
}
.f_info {
  position: relative;
  font-size: 15px;
  margin: 0 0 20px;
  padding-left: 30px;
}
.f_info:before {
  content: '';
  position: absolute;
  background: url("/assets/images/f_add.png") no-repeat center center;
  width: 21px;
  height: 32px;
  left: 0;
  top: -4px;
}
.f_info.f_com{
padding-left: 0;
    font-size: 19px;
    font-weight: bold;
    color: #2b8523;}
.f_info.f_com:before{background:none;}

.f_info.f_cer{padding-left: 0;}
.f_info.f_cer:before{background:none;}
.f_mail:before {
  background-image: url("/assets/images/f_mail.png");
}
.f_tel:before {
  background-image: url("/assets/images/f_tel.png");
}
.f_info a {
  color: #666;
  text-decoration: none;
}
.f_service {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: 170px;
}
.f_service li {
  width: 49%;
  padding-left: 15px;
  position: relative;
  margin: 0 0 5px;
}
.f_service li:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: #2b8523;
  left: 0;
  top: 9px;
}
.f_service a {
  font-size: 15px;
  color: #666666;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.3em;
  display: inline-block;
  transition: all 0.3s;
}
.f_service a:hover {
  color: #2b8523;
}
.f_menu {
 /* display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: 150px;*/
}
.f_menu li {
  width: 49%;
  padding-left: 25px;
  position: relative;
  margin: 0 0 10px;
}
.f_menu li:before {
  content: '';
  position: absolute;
  background: #2b8523;
  width: 10px;
  height: 2px;
  left: 0;
  top: 10px;
}
.f_menu a {
  display: inline-block;
  text-decoration: none;
  color: #666;
  transition: all 0.3s;
}
.f_menu a:hover {
  color: #2b8523;
}
.f_col iframe{width:100%;height:100%;}
.f_btn{
	position:fixed;
	width:50px;
	bottom:12%;
	right:3%;
}
.copyright {
  margin: 0;
  background: #2b8523;
  text-align: center;
  font-size: 12px;
  color: #fff;
  padding: 15px 0;
  text-transform: uppercase;
}
.copyright a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1500px) {
  .container {
    padding: 0 3%;
  }
  .gnavi > li {
    margin-left: 33px;
  }
	.h_tel {
		margin-left: 30px;
	}
}
@media screen and (max-width: 1400px) {
	.b02_ttl .lager{font-size: 118.34%;}
	.b02_ttl{font-size: 32px;}
}
@media screen and (min-width: 769px) {
    .gnavi > li:hover > a, .gnavi > li.active > a {
        border-bottom: 1px solid #176511;
        color: #176511;
    }
  .gnavi > li:hover > a:after, .gnavi > li.active > a:after {
    opacity: 1;
  }
}
@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: 108px;
  }
  #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: #2b8523;
    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: 51px;
    position: absolute;
    background: rgb(79 112 184 / 30%);
    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;
  }
  #header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.9);
  }
  .h_top {
    padding: 6px 0;
  }
  .h_tel {
    display: none;
  }
  .logo {
    width: 200px;
  }
  .h_main {
    padding: 10px 0;
  }
  .h_right {
    position: fixed;
    width: 100%;
    top: 108px;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    height: calc(100% - 108px);
    padding: 30px 0;
    overflow: auto;
    display: none;
  }
  .h_time {
    font-size: 12px;
  }
  .h_right_info {
    display: block;
  }
  .h_search {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .gnavi {
    display: block;
  }
  .gnavi > li {
    margin: 0;
  }
  .gnavi > li > a {
    border-bottom: 1px solid #ccc;
    padding: 15px 20px;
    font-size: 14px;
  }
  .submenu {
    position: relative;
    width: 100%;
  }
  .submenu a {
    margin: 0;
    border-bottom: 1px solid #ccc;
    padding: 15px 20px;
  }
  .box01 {
    padding: 50px 0 30px;
  }
  .idx_h2 {
    font-size: 30px;
  }
  .b01_item {
    width: 49%;
    margin: 0 0 20px;
  }
  .b01_itm_img {
    width: 80px;
    margin: 0 0 10px;
  }
  .b01_itm_ttl {
    font-size: 16px;
    min-height: auto;
  }
  .b01_item a {
    padding: 15px 10px;
    min-height: 150px;
  }
  .b01_item:last-child {
    margin: 0 auto;
  }
  .box02 .container {
    display: block;
  }
  .box02 {
    padding: 25px 0;
  }
  .b02_ttl {
    font-size: 20px;
  }
  .b02_img {
    margin: 20px 0 0;
    text-align: center;
  }
  .b02_ttl .tel {
    font-size: 80%;
  }
  .box03 {
    padding: 50px 0;
  }
  .idx_h2:after {
    background-size: 40px auto;
    width: 80px;
    height: 35px;
  }
  .idx_h2:before {
    width: 100%;
    max-width: 300px;
  }
  .b03_tab li {
    font-size: 14px;
    margin: 0 5px 5px;
    padding: 10px 15px;
  }
  .b03_tab {
    margin-bottom: 30px;
  }
  .b03_list {
    justify-content: space-between;
  }
  .b03_item {
    width: 48%;
    margin: 0 0 30px;
  }
  .b04_list {
    margin: -30px 0;
    padding: 0 30px;
  }
  .b04_list .slick-arrow {
    width: 50px;
    background-size: 25px auto;
  }
  .b04_list.slick-initialized .slick-slide {
    padding: 20px;
  }
  .b04_itm_info {
    display: block;
    padding: 15px;
  }
  .b04_itm_img {
    margin: 20px auto 0;
    text-align: center;
    max-width: 300px;
  }
  .b04_itm_main {
    padding-top: 20px;
  }
  .b04_itm_ttl {
    font-size: 14px;
  }
  .b04_itm_txt {
    margin: 20px 0 0;
    padding: 20px 0 20px;
    background-size: 60px auto;
    background-position: top 20px left;
  }
  .box04 {
    margin: 20px 0;
  }
  .box05 {
    padding: 50px 0 30px;
  }
  .b05_list {
    justify-content: space-between;
  }
  .b05_item {
    width: 100%;
    margin: 0 0 20px;
  }
  .b05_item a {
    display: flex;
  }
  .b05_itm_img {
    flex-shrink: 0;
    width: 40%;
  }
  .b05_itm_main {
    width: 100%;
    padding: 30px 15px;
  }
  #footer {
    padding: 40px 0 0;
  }
  .f_ttl {
    font-size: 22px;
  }
  .f_ttl:after {
    background-size: 40px auto;
    width: 80px;
    height: 35px;
  }
  .f_ttl:before {
    width: 100%;
    max-width: 300px;
  }
  .f_main {
    display: block;
    margin-bottom: 30px;
  }
  .f_col {
    width: 100% !important;
    margin: 0 0 30px;
  }
  .f_menu {
    height: 130px;
  }
  .copyright {
    font-size: 10px;
  }
}
@media screen and (max-width: 440px) {
  .b01_itm_ttl {
    font-size: 14px;
  }
  .b03_item {
    width: 100%;
  }
  .b05_itm_txt {
    display: none;
  }
  .b05_itm_img {
    width: 45%;
  }
  .b05_itm_ttl {
    font-size: 14px;
  }
  .b05_itm_img .date {
    font-size: 12px;
    width: 90px;
  }
  .b05_itm_main {
    padding: 20px 15px;
  }
  .f_form {
    display: block;
  }
  .f_form input {
    width: 100%;
    margin: 0 0 10px;
    padding: 15px 20px;
  }
  .f_form button {
    margin: 0 auto;
    display: block;
    padding: 13px;
  }
  .f_service {
    height: auto;
    display: block;
  }
  .f_service li {
    width: 100%;
  }
}