/*========================
全体
========================*/
@media screen and (min-width: 640px){	
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 640px){	
  .pc { display:none; }
  .sp { display:block; }
}

/*========================
header
========================*/
header {
  position: fixed;
  padding: 30px 37px;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffffb3;
  z-index: 2;
}

header .in {
  max-width: 100%;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

header .logo {
  width: 150px;
}
@media only screen and (max-width: 640px) {
  header .logo {
    width: 110px;
    margin: auto;
  }
}

header .glo_navi {
  width: calc(100% - 150px);
}
@media only screen and (max-width: 640px) {
  header .glo_navi {
    position: fixed;
    width: 3.00rem;
    background-color: rgba(26, 26, 26, 0.8);
    height: 100dvh;
    top: 0;
    right: -100vw;
    z-index: 10;
    transition: all 0.3s;
  }
  header .glo_navi.active {
    right: 0;
  }
}

header .glo_navi .list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  header .glo_navi .list {
    display: block;
    width: 70%;
    margin: auto;
    padding-top: 0.40rem;
  }
}

header .glo_navi .list .link {
  padding-right: 40px;
}
@media only screen and (max-width: 640px) {
  header .glo_navi .list .link {
    padding-right: 0;
    padding-bottom: 0.30rem;
  }
}

header .glo_navi .list .link a {
  font-size: 14px;
  font-family: "inria-sans", sans-serif;
  font-weight: 700;
  color: #323232;
  position: relative;
}
@media only screen and (max-width: 640px) {
  header .glo_navi .list .link a {
    color: #FFF;
  }
}

header .glo_navi .list .link a::after {
	position: absolute;
	bottom: -5px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #323232;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

header .glo_navi .list .link a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

header .glo_navi .list .contact {
  width: 140px;
}
@media only screen and (max-width: 640px) {
  header .glo_navi .list .contact {
    width: 100%;
  }
}

header .glo_navi .list .contact a {
  display: block;
  text-align: center;
  font-size: 14px;
  font-family: "inria-sans", sans-serif;
  font-weight: 700;
  color: #323232;
  padding: 7px 0;
  border: 1px solid #323232;
  border-radius: 40px;
}
@media only screen and (max-width: 640px) {
  header .glo_navi .list .contact a {
    color: #FFF;
    border: 1px solid #FFF;
  }
}

header .glo_navi .list .contact a:hover {
  background-color: #323232;
  color: #FFF;
}
@media only screen and (max-width: 640px) {
  header .glo_navi .list .contact a:hover {
    background-color: transparent;
  }
}

/* SPメニュー */
header .sp_bottom_menu_wrap {
  width: 100%;
  height: 60px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

header .sp_bottom_menu_wrap .top_link_wrap {
  width: calc(100% - 60px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

header .sp_bottom_menu_wrap .top_link_wrap .top_link {
  /*width: 33.3%;*/
    width: 25%;
  height: 100%;
  position: relative;
}

header .sp_bottom_menu_wrap .top_link_wrap .top_link a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  box-sizing: border-box;
}

header .sp_bottom_menu_wrap .top_link_wrap .top_link:nth-of-type(2) a {
  border-left: 1px solid #FFF;
  border-right: 1px solid #FFF;
}


header .sp_bottom_menu_wrap .top_link_wrap .top_link a span {
  display: block;
  width: 100%;
  font-size: 12px;
  font-family: "inria-sans", sans-serif;
  font-weight: 700;
  color: #323232;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
}

header .sp_bottom_menu_wrap .menu_btn {
  width: 60px;
  height: 60px;
  background-color: #323232;
  position: relative;
}

header .sp_bottom_menu_wrap .menu_btn span {
  display: block;
  width: 30px;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

header .sp_bottom_menu_wrap .menu_btn span:nth-of-type(1) {
  top: calc(50% - 3px);
}
header .sp_bottom_menu_wrap .menu_btn span:nth-of-type(2) {
  top: calc(50% + 3px);
}

header .sp_bottom_menu_wrap .menu_btn.active span:nth-of-type(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 50%;
}
header .sp_bottom_menu_wrap .menu_btn.active span:nth-of-type(2) {
  transform: translateX(-50%) rotate(-45deg);
  top: 50%;
}

/*========================
footer
========================*/
footer {
  padding-top: 120px;
}
@media only screen and (max-width: 640px) {
  footer {
    padding-top: 30px;
  }
}

footer .in {
  border-top: 1px solid #828282;
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  footer .in {
    border-top: 0;
    padding-bottom: 120px;
  }
}

footer .in .info_wrap {
  width: 100%;
  max-width: 500px;
}

footer .in .info_wrap .logo {
  width: 150px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 640px) {
  footer .in .info_wrap .logo {
    margin: auto;
    padding-bottom: 20px;
    width: 150px;
  }
}

footer .in .info_wrap .office_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  footer .in .info_wrap .office_wrap {
    display: none;
  }
}

footer .in .info_wrap .office_wrap .office_box {
  width: 50%;
}

footer .in .info_wrap .office_tit {
  font-family: "inria-sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 15px;
}

footer .in .info_wrap .address {
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-bottom: 10px;
}

footer .in .info_wrap .tel_num {
  font-size: 21px;
  font-family: "inria-sans", sans-serif;
  font-weight: 700;
}

footer .in .info_wrap .tel_num a {
  color: #969696;
}

footer .in .link_wrap {
  width: 100%;
  max-width: 340px;
}
@media only screen and (max-width: 640px) {
  footer .in .link_wrap {
    display: none;
  }
}

footer .in .link_wrap .list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

footer .in .link_wrap .list .link {
  padding-left: 28px;
  padding-bottom: 20px;
}

footer .in .link_wrap .list .link a {
  font-size: 14px;
  font-family: "inria-sans", sans-serif;
  font-weight: 700;
  color: #323232;
  position: relative;
}

footer .in .link_wrap .list .link a::after {
	position: absolute;
	bottom: -5px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #323232;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

footer .in .link_wrap .list .link a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

footer .in .bottom_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  padding-top: 18px;
}
@media only screen and (max-width: 640px) {
  footer .in .bottom_wrap {
    padding-top: 0;
  }
}

footer .in .bottom_wrap .sns_wrap {
  width: 66px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  footer .in .bottom_wrap .sns_wrap {
    display: none;
  }
}

footer .in .bottom_wrap .sns_wrap a {
  width: 28px;
}

footer .in .bottom_wrap .sns_wrap a:hover {
  opacity: 0.7;
}

footer .in .bottom_wrap .sns_wrap a img {
  display: block;
}

footer .in .bottom_wrap .copyright {
  font-size: 10px;
  font-family: "inria-sans", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 640px) {
  footer .in .bottom_wrap .copyright {
    width: 100%;
    text-align: center;
  }
}

#included-files-fie-on-wp-footer {
  display: none;
}