@charset "utf-8";
/* -----------------------------------------------------------------
 g_ft
----------------------------------------------------------------- */
/*-------------------- reset --------------------*/


/*-------------------- base --------------------*/
.g_ft {
  position: relative;
  margin-top: -120px;
  padding-top: calc(300px + 4.5rem);
  background: #fff url("../img/common/bg_ptn_green_dot.png") repeat;
  z-index: -1;
  overflow: hidden;
}
.g_ft::before {
  position: absolute;
  top: 0;
  content: "";
  width: 100%;
  height: 300px;
  border-radius: 0 0 300px 0;
  background: var(--color_base);
}
@media screen and (max-width: 767px) {
  .g_ft {
    margin-top: -25vw;
    padding-top: calc(38vw + 4.5rem);
  }
  .g_ft::before {
    height: 38vw;
    border-radius: 0 0 38vw 0;
  }

}
@media print, screen and (min-width: 768px) {

}


/* -----------------------------------------------------------------
 sec_offer
----------------------------------------------------------------- */
.g_ft .sec_offer {
  width: min(1400px,96vw);
  margin: 0 auto;
}
.g_ft .sec_offer .box_offer {
  display: flex;
  gap:min(2.5vw,2rem);
}
.g_ft .sec_offer .box_offer .item {
  width: 100%;
}
.g_ft .sec_offer .box_offer .item .btn_txt {
  display: flex;
  flex-direction: column;
}
.g_ft .sec_offer .box_offer .item .btn_txt .txt_sub {
  font-weight: 700;
  font-size: 0.8rem;
  font-size: min(1.5vw,0.8rem);
}
.g_ft .sec_offer .box_offer .item .btn_txt .txt_main {
  font-weight: 700;
  font-size: min(2.2vw,1.6rem);
}
@media screen and (max-width: 767px) {
.g_ft .sec_offer .box_offer .item .btn_txt .txt_sub {
  font-size: 2vw;
}
.g_ft .sec_offer .box_offer .item .btn_txt .txt_main {
  font-size: 2.6vw;}

}
/* -----------------------------------------------------------------
 link_btn
----------------------------------------------------------------- */
.g_ft .sec_offer .box_offer .item .link_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
/*  gap:1em;*/
  aspect-ratio: 10 / 4.3;
  padding: 3rem 13%;
  border-radius: 9999px;
  background: var(--color_navy_lightest);
  font-weight: 700;
}
.g_ft .sec_offer .box_offer .item .link_btn .arrow_wrap {
  display: inline-flex;
  align-items: center;
  gap:1em;
  font-weight: 700;
}
.g_ft .sec_offer .box_offer .item .link_btn .arrow {
  --btn_width: 3.6em;
  --btn_height: 3.6em;
  --arrow_size: 1.3em;
  position: relative;
  width: var(--btn_width);
  height: var(--btn_height);
  border-radius: 9999px;
  border: var(--color_txt_base) 2px solid;
  background: var(--color_navy_lightest);
  overflow: hidden;
}
.g_ft .sec_offer .box_offer .item .link_btn .arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 2px solid var(--color_txt_hover);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
.g_ft .sec_offer .box_offer .item .link_btn .arrow_svg {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: var(--arrow_size);
  color: var(--color_txt_base);
}
@media (hover: hover) and (pointer: fine) {
  .g_ft .sec_offer .box_offer .item .link_btn .btn_txt,
  .g_ft .sec_offer .box_offer .item .link_btn .arrow,
  .g_ft .sec_offer .box_offer .item .link_btn .arrow::before,
  .g_ft .sec_offer .box_offer .item .link_btn .arrow_svg {
    transition-delay: border .4s;
    transition: all .3s ease, border .3s ease;
  }
  .g_ft .sec_offer .box_offer .item .link_btn:hover .btn_txt {
    color: var(--color_txt_hover);
  }
  .g_ft .sec_offer .box_offer .item .link_btn:hover .arrow {
    border: transparent 0px solid;
  }
  .g_ft .sec_offer .box_offer .item .link_btn:hover .arrow::before {
    transform: scale(1);
    opacity: 1;
  }
  .g_ft .sec_offer .box_offer .item .link_btn:hover .arrow_svg {
    color: var(--color_txt_hover);
  }
}



