@charset "UTF-8";
/*-----------------------------------
	base
-----------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 62.5%; /*10px*/
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05rem;
  color: #000000;
  background: #ffffff;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 999;
}
.contents_inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
a, a:link, a:visited {
  display: block;
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  transition: 0.3s;
}
a[href^='tel:'] {
    pointer-events: none;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/* device */
.pc {
  display: block!important;
}
.db_980 {
  display: none;
}
.dn_980 {
  display: block;
}
.sp {
  display: none!important;
}
/* flexbox */
.row_box {
  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;
}
.c_orange {
  color: #ea5504;
}

a:hover {
	text-decoration:none;
	transition: 0.3s;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
a img{
	transition : 0.2s ;
	-webkit-transition : 0.2s ;
	-moz-transition    : 0.2s ;
	-o-transition      : 0.2s ;
	-ms-transition     : 0.2s ;
}
a:hover img {
      opacity: 0.7;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
@media screen and (min-width: 981px) {
  .hover_bdr {
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
    background-image: linear-gradient(currentcolor, currentcolor);
    background-position: left bottom;
    background-size: 0 1px;
  }
  .hover_bdr:hover {
    background-size: 100% 1px;
  }
}
@media screen and (max-width: 980px) {
  .db_980 {
      display: block;
  }
  .dn_980 {
      display: none;
    }
}
@media screen and (max-width: 640px) {
  a[href^='tel:'] {
    pointer-events: auto;
  }
	.pc {
		display: none!important;
	}
	.sp {
		display: block!important;
	}	
}
/*-----------------------------------

	contents

-----------------------------------*/
#contents {
  position: relative;
  margin-top: 156px;
}
@media screen and (max-width: 980px) {
  #contents {
    margin-top: 122px;
  }
}
@media screen and (max-width: 640px) {
  #contents {
    margin-top: 85px;
  }
}
/*-----------------------------------

	header

-----------------------------------*/
header {
  width: 100vw;
  padding: 20px 20px 20px;
	margin: 0 auto 0;
	position: fixed;
	left: 0;
	right: 0;
	z-index: 999;
}
.scrolled header {
  background-color: #fff;
}
header .contents_inner {
  width: 100%;
  max-width: initial;
}
header .logo_box {
  width: 206px;
}
header .header_logo a {
  display: block;
  width: 100%;
  transition: 0.1s;
}
header .header_logo a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 980px) {
  header {
    padding: 10px 20px 20px;
    margin: 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }
}
@media screen and (max-width: 640px) {
  header {
    padding: 7px 15px 7px;
  }
  /* header {
    margin: 12px auto 10px;
  } */
  header .logo_box {
    width: 108px;
    display: flex;
    align-items: center;
  }
}
/*-----------------------------------
	nav_pc
-----------------------------------*/
#nav_pc {
  width: calc(100% - 206px);
}
#nav_pc .header_nav {
  padding-right: 18px;
  border-radius: 20px;
  margin-left: auto;
  gap: 35px;
  justify-content: end;
  align-items: center;
}
#nav_pc .header_nav ul li a {
  /* display: block; */
  font-weight: bold;
  padding: 14px 0 14px 32px;
  /* transition: 0.1s; */
  font-size: 16px;
}
#nav_pc .header_nav ul li a:not(.btn) {
  padding: 0;
  padding-bottom: 3px;
  margin-left: 20px;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
  background-image: linear-gradient(currentcolor, currentcolor);
  background-position: left bottom;
  background-size: 0 1px;
}
#nav_pc .header_nav ul li a:not(.btn):hover {
  background-size: 100% 1px;
}
#nav_pc .header_nav ul li .btn.consult_btn {
  padding: 17px 0 17px 32px;
}
.btn {
  padding-left: 32px;
}
.btn::after {
    position: absolute;
    font-size: 0;
    top: 0;
    bottom: 0;
    /* right: 13%; */
    margin: auto 0;
    width: 10px;
    height: 10px;
}
#nav_pc .header_nav .row_box {
  gap: 17px;
}
@media screen and (max-width: 980px) {
  #nav_pc {
    display: none;
  }  
}
/*-----------------------------------
	nav_sp
-----------------------------------*/
#nav_sp {
  display: none;
}
@media screen and (max-width: 980px) {
  #nav_sp {
    display: block;
    position: relative;
  }
  #nav_sp .btn_container,
  #nav_sp .overlay {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  #nav_sp .btn_container {

  }
}
/*-----------------------------------
  btn_container
-----------------------------------*/
@media screen and (max-width: 980px) {
  #nav_sp>.btn_box {
    position: relative;
    top: 0px;
    right: 120px;
  }
  #nav_sp .btn.consult_btn {
    width: 184px;
    padding: 14px 3%;
    font-size: 14px;
  }
  #nav_sp .btn_container {
    width: 50px;
    height: 40px;
    position: fixed;
    top: 20px;
    right: 18px;
    z-index: 1000;
    transition: opacity 0.2s ease;
    cursor: pointer;
  }
  /* #nav_sp .btn_container:after {
    content: "メニュー";
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0;
    color: #000000;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    transition: ease 0.2s;
  } */
  #nav_sp .btn_container span {
    background: #000000;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  #nav_sp .btn_container span:nth-of-type(2) {
    top: 11px;
  }
  #nav_sp .btn_container span:nth-of-type(3) {
    top: 22px;
  }
  #nav_sp .btn_container.active .tp {
    top: -5px;
    transform: translateY(11px) translateX(0) rotate(45deg);
  }
  #nav_sp .btn_container.active .ct {
    display: none;
  }
  #nav_sp .btn_container.active .bm {
    top: 6px;
    transform: translateY(-1px) translateX(0) rotate(-45deg);
  }
}
@media screen and (max-width: 640px) {
  #nav_sp>.btn_box {
    top: -10px;
  }
  #nav_sp>.btn_box .btn.consult_btn {
    padding: 11px 3%;
    border-radius: 0 0 7px 7px;
  }
  #nav_sp>.btn_box {
    position: relative;
    top: -7px;
    right: 12vw;
  }
  #nav_sp .btn_container {
    width: 20px;
    height: 14px;
  }
    #nav_sp .btn_container span:nth-of-type(2) {
        top: 7px;
    }
    #nav_sp .btn_container span:nth-of-type(3) {
        top: 14px;
    }
}
/*-----------------------------------
  overlay
-----------------------------------*/
@media screen and (max-width: 980px) {
  #nav_sp .overlay {
    background: #d4d8cd;
    width: 0;
    height: calc(100svh - 82px); /* 残りの高さにする */
    min-height: calc(100vh - 82px); /* fallback */
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    position: fixed;
    top: 82px;
    right: 0;
    z-index: 998;
    transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  }
  #nav_sp .overlay.open {
    width: 100vw;
    opacity: 1;
    visibility: visible;
  }
  /* #nav_sp .overlay::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #d4d8cd;
    z-index: -1;
  } */

  .overlay_bg {
  width: 10vw;
  background: rgba(0,0,0,0.5); /* 好きな背景色 */
  }
  #nav_sp .overlay .overlay_menu {
    width: 90%;
    margin-left: auto;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }



  #nav_sp .overlay .overlay_menu li {
    margin-bottom: 0;
  }
  #nav_sp .overlay .overlay_menu li .menu_child {
    display: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
  }
  #nav_sp .overlay .overlay_menu li .menu_child li {
    padding: 25px 0;
    margin: 0 30px;
    font-size: 16px;
  }
  #nav_sp .overlay .overlay_menu li .menu_child li:not(:last-child) {
    border-bottom: 1px solid #000;
  }
  #nav_sp .overlay .overlay_menu li .menu_child li a::after {
    border-color: #006b48;
    right: 0;
  }
  #nav_sp .overlay .overlay_menu .nav_link a,
  #nav_sp .overlay .overlay_menu h4 {
    font-size: 20px;
    color: #fff;
    background-color: #006b48;
    padding: 20px 30px;
    margin-bottom: 0;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  #nav_sp .overlay .overlay_menu .nav_link a::after,
  #nav_sp .overlay .overlay_menu h4::after,
  #nav_sp .overlay .overlay_menu ul li a::after {
    content: "";
    position: absolute;
    border: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 0;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    display: inline-block;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
  }
  #nav_sp .overlay .overlay_menu .nav_link a::after,
  #nav_sp .overlay .overlay_menu h4::after,
  #nav_sp .overlay .overlay_menu ul li a::after {
    right: 5%;
    border-color: #fff;
    transition: all 0.3s;
  }
  #nav_sp .overlay .overlay_menu li a.search_link::after {
    content: url(../img/common/link_icon_wh.svg);
    transform: rotate(0);
    font-size: 0;
    width: 10px;
    height: 10px;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border: none;
  }
  #nav_sp .overlay .overlay_menu h4.close::after,
  #nav_sp .overlay .overlay_menu li a.h_title.close::after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  footer .right_box .footer_nav {
    flex-direction: column;
  }
  .footer_nav .footer_nav_lt {
    width: 100%;
  }
  #nav_sp .overlay .overlay_menu .area_wrap {
    /* display: block; */
    background-color: #fff;
  }
  #nav_sp .overlay .overlay_menu .area_wrap h5 {
    font-size: 20px;
    padding: 20px 60px;
    border-bottom: 1px solid #fff;
    background-color: #f3f4f1;
    position: relative;
  }
  #nav_sp .overlay .overlay_menu .area_wrap .area_list {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* margin: 25px auto; */
    padding: 25px 0;
    justify-content: space-between;
    gap: 15px;
  }
  #nav_sp .overlay .overlay_menu .area_wrap .area_list li {
      width: calc((100% - 15px) / 2);
  }
  #nav_sp .overlay .overlay_menu .area_wrap .area_list li a {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    background-color: #fff;
    padding: 14px 0 14px 10px;
    border-radius: 6px;
    border: 1px solid #9fa0a0;
  }
    #nav_sp .overlay .overlay_menu .area_wrap .area_list li a::after {
    right: 12%;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    }
    #nav_sp .overlay .overlay_menu>ul li a {
      position: relative;
    }
    #nav_sp .overlay .overlay_menu .nav_link a,
    #nav_sp .overlay .overlay_menu>ul>li>a {
        font-size: 20px;
        color: #fff!important;
        background-color: #006b48;
        padding: 20px 30px;
        margin-bottom: 0;
        border-bottom: 1px solid #fff;
        font-weight: bold;
    }

