@charset "UTF-8";
/*
 * Base Group
 */
.lh-tight {
  line-height: 1.2;
}

.lh-normal {
  line-height: 1.5;
}

.lh-loose {
  line-height: 1.8;
}

.ls-tight {
  letter-spacing: -0.04em;
}

.ls-normal {
  letter-spacing: 0em;
}

.ls-loose {
  letter-spacing: 0.04em;
}

/*
font size settings
$font-sizes:最小値と最大値を指定
記入例：@include font-size(mapname);
*/
/*
 * Base Group
 */
:root {
  --spacing-scale: 1;
}

@media (max-width: 479px) {
  :root {
    --spacing-scale: 0.65;
  }
}
html {
  font-size: 16px;
}
@media screen and (max-width: 1240px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 896px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  html {
    font-size: 12px;
  }
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Segoe UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  color: #444;
  font-size: 1rem;
}

a {
  transition: all 0.3s;
  text-decoration: none;
}
a:link, a:visited {
  color: var(--color-link);
}
a:hover, a:active {
  color: color-mix(in srgb, var(--color-link) 80%, black);
}

img {
  max-width: 100%;
  height: auto;
}

/*
 * Layout Group
 */
/*
 * Base Group
 */
.ly_header_inner {
  max-width: 1600px;
  margin: 0 auto;
}

.ly_cont {
  background-color: #fff;
}

.ly_contHidden {
  overflow: hidden;
  background-color: #fff;
}

.ly_cont_inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .ly_cont_inner {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.ly_footer {
  position: relative;
}

.ly_footer_inner {
  max-width: 1200px;
  margin: 0 auto;
}

/*
 * Module Group - Block
 */
/*
 * Base Group
 */
.bl_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid;
  border-color: var(--color-white);
}

.bl_header_inner {
  position: relative;
  padding-top: 1.625rem;
  padding-right: 4rem;
  padding-bottom: 2rem;
  padding-left: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 50px;
}
@media screen and (max-width: 479px) {
  .bl_header_inner {
    padding-left: 1.5rem;
  }
}

.bl_header_logo {
  max-width: 200px;
  width: 100%;
}

.bl_header_logo_wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bl_header_logo_ttl {
  font-weight: 500;
}
.bl_header_logo_ttl.__front {
  color: var(--color-white);
}

@media screen and (max-width: 896px) {
  .bl_header_nav {
    display: none;
  }
}

.bl_header_links {
  display: flex;
}
.bl_header_links.__lower .bl_header_item > a:link, .bl_header_links.__lower .bl_header_item > a:visited {
  color: var(--color-headerNavLower);
}
.bl_header_links.__lower .bl_header_item > a:hover, .bl_header_links.__lower .bl_header_item > a:active {
  color: color-mix(in srgb, var(--color-headerNavLower) 80%, black);
}

.bl_header_item > a {
  padding-right: 24px;
  padding-left: 24px;
}
.bl_header_item > a:link, .bl_header_item > a:visited {
  color: var(--color-headerNav);
}
.bl_header_item > a:hover, .bl_header_item > a:active {
  color: color-mix(in srgb, var(--color-headerNav) 80%, black);
}

/*
 * Base Group
 */
.bl_footer {
  position: relative;
  padding-top: 5rem;
  background-color: var(--color-footer-bgc);
  color: var(--color-white);
}

.bl_footer_inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .bl_footer_inner {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.bl_footer_logo_link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.bl_footer_logo_link:link, .bl_footer_logo_link:visited {
  color: var(--color-white);
}
.bl_footer_logo_link:hover, .bl_footer_logo_link:active {
  color: color-mix(in srgb, var(--color-white) 80%, black);
}

.bl_footer_logo_img > img {
  height: 74px;
}
@media screen and (max-width: 479px) {
  .bl_footer_logo_img > img {
    height: 54px;
  }
}

.bl_footer_logo_ttl {
  font-size: var(--fontsize-l);
  font-weight: 500;
  color: var(--color-white);
}

.bl_footer_main {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.bl_footer_menu {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bl_footer_menu_link {
  position: relative;
  padding: 0.25rem 0.25rem 0.25rem 1.5rem;
}
.bl_footer_menu_link:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 1rem;
  height: 1px;
  background-color: var(--color-white);
}
.bl_footer_menu_link:link, .bl_footer_menu_link:visited {
  color: var(--color-white);
}
.bl_footer_menu_link:hover, .bl_footer_menu_link:active {
  color: color-mix(in srgb, var(--color-white) 80%, black);
}

.bl_footer_social {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.25rem;
}

.bl_footer_social_link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: bold;
}
.bl_footer_social_link:link, .bl_footer_social_link:visited {
  color: var(--color-white);
}
.bl_footer_social_link:hover, .bl_footer_social_link:active {
  color: color-mix(in srgb, var(--color-white) 80%, black);
}
.bl_footer_social_link > i {
  font-size: 1.5rem;
  max-width: 1.5rem;
}

.bl_footer_copyright {
  margin-top: 5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: var(--fontsize-s);
  border-top: 1px solid var(--color-white);
}

/*
 * Base Group
 */
.bl_media {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bl_media.__rev {
  flex-direction: row-reverse;
}
@media screen and (max-width: 479px) {
  .bl_media {
    flex-wrap: wrap;
  }
}

.bl_media_img {
  width: 48%;
}
.bl_media_img > img {
  object-fit: cover;
}
@media screen and (max-width: 479px) {
  .bl_media_img {
    width: 100%;
  }
}

.bl_media_body {
  width: 48%;
}
@media screen and (max-width: 479px) {
  .bl_media_body {
    width: 100%;
    padding-top: 4%;
  }
}
.bl_media_body.__white {
  color: var(--color-white);
}

.bl_media_subttl {
  position: relative;
  display: inline-block;
  font-size: var(--fontsize-s);
  font-weight: 500;
  margin-bottom: 2rem;
  padding-left: 12px;
}
.bl_media_subttl:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}
@media screen and (max-width: 479px) {
  .bl_media_subttl {
    line-height: 2;
  }
}

.bl_media_ttl {
  font-size: var(--fontsize-xl);
  font-weight: 500;
  margin-bottom: 2rem;
}
@media screen and (max-width: 479px) {
  .bl_media_ttl {
    line-height: 2;
  }
}

@media screen and (max-width: 479px) {
  .bl_media_txt {
    line-height: 2;
  }
}

/*
 * Base Group
 */
.bl_container {
  position: relative;
}

.bl_container_inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .bl_container_inner {
    padding-right: 4%;
    padding-left: 4%;
  }
}

