/********************************************/
/* header */
/********************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 25px 30px 15px;
  background-color: #221A17;
  z-index: 999;
}
@media (max-width: 768px) {
  .header {
    padding: 15px;
    align-items: center;
  }
}

.header .logo {
  display: block;
  width: 200px;
  height: auto;
}
@media (max-width: 1024px) {
  .header .logo {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .header .logo {
    width: 100px;
  }
}
.header .logo a {
  display: block;
  width: 100%;
}
.header .logo a img {
  display: block;
  width: 100%;
}

.header .nav_btn {
  display: none;
}
@media (max-width: 768px) {
  .header .nav_btn {
    position: relative;
    display: block;
    width: 25px;
    height: 16px;
  }
  .header .nav_btn span {
    position: absolute;
    display: block;
    background-color: #FFF;
    width: 100%;
    height: 2px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
  }
  .header .nav_btn span:nth-child(1) {
    top: 0;
  }
  .header .nav_btn span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header .nav_btn span:nth-child(3) {
    bottom: 0;
  }
  .header .nav_btn.is_open span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }
  .header .nav_btn.is_open span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  .header .nav_btn.is_open span:nth-child(3) {
    bottom: 7px;
    transform: rotate(-45deg);
  }
}

.header .header_nav {
  padding-top: 10px;
  width: calc(100% - 200px);
}
@media (max-width: 1024px) {
  .header .header_nav {
    width: calc(100% - 150px);
  }
}
@media (max-width: 768px) {
  .header .header_nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: block;
    padding: 0 15px;
    width: 100%;
    height: 100dvh;
    background-color: #221A17;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header .header_nav.is_open {
    opacity: 1;
    visibility: visible;
  }
}
.header .header_nav .list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: right;
  gap: 1.5em;
  font-size: clamp(1.4rem, 1.5vw, 1.5rem);
}
@media (max-width: 768px) {
  .header .header_nav .list {
    display: block;
    padding-top: 30px;
    padding-bottom: 100px;
    height: 100%;
    font-size: 1.6rem;
    overflow-y: scroll;
  }
}
@media (max-width: 768px) {
  .header .header_nav .list li {
    border-bottom: 1px solid #FFF;
  }
  .header .header_nav .list li:first-child {
    border-top: 1px solid #FFF;
  }
}
.header .header_nav .list li a {
  color: #FFF;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .header .header_nav .list li a {
    display: block;
    padding: 1em 0;
  }
}
.header .header_nav .list li a:hover {
  opacity: 0.7;
}

/********************************************/
/* aside */
/********************************************/
.aside .contact_block {
  padding: 40px 0 100px;
  border-bottom: 1px solid #FFF;
  background-color: #221A17;
}
@media (max-width: 768px) {
  .aside .contact_block {
    padding-bottom: 50px;
  }
}
.aside .contact_block .ac-sec-ttl {
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .aside .contact_block .ac-sec-ttl {
    margin-bottom: 0.4em;
  }
}

.aside .contact_block .flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2%;
}
@media (max-width: 768px) {
  .aside .contact_block .flex {
    display: block;
  }
}
.aside .contact_block .flex .box {
  width: 50%;
}
@media (max-width: 768px) {
  .aside .contact_block .flex .box {
    width: 100%;
  }
}