@media screen and (max-width: 767px) {
  .g_ft .sec_offer .box_offer .item .link_btn {
    padding: 1rem 6% 1rem 11%;
  }
  .g_ft .sec_offer .box_offer .item .link_btn .arrow {
    --btn_width: 2.5rem;
    --btn_height: 2.5rem;
    --arrow_size: 1em;
  }
}

/* -----------------------------------------------------------------
 ft_inner
----------------------------------------------------------------- */
.g_ft .ft_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap:2rem;
  width: min(90vw,1400px);
  margin: 9rem auto 0;
  padding-bottom: 13rem;
}
.g_ft .ft_inner::before,
.g_ft .ft_inner::after{
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  z-index: -1;
}
.g_ft .ft_inner::before{
  right: min(calc(90vw - 18vw), calc(1400px - 13vw));
  width: 18vw;
  height: 30vw;
  background: url("../img/common/ft_bg_obj01.svg") no-repeat;
  background-position: left bottom;
  background-size: contain;
}
.g_ft .ft_inner::after{
  left: min(calc(90vw - 18vw), calc(1400px - 13vw));
  width: 20vw;
  height: 30vw;
  background: url("../img/common/ft_bg_obj02.svg") no-repeat;
  background-position: right bottom;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .g_ft .ft_inner {
    width: 88vw;
    margin-top: 6rem;
    padding-bottom: 20vw;
  }
  .g_ft .ft_inner::before{
    left: -3vw;
    right: auto;
    width: 30vw;
    height: 30vw;
  }
  .g_ft .ft_inner::after{
    left: auto;
    right: -4vw;
    width: 34vw;
    height: 40vw;
  }

}
@media print, screen and (min-width: 768px) {

}

/* -----------------------------------------------------------------
 box_1st .box_1st
----------------------------------------------------------------- */
.g_ft .ft_inner .box_1st {
  display: flex;
  justify-content: space-between;
  gap:6rem;
}
@media screen and (max-width: 767px) {
  .g_ft .ft_inner .box_1st {
    flex-direction: column-reverse;
    gap: 3rem;
  }
}
@media print, screen and (min-width: 768px) {

}

/* -----------------------------------------------------------------
 box_1st .info
----------------------------------------------------------------- */
.g_ft .ft_inner .box_1st .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
  
/* -----------------------------------------------------------------
 box_1st .site_ttl
----------------------------------------------------------------- */
.g_ft .ft_inner .box_1st  .site_ttl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.g_ft .ft_inner .box_1st  .site_ttl .ttl_sub {
  letter-spacing: .1em;
  line-height: 1.4;
  font-weight: 700;
  font-family: var(--font_en);
}