/*
 * Base Group
 */
.bl_fv {
  position: relative;
  width: 100%;
  height: 100dvh;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 479px) {
  .bl_fv {
    aspect-ratio: 375/640;
    height: auto;
    max-height: 75dvh;
  }
}

.bl_fv_img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.bl_fv_img > img {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}
@media screen and (max-width: 479px) {
  .bl_fv_img > img {
    aspect-ratio: 375/640;
    height: auto;
    max-height: 75dvh;
  }
}

.bl_fv_inner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  padding-top: 2.5rem;
  padding-right: 4rem;
  padding-bottom: 2.5rem;
  padding-left: 4rem;
  z-index: 10;
}
.bl_fv_inner.__black {
  background-color: var(--color-black);
}
.bl_fv_inner.__white {
  background-color: var(--color-white);
}
@media screen and (max-width: 896px) {
  .bl_fv_inner {
    width: 90%;
    padding-top: 1.5rem;
    padding-right: 2rem;
    padding-bottom: 1.5rem;
    padding-left: 2rem;
  }
}

.bl_fv_ttl {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2.5rem;
  font-size: var(--fontsize-xxl);
  font-weight: 700;
}
@media screen and (max-width: 479px) {
  .bl_fv_ttl {
    font-size: var(--fontsize-xl);
  }
}

.bl_fv_subttl {
  font-size: 1rem;
  font-weight: 400;
}

.bl_fv_catch {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  padding-inline: 1.5rem;
  font-size: var(--fontsize-xxl);
  color: var(--color-white);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  letter-spacing: 0.15em;
  max-inline-size: max-content;
  margin-inline: auto;
}
.bl_fv_catch > span {
  color: var(--color-fvCatch);
}

/*
 * Base Group
 */
