header {
  position: relative;
  width: 100%;
  padding: 15px 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-transition: background ease 0.3s;
  transition: background ease 0.3s;
}
header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header.main {
  position: fixed;
  top: 0;
  left: 0;
}
header:hover, header.sub, header.active {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
header:hover .header-logo, header.sub .header-logo, header.active .header-logo {
  display: block;
  background-image: url(/assets/images/common/header_logo02.png);
}
header:hover .header-nav__depth1, header.sub .header-nav__depth1, header.active .header-nav__depth1 {
  color: #000;
}
header:hover .header-tel, header.sub .header-tel, header.active .header-tel {
  background: #146451;
}
header:hover .header-tel a, header.sub .header-tel a, header.active .header-tel a {
  color: #fff;
}
header:hover .header-tel span, header.sub .header-tel span, header.active .header-tel span {
  color: #eef2bf;
}
header:hover .hamburger-btn span, header.sub .hamburger-btn span, header.active .hamburger-btn span {
  background: #000;
}

.header-logo {
  display: block;
  background-image: url(/assets/images/common/header_logo01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 184px;
  height: 50px;
}

.header-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-nav ul > li {
  position: relative;
}
.header-nav ul > li:not(:last-child) {
  margin-right: 80px;
}
.header-nav ul > li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}
.header-nav ul > li.active::before {
  opacity: 1;
  -webkit-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
}

.header-nav__depth1 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.header-side {
  display: none;
}

.header-tel {
  background: #eef2bf;
  border-radius: 18px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 16px;
  font-weight: 700;
}
.header-tel span {
  display: inline-block;
  color: var(--green);
}

.header-nav__depth2 {
  position: absolute;
  background-color: #fff;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 0.5rem;
  width: 270px;
  padding: 24px 20px;
  border: 1px solid #eee;
  display: none;
}
.header-nav__depth2.isShow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-nav__depth2 > a {
  font-size: 18px;
  line-height: 1em;
  font-weight: 600;
}
.header-nav__depth2 > a:not(:last-child) {
  margin-bottom: 17px;
}
.header-nav__depth2 > a:hover {
  color: var(--green);
}

.hamburger-btn {
  width: 26px;
  cursor: pointer;
  position: relative;
  display: none;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 3px;
}

.hamburger-btn span:not(:first-child) {
  margin-top: 6px;
}

.hamburger-btn span:nth-child(1),
.hamburger-btn span:nth-child(2) {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.hamburger-btn span:nth-child(2) {
  width: 70%;
}

.hamburger-btn span:nth-child(3) {
  -webkit-transform: rotate(0deg) translate(0, 0);
          transform: rotate(0deg) translate(0, 0);
}

.hamburger-btn.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(7px, 6px);
          transform: rotate(45deg) translate(7px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.hamburger-btn.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.aside_btns {
  position: fixed;
  width: 60px;
  right: 50px;
  bottom: 120px;
  z-index: 1;
}

.aside_btns [class*=btn__aside] {
  display: inline-block;
  width: 60px;
  height: 60x;
  margin-top: 10px;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
}

.aside_btns .btn__aside--org {
  background-color: var(--green);
  color: #fff;
  font-size: 12px;
}

.aside_btns .btn__aside--tel {
  background-color: #eef2bf;
  color: var(--green);
  font-size: 12px;
}

.aside_btns .btn__aside--up {
  color: transparent;
  font-size: 0;
  background: #f5f5f5 url(/assets/images/common/icon_top.png) no-repeat 50% 50%;
  background-size: 34px;
}

footer {
  background-color: #433e39;
  padding: 50px 0 40px;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
}

.footer-info {
  margin-left: 40px;
}
.footer-info > p {
  color: #f4f4f4;
  font-size: 16px;
}
.footer-info > p b {
  color: #fff;
}
.footer-info > p:not(:last-child) {
  margin-bottom: 10px;
}
.footer-info > p span {
  display: inline-block;
  position: relative;
}
.footer-info > p span:not(:last-child) {
  margin-right: 20px;
}
.footer-info > p span:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -13px;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-nav > a {
  color: #fff;
  font-weight: 700;
}
.footer-nav > a:not(:last-child) {
  margin-right: 32px;
}

.footer-copy {
  color: #f4f4f4;
  font-size: 16px;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

.dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
  opacity: 0;
}

.show-default {
  display: block !important;
}

.hide-default {
  display: none !important;
}

@media all and (max-width: 1600px) {
  .header-nav ul > li:not(:last-child) {
    margin-right: 60px;
  }
}
@media all and (max-width: 1350px) {
  .header-tel {
    display: none;
  }
  .header-nav {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-left: auto;
  }
}
@media all and (max-width: 1200px) {
  header {
    position: fixed !important;
  }
  .header-nav {
    display: none;
  }
  .header-side {
    display: block;
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100%;
    background-color: #fff;
    padding: 0 1rem 1rem 2.5rem;
    z-index: 1002;
    -webkit-transition: right ease 0.3s;
    transition: right ease 0.3s;
  }
  .header-side.active {
    right: 0;
  }
  .header-side__hamburger {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-side__hamburger .hamburger-btn span {
    background: #000;
  }
  .header-side ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-side ul > li {
    position: relative;
    padding: 1.5rem 0;
  }
  .header-side ul > li:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }
  .header-side ul > li.hasSub::after {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(/assets/images/common/side_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 0;
    top: 23px;
    -webkit-transition: -webkit-transform ease 0.3s;
    transition: -webkit-transform ease 0.3s;
    transition: transform ease 0.3s;
    transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  }
  .header-side ul > li.hasSub.active::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .header-side ul > li.hasSub.active .header-side__depth1::before {
    opacity: 1;
    -webkit-transition: opacity ease 0.3s;
    transition: opacity ease 0.3s;
  }
  .header-side ul > li.hasSub.active .header-side__depth1 + .header-side__depth2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-side__depth1 {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
  }
  .header-side__depth1::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--green);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: -15px;
    opacity: 0;
  }
  .header-side__depth2 {
    display: none;
    margin-top: 1rem;
  }
  .header-side__depth2 > a {
    font-size: 1.25rem;
  }
  .header-side__depth2 > a:not(:last-child) {
    margin-bottom: 10px;
  }
  .hamburger-btn {
    display: block;
  }
}
@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }
  .hide-1024 {
    display: none !important;
  }
  .aside_btns {
    bottom: 25%;
    right: 3%;
  }
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-info {
    margin-left: 0;
    margin-top: 2rem;
    text-align: center;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-copy {
    margin-top: 2rem;
  }
}
@media all and (max-width: 768px) {
  .show-768 {
    display: block !important;
  }
  .hide-768 {
    display: none !important;
  }
}
@media all and (max-width: 640px) {
  .show-640 {
    display: block !important;
  }
  .hide-640 {
    display: none !important;
  }
  html,
  body {
    font-size: 11px;
  }
  .header-logo {
    width: 140px;
    height: 38px;
  }
  .header-side {
    width: 80%;
  }
  .header-side__hamburger {
    height: 69px;
  }
  .header-side__depth1::before {
    width: 5px;
    height: 5px;
    top: 9px;
    left: -12px;
  }
  .header-side ul > li.hasSub::after {
    top: 20px;
    width: 20px;
    height: 20px;
  }
  footer {
    padding: 2.5rem 0;
  }
  .footer-top {
    padding-bottom: 2rem;
  }
  .footer-top > a > img {
    width: 140px;
  }
  .footer-info > p {
    font-size: 1rem;
    line-height: 1.6em;
  }
  .footer-bottom {
    margin-top: 2rem;
  }
  .footer-nav > a:not(:last-child) {
    margin-right: 0.75rem;
  }
  .footer-copy {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}