#l_animation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: var(--white);
  color: var(--black500);
  transition: filter 0.5s, opacity 0.7s;
}
#l_animation.is-hide {
  filter: blur(5rem);
  opacity: 0;
  pointer-events: none;
}
#l_animation.is-load .panel {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}
#l_animation .panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: filter 0.5s, opacity 0.7s, transform 1.2s var(--easeOutCubic);
  filter: blur(5rem);
  opacity: 0;
  transform: translateY(5rem);
}
#l_animation .panel01 p.catch {
  font-family: var(--serif);
  font-size: 10rem;
  margin-right: -5rem;
}
@media screen and (max-width: 767px) {
  #l_animation .panel01 p.catch {
    font-size: 3.2rem;
    margin-right: -3rem;
  }
}
#l_animation .panel01 p.sub {
  font-family: var(--en);
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  #l_animation .panel01 p.sub {
    font-size: 1.5rem;
  }
}
#l_animation .panel02 {
  z-index: 100;
  background: var(--white);
  transition-delay: 1.5s;
}
#l_animation .panel02 .logo10th {
  width: 27.6rem;
  background: var(--gold500);
  -webkit-mask: url("../img/logo_10th.svg") no-repeat;
          mask: url("../img/logo_10th.svg") no-repeat;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
}
@media screen and (max-width: 767px) {
  #l_animation .panel02 .logo10th {
    width: 10rem;
  }
}
#l_animation .panel02 .logo10th img {
  width: 100%;
  opacity: 0;
}

#l_container {
  position: relative;
  z-index: 5;
  background: url("../img/bg_noise.webp") var(--white);
  background-size: 10rem auto;
}
#l_container section, #l_container .c-section {
  position: relative;
  padding: 15rem 0;
}
@media screen and (max-width: 767px) {
  #l_container section, #l_container .c-section {
    padding: 10rem 0;
  }
}