.bl_card-01 {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (max-width: 479px) {
  .bl_card-01 {
    justify-content: flex-start;
    gap: 1.5rem;
  }
}
.bl_card-01 .bl_card_item {
  width: calc((100% - 5rem) / 3);
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .bl_card-01 .bl_card_item {
    width: calc((100% - 1.5rem) / 2);
  }
}
.bl_card-01 .bl_card_link {
  position: relative;
}
.bl_card-01 .bl_card_link > img {
  aspect-ratio: 387/412;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.bl_card-01 .bl_card_link:hover > img {
  transform: scale(1.1);
}
.bl_card-01 .bl_card_body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: var(--color-white);
  backdrop-filter: blur(12px);
}
.bl_card-01 .bl_card_ttl {
  font-size: var(--fontsize-l);
}
.bl_card-01 .bl_card_subttl {
  font-size: 0.85rem;
}
.bl_card-02 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.bl_card-02 .bl_card_item {
  width: 50%;
  background-color: var(--color-gray);
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 4rem;
  padding-left: 3rem;
  min-height: 300px;
}
.bl_card-02 .bl_card_item:nth-of-type(odd) {
  border-right: 1px solid var(--color-grayLight);
  border-bottom: 1px solid var(--color-grayLight);
}
.bl_card-02 .bl_card_item:nth-of-type(even) {
  border-bottom: 1px solid var(--color-grayLight);
}
.bl_card-02 .bl_card_num {
  text-align: right;
}
.bl_card-02 .bl_card_ttl {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bl_card-02 .bl_card_ttl_logo {
  max-width: 65px;
  max-height: 65px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.bl_card-02 .bl_card_ttl_txt {
  font-size: var(--fontsize-l);
  font-weight: 500;
}
.bl_card-02 .bl_card_txt {
  margin-top: 1.5rem;
  line-height: 1.5;
}
.bl_card-03 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (max-width: 479px) {
  .bl_card-03 {
    gap: 1rem;
  }
}
.bl_card-03 .bl_card_item {
  width: calc((100% - 5rem) / 3);
}
@media screen and (max-width: 896px) {
  .bl_card-03 .bl_card_item {
    width: calc((100% - 2.5rem) / 2);
  }
}
@media screen and (max-width: 479px) {
  .bl_card-03 .bl_card_item {
    width: calc((100% - 1rem) / 2);
  }
}
.bl_card-03 .bl_card_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  min-height: 320px;
  height: 100%;
  border: 1px solid var(--color-gray);
}
.bl_card-03 .bl_card_wrapper:before {
  content: "";
  width: 2.5rem;
  height: 4px;
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  left: 40px;
}
@media screen and (max-width: 479px) {
  .bl_card-03 .bl_card_wrapper {
    padding: 1.5rem;
    min-height: 280px;
  }
}
.bl_card-03 .bl_card_ttl {
  font-size: var(--fontsize-xl);
  font-weight: 500;
}
.bl_card-03 .bl_card_txt {
  margin-top: 1rem;
}
.bl_card-03 .bl_card_btn {
  margin-top: auto;
  margin-left: auto;
}

/*
 * Base Group
 */
.bl_about {
  position: relative;
  padding-top: 90px;
  padding-bottom: 120px;
}
@media screen and (max-width: 479px) {
  .bl_about {
    padding-top: 30px;
    padding-bottom: 340px;
  }
}

.bl_about_main {
  max-width: 23rem;
  width: 100%;
  margin-left: 13%;
  margin-left: min(14.5967741935vw, 181px);
}
@media screen and (max-width: 479px) {
  .bl_about_main {
    max-width: none;
    width: 80%;
    margin-left: 0;
  }
}

.bl_about_ttl {
  font-size: var(--fontsize-xl);
  font-weight: 700;
}

.bl_about_subttl {
  display: block;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.bl_about_txt {
  margin-top: 1rem;
  line-height: 1.75;
}
@media screen and (max-width: 479px) {
  .bl_about_txt {
    line-height: 2;
  }
}

.bl_about_img {
  position: absolute;
}
.bl_about_img.__01 {
  top: min(0vw, 0px);
  right: min(12.9166666667vw, 186px);
  max-width: min(25.9027777778vw, 373px);
  height: min(32.1527777778vw, 463px);
  aspect-ratio: 373/463;
  z-index: 2;
}
@media screen and (max-width: 479px) {
  .bl_about_img.__01 {
    top: auto;
    right: auto;
    bottom: 60px;
    left: 0;
    max-width: 160px;
    height: auto;
    aspect-ratio: 187/232;
  }
}
.bl_about_img.__01 .js_parallax {
  height: 100%;
}
.bl_about_img.__02 {
  top: min(16.0416666667vw, 231px);
  right: min(0vw, 0px);
  max-width: min(25.9027777778vw, 373px);
  height: min(32.1527777778vw, 463px);
  aspect-ratio: 373/463;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .bl_about_img.__02 {
    top: auto;
    right: auto;
    bottom: 0;
    left: 80px;
    max-width: 160px;
    height: auto;
    aspect-ratio: 187/232;
  }
}
.bl_about_img.__02 .js_parallax {
  height: 100%;
}
.bl_about_img.__03 {
  bottom: 0;
  left: 0;
  max-width: min(13.8888888889vw, 200px);
  height: min(32.1527777778vw, 463px);
  aspect-ratio: 200/463;
}
@media screen and (max-width: 479px) {
  .bl_about_img.__03 {
    right: 0;
    bottom: 250px;
    left: auto;
  }
}
.bl_about_img.__03 .js_parallax {
  height: 100%;
}
.bl_about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
 * Base Group
 */
.bl_service {
  position: relative;
}

.bl_service_ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bl_service_ttl {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .bl_service_ttl {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media screen and (max-width: 479px) {
  .bl_service_ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.bl_service_ttl_link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
@media screen and (max-width: 479px) {
  .bl_service_ttl_link {
    margin: 0 0 0 auto;
  }
}

.bl_service_main {
  position: relative;
}

.bl_service_block {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}
@media (max-width: 641px) {
  .bl_service_block {
    flex-direction: column-reverse;
  }
}

.bl_service_img-left {
  width: calc((100% - 620px) * 0.3);
  aspect-ratio: 794/1468;
}
.bl_service_img-left > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 641px) {
  .bl_service_img-left {
    display: none;
  }
}

.bl_service_img-right {
  width: calc((100% - 620px) * 0.7);
  aspect-ratio: 1774/1468;
}
.bl_service_img-right > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 641px) {
  .bl_service_img-right {
    width: 92%;
    margin: 0 0 0 auto;
  }
}

.bl_service_body {
  max-width: 620px;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 40px;
}
@media (max-width: 641px) {
  .bl_service_body {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.bl_service_body_inner {
  margin-right: 6.4rem;
  margin-left: 6.4rem;
}
@media (max-width: 641px) {
  .bl_service_body_inner {
    margin-right: 4%;
    margin-left: 8%;
  }
}

.bl_service_body_ttl {
  display: flex;
  gap: 8px;
  font-size: var(--fontsize-xl);
  font-weight: 700;
}
.bl_service_body_ttl .num {
  font-size: var(--fontsize-s);
}

.bl_service_body_txt {
  margin-top: 2rem;
  line-height: 2;
}

/*
 * Base Group
 */
.bl_splide {
  position: relative;
}
.bl_splide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
 * Base Group
 */
.bl_notice {
  position: relative;
}

.bl_notice_inner {
  display: flex;
}

.bl_notice_ttl {
  width: 25%;
}

.bl_notice_main {
  width: 75%;
}

.bl_notice_list {
  display: flex;
  flex-direction: column;
}

.bl_notice_item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid;
  border-color: var(--color-gray);
}
.bl_notice_item:last-child {
  border-bottom: 1px solid;
  border-color: var(--color-gray);
}

.bl_notice_date {
  font-size: var(--fontsize-s);
}

/*
 * Base Group
 */
.bl_block-business {
  position: relative;
}
.bl_block-business .bl_block_img {
  aspect-ratio: 1200/480;
}
.bl_block-business .bl_block_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 479px) {
  .bl_block-business .bl_block_img {
    aspect-ratio: 335/200;
  }
}
.bl_block-business .bl_block_content {
  position: relative;
  margin-top: 2rem;
}
.bl_block-business .bl_block_ttl {
  font-size: var(--fontsize-xl);
  font-weight: 500;
  line-height: 1.5;
}
.bl_block-business .bl_block_subttl {
  font-size: var(--fontsize-l);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2rem;
}
@media screen and (max-width: 479px) {
  .bl_block-business .bl_block_subttl {
    line-height: 2;
  }
}
.bl_block-business .bl_block_txt {
  margin-top: 2em;
  line-height: 1.5;
}
@media screen and (max-width: 479px) {
  .bl_block-business .bl_block_txt {
    line-height: 2;
  }
}
.bl_block-business .bl_block_btn {
  margin-top: 3em;
  text-align: center;
}

/*
 * Base Group
 */
.bl_box {
  position: relative;
}
.bl_box-01 {
  background-color: var(--color-grayLight);
}
.bl_box-01 .bl_box_ttl {
  font-size: var(--fontsize-l);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 2.5rem 4rem;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (max-width: 479px) {
  .bl_box-01 .bl_box_ttl {
    padding: 2rem 1.5rem;
  }
}
.bl_box-01 .bl_box_body {
  padding: 2.5rem 4rem;
}
@media screen and (max-width: 479px) {
  .bl_box-01 .bl_box_body {
    padding: 2rem 1.5rem;
  }
}
.bl_box-01 .bl_box_link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 1em;
  padding: 1rem 2rem;
  border: 1px solid var(--color-gray);
  border-radius: 2.5rem;
  background-color: var(--color-white);
}
.bl_box-01 .bl_box_link.__small {
  font-size: var(--fontsize-s);
}
.bl_box-01 .bl_box_txt {
  padding: 1.5rem 2rem;
}
.bl_box-01 .bl_box_txt.__white {
  background-color: var(--color-white);
}
@media screen and (max-width: 479px) {
  .bl_box-01 .bl_box_txt {
    padding: 1rem 1.25rem;
  }
}

/*
 * Module Group - Block
 */
/*
 * Base Group
 */
.bl_breadcrumbs {
  margin-top: 20px;
  padding-right: 4%;
  padding-left: 4%;
  display: flex;
}

.bl_breadcrumbs_item {
  padding-top: 0.5em;
  padding-right: 1em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  font-size: 0.875em;
  border-right: 1px solid;
  border-color: var(--color-gray);
}
.bl_breadcrumbs_item:nth-of-type(1) {
  border-left: 1px solid;
  border-color: var(--color-gray);
}

/*
 * Base Group
 */
.bl_kv-01 {
  position: relative;
  width: 100%;
  margin-top: 100px;
  overflow: hidden;
}
.bl_kv-01 .bl_kv_inner {
  padding-top: 6.875em;
  padding-bottom: 2.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .bl_kv-01 .bl_kv_inner {
    padding-right: 4%;
    padding-left: 4%;
  }
}
.bl_kv-01 .bl_kv_inner.__border-right:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 479px) {
  .bl_kv-01 .bl_kv_inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.bl_kv-01 .bl_kv_ttl {
  position: relative;
}
.bl_kv-01 .bl_kv_txt {
  font-size: var(--fontsize-l);
  text-align: right;
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  .bl_kv-01 .bl_kv_txt {
    text-align: left;
    margin-top: 2rem;
  }
}
.bl_kv-01 .bl_kv_img {
  width: 100%;
  max-height: 740px;
  height: 100%;
  object-fit: cover;
}
.bl_kv-01 .bl_kv_img > img {
  object-fit: cover;
  aspect-ratio: 1920/740;
}
@media screen and (max-width: 479px) {
  .bl_kv-01 .bl_kv_img > img {
    aspect-ratio: 375/480;
  }
}

.bl_kv-02 {
  position: relative;
  width: 100%;
  margin-top: 100px;
}
.bl_kv-02 .bl_kv_inner {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-left: calc((100dvw - var(--scrollbar-w) - 1240px) / 2);
  margin-bottom: 2.5em;
  border-bottom: 1px solid;
  border-color: var(--color-gray);
}
@media screen and (max-width: 1240px) {
  .bl_kv-02 .bl_kv_inner {
    margin-left: auto;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 896px) {
  .bl_kv-02 .bl_kv_inner {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 479px) {
  .bl_kv-02 .bl_kv_inner {
    flex-direction: column-reverse;
  }
}
.bl_kv-02 .bl_kv_ttl {
  position: relative;
}
.bl_kv-02 .bl_kv_img {
  max-width: 800px;
  width: 50%;
  max-height: 600px;
  height: 100%;
  aspect-ratio: 800/600;
  margin-left: auto;
}
.bl_kv-02 .bl_kv_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 896px) {
  .bl_kv-02 .bl_kv_img {
    width: 40%;
  }
}
@media screen and (max-width: 479px) {
  .bl_kv-02 .bl_kv_img {
    width: 100%;
    margin-top: 20px;
  }
}
.bl_kv-02 .bl_kv_body {
  width: 50%;
  max-width: 477px;
}
@media screen and (max-width: 1240px) {
  .bl_kv-02 .bl_kv_body {
    padding: 0 4%;
  }
}
@media screen and (max-width: 896px) {
  .bl_kv-02 .bl_kv_body {
    width: 58%;
    max-width: none;
  }
}
@media screen and (max-width: 479px) {
  .bl_kv-02 .bl_kv_body {
    width: 100%;
  }
}
.bl_kv-02 .bl_kv_txt {
  margin-top: 2rem;
}

/*
 * Base Group
 */
.bl_linkAnchor-01 {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  padding: 1px;
}
.bl_linkAnchor-01 .bl_linkAnchor_item {
  width: calc((100% - 2px) / 3);
  outline: 1px solid var(--color-gray);
}
.bl_linkAnchor-01 .bl_linkAnchor_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  padding: 1.5rem;
  font-size: var(--fontsize-l);
  font-weight: 500;
}
.bl_linkAnchor-01 .bl_linkAnchor_chev {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-primary);
  line-height: 1;
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

/*
 * Base Group
 */
.bl_lead {
  position: relative;
}

.bl_lead_heading {
  position: relative;
}
.bl_lead_heading .--level2 {
  position: relative;
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}
.bl_lead_heading .--level2 > h2 {
  font-size: var(--fontsize-xxl);
  font-weight: 500;
}
@media screen and (max-width: 479px) {
  .bl_lead_heading .--level2 > h2 {
    font-size: var(--fontsize-xl);
  }
}
.bl_lead_heading .--level2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 0.25em;
  background-color: var(--color-primary);
}
.bl_lead_heading .--level2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-gray);
}
.bl_lead_heading .--level3 {
  position: relative;
  padding-left: 1.5em;
  font-size: var(--fontsize-xl);
}
@media screen and (max-width: 479px) {
  .bl_lead_heading .--level3 {
    padding-left: 0.75em;
  }
}
.bl_lead_heading .--level3 > h3 {
  font-weight: 500;
}
.bl_lead_heading .--level3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 1.5em;
  background-color: var(--color-primary);
}
.bl_lead_heading .--level3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0.25rem;
  width: 0.25rem;
  height: 1.5em;
  background-color: var(--color-gray);
}
.bl_lead_heading .--subttl {
  font-size: var(--fontsize-l);
  font-weight: 500;
  margin-top: 1rem;
}
.bl_lead_heading .--txt {
  margin-top: 1rem;
}
@media screen and (max-width: 479px) {
  .bl_lead_heading .--txt {
    line-height: 2;
  }
}

