@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.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  color: #333333;
  background: #EDEDE2;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 999;
}
.contents_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
a, a:link, a:visited {
  display: block;
  text-decoration: none;
  color: #333333;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
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;
}
.zkg {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.ws {
  font-family: "Work Sans", sans-serif;
}
/* device */
.pc {
  display: block;
}
.sp {
  display: none;
}
/* 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;
}
@media screen and (max-width: 640px) {
  body {
    font-size: 1.4rem;
    line-height: 1.75;
  }
  a[href^='tel:'] {
    pointer-events: auto;
  }
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}	
}
/*-----------------------------------

	header

-----------------------------------*/
header {
  width: 100vw;
	margin: auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
  transition: 0.3s;
}
header.scrolled {
  background: #EDEDE2;
}
header .contents_inner {
  width: 100%;
  max-width: initial;
}
header .hd_wrapper {
  padding: 0 50px;
  align-items: center;
}
header .hd_logo {
  width: 220px;
}
header .main_menu {
  align-items: center;
  gap: 0 40px;
}
header .main_menu li a {
  font-weight: 700;
  padding: 38px 0;
  position: relative;
}
header .main_menu li:first-of-type a {
  background: url(../img/common/icon_home.svg) no-repeat top 46px right / 14px;
  padding-right: 24px;
}
header .main_menu li:not(.cta_btn) a::before {
  content: '';
  display: block;
  background: #F4A11B;
  width: 100%;
  height: 3px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}
header .main_menu li:not(.cta_btn) a:hover {
  color: #F4A11B;
}
header .main_menu li:first-of-type a:hover {
  background: url(../img/common/icon_home_yw.svg) no-repeat top 46px right / 14px;
}
header .main_menu li:not(.cta_btn) a:hover::before {
  opacity: 1;
}
header .main_menu .cta_btn a {
  font-weight: 700;
  text-align: center;
  color: #FFFFFF;
  background: #333333;
  padding: 3px 0 5px;
  width: 155px;
  border-radius: 50vw;
}
#nav_sp,
#nav_sp .fixed_box {
  display: none;
}
#fix_menu {
  display: none;
  width: 100vw;
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 997;
}
#fix_menu a {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  width: 50%;
  padding: 18.5px 0;
  justify-content: center;
  align-items: center;
  position: relative;
}
#fix_menu a::before {
  content: '';
  display: block;
}
#fix_menu a.contact {
  background: #F59B33;
  gap: 0 6px;
}
#fix_menu a.contact::before {
  background: url(../img/common/icon_mail.png) no-repeat center center / contain;
  width: 22px;
  height: 16px;
}
#fix_menu a.tel {
  background: #47A448;
  gap: 0 4px;
}
#fix_menu a.tel::before {
  background: url(../img/common/icon_tel.png) no-repeat center center / contain;
  width: 15px;
  height: 24px;
}
@media screen and (max-width: 1300px) {
  header .hd_wrapper {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  header .hd_wrapper {
    padding: 20px;
  }
  header .main_menu {
    width: 100%;
  }
  header .main_menu li {
    width: 87.5%;
    border-bottom: 1px solid #CCCCBC;
    margin: 0 auto;
  }
  header .main_menu li:first-of-type {
    border-top: 1px solid #CCCCBC;    
  }
  header .main_menu li.cta_btn {
    border-bottom: none;
    margin-top: 40px;
    margin-left: auto;
  }
  header .main_menu li a {
    text-align: center;
    width: max-content;
    padding: 24px 0 23px;
    margin: 0 auto;
  }
  header .main_menu li:first-of-type a {
    background: url(../img/common/icon_home.svg) no-repeat top 33px right / 14px;
  }
  header .main_menu .cta_btn a {
    width: 250px;
    padding: 6px 0 8px;
  }
  header .cta_menu {
    margin: 47px auto 0;
  }
  /*-----------------------------------
    nav_pc
  -----------------------------------*/
  #nav_pc {
    display: none;
  }
  /*-----------------------------------
    nav_sp
  -----------------------------------*/
  #nav_sp {
    display: block;
    position: relative;
  }
  #nav_sp .btn_container,
  #nav_sp .overlay {
    display: block;
  }
  #nav_sp .btn_container {
    width: 60px;
    height: 35px;
    position: fixed;
    top: 39px;
    right: 30px;
    transition: opacity 0.3s;
    z-index: 1000;
    cursor: pointer;
  }
  #nav_sp .btn_container .btn_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
  }
  #nav_sp .btn_container .btn_wrapper span {
    display: block;
    background: #333333;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  #nav_sp .btn_container .btn_wrapper span.ct {
    bottom: 0;
  }
  #nav_sp .btn_container .btn_wrapper span.bm {
    top: auto;
    bottom: 0;
  }
  #nav_sp .btn_container.active .btn_wrapper .tp {
    top: 7px;
    transform: translateY(11px) translateX(0) rotate(45deg);
  }
  #nav_sp .btn_container.active .btn_wrapper .ct {
    opacity: 0;
  }
  #nav_sp .btn_container.active .btn_wrapper .bm {
    top: 3px;
    transform: translateY(-1px) translateX(0) rotate(-45deg);
  }
  #nav_sp .overlay {
    background: #EDEDE2;
    width: 100vw;
    min-height: 100svh;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    transition: opacity 0.3s, visibility 0.3s;
  }
  #nav_sp .overlay.open {
    opacity: 1;
    visibility: visible;
  }
  #nav_sp .overlay .overlay_menu {
    width: calc(100% - 90px);
    padding-bottom: 50px;
    margin: auto;
    position: relative;
    top: 135px;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 640px) {
  header .hd_logo {
    width: 140px;
  }
  header .hd_wrapper {
    padding: 10px 20px;
  }
  header .main_menu li {
    width: 100%;
  }
  header .main_menu li a {
    font-size: 13px;
    padding: 14px 0 13px;
  }
  header .main_menu li:first-of-type a {
    background: url(../img/common/icon_home.svg) no-repeat top 17px right / 13px;
    padding-right: 23px;
  }
  header .main_menu li.cta_btn {
    margin-top: 30px;
  }
  header .main_menu .cta_btn a {
    width: 200px;
  }
  /*-----------------------------------
    nav_sp
  -----------------------------------*/
  #nav_sp .btn_container {
    width: 35px;
    height: 21px;
    gap: 0 10px;
    top: 24px;
    right: 20px;
  }
  #nav_sp .btn_container:after {
    font-size: 12px;
  }
  #nav_sp .btn_container .btn_wrapper span {
    height: 1px;
  }
  #nav_sp .btn_container.active .btn_wrapper .tp {
    top: 0;
  }
  #nav_sp .overlay .overlay_menu {
    width: calc(100% - 68px);  
    padding-bottom: 100px;
    top: 75px;
  }
  #fix_menu,
  #fix_menu a {
    display: flex;
  }
}
/*-----------------------------------

	contents

-----------------------------------*/
#contents {
  position: relative;
}
/*-----------------------------------

	footer

-----------------------------------*/
footer {
  color: #FFFFFF;
  background: #47A448;
  position: relative;
}
footer a {
  color: #FFFFFF !important;
}
footer #pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  width: 80px;
  height: 80px;
  border-bottom-left-radius: 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
}
footer #pagetop img {
  width: 7px;
}
footer #pagetop:hover {
  opacity: 0.9;
}
footer .ft_wrapper {
  padding: 80px 0 35px;
}
footer .lt_box {
  width: 25%;
}
footer .ft_logo {
	max-width: 220px;
  margin-bottom: 37px;
}
footer .tel_txt {
  display: inline;
}
footer .rt_box {
  width: 65%;
}
footer .ft_nav_tp {
  width: 100%;
  padding-left: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px 0;
  margin-bottom: 86px;
}
footer .ft_nav_tp li {
  width: calc(100% / 4);
}
footer .ft_nav_tp li:nth-of-type(2),
footer .ft_nav_tp li:nth-of-type(6) {
  width: 39%;
}
footer .ft_nav_tp li:nth-of-type(3),
footer .ft_nav_tp li:nth-of-type(7) {
  width: 20%;
}
footer .ft_nav_tp li:nth-of-type(4) {
  width: 16%;
}
footer .ft_nav_tp li a {
  background: url(../img/common/icon_arw_rt_wh.svg) no-repeat top 11px left / 8px;
  padding-left: 16px;
}
footer .ft_nav_bm {
  align-items: flex-start;
  gap: 20px 40px;
}
footer .ft_nav_bm li:not(.copy) a {
  background: url(../img/common/icon_arw_rt_wh.svg) no-repeat top 11px right / 8px;
  padding-right: 16px;
}
footer .ft_nav_bm li.copy {
  margin-left: auto;
}
@media screen and (max-width: 1300px) {
  footer .ft_nav_tp {
    gap: 24px 10px;
  }
  footer .ft_nav_tp li {
    width: calc((100% - 30px) / 4) !important;
  }
}
@media screen and (max-width: 1200px) {
  footer .ft_nav_bm {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 640px) {
  footer #pagetop {
    width: 50px;
    height: 50px;
    border-bottom-left-radius: 10px;
  }
  footer #pagetop img {
    width: 5px;
  }
  footer .ft_wrapper {
    padding: 30px 0 75px;
  }
  footer .lt_box,
  footer .rt_box {
    width: 100%;
  }
  footer .lt_box {
    margin-bottom: 26px;
  }
  footer .ft_logo {
    width: 160px;
    margin-bottom: 17px;
  }
  footer .ft_nav_tp {
    padding-left: 0;
    gap: 14px 0;
    margin-bottom: 36px;
  }
  footer .ft_nav_tp li {
    width: calc((100% - 10px) / 2) !important;
  }
  footer .ft_nav_tp li a {
    background: url(../img/common/icon_arw_rt_wh.svg) no-repeat top 9px left / 6px;
    padding-left: 14px;
    white-space: nowrap;
  }
  footer .ft_nav_bm li.copy {
    font-size: 12px;
    margin-right: auto;
  }
}