#l_footer {
  position: relative;
  z-index: 5;
  background: var(--black500);
  color: var(--white);
  padding: 8rem 0 5rem;
}
@media screen and (max-width: 767px) {
  #l_footer {
    padding: 8rem 0 3rem;
  }
}
#l_footer #contact {
  display: flex;
  align-items: center;
  padding: var(--space700) 0;
}
@media screen and (max-width: 767px) {
  #l_footer #contact {
    display: block;
  }
}
#l_footer #contact .txtBox p.service {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  font-size: var(--fz140);
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  #l_footer #contact .txtBox p.service {
    justify-content: center;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    font-size: var(--fz100);
    margin-bottom: 2rem;
  }
}
#l_footer #contact .txtBox p.service em {
  background: var(--white);
  color: var(--black500);
  border-radius: 0.7rem;
  line-height: 1;
  padding: 1.1rem 2rem 0.9rem;
}
@media screen and (max-width: 767px) {
  #l_footer #contact .txtBox p.service em {
    border-radius: 0.4rem;
    padding: 0.8rem 0.8rem;
  }
}
#l_footer #contact .txtBox .lead {
  font-size: var(--fz220);
  margin: 0;
  letter-spacing: var(--ls1000);
}
@media screen and (max-width: 767px) {
  #l_footer #contact .txtBox .lead {
    text-align: center;
  }
}
#l_footer #contact .txtBox .lead.-recruit {
  font-size: 3.4rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  #l_footer #contact .txtBox .lead.-recruit {
    font-size: 2.7rem;
  }
}
#l_footer #contact .txtBox .lead.-recruit .small {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #l_footer #contact .txtBox .lead.-recruit .small {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
}
#l_footer #contact .btnBox {
  flex-shrink: 0;
  width: 31.6rem;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #l_footer #contact .btnBox {
    width: 100%;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  #l_footer #contact .btnBox .btn {
    margin-top: 2.5rem;
  }
}
#l_footer #contact .btnBox .btn a {
  position: relative;
  font-family: var(--en);
  display: block;
  border-radius: 9rem;
  border: 1px solid var(--gold200);
  color: var(--gold200);
  font-size: var(--fz200);
  padding: 2rem;
  background: var(--black400);
  overflow: hidden;
  transition: color 0.2s;
}
@media screen and (max-width: 767px) {
  #l_footer #contact .btnBox .btn a {
    padding: 1.5rem;
    font-size: var(--fz200);
  }
}
#l_footer #contact .btnBox .btn a:before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--gold200);
  transition: transform 0.5s var(--easeOutCubic);
  transform: translateY(105%);
}
#l_footer #contact .btnBox .btn a span {
  position: relative;
  z-index: 10;
}
#l_footer #contact .btnBox .btn a:hover {
  opacity: 1;
  color: var(--black);
}
#l_footer #contact .btnBox .btn a:hover:before {
  transform: translateY(0%);
}
#l_footer #sitemap {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--gray500);
  margin-top: 8rem;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap {
    display: block;
    margin-top: 6rem;
    padding-top: 6rem;
  }
}
#l_footer #sitemap > div {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box01 {
    margin-bottom: 3rem;
  }
}
#l_footer #sitemap .box01 .logo {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box01 .logo {
    margin-bottom: 3rem;
  }
}
#l_footer #sitemap .box01 .logo a {
  display: inline-block;
}
#l_footer #sitemap .box01 .logo a img {
  width: 29.4rem;
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box01 .logo a img {
    width: 20rem;
  }
}
#l_footer #sitemap .box01 .company {
  font-size: var(--fz140);
  letter-spacing: var(--ls1200);
}
#l_footer #sitemap .box01 .address,
#l_footer #sitemap .box01 .tel {
  font-size: var(--fz110);
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box02 dl,
  #l_footer #sitemap .box03 dl,
  #l_footer #sitemap .box04 dl {
    border-bottom: 1px solid var(--black);
  }
}
#l_footer #sitemap .box02 dl + dl,
#l_footer #sitemap .box03 dl + dl,
#l_footer #sitemap .box04 dl + dl {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box02 dl + dl,
  #l_footer #sitemap .box03 dl + dl,
  #l_footer #sitemap .box04 dl + dl {
    margin: 0;
  }
}
#l_footer #sitemap .box02 dl dt,
#l_footer #sitemap .box03 dl dt,
#l_footer #sitemap .box04 dl dt {
  position: relative;
  font-size: var(--fz200);
  color: var(--gold300);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box02 dl dt,
  #l_footer #sitemap .box03 dl dt,
  #l_footer #sitemap .box04 dl dt {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box02 dl dt a,
  #l_footer #sitemap .box03 dl dt a,
  #l_footer #sitemap .box04 dl dt a {
    display: block;
    padding: 1.3rem 0;
  }
}
#l_footer #sitemap .box02 dl dt i,
#l_footer #sitemap .box03 dl dt i,
#l_footer #sitemap .box04 dl dt i {
  display: none;
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box02 dl dt i,
  #l_footer #sitemap .box03 dl dt i,
  #l_footer #sitemap .box04 dl dt i {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box02 dl dt i:before, #l_footer #sitemap .box02 dl dt i:after,
  #l_footer #sitemap .box03 dl dt i:before,
  #l_footer #sitemap .box03 dl dt i:after,
  #l_footer #sitemap .box04 dl dt i:before,
  #l_footer #sitemap .box04 dl dt i:after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 1rem;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s;
  }
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box02 dl dt i:after,
  #l_footer #sitemap .box03 dl dt i:after,
  #l_footer #sitemap .box04 dl dt i:after {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box02 dl dt i.is-active:after,
  #l_footer #sitemap .box03 dl dt i.is-active:after,
  #l_footer #sitemap .box04 dl dt i.is-active:after {
    transform: rotate(0deg);
  }
}
#l_footer #sitemap .box02 dl dd,
#l_footer #sitemap .box03 dl dd,
#l_footer #sitemap .box04 dl dd {
  font-size: var(--fz110);
}
@media screen and (max-width: 767px) {
  #l_footer #sitemap .box02 dl dd,
  #l_footer #sitemap .box03 dl dd,
  #l_footer #sitemap .box04 dl dd {
    display: none;
    padding-bottom: 2rem;
  }
}
#l_footer #sitemap .box02 dl dd a,
#l_footer #sitemap .box03 dl dd a,
#l_footer #sitemap .box04 dl dd a {
  position: relative;
  display: block;
  padding-left: 1em;
}
#l_footer #sitemap .box02 dl dd a:before,
#l_footer #sitemap .box03 dl dd a:before,
#l_footer #sitemap .box04 dl dd a:before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0.8rem;
  left: 0;
  width: 0.5rem;
  height: 0.2rem;
  background: var(--white);
}
#l_footer #sitemap .box02 dl dd a + a,
#l_footer #sitemap .box03 dl dd a + a,
#l_footer #sitemap .box04 dl dd a + a {
  margin-top: 0.8rem;
}
#l_footer #bnr {
  padding: 6rem 0 5rem;
}
@media screen and (max-width: 767px) {
  #l_footer #bnr {
    padding: 5rem 0;
  }
}
#l_footer #bnr ul {
  display: flex;
  justify-content: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #l_footer #bnr ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 50%));
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 3rem;
  }
}
#l_footer #bnr ul li a {
  display: block;
  width: 24rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #l_footer #bnr ul li a {
    width: auto;
  }
}
#l_footer #bnr ul li a picture {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  #l_footer #bnr ul li a picture {
    margin-bottom: 0.5rem;
  }
}
#l_footer #bnr ul li a picture img {
  width: 100%;
}
#l_footer #bnr ul li a span.name {
  display: block;
  font-size: var(--fz110);
}
#l_footer #bnr ul li a span.name:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  background: var(--white);
  -webkit-mask: url("../img/i_blank.svg") no-repeat center;
          mask: url("../img/i_blank.svg") no-repeat center;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
}
#l_footer #end {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--gray500);
  padding-top: 5rem;
  text-align: center;
  font-size: var(--fz110);
}
@media screen and (max-width: 767px) {
  #l_footer #end {
    display: block;
    padding-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #l_footer #end .privacy {
    text-decoration: underline;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #l_footer #end .toTop {
    margin-top: 5rem;
  }
}
#l_footer #end .toTop a {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
}
#l_footer #end .toTop a:before {
  content: "";
  position: absolute;
  margin: auto;
  top: -0.1rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  margin-left: 0.5rem;
  background: var(--white);
  -webkit-mask: url("../img/footer_toTop.svg") no-repeat center;
          mask: url("../img/footer_toTop.svg") no-repeat center;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
}