.bl_lead_card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 3rem;
  column-gap: 1rem;
}
.bl_lead_card-01 .bl_lead_card_item {
  width: 100%;
  background-color: var(--color-gray);
}
.bl_lead_card-01 .bl_lead_card_img {
  position: relative;
  aspect-ratio: 588/280;
  background-color: var(--color-white);
  line-height: 0;
}
.bl_lead_card-01 .bl_lead_card_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bl_lead_card-01 .bl_lead_card_body {
  padding: 2.5em;
}
@media screen and (max-width: 479px) {
  .bl_lead_card-01 .bl_lead_card_body {
    padding: 2em;
  }
}
.bl_lead_card-01 .bl_lead_card_ttl {
  font-size: var(--fontsize-l);
  font-weight: 500;
}
.bl_lead_card-01 .bl_lead_card_txt {
  margin-top: 1.25em;
}
@media screen and (max-width: 479px) {
  .bl_lead_card-01 .bl_lead_card_txt {
    line-height: 2;
    margin-top: 0.75em;
  }
}
.bl_lead_card-02 .bl_lead_card_item {
  width: 48%;
  background-color: var(--color-gray);
}
@media screen and (max-width: 479px) {
  .bl_lead_card-02 .bl_lead_card_item {
    width: 100%;
  }
}
.bl_lead_card-02 .bl_lead_card_img {
  position: relative;
  aspect-ratio: 588/280;
  background-color: var(--color-white);
  line-height: 0;
}
.bl_lead_card-02 .bl_lead_card_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bl_lead_card-02 .bl_lead_card_body {
  padding: 2.5em;
}
.bl_lead_card-02 .bl_lead_card_ttl {
  font-size: var(--fontsize-l);
  font-weight: 500;
}
.bl_lead_card-02 .bl_lead_card_txt {
  margin-top: 1.25em;
}