/* over_c_box */
  #nav_sp .overlay .over_c_box {
        padding: 50px 30px;
        /* width: 90%; */
        background-color: #f3f4f1;
        margin: 0 auto;
  }
  #nav_sp .overlay .over_c_box .logo_box {
    width: 253px;
    margin: 0 auto 30px;
    display: block;
  }
  #nav_sp .overlay .over_c_text {
    /* text-align: center; */
    margin-bottom: 25px;
    font-size: 16px;
  }
  #nav_sp .overlay .btn.consult_btn {
    width: 270px;
    margin: 0 auto 50px;
    padding: 20px 58px;
  }
  #nav_sp .overlay .company_info p {
    text-align: center;
    margin-bottom: 20px;
  }
  #nav_sp .overlay .company_info p span {
    display: inline-block;

  }
  #nav_sp .overlay .over_c_btn_box .consult_btn {
    width: 270px;
    margin: 0 auto 50px;
  }
  #nav_sp .overlay .over_c_btn_box .hurex_link {
    width: 270px;
    margin: 0 auto;
    padding-left: 70px;
  }
  #nav_sp .close_box {
    background-color: #000;
    text-align: center;
    padding: 25px;
    color: #fff;
    font-size: 22px;
  }

    header .plus_ico {
    width: 38px;
    height: 38px;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  header .plus_ico:before, header .plus_ico:after {
    position: absolute;
    content: '';
    width: 14px;
    height: 1.5px;
    background-color: #000;
    border-radius: 6px;
  }
  header .plus_ico:before {
    top: 48%;
    left: 7px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  header .plus_ico:after {
    top: 48%;
    left: 7px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  header .area_list.open {
    display: block;
  }
  header .f_title.close .plus_ico:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

}
@media screen and (max-width: 640px) {
  #nav_sp .overlay {
    height: calc(100svh - 55px);
    min-height: calc(100vh - 55px);
    top: 55px;
  }
}
/*-----------------------------------

	footer

-----------------------------------*/
footer {
  background-color: #f3f4f1;
}
footer .footer_wrapper {
  justify-content: flex-start;
  gap: 5%;
  padding-top: 80px;
  padding-bottom: 80px;
}
footer .logo_box {
	width: 100%;
  margin-bottom: 30px;
}
footer .footer_logo {
	width: 187px;
}
footer .footer_logo a {
	display: block;
	width: 100%;
	height: 100%;
  transition: 0.1s;
}
footer .footer_logo a:hover {
  opacity: 0.7;
}
footer .left_box {
  width: 18%;
}
footer .company_info p {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 500;
}
footer .company_info p span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0.3em;
}
.btn_box .hurex_link {
    width: 100%;
    background: #fff;
    color: #006b48;
    border: 3px solid #006b48;
    letter-spacing: 0;
    position: relative;
    padding-left: 20px;
}
.btn_box .hurex_link:hover {
  background: #006b48;
  color: #fff;
}
.btn_box .hurex_link::after {
  content: url(../img/common/link_icon.svg);
  position: absolute;
  font-size: 0;
  top: 0;
  bottom: 0;
  right: 13%;
  margin: auto 0;
  width: 10px;
  height: 10px;
}
.btn_box .hurex_link:hover::after {
  content: url(../img/common/link_icon_wh.svg);
}
@media screen and (max-width: 980px) {
  footer {
    margin-top: 90px;
  }
  footer .footer_wrapper {
    flex-direction: column-reverse;
    padding-top: 0px;
    padding-bottom: 60px;
    width: 100%;
  }
  footer .left_box {
    padding-top: 50px;
    width: 90%;
    margin: 0 auto;
  }
  footer .footer_logo {
    width: 253px;
    margin: 0 auto;
  }
  footer .footer_text {
    text-align: center;
    margin-bottom: 25px;
    font-size: 16px;
  }
  footer .company_info p {
    text-align: center;
    margin-bottom: 10px;
  }
  footer .company_info p span {
    display: inline-block;

  }
  footer .btn_box .consult_btn {
    width: 270px;
    margin: 0 auto 50px;
  }
  .btn_box .hurex_link {
    width: 270px;
    margin: 0 auto;
    padding-left: 70px;
  }
}
@media screen and (max-width: 640px) {
  footer .footer_text {
    text-align: left;
  }
}
/*-----------------------------------
	right_box
-----------------------------------*/
footer .right_box {
  width: 77%;
}
.right_box .footer_nav li {
  font-weight: 500;
  margin-bottom: 0.7em;
}
.right_box .footer_nav li a {
  transition: 0.1s;
  position: relative;
}
.right_box .footer_nav li a::after {
  content: "";
  position: absolute;
  border: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  display: inline-block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.right_box .footer_nav li a.search_link::after {
  content: url(../img/common/link_icon.svg);
    transform: rotate(0);
    font-size: 0;
    width: 10px;
    height: 10px;
    border: none;
}
.right_box .footer_nav li a.gr_link {
  color: #006b48;
  font-size: 16px;
  font-weight: bold;
}
.footer_nav .footer_nav_lt {
	width: 71%;
}
.footer_nav .footer_nav_lt h4 {
  color: #006b48;
  font-size: 16px;
  margin-bottom: 30px;
}
.footer_nav .footer_nav_lt .area_wrap {
  gap: 5%;
}
.footer_nav .footer_nav_lt .area_wrap .area_list {
  width: calc((70% / 7));
}
.footer_nav .footer_nav_lt .area_wrap .area_list li {
  margin-bottom: 0.8em;
}
.footer_nav .footer_nav_cr,
.footer_nav .footer_nav_rt {
  width: 20%;
}
.footer_nav .footer_nav_rt ul li ul {
  margin: 15px 0;
  padding-left: 10px;
}
.footer_nav .footer_nav_rt ul li ul li {
  font-size: 12px;
}

@media screen and (min-width: 981px) {

  .right_box .footer_nav li a,
  .footer_nav .footer_nav_lt .area_wrap .area_list a {
      background-repeat: no-repeat;
        transition: background-size 0.3s ease;
      background-image: linear-gradient(currentcolor, currentcolor);
      background-position: left bottom;
      background-size: 0 1px;
  }
  .right_box .footer_nav li a:hover,
  .footer_nav .footer_nav_lt .area_wrap .area_list a:hover {
    background-size: 100% 1px; /* hover時 */
  }
}
@media screen and (max-width: 980px) {
  footer .right_box {
    width: 100%;
  }
  .right_box .footer_nav li {
    margin-bottom: 0;
  }
  .footer_nav .footer_nav_lt h4 {
    font-size: 20px;
    color: #fff;
    background-color: #006b48;
    padding: 20px 30px;
    margin-bottom: 0;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  .footer_nav .footer_nav_lt h4::after {
    content: "";
    position: absolute;
    border: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 0;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    display: inline-block;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
  }
  .footer_nav .footer_nav_lt h4::after,
  .right_box .footer_nav li a::after {
    right: 5%;
    border-color: #fff;
    transition: all 0.3s;
  }
  .right_box .footer_nav li a.search_link::after {
    content: url(../img/common/link_icon_wh.svg);
  }
  .footer_nav .footer_nav_lt h4.close::after,
  .footer_nav .footer_nav_rt ul li .menu_parent.close::after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  footer .right_box .footer_nav {
    flex-direction: column;
  }
  .footer_nav .footer_nav_lt {
    width: 100%;
  }
  .footer_nav .footer_nav_lt .area_wrap {
    /* display: block; */
    background-color: #fff;
  }
  .footer_nav .footer_nav_lt .area_wrap h5 {
    font-size: 20px;
    padding: 20px 60px;
    border-bottom: 1px solid #fff;
    background-color: #f3f4f1;
    position: relative;
  }
  .footer_nav .footer_nav_lt .area_wrap .area_list {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /* margin: 25px auto; */
    padding: 25px 0;
    justify-content: space-between;
  }
  .footer_nav .footer_nav_lt .area_wrap .area_list li {
      width: calc((100% - 15px) / 2);
  }
  .footer_nav .footer_nav_lt .area_wrap .area_list li a {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    background-color: #fff;
    padding: 14px 0 14px 10px;
    border-radius: 6px;
    border: 1px solid #9fa0a0;
  }
    .footer_nav .footer_nav_lt .area_wrap .area_list li a::after {
    right: 12%;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    }
    .footer_nav .footer_nav_rt {
      width: 100%;
    }
    .footer_nav .footer_nav_rt>ul>li>a {
        font-size: 20px!important;
        color: #fff!important;
        background-color: #006b48;
        padding: 20px 30px;
        margin-bottom: 0;
        border-bottom: 1px solid #fff;
    }
    .footer_nav .footer_nav_rt ul li .menu_parent {}
  .footer_nav .footer_nav_rt ul li .menu_child {
    display: none;
    margin: 0;
    padding: 0;
  }
  .footer_nav .footer_nav_rt ul li .menu_child li {
      padding: 25px 0;
      margin: 0 30px;
      font-size: 16px;
  }
  .footer_nav .footer_nav_rt ul li .menu_child li:not(:last-child) {
      border-bottom: 1px solid #000;
  }
  .footer_nav .footer_nav_rt ul li .menu_child li a::after {
    border-color: #006b48;
    right: 0;
  }
  footer .plus_ico {
    width: 38px;
    height: 38px;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  footer .plus_ico:before, footer .plus_ico:after {
    position: absolute;
    content: '';
    width: 14px;
    height: 1.5px;
    background-color: #000;
    border-radius: 6px;
  }
  footer .plus_ico:before {
    top: 48%;
    left: 7px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  footer .plus_ico:after {
    top: 48%;
    left: 7px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  footer .area_list.open {
    display: block;
  }
  footer .f_title.close .plus_ico:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 640px) {
}
/*-----------------------------------
	copy
-----------------------------------*/
footer #copy {
  text-align: center;
  padding: 40px 0;
  background: #000000;
  color: #fff;
}
footer #copy small {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 640px) {
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop {
  position: fixed;
  right: 60px;
  bottom: 80px;
  cursor: pointer;
  z-index: 998;
  transition: 0.3s;
}
#pagetop:hover {
  opacity: 0.7;
}
@media screen and (max-width: 640px) {
}


.btn {
    position: relative;
    padding: 15px 0;
    color: #fff;
    border-radius: 7px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.btn.consult_btn {
  width: 233px;
  background: #ea5504;
  color: #fff;
  display: flex;
  padding: 19px;
  padding-left: 32px;
}
.btn.consult_btn::after {
  content: url(../img/common/link_icon_wh.svg);
  right: 10%;
  transition: 0.3s;
}
.btn.consult_btn:hover {
  background: #f77f3e;
}
/* .btn.consult_btn:hover::after {
  right: 8%;
} */
.btn.consult_btn span {
  display: inline-block;
  text-align: center;
  color: #000000;
  background: #fff;
  width: 37px;
  padding: 1px 0;
  border-radius: 7px;
  font-size: 10px;
  font-weight: bold;
}
.btn.search_btn {
  width: 195px;
  background: #fff;
  color: #006b48;
  border: 3px solid #006b48;
  display: flex;
  padding: 16px 0;
  padding-left: 32px;
}

.btn.search_btn::after {
  content: url(../img/common/link_icon.svg);
  right: 13%;
}
.btn.search_btn:hover img {
  opacity: 1;
}
.btn.search_btn img {
  display: inline-block;
  width: 15px;
  height: 15px;
}
  .btn.search_btn .icon.hover {
  display: none;
  }
@media screen and (min-width: 980px) {
  .btn.search_btn:hover .icon.default {
    display: none;
  }
  .btn.search_btn:hover .icon.hover {
    display: inline;
  }
  .btn.search_btn:hover {
    color: #fff;
    background-color: #006b48;
  }
  .btn.search_btn:hover::after {
    content: url(../img/common/link_icon_wh.svg);
  }
}


/*-----------------------------------

	side_bar

-----------------------------------*/
.side_box {
	width: 305px;
}
.side_box .h3_ttl {
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #006b48;
    gap: 10px;
}
.side_box .side_bg {
  padding: 35px 30px 30px;
  background-color: #f3f4f1;
  border-radius: 10px;
}
.side_box .job_box {
  margin-bottom: 20px;
}
.side_box .job_box .job_list {
  margin-bottom: 20px;
}
.side_box .job_box .btn.search_btn {
  width: 100%;
  border: 0;
  background-color: #006b48;
  color: #fff;
  margin-bottom: 10px;
  padding: 18px 0 18px 0;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}
.side_box .job_box .btn.search_btn:hover {
  background: #12996d;
}
.side_box .job_box .btn.search_btn::after {
  content: url(../img/common/link_icon_wh.svg);
}
.side_box .job_box .select_box {
  margin-bottom: 10px;
}
.side_box .job_box .select_box select {
    border: 1px solid #000;
    padding: 15px 10px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    background-color: #fff;
}
 select {
  -webkit-appearance: none;
    appearance: none;
    background: url(../img/common/arrow_icon_gr_un.svg) no-repeat right 10px center / 12px;
    cursor: pointer;
 }
.side_box .job_box p {
  font-size: 12px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
}
.side_box .region_box {
  margin-bottom: 20px;
}
.side_box .popular_box {
  margin-bottom: 40px;
}
.side_box .popular_box .popular_list li:not(:last-child) {
  margin-bottom: 20px;
}
.side_box .popular_box .popular_list li a>div {
  gap: 8px;
}
.side_box .popular_box .popular_list li .img_box {
  width: 120px;
  position: relative;
}
.side_box .popular_box .popular_list li .img_box .rank {
  padding: 2px 6px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  font-weight: bold;
  z-index: 99;
}
.side_box .popular_box .popular_list li .img_box .rank.number01 {
  background-color: #c0a64e;
}
.side_box .popular_box .popular_list li .img_box .rank.number02 {
  background-color: #969797;
}
.side_box .popular_box .popular_list li .img_box .rank.number03 {
  background-color: #c0843f;
}
.side_box .popular_box .popular_list li .img_box .rank.number04,
.side_box .popular_box .popular_list li .img_box .rank.number05 {
  background-color: #006b48;
}
.side_box .popular_box .popular_list li .img_box .cat {
  padding: 2px 6px;
  text-align: center;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 10px;
  font-weight: 500;
  z-index: 99;
}
.side_box .popular_box .popular_list li .img_box img {
  border-radius: 5px;
  overflow: hidden;
  width: 120px;
  height: 65px;
  object-fit: cover;
}
.side_box .popular_box .popular_list li .text_box {
  width: calc(100% - 128px);
}
.side_box .popular_box .popular_list li .text_box .prefecture {
  display: block;
  font-size: 10px;
  font-weight: 500;
}
.side_box .popular_box .popular_list li .text_box .date {
  display: block;
  font-size: 10px;
  font-weight: 500;
}
.side_box .popular_box .popular_list li .text_box .title {
  font-size: 16px;
  font-weight: 500;
  color: #006b48;
}
.region_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.region_list li {
  width: calc((100% - 15px) / 2);
}
.region_list li a {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
  padding: 14px 0 14px 10px;
  border-radius: 6px;
  border: 1px solid #9fa0a0;
}
.region_list li a::after {
    content: "";
    position: absolute;
    border: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 14%;
    border-top: solid 1px #006b48;
    border-right: solid 1px #006b48;
    display: inline-block;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
}
.side_box .special_box {
  padding-bottom: 35px;
  border-bottom: 1px solid #9fa0a0;
  margin-bottom: 38px;
}
.side_box .special_box .special_list li:not(:last-child) {
  margin-bottom: 20px;
}

.side_box .banner_box .banner_list li {
  margin-bottom: 20px;
}
@media screen and (min-width: 981px) {
  .region_box li a:hover {
    background-color: #006b48;
    color: #fff;
  }
  .region_box li a:hover::after {
    border-color: #fff;
  }
}
@media screen and (max-width: 980px) {
  .side_box {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .side_box {
    width: 100%;
  }
}

 .search_icon_s {
	width: 28px;
	height: 28px;
 }
  .map_icon_s {
	width: 21px;
	height: 28px;
 }
 .popular_icon {
	width: 31px;
	height: 23px;
 }


 #pagetop {
    width: 60px;
    height: 60px;
    background: #006b48;
    position: fixed;
    right: 20px;
    bottom: 15px;
    cursor: pointer;
    z-index: 1;
    border-radius: 40px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
#pagetop img {
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    width: auto;
}