@charset "utf-8";

.img-container img {
  width: 100%;
  object-fit: contain;
}
.inner {
  width: 80%;
  max-width: 1250px;
  margin: 0 auto;
}

.padding-100 {
  padding: 100px 0;
}

.margin-btm-100 {
  margin-bottom: 100px;
}

.margin-btm-50 {
  margin-bottom: 50px;
}

.font-b {
  font-weight: bold;
}

/* header */
header {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  width: 100%;
  color: #fff;
  z-index: 999;
  border-bottom: 1px solid #e6e6e6;
}
header:after {
  transform: all 0.3s;
  display: block;
  width: 100%;
  position: absolute;
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  top: 80px;
  left: 0;
  z-index: -1;
  height: 0;

  transition: all 0.3s;
}

header.on:after {
  display: block;
  width: 100%;
  position: absolute;
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
  height: 215px;
}

header .inner {
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

header .logo a {
  color: #e6e6e6;
  font-size: 3rem;
}
header nav {
  width: 70%;
  height: 80px;
  display: flex;
  align-items: center;
}
header nav .depth01-container {
  width: 100%;
  justify-content: flex-end;
}
header .depth01 {
  width: calc(100% / 5);
  text-align: center;
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .depth01 > a {
  color: #e6e6e6;
  font-size: 1.8rem;
  transition: all 0.3s;
}

header .depth01:hover {
  font-weight: bold;
}
header .depth02-container {
  position: absolute;
  top: 80px;
  width: 100%;
  height: 0;
  visibility: hidden;
}

header.on .depth02-container {
  height: 215px;
  visibility: visible;
}

header .depth01.on .depth02-container {
  background-color: rgba(255, 255, 255, 0.5);
}

header .depth02-container .depth02 {
  width: 100%;
  text-transform: capitalize;
}

header .depth02-container a {
  text-align: center;
  height: calc(215px / 5);
  display: block;
  width: 100%;
  padding: 0.7em 1em;

  color: #eee;
}

header .depth02-container a:hover {
  background-color: #eee;
  color: #000;
}

/* e::header */

/* s::footer */
footer {
  margin-top: 100px;
  background-color: #000;
  color: #fff;
  padding: 3em 0;
}
footer .bnd-logo {
  width: 65px;
  height: 65px;
  background-size: 100% auto;
  background-position: top;
  background-repeat: no-repeat;
  margin-right: 1.5em;
}

footer .bnd-logo a {
  width: 100%;
  height: 100%;
  display: block;
}

footer .bnd-logo {
  background-image: url('../img/bnd-logo.svg');
}
footer.white-footer {
  margin-top: 0;
  background-color: #fff;
  color: #000;
}
footer.white-footer .bnd-logo {
  background-image: url('../img/bnd-logo-b.svg');
}
footer .logo {
  margin-bottom: 0.5em;
}
footer .f-info-wrap {
  width: 70%;

  flex-wrap: wrap;
}

footer .f-info-wrap li.address {
  width: 100%;
}
footer .f-info-wrap li {
  margin-bottom: 0.5em;
  font-size: 1.5rem;
  padding: 0 1em;
  position: relative;
}

footer .f-info-wrap li.telephone {
  padding-left: 0;
}
footer .f-info-wrap li:first-child {
  padding-left: 0;
}

footer .f-info-wrap li:last-child:after {
  display: none;
}
footer .f-info-wrap li.not-after:after {
  display: none;
}
footer .f-info-wrap li::after {
  content: '';
  display: block;
  height: 0.8em;
  width: 1px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0.2em;
}

footer .f-info-wrap li.copy {
  padding-left: 0;
  width: 100%;
  margin-bottom: 0;
}

footer.white-footer .f-info-wrap li::after {
  background-color: #000;
}

footer .f-info-wrap li .f-tit {
  font-weight: bold;
}

footer .f-info-wrap li span {
  display: inline-block;
}

footer .inner {
  justify-content: space-between;
}

footer .round-btn {
  width: 48px;
  height: 48px;
  border: 2px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1em;
  color: #e6e6e6;
  transition: all 0.3s;
  border-radius: 50%;
}

footer.white-footer .round-btn {
  border-color: #000;
  color: #000;
}

footer .round-btn i {
  font-size: 2.4rem;
}

footer .round-btn:hover {
  background-color: #e6e6e6;
  color: #000;
}

footer.white-footer .round-btn:hover {
  background-color: #000;
  color: #fff;
}

/* e::footer */

@media (min-width: 1024px) {
  .web-container {
    display: block;
  }

  .mobile-container {
    display: none;
  }
}
@media (max-width: 1280px) {
  .inner {
    width: 90%;
  }
  header nav {
    width: 80%;
  }
}

@media (max-width: 1024px) {
  .inner {
    width: 90%;
  }
  .web-container {
    display: none;
  }

  .mobile-container {
    display: block;
  }
  .mobile-menu-btn .close {
    display: none;
  }

  .mobile-menu-btn .open {
    display: block;
  }

  .mobile-menu-btn.on .close {
    display: block;
  }

  .mobile-menu-btn.on .open {
    display: none;
  }
  .mobile-nav-wrap {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-wrap i {
    color: #fff;
    font-size: 4rem;
  }

  .m-depth01-container {
    position: absolute;
    width: 70%;
    height: 100vh;
    overflow: scroll;
    top: 0;
    right: -100%;
    background-color: #fff;
    border-top: 1px solid #000;
    transition: all 0.3s;
  }
  .m-depth01-container.on {
    right: 0;
  }

  .mobile-nav-bg {
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 80px;
    right: 0%;
    width: 100%;
    height: 100vh;
    transition: all 0.3s;
    visibility: hidden;
  }
  .mobile-menu-btn.on + .mobile-nav-bg {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .mobile-nav-bg a {
    text-transform: uppercase;
    display: block;
  }

  .m-depth01 > div {
    font-size: 1.8rem;
    padding: 1em;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    color: #121212;
    text-transform: uppercase;
  }

  .m-depth01 > div:hover {
    background-color: #000;
    color: #fff;
  }
  .m-depth02-container {
    height: 0;

    visibility: hidden;
  }
  .m-depth01.on .m-depth02-container {
    height: 100%;
    visibility: visible;
  }

  .m-depth02 {
    padding: 0.7em 2em;
  }
  footer .inner {
    flex-wrap: wrap;
  }

  footer .bnd-logo {
    width: 40px;
    height: 40px;
  }
  footer .f-info-wrap {
    width: 100%;
  }

  footer .f-info-wrap li {
    font-size: 1.4rem;
  }

  footer .right-container {
    margin-top: 1em;
  }
}

@media (max-width: 650px) {
  .padding-100 {
    padding: 7vh 0;
  }
  .margin-btm-100 {
    margin-bottom: 7vh;
  }
  header .logo a,
  footer .logo {
    font-size: 2.4rem;
  }

  footer {
    padding: 2em 0;
  }

  footer .right-container {
    width: 100%;
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid #ddd;
  }
}

@media (max-width: 480px) {
  footer .f-info-wrap li {
    font-size: 1.2rem;
  }
}