/*
 * Base Group
 */
.bl_dl-company {
  position: relative;
  width: 100%;
}
.bl_dl-company .bl_dl_item {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-gray);
}
.bl_dl-company .bl_dl_item.__bgc {
  background-color: var(--color-grayLight);
}
.bl_dl-company .bl_dl_item > dt {
  max-width: 250px;
  width: 100%;
  padding: 1.5em;
  line-height: 1.6;
}
@media screen and (max-width: 479px) {
  .bl_dl-company .bl_dl_item > dt {
    padding: 1.5rem 1.5rem 0 0;
    max-width: none;
    font-size: var(--fontsize-l);
    font-weight: 500;
  }
}
.bl_dl-company .bl_dl_item > dd {
  width: 100%;
  padding: 1.5em;
  line-height: 1.6;
  flex-grow: 1;
}
@media screen and (max-width: 479px) {
  .bl_dl-company .bl_dl_item > dd {
    padding: 0 1.5rem 1.5rem 0;
  }
}
.bl_dl-company .bl_dl_item:last-child {
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (max-width: 479px) {
  .bl_dl-company .bl_dl_item {
    flex-direction: column;
  }
}

/*
 * Base Group
 */
.bl_history {
  position: relative;
  width: 100%;
  min-height: 720px;
  background-color: var(--color-black);
  background-position: left center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .bl_history {
    min-height: 420px;
  }
}

@media screen and (max-width: 479px) {
  .bl_history_inner .bl_media_body {
    padding-bottom: 17rem;
  }
}

.bl_history_slider {
  position: absolute;
  top: 0;
  right: 2.5rem;
  transform: translate(0, 0) rotate(13deg) skew(0) skewY(0) scaleX(1) scaleY(1);
  transform-origin: top right;
  max-width: 480px;
}
@media screen and (max-width: 896px) {
  .bl_history_slider {
    max-width: none;
    width: fit-content;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    transform: translate(0, 0) rotate(-6deg) skew(0) skewY(0) scaleX(1) scaleY(1);
    transform-origin: top left;
  }
}

.bl_history_slider_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  animation: infiniteScroll 16s linear infinite;
}
.bl_history_slider_item > img {
  max-width: 480px;
  width: 100%;
  height: 100%;
  aspect-ratio: 480/320;
  object-fit: cover;
}
@media screen and (max-width: 896px) {
  .bl_history_slider_item {
    flex-direction: row;
    animation: infiniteScrollX 16s linear infinite;
    width: max-content;
  }
  .bl_history_slider_item > img {
    max-width: none;
    width: 240px;
    height: auto;
    flex-shrink: 0;
  }
}

@keyframes infiniteScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes infiniteScrollX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*
 * Base Group
 */
.bl_bannerList {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 4rem;
  column-gap: 1.5rem;
}

.bl_bannerList_item {
  width: calc((100% - 12rem) / 4);
}
.bl_bannerList_item:hover .bl_bannerList_ttl .underline {
  animation: text-underline 0.9s cubic-bezier(0.2, 0.75, 0.23, 1) forwards;
}

.bl_bannerList_img {
  border: 1px solid var(--color-grayLight);
  aspect-ratio: 280/134;
}
.bl_bannerList_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl_bannerList_body {
  margin-top: 1rem;
}

.bl_bannerList_ttl {
  display: flex;
  align-items: center;
  gap: 1em;
  font-weight: 500;
}
.bl_bannerList_ttl .underline {
  display: inline;
  line-height: 1.5;
  background-position: right 100% bottom 0;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 1px;
}

.bl_bannerList_txt {
  font-size: var(--fontsize-s);
  margin-top: 1rem;
}

