@charset "utf-8";
/* CSS Document */

.hidden {
  display: none;
}

/***********************************/

.display_pc {
  display: none;
}

.display_sp {
  display: block;
}

html {
  width: 100%;
  font-size: 62.5%;
}

body {
  line-height: 24px;
  font-family: "メイリオ", Meiryo, "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
  overflow-X: hidden;
  font-size: 1.8rem;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

main {
  margin-top: 176px;
}

section {
  padding: 80px 0;
}

p {
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  transition-duration: .3s;
}

img {
  width: 100%;
  display: block;
}

.min {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.gosi {
  font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.center {
  text-align: center;
}

.page_top_area {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  width: 7rem;
  z-index: 1000;
  transition: .5s;
}

/*　上に上がる動き　*/

.page_top_area.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

.page_top_area.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(90px);
  }
}

.page_top_area a {
  margin: 0 0 10px;
  display: block;
}

.page_top_area img {
  width: 100%;
}

.page_top_area a img:hover {
  opacity: .7;
  transition-delay: .1s;
}


.page_top_area:hover {
  transform: translateY(-8px);
  transition: .5s;
}

.page_top_area img {
  width: 100%;
}

.home_logo {
  width: 334px;
  padding: 0;
}

.h2 {
  margin: 0 auto 2em;
  text-align: center;
}

.h2_inner {
  display: flex;
  flex-direction: column;
}

.h2 {
  font-size: 2.4rem;
  color: #333;
  line-height: 1;
  text-align: center;
  display: block;
}

.h2 {
  display: flex;
  align-items: center;
}

.h2:before,
.h2:after {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: #3aa201;
}

.h2:before {
  margin-right: 50px;
}

.h2:after {
  margin-left: 50px;
}

.h2 small {
  font-size: 1.6rem;
  display: block;
}

.flex_box {
  display: flex;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 1em 0;
  text-align: center;
  min-width: 242px;
  height: 50px;
  width: fit-content;
  background: #f90;
  box-shadow: 0px 3px 0px #c55e03;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  margin: 2em auto 3em;
}

/* .btn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 20px;
} */

.section_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.area_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer {
  background: #a9e29e;
  ;
}

.footer_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer_nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 346px;
  justify-content: flex-start;
  align-items: center;
}

.full_nav .parent {
  position: relative;
  color: #3aa201;
  font-weight: bold;
  margin-bottom: .5em;
  font-size: 1.6rem;
  width: fit-content;
}

.footer_nav .parent {
  width: 30%;
}

.full_nav .parent ul {
  margin: .2em 0 1em;
  border-top: 1px solid #666;
}

.full_nav .child {
  color: #333;
  font-weight: normal;
  margin-top: 8px;
  font-size: 1.6rem;
}


.footer .contact_area {
  background: url(../img/common/contact_bg.jpg) center/cover no-repeat;
  padding: 2em 0;
}

.footer .footer_logo {
  display: block;
  width: 364px;
  margin-bottom: 20px;
}

.footer .footer_address {
  font-size: 1.6rem;
}