.aside .contact_block .flex .tel_box {
  color: #FFF;
  text-align: center;
}
@media (max-width: 768px) {
  .aside .contact_block .flex .tel_box {
    margin-bottom: 30px;
  }
}
.aside .contact_block .flex .tel_box .box_ttl {
  display: block;
  padding-left: 0.5em;
  font-size: clamp(1.8rem, 2.3vw, 2.5rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.aside .contact_block .flex .tel_box .tel {
  font-size: clamp(4rem, 4.8vw, 5rem);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}
.aside .contact_block .flex .tel_box .tel a {
  color: inherit;
}
.aside .contact_block .flex .tel_box .tel .small {
  font-size: 0.6em;
}
.aside .contact_block .flex .tel_box .time {
  display: block;
  margin-top: 1em;
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .aside .contact_block .flex .tel_box .time {
    margin-top: 0.5em;
  }
}

.aside .contact_block .flex .other_box {
  font-size: clamp(1.5rem, 1.6vw, 1.7rem);
  color: #FFF;
}
.aside .contact_block .flex .other_box .item {
  border-bottom: 1px solid #FFF;
}
.aside .contact_block .flex .other_box .item:first-child {
  border-top: 1px solid #FFF;
}
.aside .contact_block .flex .other_box .item a {
  position: relative;
  display: block;
  padding: 1.5em 0 1.5em 1em;
  color: inherit;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .aside .contact_block .flex .other_box .item a {
    padding-left: 0;
  }
}
.aside .contact_block .flex .other_box .item a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  margin: auto;
  background: url(../img/ico/ico-arrow-border-white.svg) no-repeat center/contain;
  width: 25px;
  aspect-ratio: 1;
  z-index: 1;
}
@media (max-width: 1024px) {
  .aside .contact_block .flex .other_box .item a:after {
    width: 15px;
  }
}
.aside .contact_block .flex .other_box .item a:hover {
  opacity: 0.7;
}

.aside .download_block {
  padding: 40px 0 100px;
  background-color: #221A17;
}
@media (max-width: 768px) {
  .aside .download_block {
    padding-bottom: 50px;
  }
}
.aside .download_block .flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 4%;
}
@media (max-width: 768px) {
  .aside .download_block .flex {
    display: block;
  }
}
.aside .download_block .flex .left {
  width: 60%;
}
@media (max-width: 768px) {
  .aside .download_block .flex .left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.aside .download_block .flex .left .ac-sec-ttl {
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .aside .download_block .flex .left .ac-sec-ttl {
    margin-bottom: 0.4em;
  }
}
.aside .download_block .flex .left .base--txt {
  margin-bottom: 35px;
  color: #FFF;
}
@media (max-width: 768px) {
  .aside .download_block .flex .left .base--txt {
    margin-bottom: 25px;
  }
}
.aside .download_block .flex .right {
  width: 40%;
}
@media (max-width: 768px) {
  .aside .download_block .flex .right {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
}
.aside .download_block .flex .right img {
  display: block;
  width: 100%;
}

/********************************************/
/* footer */
/********************************************/
.footer {
  padding: 75px 0 40px;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
}
.footer .flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 2%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer .flex {
    display: block;
  }
}

.footer .flex .left {
  width: 30%;
}
@media (max-width: 768px) {
  .footer .flex .left {
    width: 100%;
    margin-bottom: 50px;
  }
}
.footer .flex .left .logo {
  position: relative;
  width: 186px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer .flex .left .logo {
    width: 140px;
    margin-bottom: 15px;
  }
}
.footer .flex .left .logo img {
  display: block;
  width: 100%;
}
.footer .flex .left .txt {
  margin-bottom: 2em;
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.footer .flex .left .txt p {
  display: block;
  font-size: 1em;
  line-height: inherit;
  letter-spacing: inherit;
}
.footer .flex .left .btn a {
  padding-top: 1em;
  padding-bottom: 1em;
  padding-right: 1.5em;
  max-width: 206px;
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
}

.footer .flex .right {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 5%;
  width: 70%;
}
@media (max-width: 768px) {
  .footer .flex .right {
    display: block;
    width: 100%;
  }
}
.footer .flex .right .list {
  font-size: clamp(1.4rem, 1.4vw, 1.5rem);
}
@media (max-width: 768px) {
  .footer .flex .right .list:not(:last-child) {
    margin-bottom: 15px;
  }
}
.footer .flex .right .list:nth-child(1) {
  width: 20%;
}
@media (max-width: 768px) {
  .footer .flex .right .list:nth-child(1) {
    width: 100%;
  }
}
.footer .flex .right .list:nth-child(2), .footer .flex .right .list:nth-child(3) {
  width: 40%;
}
@media (max-width: 768px) {
  .footer .flex .right .list:nth-child(2), .footer .flex .right .list:nth-child(3) {
    width: 100%;
  }
}
.footer .flex .right .list a {
  display: inline-block;
  margin-bottom: 0.3em;
  color: inherit;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .flex .right .list a:hover {
  opacity: 0.7;
}
.footer .flex .right .list .item .child_list {
  padding-left: 1em;
}
.footer .flex .right .list .item .child_list .child_item .gchild_list {
  padding-left: 2em;
}

.footer .sub_nav {
  margin-bottom: 95px;
  text-align: right;
}
@media (max-width: 1024px) {
  .footer .sub_nav {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .footer .sub_nav {
    text-align: left;
  }
}
.footer .sub_nav a {
  display: inline-block;
  width: fit-content;
  color: inherit;
  font-size: clamp(1.4rem, 1.4vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer .copyright {
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}/*# sourceMappingURL=navigation.css.map */