@keyframes text-underline {
  0% {
    background-size: 100% 1px;
    background-position: right 0 bottom 0;
  }
  49% {
    background-size: 0% 1px;
    background-position: right 0 bottom 0;
  }
  50% {
    background-size: 0% 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}
/*
 * Module Group - Element
 */
/*
 * Base Group
 */
.el_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  color: #fff;
  background-color: var(--color-white);
  max-width: 320px;
  width: 100%;
  text-align: center;
  padding: 1.5rem;
  font-size: var(--fontsize-m);
  font-weight: 600;
  text-decoration: none;
  outline: 1px solid var(--color-gray);
  overflow: hidden;
}
.el_btn:link, .el_btn:visited {
  color: var(--color-black);
}
.el_btn > i {
  color: var(--color-primary);
}
.el_btn.el_btn__w560 {
  max-width: 560px;
}
.el_btn.el_btn__wMax {
  max-width: 100%;
}
.el_btn.el_btn__submit {
  width: 100%;
  cursor: pointer;
  color: #fff;
  background-color: #95654C;
  border: 1px solid #95654C;
  border-radius: 6px;
}
.el_btn.el_btn__submit::after {
  display: none;
}
.el_btn.el_btn__submit:hover {
  color: #95654C;
  background-color: #fff;
}
.el_btn.el_btn__submit:hover:link {
  color: #95654C;
}
.el_btn.el_btn__submit:hover::after {
  display: none;
}

.el_btn_chev {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-primary);
  line-height: 1;
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.el_btn--arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  white-space: nowrap;
  gap: 40px;
  font-size: var(--fontsize-l);
  font-weight: 500;
}
.el_btn--arrow .icon {
  position: relative;
  font-style: normal;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  overflow: hidden;
}
.el_btn--arrow .icon:before {
  content: "→";
  position: relative;
  z-index: 1;
  transform: translateX(0%);
  transition: transform 0.5s cubic-bezier(0.2, 0.75, 0.23, 1);
}
.el_btn--arrow .icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  opacity: 0;
  border-radius: 50%;
  background-color: var(--color-grayLight);
  transition: width 0.7s cubic-bezier(0.2, 0.75, 0.23, 1), height 0.7s cubic-bezier(0.2, 0.75, 0.23, 1), opacity 0.3s cubic-bezier(0.2, 0.75, 0.23, 1);
}
.el_btn--arrow.__small {
  gap: 20px;
}
.el_btn--arrow.__small .icon {
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 479px) {
  .el_btn--arrow.__small .icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.el_btn--arrow:hover .icon:before {
  animation: btn-arrow-hover-leftIn 0.7s cubic-bezier(0.2, 0.75, 0.23, 1) forwards;
}
.el_btn--arrow:hover .icon:after {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: width 0.7s cubic-bezier(0.2, 0.75, 0.23, 1), height 0.7s cubic-bezier(0.2, 0.75, 0.23, 1), opacity 0.3s cubic-bezier(0.2, 0.75, 0.23, 1);
}

@keyframes btn-arrow-hover-leftIn {
  0% {
    opacity: 0;
    transform: translateX(-200%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
/*
 * Base Group
 */
.el_heading {
  display: flex;
  align-items: center;
  color: var(--color-heading);
  flex: 1;
}
.el_heading .--level1,
.el_heading .--level2 {
  font-size: var(--fontsize-xxl);
  font-weight: 700;
}
.el_heading .--v-border {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  width: 1px;
  height: 2rem;
}
.el_heading .--w-border {
  width: 2rem;
  margin-left: 0;
  height: 1px;
}
.el_heading .--en {
  font-size: 1rem;
}
.el_heading.__vertical {
  flex-direction: column;
  align-items: flex-start;
}

/*
 * Base Group
 */
.el_borderImg {
  width: 100%;
  max-height: 740px;
  height: 100%;
}
.el_borderImg > img {
  width: 100%;
  max-height: 740px;
  height: 100%;
  aspect-ratio: 1920/740;
  object-fit: cover;
}
@media screen and (max-width: 479px) {
  .el_borderImg > img {
    aspect-ratio: 355/240;
  }
}
.el_borderImg.__right {
  padding-left: calc((100dvw - var(--scrollbar-w) - 1240px) / 2);
}
.el_borderImg.__left {
  padding-right: calc((100dvw - var(--scrollbar-w) - 1240px) / 2);
}

/*
 * Pages Group
 * 各種ページの設定
 */
/*
 * Base Group
 */
.pa_mainvisual {
  position: relative;
  z-index: auto;
  margin-top: 140px;
}
@media (max-width: 896px) {
  .pa_mainvisual {
    margin-top: calc(140px * 0.6666666667);
  }
}
@media (max-width: 480px) {
  .pa_mainvisual {
    margin-top: calc(140px * 0.5);
  }
}
.pa_mainvisual {
  padding-top: 48px;
}
@media (max-width: 896px) {
  .pa_mainvisual {
    padding-top: calc(48px * 0.6666666667);
  }
}
@media (max-width: 480px) {
  .pa_mainvisual {
    padding-top: calc(48px * 0.5);
  }
}
.pa_mainvisual {
  padding-bottom: 48px;
}
@media (max-width: 896px) {
  .pa_mainvisual {
    padding-bottom: calc(48px * 0.6666666667);
  }
}
@media (max-width: 480px) {
  .pa_mainvisual {
    padding-bottom: calc(48px * 0.5);
  }
}
.pa_mainvisual:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/index/mv_bg@2x.png);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: 20% 35%;
}

/*
 * Helper Group
 */
/*
 * Base Group
 */
.hp_sp {
  display: none;
}
@media screen and (max-width: 479px) {
  .hp_sp {
    display: block;
  }
}

.hp_sp-tab {
  display: none;
}
@media screen and (max-width: 896px) {
  .hp_sp-tab {
    display: block;
  }
}

.hp_sp-pc {
  display: none;
}
@media screen and (max-width: 1240px) {
  .hp_sp-pc {
    display: block;
  }
}

.hp_tab {
  display: none;
}
@media screen and (min-width: 481px) and (max-width: 896px) {
  .hp_tab {
    display: block;
  }
}

.hp_tab-pc {
  display: none;
}
@media screen and (min-width: 481px) and (max-width: 1240px) {
  .hp_tab-pc {
    display: block;
  }
}

.hp_pc {
  display: none;
}
@media screen and (min-width: 897px) and (max-width: 1240px) {
  .hp_pc {
    display: block;
  }
}

.hp_base {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .hp_base {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.hp_fs2 {
  font-size: clamp(0.9375rem, 0.7401315789rem + 0.6578947368vw, 1.25rem);
}

.hp_tar {
  text-align: right;
}

.hp_tac {
  text-align: center;
}

.hp_tal {
  text-align: left;
}

.hp_fwB {
  font-weight: bold;
}

.hp_mt120 {
  margin-top: 120px;
}
@media (max-width: 896px) {
  .hp_mt120 {
    margin-top: calc(120px * 0.6666666667);
  }
}
@media (max-width: 480px) {
  .hp_mt120 {
    margin-top: calc(120px * 0.5);
  }
}

.hp_space {
  padding-right: 4%;
  padding-left: 4%;
}

.hp_wsnw {
  white-space: nowrap;
}

/*
 * Unique Group
 */
/*
 * program Group
 */
/*
 * Base Group
 */
.js_scroll_active.bl_header {
  background-color: transparent;
  backdrop-filter: blur(30px);
}
.js_scroll_active .bl_header_inner {
  min-height: 80px;
}
.js_scroll_active .bl_header_nav_list.bl_header_nav_list__offWhite {
  padding: 1.089% 6.069%;
}
.js_scroll_active .bl_header_nav_list.bl_header_nav_list__green {
  padding: 1.089% 4.079%;
}
.js_scroll_active .bl_header_nav_link {
  font-size: clamp(0.625rem, 0.5460526316rem + 0.2631578947vw, 0.75rem);
}

/*
 * Base Group
 */
.js_parallax {
  position: relative;
  overflow: hidden;
}
.js_parallax_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15) translateY(0);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .js_parallax_img {
    transform: none !important;
    transition: none !important;
  }
}
/*
 * Original Group
 */
/*
 * Base Group
 */
header .header_menu {
  display: none;
  position: fixed;
  right: 18px;
  top: 14px;
  width: 28px;
  height: 36px;
  cursor: pointer;
  z-index: 10000;
}
header .header_menu div {
  position: relative;
}
header .header_menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  left: 0;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
header .header_menu span:nth-child(1) {
  top: 10px;
}
header .header_menu span:nth-child(2) {
  top: 20px;
}
header .header_menu span:nth-child(3) {
  top: 30px;
}
@media screen and (max-width: 896px) {
  header .header_menu {
    display: block;
  }
}
header .header_menu.__lower span {
  background: var(--color-black);
}
header .header_menu.open span:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  background: var(--color-black);
}
header .header_menu.open span:nth-child(2) {
  width: 0;
  left: 50%;
}
header .header_menu.open span:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: var(--color-black);
}