.copy_right {
  text-align: center;
  background: #3aa201;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy_right span {
  color: #fff;
  font-size: 1.4rem;
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-delay: .5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.humb {
  width: 60px;
  height: 60px;
  display: block;
  background: #3aa201;
  border-radius: 10px;
  z-index: 9999;
}

.humb p {
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}

.humb span {
  width: 65%;
  height: .3rem;
  background-color: #fff;
  display: block;
  margin: 0 auto;
}

.humb span:nth-child(1) {
  margin-top: 9px;
  transition: all .2s;
  position: relative;
}

.humb span:nth-child(2) {
  margin-top: 10px;
  position: relative;
}

.humb span:nth-child(3) {
  position: relative;
  margin-top: 10px;
  margin-bottom: .2rem;
  transition: all .2s;
}

.humb.move span:nth-child(1) {
  transform-origin: left;
  transform: rotate(40deg);
  transition: all .2s;
  width: 70%;
  left: 5px;
}

.humb.move span:nth-child(2) {
  opacity: 0;
}

.humb.move span:nth-child(3) {
  transform-origin: left;
  transform: rotate(-40deg);
  transition: all .2s;
  width: 70%;
  left: 5px;
}

.humb.move p {
  opacity: 0;
}

.humb small {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  display: block;
  line-height: 1.5;
}

.sp_menu {
  position: fixed;
  top: 0;
  right: calc(-100% - 4rem);
  background-color: rgba(255, 255, 255, .95);
  width: 100%;
  height: 100%;
  padding: 6% 0 0 0;
}

.sp_menu.move {
  right: 0;
  transition: all .5s;
}

.sp_menu ul {
  font-size: 1.8rem;
  width: 100%;
}

.sp_menu ul li:not(.sub_menu) a {
  padding: .5rem 0;
  display: inline-block;
  text-align: center;
  width: fit-content;
}

.sp_menu_inner {
  display: flex;
}

/* .has-child {
  position: relative;
} */

ul.sub_menu {
  font-size: 1.6rem;
  margin-bottom: 1em;
}

.footer .btn_contact {
  margin-bottom: 1em;
  width: 400px;
  padding:3px 4em 0 ;
}

.footer .banner_area {
  padding: 40px 0;
}

.footer .banner_area .area_inner {
  max-width: 1000px;
}

.footer .banner_area .flex_box {
  justify-content: space-between;
}

.footer .banner_area .flex_box a {
  width: 16%;
  justify-content: space-between;
}

.header_middle_inner {
  max-width: 1200px;
  height: 76px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_middle_inner .right_item {
  display: flex;
  align-items: center;
}

.header .nav_menu ul li a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.tel_box {
  display: flex;
  align-items: center;
}

.tel_icon {
  width: 25px;
  margin-right: 10px;
}

.tel_num {
  display: flex;
  flex-direction: column;
}

.btn_contact {
  margin: 0 16px 0 10px;
  justify-content: space-evenly;
  padding: 3px 1.5em 0;
}

.btn_contact img {
  width: 25px;
}

.btn_caption{
  text-align: center;
  margin-top: -1.5em;
  margin-bottom: 2em;
}

.contact_area .area_inner {
  max-width: 1000px;
  display: flex;
}

.search_area {
  display: flex;
  align-items: center;
}

.search_box {
  width: 200px;
  height: 30px;
  background: #fff;
  margin: 0 6px;
  border-radius: 5px;
}

.search_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 30px;
  background: #f90;
  border-radius: 5px;
}

.search_btn img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.sp_menu .search_area {
  margin-bottom: 20px;
}

.sp_menu .search_box {
  border: 1px solid #aaa;
  margin-left: 0;
}

.sub_menu ul {
  margin-bottom: 1em;
}

.sub_menu ul li {
  font-size: 1.6rem;
}

.sp_menu .tel_box {
  margin-bottom: 1em;
}

.sp_menu .btn_contact {
  margin-left: 0;
}


.xls_icon {
  width: 23px;
  height: 23px;
  display: inline-block;
  background: url(../img/common/xls_icon.png) center/contain no-repeat;
  margin: 0 5px;
  position: relative;
  top: 5px;
}

.link_icon {
  width: 23px;
  height: 23px;
  display: inline-block;
  background: url(../img/common/ext_icon.png) center/contain no-repeat;
  margin: 10px 10px -5px;
}

.fltr_img {
  float: right;
  padding: 0 0 20px 20px;
}

.red{
  color: red;
}

.gsc-control-cse{
  padding: 0 !important;
  border: none;
}

.gsc-input-box{
  padding-top: 0;
  padding-bottom: 0;
  width: 10em;
  height: 2em;
  border-radius: 8px;
}

.gsc-search-button-v2 {
  padding: 8px 18px !important;
  margin: 0 0 0 5px !important;
  border-radius: 8px !important;
}

form.gsc-search-box {
  margin-top: 4px;
}

table.gsc-search-box td.gsc-input {
  padding-right: 5px !important;
}

.sp_menu_inner .gsc-control-cse{
  background-color: #FFF !important;
  border-color: #FFF !important;
}

.gsc-search-box-tools .gsc-search-box .gsc-input{
  padding: 0px !important;
  margin-top: -3px !important;
}

.gssb_c {
  z-index: 500000 !important;
}



@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    font-size: 2.3rem;
    font-weight: bold;
    margin-top: 1rem;
  }

  .display_pc {
    display: block;
  }

  .display_sp {
    display: none;
  }

  .header {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    box-shadow: 0 0 5px #aaa;
    display: flex;
    flex-direction: column;
  }

  .home_logo {
    width: 337px;
  }

  .header .nav_menu {
    height: 100%;
    border-top: 1px solid #666;
  }

  .header .nav_menu ul {
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .header .nav_menu ul li {
    font-size: 1.8rem;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header .nav_menu ul li {
    border-left: 1px solid #666;
  }

  .header .nav_menu ul li:last-of-type {
    border-right: 1px solid #666;
  }

  .header .nav_menu ul li small {
    font-size: 1.3rem;
    font-weight: normal;
  }

  .header .nav_menu ul li.long {
    width: 340px;
  }

  .header .nav_menu ul li:not(.long) {
    width: calc(100% / 4);
  }

  
/*---------------------------------------------
プルダウンメニュー（事業案内）
---------------------------------------------*/
.header .nav_menu ul.ddmenu li{
  position: relative;
  display: inline-block;
}

.header .nav_menu ul.ddmenu ul {
  display: none;       /* ★1:標準では非表示にする */
  margin: 0;         /* ★2:サブメニュー外側の余白(ゼロ) */
  padding: 0px;        /* ★3:サブメニュー内側の余白(ゼロ) */
  position: absolute;  /* ★4:絶対配置にする */
  height: 45px;
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
.header .nav_menu ul.ddmenu li:hover ul {
  display: block;      /* ★5:マウスポインタが載っている項目の内部にあるリストを表示する */
}

/* ------------------------ */
/* ▼サブメニュー項目の装飾 */
/* ------------------------ */
.header .nav_menu ul.ddmenu ul li {   /* ※A */
  width: 310px;               /* サブメニュー1項目の横幅 */
  border-top: 1px solid #aaa; /* 項目上側の枠線 */
  border-left: inherit;
  border-right: inherit;
  background-color: #a9e29e;
  color: #000;
  position: relative;
}
.header .nav_menu ul.ddmenu ul li a {   /* ※B */
  line-height: 1.5;   /* サブメニュー1項目の高さ */
  text-align: left;    /* 文字列の配置(左寄せ) */
  padding-left: 10px;   /* 文字列前方の余白(5px) */
  font-weight: normal; /* 太字にはしない */
  font-size: 75%;
}
.header .nav_menu ul.ddmenu ul li a:hover {   /* ※C */
  background-color: #aaa; /* サブメニュー項目にマウスが載ったときの背景色(淡い黄色) */
  color: #fff;            /* サブメニュー項目にマウスが載ったときの文字色(濃い緑色) */
}

.header .nav_menu ul.ddmenu ul li::after{
  font-family: 'fontello';
  content: '\3e';
  font-size: 1.8rem;
  position: absolute;
  top: 10px;
  right: 12px;
  transition: all .3s;
  color: #000;
}

.header .nav_menu ul.ddmenu ul li:hover::after{
  right: 6px;
}

/*---------------------------------------------
プルダウンメニュー（事業案内）終わり
---------------------------------------------*/

  .header_top {
    background: #3aa201;
  }

  .header_top_inner {
    height: 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
  }

  .header_top_inner ul {
    display: flex;
    align-items: center;
  }

  .header_top_menu {
    height: 100%;
  }

  .header_top_menu a {
    font-size: 1.6rem;
    color: #fff;
    padding: 0 10px;
  }




  .btn_contact .header_bottom {
    border-top: 1px solid #666;
  }

  .header_bottom_inner {
    height: 60px;
  }

  .header.fix .header_top {
    display: none;
    transition-duration: .3s;
  }

  .header.fix .header_bottom {
    display: none;
    transition-duration: .3;
  }



  .footer_tel:hover {
    color: #e60027;
    transition-duration: .3s;
  }

  .banner_area a:hover {
    filter: grayscale(1) brightness(.7);
  }

  .full_nav a:hover {
    opacity: .7;
  }

  .hover_line {
    position: relative;
  }

  .hover_line::after {
    content: "";
    display: flex;
    width: calc(100% + 10px);
    height: 3px;
    background-color: #e60027;
    position: absolute;
    bottom: -8px;
    left: -5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s;
  }

  .hover_line:hover::after {
    transform: scaleX(1);
    transition: .3s;
  }

  .footer_logo:hover {
    opacity: .7;
    transition-duration: .3s;
  }

  .home_logo:hover {
    opacity: .7;
    transition-duration: .3s;
  }

  .contact_area .area_inner .left_item {
    width: 50%;
  }

  .contact_area .area_inner .right_item {
    width: 50%;
  }

  .sp_menu_inner {
    height: 85vh;
  }

  .sp_menu .full_nav>li {
    margin-left: 4vw;
  }

  .sp_menu_item01 .full_nav {
    width: fit-content;
    height: 85vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

  .sp_menu_item02 {
    margin-left: 4vw;
  }

  .hover_down:hover {
    transition-duration: .3s;
  }

  .hover_down:hover {
    box-shadow: none;
    transform: translateY(3px);
  }

  .hover_opacity {
    transition: .3s;
  }

  .hover_opacity:hover {
    opacity: .7;
  }

  .hover_color {
    transition-duration: .3s;
  }

  .hover_color:hover {
    background: #a9e29e;
  }

  .humb {
    transition-duration: .3s;
    box-shadow: 0px 3px 0px #027011;
  }

  .humb:hover {
    box-shadow: none;
    transform: translateY(3px);
  }

  .hover_brightness {
    transition-duration: .3s;
  }

  .hover_brightness:hover {
    filter: brightness(.85);
  }

  .hover_up {
    transition-duration: .3s;
  }

  .hover_up:hover {
    box-shadow: 3px 3px 0 #027011;
    transform: translateY(-3px);
  }



}

@media screen and (max-width: 768px) {

  body {
    margin-top: 0;
    font-size: 1.6rem;
  }

  main {
    margin-top: 60px;
  }

  .btn {
    margin-bottom: 2em;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 0 3px #aaa;
    z-index: 9999;
  }

  .header_top {
    display: none;
  }

  .header_bottom {
    display: none;
  }

  .header_middle .right_item .tel_box {
    display: none;
  }

  .header_middle {
    width: 100%;
  }

  .header_middle .btn_contact {
    display: none;
  }

  .header_middle_inner .right_item {
    margin-left: auto;
  }

  .humb {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  .humb small {
    display: none;
  }

  .humb span:nth-child(1) {
    margin-top: 11px;
  }

  .humb.move span:nth-child(1) {
    transform: rotate(45deg);
  }

  .humb.move span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .h2{
    margin: 0 auto 1.5em;
  }

  .home_logo {
    width: 120px;
    height: auto;
    padding-left: 10px;
    transition: .3s;
  }

  .home_logo img {
    height: auto;
    width: 100%;
  }

  .section_inner {
    width: 94%;
    padding: 0 3%;
  }

  .area_inner {
    width: 94%;
    padding: 0 3%;
  }

  .page_top_area {
    width: min(16vw, 7rem);
  }

  .home_logo {
    width: min(60vw, 240px);
  }

  .full_nav {
    margin-bottom: 1em;
  }

  .plus_mark {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 1em;
    height: 0.1em;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
  }
  
  .plus_mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
    transition-duration: .3s;
  }
  
  .ac_btn {
    position: absolute;
    right: 0%;
    top: 5px;
  }
  
  .ac_btn.trans .plus_mark::before {
    transform: rotate(0deg);
    transition-duration: .3s;
  }
  footer .footer_inner {
    width: 94%;
    padding: 0 3%;
    padding-top: 40px;
  }

  .footer .banner_area {
    margin-bottom: 2em;
  }

  .footer .banner_area a {
    width: 100%;
    height: auto;
  }

  .footer .footer_logo {
    width: 70%;
    margin-bottom: .5em;
  }

  .copy_right span {
    font-size: min(3.6vw, 1.4rem);
  }

  .footer .footer_address {
    text-align: center;
    font-size: min(4vw, 1.4rem);
    margin-bottom: 2em;
  }

  .h2:before {
    margin-right: 25px;
  }

  .h2:after {
    margin-left: 25px;
  }

  .contact_area .area_inner {
    flex-wrap: wrap;
  }

  .contact_area .area_inner .left_item {
    width: 100%;
  }

  .contact_area .area_inner .right_item {
    width: 100%;
  }

  .footer .btn_contact {
    width: 100%;
    margin: 0 auto 2em;
  }

  .footer .footer_address {
    text-align: left;
  }

  .footer .banner_area {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer .banner_area .flex_box {
    flex-wrap: wrap;
  }

  .footer .banner_area .flex_box a {
    width: 48%;
    margin-bottom: 1em;
  }

  .full_nav {
    height: auto;
  }

  .footer_nav {
    align-items: flex-start;
  }

  .full_nav .parent {
    width: 100%;
    font-size: 1.4rem;
  }

  .full_nav .child {
    font-size: 1.4rem;
  }

  .copy_right {
    height: auto;
    padding: 8px 8px;
    line-height: 1.3;
  }

  .sp_menu_inner {
    flex-wrap: wrap;
    padding: 7%;
  }

  .sp_menu_inner>div {
    width: 100%;
  }

  nav ul li.has-child::before {
    content: '';
    position: absolute;
    right: -17px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(135deg);
    transition-duration: .3s;
  }

  nav ul li.has-child.trans::before {
    transform: rotate(-45deg)
  }

  .sp_menu.move {
    overflow-y: scroll;
  }

  .pankuzu{
    overflow: scroll;
    white-space: nowrap;
  }

  .pankuzu.flex_box{
    flex-wrap: nowrap;
  }

  .pankuzu .home{
    display: inline;
    flex: 0 0 8%;
    padding-left: 3%;
  }

  .fltr_img {
    float: inherit;
    padding: 0 0 1em;
  }










}

@media screen and (max-width: 375px) {

  body{
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  }

  a{
    font-size: clamp(1.3rem, 4vw, 1.6rem);
  }

  p{
    line-height: 1.3;
  }

  .footer .btn_contact {
    font-size: clamp(1.4rem, 4vw, 1.6rem);
  }

  .btn_contact img {
    width: 16px;
  }

  .h2{
    font-size: clamp(1.8rem, 6vw, 2.3rem);
  }

  .h2 small {
    font-size: 1.2rem;
    display: block;
  }

  .link_icon {
    width: 17px;
    height: 17px;
    margin: 10px 5px -5px;
  }

  .arrow_text {
    font-size: 1.2rem;
  }

  .full_nav .parent a{
    font-size: 1.2rem;
  }





}