@charset "utf-8";
/* -----------------------------------------------------------------
 .l_footer
----------------------------------------------------------------- */
.l_footer {
  padding-bottom: var(--margin_size_60);
}
@media screen and (max-width: 767px) {
  .l_footer {
  }
}
@media print, screen and (min-width: 768px) {
}
@media (hover: hover) and (pointer: fine) {
}

/* -----------------------------------------------------------------
 footer_contact
----------------------------------------------------------------- */
.footer_contact {
  margin-top: var(--margin_size_150);
}
.footer_contact_link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 80vh;
  margin-left: auto;
  margin-right: auto;
  padding: var(--margin_size_200) var(--margin_size_100);
  padding: 8vw;
  border-radius: .5rem;
  background: var(--color_border_pale);
  color: #fff;
  transition: background .6s ease-out, width .6s ease-out;
}
.footer_contact_body {
  display: flex;
  align-items:center;
  gap:2rem;
}
.footer_contact_body .text {
  flex: 1 1 auto;
}
.footer_contact_body .icon {
  flex: 0 1 max(5rem, 7vw);
}

/*----------縦長デバイス----------*/
@media screen and (orientation: portrait) {
  .footer_contact_link {
    min-height:50vh;
  }
}
/*----------js----------*/
.footer_contact_link.js_is_visible {
  width: max(calc(100vw - 80px), 95vw);
  background: var(--color_kamikoubou);
}
/*----------hover----------*/
@media (hover: hover) and (pointer: fine) {
  .footer_contact_link:hover {
    background: var(--color_kamikoubou_dark);
  }
}



/* -----------------------------------------------------------------
 l_footer_info
----------------------------------------------------------------- */
.l_footer_info {
  display: flex;
  justify-content: space-between;
  gap: min(8vw,6rem);
  margin-top: var(--margin_size_200);
}
.l_footer_info_col01 {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap:4rem;
}
.l_footer_info_col02 {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  gap:4rem;
}
@media screen and (max-width: 767px) {
  .l_footer_info {
    flex-direction: column;
    gap: 0;
  }
  .l_footer_info_col02 {
    gap: 1.5rem;
  }
}
/* -----------------------------------------------------------------
 footer_author
----------------------------------------------------------------- */
.footer_author {
}
.footer_author .name {
  font-size: 1.3rem;
}
.footer_author .address {
  display: flex;
  gap:0.8rem;
  margin-top: .6rem;
}
.footer_author .btn_link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .2em .8em;
  border-radius: 9999px;
  background: var(--color_main);
  line-height: 1;
  text-transform: uppercase;
  font-size: 70%;
  color: #fff;
}
.footer_author .phone {
  margin-top: .3rem;
}
/*----------hover----------*/
@media (hover: hover) and (pointer: fine) {
  .footer_author .btn_link:hover {
    background: var(--color_kamikoubou);
  }
}
  
/* -----------------------------------------------------------------
 footer_logo
----------------------------------------------------------------- */
.footer_logo {
  width: max(400px, 40vw);
}
@media screen and (max-width: 767px) {
  .footer_logo {
    width: 100%;
  }
}



/* -----------------------------------------------------------------
 footer_global_nav
----------------------------------------------------------------- */
.footer_global_nav .nav_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 1.5rem min(8vw,6rem);
}
.footer_global_nav .link {
  font-size: 1.6rem;
  font-size: min(1.6rem,2vw);
}
@media screen and (max-width: 767px) {
  .footer_global_nav .nav_list {
    display: none;
  }
}

/*----------hover----------*/
@media (hover: hover) and (pointer: fine) {
  .footer_global_nav .link:hover {
    color: var(--color_kamikoubou);
  }
}

/* -----------------------------------------------------------------
 footer_copyright
----------------------------------------------------------------- */
.footer_copyright {
  font-size: .8rem;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    text-align: center;
  }
}