.flowting-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 28rem;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .flowting-banner {
    width: 20rem;
  }
}
.flowting-banner.is-show {
  opacity: 1;
}
.flowting-banner a {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease;
}
.flowting-banner a:hover {
  opacity: 1;
  transform: scale(1.01);
}
.flowting-banner a:hover img {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
.flowting-banner a img {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.flowting-banner .js_close_banner {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 4.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .flowting-banner .js_close_banner {
    top: -1rem;
    right: -1rem;
    width: 2.5rem;
  }
}
.flowting-banner .js_close_banner:hover {
  opacity: 1;
}

#l_header p.fixedLogo {
  position: fixed;
  top: -6rem;
  left: 3rem;
  z-index: 20;
  transition: top 0.5s var(--easeOutCubic);
}
@media screen and (max-width: 767px) {
  #l_header p.fixedLogo {
    left: 2rem;
  }
}
#l_header p.fixedLogo.is-show {
  top: 2.4rem;
}
@media screen and (max-width: 767px) {
  #l_header p.fixedLogo.is-show {
    top: 2.2rem;
  }
}
#l_header p.fixedLogo a {
  display: inline-block;
}
#l_header p.fixedLogo a img {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  #l_header p.fixedLogo a img {
    width: 3.5rem;
  }
}
#l_header p.logo span {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 20;
  margin: auto;
  width: 24.6rem;
}
@media screen and (max-width: 767px) {
  #l_header p.logo span {
    width: 20rem;
    right: 2rem;
  }
}
#l_header p.logo span a {
  display: block;
}
#l_header p.logo span.mark {
  top: 2.8rem;
}
#l_header p.logo span.mark img {
  width: 2rem;
}
@media screen and (max-width: 767px) {
  #l_header p.logo span.mark img {
    width: 1.8rem;
  }
}
#l_header p.logo span.typo {
  mix-blend-mode: difference;
  text-align: right;
  top: 3rem;
  background: #fff;
  -webkit-mask: url("../img/logo_typo.svg") no-repeat center right;
          mask: url("../img/logo_typo.svg") no-repeat center right;
  -webkit-mask-size: 21.6rem auto;
          mask-size: 21.6rem auto;
  transition: background 0.3s;
}
#l_header p.logo span.typo.-top {
  mix-blend-mode: normal;
}
@media screen and (max-width: 767px) {
  #l_header p.logo span.typo {
    -webkit-mask-size: 17rem auto;
            mask-size: 17rem auto;
  }
}
#l_header p.logo span.typo img {
  width: 21.6rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #l_header p.logo span.typo img {
    width: 17rem;
  }
}
#l_header .drawerBtn {
  position: fixed;
  top: 2rem;
  right: 3rem;
  z-index: 50;
  border-radius: 9rem;
  width: 5.8rem;
  height: 5.8rem;
  border: 1px solid var(--gold500);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #l_header .drawerBtn {
    right: 1rem;
    width: 4.5rem;
    height: 4.5rem;
  }
}
#l_header .drawerBtn i {
  position: absolute;
  top: 2.2rem;
  left: 1.7rem;
  width: 2.3rem;
  height: 1px;
  background: var(--gold500);
  transition: transform 0.5s var(--easeOutCubic), top 0.5s var(--easeOutCubic);
}
@media screen and (max-width: 767px) {
  #l_header .drawerBtn i {
    top: 1.8rem;
    left: 1.2rem;
    width: 2rem;
  }
}
#l_header .drawerBtn i:nth-child(2) {
  top: 3.4rem;
}
@media screen and (max-width: 767px) {
  #l_header .drawerBtn i:nth-child(2) {
    top: 2.6rem;
  }
}
#l_header .drawerBtn.is-open i {
  top: 2.8rem;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  #l_header .drawerBtn.is-open i {
    top: 2.2rem;
  }
}
#l_header .drawerBtn.is-open i:nth-child(2) {
  transform: rotate(-45deg);
}
#l_header .drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  background: var(--white);
  padding: 6rem 0;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