@media screen and (max-width: 767px) {
  .g_ft .ft_inner .box_1st  .site_ttl .logo {
    width: 35vw;
  }
  .g_ft .ft_inner .box_1st  .site_ttl .ttl_sub {
    font-size: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .g_ft .ft_inner .box_1st  .site_ttl .ttl_sub {
    font-size: 0.9rem;
  }
}


/* -----------------------------------------------------------------
 box_1st .txt
----------------------------------------------------------------- */
.g_ft .ft_inner .box_1st .txt {
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
}
@media print, screen and (min-width: 768px) {

}

/* -----------------------------------------------------------------
 box_1st .btn_map
----------------------------------------------------------------- */
.g_ft .ft_inner .box_1st .btn_map {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  padding: .8rem 5rem;
  border: var(--color_txt_base) 2px solid;
  font-size: .8rem;
}
.g_ft .ft_inner .box_1st .btn_map::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  background: var(--color_txt_base);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.g_ft .ft_inner .box_1st .btn_map,
.g_ft .ft_inner .box_1st .btn_map::before {
  transition: all .3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .g_ft .ft_inner .box_1st .btn_map:hover  {
    color: #fff;
    border-color: transparent;
  }
  .g_ft .ft_inner .box_1st .btn_map:hover::before {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
}
@media print, screen and (min-width: 768px) {

}

/* -----------------------------------------------------------------
 box_1st .nav
----------------------------------------------------------------- */
.g_ft .ft_inner .box_1st .nav {
  display: flex;
  flex-direction: column;
  gap:4rem;
}
.g_ft .ft_inner .box_1st .nav_1st {
  display: flex;
  justify-content: space-between;
  gap:3rem;
}
.g_ft .ft_inner .box_1st .nav .item {
  display: flex;
  flex-direction: column;
  gap:1rem;
  font-weight: 700;
}
.g_ft .ft_inner .box_1st .nav .item a {
  display: block;
  padding: 0.5em 0;
  transition: all .3s ease;
}
.g_ft .ft_inner .box_1st .nav .item01 {
  font-size: 1.1rem;
}
.g_ft .ft_inner .box_1st .nav .item02 {
  font-size: 0.9rem;
}
@media (hover: hover) and (pointer: fine) {
  .g_ft .ft_inner .box_1st .nav .item a:hover {
    color: var(--color_txt_hover);
  }
}
@media screen and (max-width: 767px) {
  .g_ft .ft_inner .box_1st .nav {
    gap:2rem;
  }
  .g_ft .ft_inner .box_1st .nav_1st {
    justify-content: space-evenly;
    gap:2rem;
  }
  .g_ft .ft_inner .box_1st .nav .item01 {
    font-size: 0.9em;
  }
  .g_ft .ft_inner .box_1st .nav .item02 {
    font-size: 0.8em;
  }
}
@media print, screen and (min-width: 768px) {

}


/* -----------------------------------------------------------------
 nav_2nd .btn_contact
----------------------------------------------------------------- */
.g_ft .ft_inner .box_1st .btn_contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  padding: 1.5em;
  border: var(--color_txt_base) 2px solid;
  font-size: 1.3rem;
}
.g_ft .ft_inner .box_1st .btn_contact::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  background: var(--color_txt_base);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .g_ft .ft_inner .box_1st .btn_contact,
  .g_ft .ft_inner .box_1st .btn_contact::before {
    transition: all .3s ease;
  }
  .g_ft .ft_inner .box_1st .btn_contact:hover  {
    color: #fff;
    border-color: transparent;
  }
  .g_ft .ft_inner .box_1st .btn_contact:hover::before {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
.g_ft .ft_inner .box_1st .btn_contact {
  padding: 1.2em;
  font-size: 1rem;
  }
}
@media print, screen and (min-width: 768px) {

}

/* -----------------------------------------------------------------
 nav_2nd .nav_2nd
----------------------------------------------------------------- */
.g_ft .ft_inner .box_1st .nav_2nd {
  display: flex;
  flex-direction: column;
  gap:4rem;
}
@media screen and (max-width: 767px) {
  .g_ft .ft_inner .box_1st .nav_2nd {
    gap:2rem;
  }
}
@media print, screen and (min-width: 768px) {

}


/* -----------------------------------------------------------------
 nav_2nd .list_group
----------------------------------------------------------------- */
.g_ft .ft_inner .box_1st .list_group {
  display: flex;
  flex-direction: column;
  gap:0.6em;
}
.g_ft .ft_inner .box_1st .ttl_group {
  font-weight: 700;
  font-size: 0.9rem;
}
.g_ft .ft_inner .box_1st .nav_group {
  display: flex;
  flex-wrap: wrap;
  gap: 0em 2em;
  font-weight: 700;
  font-size: 0.7rem;
}
.g_ft .ft_inner .box_1st .nav_group a {
  display: block;
  padding: 0.5em 0;
  transition: all .3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .g_ft .ft_inner .box_1st .nav_group a:hover {
    color: var(--color_txt_hover);
  }
}
@media screen and (max-width: 767px) {
}
@media print, screen and (min-width: 768px) {

}


/* -----------------------------------------------------------------
 sec_mainbiz_teaser
----------------------------------------------------------------- */
.sec_mainbiz_teaser {
  background: #fff;
}
#slider_teaser {
  padding: 0.8em 0;
  border-top: var(--color_txt_base) 1px solid;
  border-bottom: var(--color_txt_base) 1px solid;
}
.sec_mainbiz_teaser .item {
  font-weight: 700;
  font-size: 1.1rem;
}
.sec_mainbiz_teaser .item .waku {
  display: inline-flex;
  margin: 0 0.25em;
  padding: 0 0.8em;
  border-radius: 9999px;
  border: var(--color_txt_base) 1px solid;
}
@media screen and (max-width: 767px) {
}
@media print, screen and (min-width: 768px) {

}

