@charset "UTF-8";
.l-header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-header:not(.fixed) {
  position: absolute;
}

.l-header.fixed {
  position: fixed;
}

.l-header .logo img {
  width: 85px;
}

.l-header .hamburger {
  position: fixed;
  top: 2.5%;
  right: 5%;
  width: 9vw;
  height: 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 203;
  cursor: pointer;
}

.l-header .hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 0.6vw;
  background: #231815;
  display: block;
  -webkit-transition: .5s;
  transition: .5s;
}

.l-header .hamburger span:nth-child(1) {
  top: 0;
  bottom: auto;
}

.l-header .hamburger span:nth-child(2) {
  top: auto;
  bottom: 0;
}

.is-menuOpen .l-header .hamburger {
  height: 9vw;
}

.is-menuOpen .l-header .hamburger span {
  background: #fff;
}

.is-menuOpen .l-header .hamburger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 0;
}

.is-menuOpen .l-header .hamburger span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

.l-header .copyright {
  font-size: 1.1rem;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  margin: auto;
}

@media screen and (min-width: 801px) {
  .l-header.scrolled {
    background: white;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  }
  .l-header_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 75px;
    padding: 10px 3.5%;
    position: relative;
  }
  .l-header .global-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header .global-nav_parent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-header .global-nav_parent > li:not(:first-child) {
    margin-left: 1em;
  }
  .l-header .global-nav_parent > li.hasChildren {
    position: relative;
  }
  .l-header .global-nav_parent > li > a {
    font-weight: bold;
    display: block;
    padding: 0.5em 1em;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-header .global-nav_parent > li > a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    margin: auto;
    width: 0;
    height: 4px;
    background: var(--mainColor);
    border-radius: 2px;
    -webkit-transition: inherit;
    transition: inherit;
  }
  .l-header .global-nav_parent > li > a:hover {
    color: var(--mainColor);
  }
  .l-header .global-nav_parent > li > a:hover:after {
    width: 100%;
  }
  .l-header .global-nav > *:not(:first-child) {
    margin-left: 1.25em;
  }
  .l-header .global-nav .c-btn a {
    font-size: inherit;
    padding: 0.25em 1em;
    min-height: 2.8em;
  }
  .l-header .global-nav .c-btn a:after {
    content: none;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  .l-header_wrap {
    height: 6.78vw;
  }
  .l-header .global-nav {
    font-size: 1.33vw;
  }
  .l-header .global-nav_parent > li > a {
    padding: 0.5em 0.5em;
  }
}

@media screen and (max-width: 800px) {
  .l-header_wrap {
    padding: 18px 5%;
  }
  .l-header .logo img {
    max-width: 20%;
  }
  .is-menuOpen .l-header .logo {
    -webkit-filter: contrast(0) brightness(2);
            filter: contrast(0) brightness(2);
  }
  .l-header .global-nav {
    padding: 20vh 12% 10%;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 202;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
    pointer-events: none;
  }
  .l-header .global-nav ul {
    margin-bottom: 12vw;
  }
  .l-header .global-nav ul li {
    font-size: 4.1vw;
  }
  .l-header .global-nav ul li a {
    font-weight: bold;
    letter-spacing: 0.05em;
    display: block;
    color: #fff;
  }
  .l-header .global-nav ul li:not(:first-child) {
    margin-top: 1.5em;
  }
  .l-header .global-nav > *:not(:first-child) {
    margin-top: 1.5em;
  }
  .l-header .global-nav .c-btn a {
    width: 100% !important;
    max-width: 100%;
  }
  .is-menuOpen .l-header .global-nav {
    opacity: 1;
    pointer-events: auto;
  }
}

#is-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222121;
  z-index: 99;
}

.l-footer {
  padding: 70px 0 35px;
  color: #fff;
  background: var(--subColor);
}

.l-footer .logo {
  position: relative;
}

.l-footer .logo img {
  width: 108px;
}

.l-footer .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em 4.5em;
}

.l-footer .menu a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.l-footer .menu a:hover {
  color: var(--mainColor);
}

.l-footer .copyright {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.l-footer_note {
  margin: 70px 0 0 auto;
  width: fit-content;
  font-size: 11px;
}

@media screen and (min-width: 801px) {
  .l-footer .logo {
    padding-right: 9%;
  }
  .l-footer .logo:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
  }
  .l-footer_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

}

@media screen and (max-width: 1220px) {
  .l-footer {
    padding: 14% 0;
  }
}

@media screen and (max-width: 800px) {
  .l-footer .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.5em;
  }
  .l-footer .copyright {
    margin-top: 15%;
  }
  .l-footer_note {
    font-size: 10px;
  }

  .l-footer_note {
    margin: 70px auto 0 0;
  }

}

#totop {
  position: fixed;
  right: 2vw;
  /* bottom: 2vw; */
  bottom: 5vw;
  z-index: 98;
}

#totop a {
  display: block;
  width: 72px;
  max-width: 7vw;
  aspect-ratio: 1 / 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #ff6b6b), to(#ff9731));
  background: linear-gradient(#ff6b6b 10%, #ff9731);
  border-radius: 50%;
  position: relative;
}

#totop a:after {
  content: '';
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 22%;
  aspect-ratio: 1 / 1;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 800px) {
  #totop a {
    max-width: 12vw;
  }
}

/* コンテイナー */
.l-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

@media screen and (max-width: 1220px) {
  .l-container {
    padding-left: 8%;
    padding-right: 8%;
  }
}

/* PC/SP */
@media screen and (min-width: 801px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

/* clearfix */
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.l-aside .cta-bnr {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 101;
}

.l-aside .cta-bnr img {
  width: 100%;
}

@media screen and (min-width: 801px) {
  .l-aside .cta-bnr {
    max-width: 25%;
  }
}