#l_header .drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}
#l_header .drawer.is-open .top,
#l_header .drawer.is-open .sitemap,
#l_header .drawer.is-open .bottom {
  opacity: 1;
  transform: translateY(0);
}
#l_header .drawer.is-open .top {
  transition-delay: 0.15s;
}
#l_header .drawer.is-open .sitemap {
  transition-delay: 0.3s;
}
#l_header .drawer.is-open .bottom {
  transition-delay: 0.45s;
}
#l_header .drawer .top,
#l_header .drawer .sitemap,
#l_header .drawer .bottom {
  transition: opacity 0.5s, transform 0.5s var(--easeOutCubic);
  opacity: 0;
  transform: translateY(7rem);
}
#l_header .drawer .top {
  display: flex;
  justify-content: center;
  text-align: center;
}
#l_header .drawer .top a {
  display: inline-block;
}
#l_header .drawer .top a .identity {
  display: flex;
  align-items: center;
}
#l_header .drawer .top a .identity span.mark {
  width: 3.1rem;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  #l_header .drawer .top a .identity span.mark {
    width: 2.2rem;
    margin-right: 1rem;
  }
}
#l_header .drawer .top a .identity span.typo {
  width: 38.6rem;
  background: var(--black);
  -webkit-mask: url("../img/logo_typo.svg") no-repeat center left;
          mask: url("../img/logo_typo.svg") no-repeat center left;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
}
@media screen and (max-width: 767px) {
  #l_header .drawer .top a .identity span.typo {
    width: 20rem;
  }
}
#l_header .drawer .top a .identity span.typo img {
  opacity: 0;
}
#l_header .drawer .top a .identity span img {
  width: 100%;
}
#l_header .drawer .top a .voice {
  font-size: 2rem;
  letter-spacing: 0.5em;
  font-weight: var(--fontBold);
}
@media screen and (max-width: 767px) {
  #l_header .drawer .top a .voice {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
}
#l_header .drawer .sitemap {
  display: flex;
  justify-content: space-between;
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap {
    display: block;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap dl {
    border-bottom: 1px solid var(--gray300);
  }
}
#l_header .drawer .sitemap dl + dl {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap dl + dl {
    margin-top: 0;
  }
}
#l_header .drawer .sitemap dl dt {
  position: relative;
  font-size: var(--fz210);
  color: var(--gold500);
  margin-bottom: 1rem;
  letter-spacing: var(--ls100);
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap dl dt {
    font-size: var(--fz200);
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap dl dt a {
    display: block;
    padding: 1.3rem 0;
  }
}
#l_header .drawer .sitemap dl dt i {
  display: none;
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap dl dt i {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap dl dt i:before, #l_header .drawer .sitemap dl dt i:after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 1rem;
    height: 1px;
    background: var(--gold500);
    transition: transform 0.3s;
  }
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap dl dt i:after {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap dl dt i.is-active:after {
    transform: rotate(0deg);
  }
}
#l_header .drawer .sitemap dl dd {
  font-size: var(--fz200);
  letter-spacing: var(--ls300);
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap dl dd {
    display: none;
    font-size: var(--fz110);
    padding-bottom: 2rem;
  }
}
#l_header .drawer .sitemap dl dd a {
  position: relative;
  display: block;
  padding-left: 1em;
}
#l_header .drawer .sitemap dl dd a:before {
  content: "";
  position: absolute;
  margin: auto;
  top: 1.4rem;
  left: 0;
  width: 0.5rem;
  height: 0.2rem;
  background: var(--black);
}
@media screen and (max-width: 767px) {
  #l_header .drawer .sitemap dl dd a:before {
    top: 0.8rem;
  }
}
#l_header .drawer .sitemap dl dd a + a {
  margin-top: 0.8rem;
}
#l_header .drawer .bottom {
  display: flex;
  margin-top: 5rem;
  padding-top: 6rem;
  border-top: 1px solid var(--gray500);
}
@media screen and (max-width: 767px) {
  #l_header .drawer .bottom {
    display: block;
    margin-top: 4rem;
    padding-top: 0;
    border: none;
  }
}
#l_header .drawer .bottom .company {
  order: 1;
}
@media screen and (max-width: 767px) {
  #l_header .drawer .bottom .company {
    margin-top: 7rem;
    text-align: right;
  }
}
#l_header .drawer .bottom .company h3.name {
  font-size: var(--fz140);
  margin-bottom: 1rem;
}
#l_header .drawer .bottom .company .address,
#l_header .drawer .bottom .company .tel {
  font-size: var(--fz110);
}
#l_header .drawer .bottom ul.bnr {
  order: 2;
  display: flex;
  justify-content: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  text-align: center;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #l_header .drawer .bottom ul.bnr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 50%));
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 3rem;
  }
}
#l_header .drawer .bottom ul.bnr li a {
  display: block;
  width: 24rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #l_header .drawer .bottom ul.bnr li a {
    width: auto;
  }
}
#l_header .drawer .bottom ul.bnr li a picture {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  #l_header .drawer .bottom ul.bnr li a picture {
    margin-bottom: 0.5rem;
  }
}
#l_header .drawer .bottom ul.bnr li a picture img {
  width: 100%;
}
#l_header .drawer .bottom ul.bnr li a span.name {
  display: block;
  font-size: var(--fz110);
}
#l_header .drawer .bottom ul.bnr li a span.name:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  background: var(--black);
  -webkit-mask: url("../img/i_blank.svg") no-repeat center;
          mask: url("../img/i_blank.svg") no-repeat center;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
}

#l_modal {
  position: relative;
  z-index: 1000;
}

html.modal-open, body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=layout.css.map */