/* -----------------------------------------------------------------
 sec_mainbiz_teaser .box_body
----------------------------------------------------------------- */
.sec_mainbiz_teaser .box_body {
  position: relative;
  padding: 5rem 0;
}
.sec_mainbiz_teaser .box_body .body {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.sec_mainbiz_teaser .box_body .body .ttl_sub {
  font-weight: 700;
  font-size: 1.2rem;
  font-size: min(1.6vw,1.2rem);
}
.sec_mainbiz_teaser .box_body .body .ttl {
  font-weight: 900;
  font-size: 2.25rem;
  font-size: min(2.6vw,2.25rem);
}
.sec_mainbiz_teaser .box_body .body .txt {
  margin-top: 0.6em;
  line-height: 1.6;
  font-size: 0.9rem;
  font-size: min(1.1vw,0.9rem);
}
.sec_mainbiz_teaser .cmn_link_arrow02 {
  margin-top: 1.5rem;
  font-size: min(1.6vw,1rem);
}
@media screen and (max-width: 767px) {
  .sec_mainbiz_teaser .box_body {
    position: relative;
    padding: 1.5rem 0;
  }
  .sec_mainbiz_teaser .box_body .body {
    width: calc((100% - 8vw) / 2 - 2.5vw + 8vw);
    padding: 5vw;
  }
  .sec_mainbiz_teaser .box_body .body .ttl_sub {
    font-size: 0.9rem;
  }

  .sec_mainbiz_teaser .box_body .body .ttl {
    font-size: 1.2rem;
  }
  .sec_mainbiz_teaser .box_body .body .txt {
    font-size: 0.8rem;
  }
  .sec_mainbiz_teaser .cmn_link_arrow02 {
    font-size: 0.7rem;
  }

}

@media print, screen and (min-width: 768px) {
  .sec_mainbiz_teaser .box_body .body {
    width: calc((100% - 8vw - 15vw) / 4 + 8vw);
    margin-left: calc((100% - 8vw - 15vw) / 4 + 4vw + 5vw - 4vw);
    padding: 5rem 2vw;
  }
  .sec_mainbiz_teaser .box_body .body .txt {
    display: flex;
    flex-direction: column;
  }
}

/* -----------------------------------------------------------------
 sec_mainbiz_teaser .bg_slider
----------------------------------------------------------------- */
.sec_mainbiz_teaser .bg_slider {
  position: relative;
  z-index: 1;
}
#slider_teaser_img .item {
  border-radius: 9999px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
}
@media print, screen and (min-width: 768px) {

}



/* -----------------------------------------------------------------
 box_copyright
----------------------------------------------------------------- */
.g_ft .box_copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
  padding: 1rem 4vw;
  border-top: var(--color_txt_base) 1px solid;
  background: #fff;
}
.g_ft .box_copyright .site_ttl {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.g_ft .box_copyright .site_ttl .ttl_sub {
  letter-spacing: .1em;
  line-height: 1.4;
  font-weight: 700;
  font-family: var(--font_en);
}
.g_ft .box_copyright .copy {
  font-size: 0.6rem;
}


@media screen and (max-width: 767px) {
  .g_ft .box_copyright .site_ttl .logo {
    width: 20vw;
  }
  .g_ft .box_copyright .site_ttl .ttl_sub {
    font-size: 8px;
  }
}
@media print, screen and (min-width: 768px) {
  .g_ft .box_copyright .site_ttl .ttl_sub {
    font-size: 11px;
  }
}











