:root {
  --bc-orange: #d4792a;
  --bc-gray-d: #353535;
  --bc-gray-l: #ccc;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (max-width: 501px) {
  .pc2 {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 501px) {
  .sp2 {
    display: none !important;
  }
}

.ov {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .ov:hover {
    opacity: 0.8;
  }
}

i[id] {
  position: absolute;
  top: -160px;
  left: 0;
}
@media screen and (max-width: 768px) {
  i[id] {
    top: -140px;
  }
}

body {
  width: 100%;
  background-color: #f3f3f7;
  overflow-x: hidden;
}
body .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 190px;
  height: 45px;
  background-color: var(--bc-gray-d);
  color: #fff;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  body .btn:hover {
    opacity: 0.8;
  }
}
body .btn span {
  margin: 0 auto;
  font-size: 18px;
}
body .btn::after {
  content: "";
  width: 40px;
  height: 45px;
  background: #ccc url(/common/img/link_arw.png) no-repeat center center/15px 10px;
}

header {
  width: 100%;
  background-color: #f3f3f7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header .h-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1500px;
  width: 90%;
  height: 160px;
  margin: 0 auto;
  padding-top: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .h-inner {
    width: 100%;
    height: 140px;
    padding: 20px 5% 0;
  }
  header .h-inner a.logo {
    width: 180px;
  }
}
header .spNavTgl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 1030;
}
header .spNavTgl.ex i {
  background-color: #f3f3f7;
}
header .spNavTgl.ex i::before {
  top: 0;
  transform: rotate(-45deg);
}
header .spNavTgl.ex i::after {
  bottom: 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  header .spNavTgl:not(.ex) + nav {
    pointer-events: none;
    opacity: 0;
  }
}
header .spNavTgl i {
  position: relative;
}
header .spNavTgl i, header .spNavTgl i::before, header .spNavTgl i::after {
  width: 40px;
  height: 2px;
  background-color: var(--bc-orange);
  transition: 0.5s;
}
header .spNavTgl i::before, header .spNavTgl i::after {
  content: "";
  position: absolute;
}
header .spNavTgl i::before {
  top: -15px;
}
header .spNavTgl i::after {
  bottom: -15px;
}
header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 35px;
  width: calc(100% - 250px);
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  header nav {
    height: 62px;
  }
}
@media screen and (max-width: 768px) {
  header nav {
    flex-direction: column;
    align-items: center;
    gap: 5vh 0;
    width: 100%;
    padding: 0 2.5% 2.5vh;
    border-bottom: 3px solid var(--bc-orange);
    background-color: #f3f3f7;
    position: absolute;
    top: 140px;
    left: 0;
  }
  header nav small {
    color: #a1a1a1;
    font-size: 12px;
  }
}
header nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 40px;
  width: calc(100% - 210px);
}
@media screen and (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5vh 0;
    max-width: 500px;
    width: 90%;
  }
  header nav ul li {
    width: 100%;
  }
}
header nav ul a {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  header nav ul a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding-right: 2.5%;
    border-bottom: 1px solid #aaa;
  }
  header nav ul a::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    rotate: 45deg;
  }
}
header nav ul a:hover {
  text-decoration: underline;
}

main {
  width: 100%;
  padding: 160px 0 0;
}
@media screen and (max-width: 768px) {
  main {
    padding: 140px 0 0;
  }
}
main section {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
main section .inner {
  width: 90%;
  margin: 0 auto;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #929292;
}
footer .f-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  footer .f-inner {
    flex-direction: column;
    gap: 18px 0;
  }
}
footer .f-inner nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 35px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  footer .f-inner nav {
    flex-direction: column;
    gap: 34px 4%;
  }
}
footer .f-inner nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
@media screen and (max-width: 768px) {
  footer .f-inner nav ul {
    gap: 18px 4%;
  }
  footer .f-inner nav ul li {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  footer .f-inner nav ul a {
    display: flex;
    align-items: center;
    gap: 0 8px;
  }
  footer .f-inner nav ul a::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #000;
  }
}
footer .f-inner nav ul a:hover {
  text-decoration: underline;
}
footer small {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #000;
  color: #fff;
}/*# sourceMappingURL=common_style.css.map */