#spNav {
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  right: 0;
  left: auto;
  top: 0;
  width: 90%;
  height: 100vh;
  background: rgb(255, 255, 255);
  text-align: center;
  z-index: 9999;
  overflow: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.4s;
  /*
  ul {
  	opacity: 0;
  	margin-bottom: 30px;
  	//width: 48%;
  	li {
  		border-bottom: 1px solid #C9C9C9;
  		a {
  			display: block;
  			width: 100%;
  			line-height: 6.2vh;
  			color: #fff;
  			text-decoration: none;
  			color: #333;
  		}
  	}
  }
  */
}
#spNav.is_open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
}
#spNav .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#spNav .spNav_bg {
  position: relative;
  background: #333;
  padding: 3vh 4% 4vh;
  width: 75%;
  height: 100%;
  margin: 0 0 0 auto;
  right: -100%;
}
#spNav .nav {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin-top: 72px;
  margin-left: auto;
}
#spNav .nav > li {
  opacity: 1;
  border-top: 1px solid var(--color-primary);
}
#spNav .nav > li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5em 3em 1.5em 1em;
  font-size: 1.4rem;
  font-weight: 500;
}
#spNav .nav > li a > i {
  color: var(--color-primary);
}
#spNav .spnav_copyright {
  display: block;
  margin-top: 8rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: var(--fontsize-s);
  border-top: 1px solid var(--color-white);
}
#spNav .spNav_inn {
  margin-bottom: 20px;
}
#spNav .spNav_inn .spNav_title {
  margin-bottom: 10px;
}
#spNav .spNav_inn .spNav_title span {
  display: block;
  background: #7A7474;
  color: #fff;
  text-align: center;
  padding: 18px 1em;
  font-size: 1.6rem;
}
#spNav .spNav_inn .spNav_title .spNav_menu_toggle {
  display: none;
}
#spNav .spNav_inn .spNav_title .spNav_menu_toggle ul {
  margin-top: 72px;
}
#spNav .spNav_inn .spNav_title .spNav_menu_toggle ul li .spNav_title_sub {
  background: #D6D2D2;
  padding: 8px 1em;
  font-size: 1.4rem;
}
#spNav .spNav_inn .spNav_title .spNav_menu_toggle ul li .spNav_link {
  padding: 10px 0;
  font-size: 1.3rem;
}
#spNav .spNav_inn .spNav_title .spNav_menu_toggle ul li .spNav_link a {
  display: inline-block;
  margin: 0 0.8em 8px;
}
#spNav .spNav_pere {
  text-align: center;
}

/*
 * Base Group
 */
.hover-link {
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
}
.hover-link:hover .hover-link_text {
  transform: translateY(100%);
}
.hover-link:hover .hover-link_text[aria-hidden=true] {
  transform: translateY(0%);
}
.hover-link .hover-link_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-link .hover-link_text {
  display: block;
  line-height: 1;
  padding-block: 0.1em;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-link .hover-link_text[aria-hidden=true] {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-link--footer:hover .hover-link_text[aria-hidden=true] {
  transform: translateY(10%);
}
.hover-link--footer .hover-link_tet {
  padding-bottom: 0;
}
.hover-link--footer .hover-link_text[aria-hidden=true] {
  left: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .bl_hover-link_inner {
    transition: none;
  }
}
/*
 * Base Group
 */
.dl01s {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.dl02s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.dl03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.dl04s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dl05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.dl06s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.dl07s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.dl08s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.dl09s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.dl1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.dl15s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.dl2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.dl25s {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.dl3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.dl35s {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.dl4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.dl45s {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.dl5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.dl55s {
  -webkit-animation-delay: 5.5s;
  animation-delay: 5.5s;
}

.dl6s {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.dl65s {
  -webkit-animation-delay: 6.5s;
  animation-delay: 6.5s;
}

.dl7s {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.dl75s {
  -webkit-animation-delay: 7.5s;
  animation-delay: 7.5s;
}

.dl8s {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

.dl85s {
  -webkit-animation-delay: 8.5s;
  animation-delay: 8.5s;
}

.dl9s {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}

.dl95s {
  -webkit-animation-delay: 9.5s;
  animation-delay: 9.5s;
}

/*
 * Base Group
 */
.mt-40 {
  margin-top: calc(2.5rem * var(--spacing-scale));
}

.mt-60 {
  margin-top: calc(3.75rem * var(--spacing-scale));
}

.mt-80 {
  margin-top: calc(5rem * var(--spacing-scale));
}

.mt-120 {
  margin-top: calc(7.5rem * var(--spacing-scale));
}

.mt-140 {
  margin-top: calc(8.75rem * var(--spacing-scale));
}

.mt-160 {
  margin-top: calc(10rem * var(--spacing-scale));
}

.mt-170 {
  margin-top: calc(10.625rem * var(--spacing-scale));
}

.mt-200 {
  margin-top: calc(12.5rem * var(--spacing-scale));
}

.mt-240 {
  margin-top: calc(15rem * var(--spacing-scale));
}

.mb-40 {
  margin-bottom: calc(2.5rem * var(--spacing-scale));
}

.mb-60 {
  margin-bottom: calc(3.75rem * var(--spacing-scale));
}

.mb-80 {
  margin-bottom: calc(5rem * var(--spacing-scale));
}

.mb-120 {
  margin-bottom: calc(7.5rem * var(--spacing-scale));
}

.mb-140 {
  margin-bottom: calc(8.75rem * var(--spacing-scale));
}

.mb-160 {
  margin-bottom: calc(10rem * var(--spacing-scale));
}

.mb-170 {
  margin-bottom: calc(10.625rem * var(--spacing-scale));
}

.mb-200 {
  margin-bottom: calc(12.5rem * var(--spacing-scale));
}

.mb-240 {
  margin-bottom: calc(15rem * var(--spacing-scale));
}

.ml-40 {
  margin-left: calc(2.5rem * var(--spacing-scale));
}

.ml-60 {
  margin-left: calc(3.75rem * var(--spacing-scale));
}

.ml-80 {
  margin-left: calc(5rem * var(--spacing-scale));
}

.ml-120 {
  margin-left: calc(7.5rem * var(--spacing-scale));
}

.ml-140 {
  margin-left: calc(8.75rem * var(--spacing-scale));
}

.ml-160 {
  margin-left: calc(10rem * var(--spacing-scale));
}

.ml-170 {
  margin-left: calc(10.625rem * var(--spacing-scale));
}

.ml-200 {
  margin-left: calc(12.5rem * var(--spacing-scale));
}

.ml-240 {
  margin-left: calc(15rem * var(--spacing-scale));
}

.mr-40 {
  margin-right: calc(2.5rem * var(--spacing-scale));
}

.mr-60 {
  margin-right: calc(3.75rem * var(--spacing-scale));
}

.mr-80 {
  margin-right: calc(5rem * var(--spacing-scale));
}

.mr-120 {
  margin-right: calc(7.5rem * var(--spacing-scale));
}

.mr-140 {
  margin-right: calc(8.75rem * var(--spacing-scale));
}

.mr-160 {
  margin-right: calc(10rem * var(--spacing-scale));
}

.mr-170 {
  margin-right: calc(10.625rem * var(--spacing-scale));
}

.mr-200 {
  margin-right: calc(12.5rem * var(--spacing-scale));
}

.mr-240 {
  margin-right: calc(15rem * var(--spacing-scale));
}

.pt-40 {
  padding-top: calc(2.5rem * var(--spacing-scale));
}

.pt-60 {
  padding-top: calc(3.75rem * var(--spacing-scale));
}

.pt-80 {
  padding-top: calc(5rem * var(--spacing-scale));
}

.pt-120 {
  padding-top: calc(7.5rem * var(--spacing-scale));
}

.pt-140 {
  padding-top: calc(8.75rem * var(--spacing-scale));
}

.pt-160 {
  padding-top: calc(10rem * var(--spacing-scale));
}

.pt-170 {
  padding-top: calc(10.625rem * var(--spacing-scale));
}

.pt-200 {
  padding-top: calc(12.5rem * var(--spacing-scale));
}

.pt-240 {
  padding-top: calc(15rem * var(--spacing-scale));
}

.pb-40 {
  padding-bottom: calc(2.5rem * var(--spacing-scale));
}

.pb-60 {
  padding-bottom: calc(3.75rem * var(--spacing-scale));
}

.pb-80 {
  padding-bottom: calc(5rem * var(--spacing-scale));
}

.pb-120 {
  padding-bottom: calc(7.5rem * var(--spacing-scale));
}

.pb-140 {
  padding-bottom: calc(8.75rem * var(--spacing-scale));
}

.pb-160 {
  padding-bottom: calc(10rem * var(--spacing-scale));
}

.pb-170 {
  padding-bottom: calc(10.625rem * var(--spacing-scale));
}

.pb-200 {
  padding-bottom: calc(12.5rem * var(--spacing-scale));
}

.pb-240 {
  padding-bottom: calc(15rem * var(--spacing-scale));
}

/*
 * Base Group
 */
.z-10 {
  z-index: 10;
}
