@charset "UTF-8";
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/********************************************/
/*  Sp-menu*/
/********************************************/
.sp_menu_trigger,
.sp_nav {
  display: none;
}

#fixed_main {
  padding-top: 0;
}

a {
  color: #1A1A1A;
}

/********************************************/
/*header */
/********************************************/
.header {
  width: 100%;
  padding: 15px;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 1200px) {
  .header {
    padding: 5px 0 0 0;
  }
}
.header .width1854 {
  width: 96%;
  margin: auto;
}
@media (max-width: 1200px) {
  .header .width1854 {
    padding-right: 20px;
  }
}

.header .head_wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 1200px) {
  .header .head_wrapper {
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
  }
}
.header .head_wrapper .logo {
  display: block;
  max-width: 200px;
  width: auto;
  margin-right: auto;
  line-height: 1;
}
@media (min-width: 768px) {
  .header .head_wrapper .logo {
    min-width: 300px;
    max-width: 400px;
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .header .head_wrapper .left {
    order: 3;
    width: 100%;
    max-width: 1200px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
.header .head_wrapper .right {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  gap: 20px;
}

.header .main_nav .nav_list {
  position: relative;
}
.header .main_nav .nav_list .list {
  padding-right: 50px;
}
@media (max-width: 1200px) {
  .header .main_nav .nav_list .list {
    padding-right: 0;
  }
}
.header .main_nav .nav_list .list:not(:last-child) {
  border-right: 1px solid #D2D1C0;
}
@media (max-width: 1200px) {
  .header .main_nav .nav_list .list:not(:last-child) {
    border: none;
  }
}
.header .main_nav .nav_list .list > a {
  position: relative;
  display: block;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 1200px) {
  .header .main_nav .nav_list .list > a {
    transition: all 0.3s;
  }
  .header .main_nav .nav_list .list > a::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 0;
    height: 3px;
    background-color: #4A84CF;
    transition: all 0.3s;
  }
  .header .main_nav .nav_list .list > a:hover {
    color: #4A84CF;
  }
  .header .main_nav .nav_list .list > a:hover::before {
    width: 100%;
  }
}

.header .main_nav .nav_list .event:hover .wrapper {
  opacity: 1;
  visibility: visible;
}
.header .main_nav .nav_list .wrapper {
  display: none;
  opacity: unset;
  visibility: unset;
  transition: unset;
}
@media (min-width: 1200px) {
  .header .main_nav .nav_list .wrapper {
    display: block;
    position: absolute;
    top: 100%;
    max-width: 250px;
    width: 25%;
    margin-top: 5px;
    padding: 13px;
    background-color: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9999;
  }
}
.header .main_nav .nav_list .wrapper .dropdown {
  padding-left: 10px;
}
@media (min-width: 1200px) {
  .header .main_nav .nav_list .wrapper .dropdown {
    margin-top: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .header .main_nav .nav_list .wrapper .dropdown .sub_menu {
    text-align: left;
    border-bottom: none;
  }
}
.header .main_nav .nav_list .wrapper .dropdown .sub_menu a {
  position: relative;
  display: block;
  padding: 0 10px 15px 0;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .header .main_nav .nav_list .wrapper .dropdown .sub_menu a {
    position: relative;
    display: block;
    padding: 12px 10px 12px 10px;
    font-size: 1.4rem;
  }
  .header .main_nav .nav_list .wrapper .dropdown .sub_menu a:hover {
    background-color: #4A84CF;
    color: #fff;
  }
}

@media (min-width: 1200px) {
  .header .head_wrapper .left .nav_list {
    display: flex;
    justify-content: space-around;
  }
}

@media (max-width: 1200px) {
  .header .head_wrapper .right {
    display: none;
  }
}
.header .head_wrapper .right .txt_box {
  line-height: 1.5;
}
.header .head_wrapper .right .txt_box a {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #4A84CF;
  padding-left: 35px;
}
.header .head_wrapper .right .txt_box a::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 27px;
  height: 27px;
  background: url(../img/ico/ico-tel-blue.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .header .head_wrapper .right .txt_box a {
    font-size: 3rem;
  }
}
.header .head_wrapper .right .txt_box small {
  display: block;
  text-align: center;
  font-size: 1.2rem;
}
.header .head_wrapper .right .schedule {
  width: 100%;
  max-width: 350px;
}
.header .head_wrapper .right .time {
  font-size: 1.4rem;
  font-weight: 400;
  color: #4A84CF;
  line-height: 1.4;
}
.header .head_wrapper .right .contact a {
  position: relative;
  display: block;
  background-color: #4A84CF;
  padding: 15px 25px 15px 40px;
  border: 1px solid transparent;
  color: #FFF;
  transition: all 0.3s;
}
.header .head_wrapper .right .contact a::before {
  position: absolute;
  left: 10px;
  top: 50%;
  content: "";
  width: 22px;
  height: 16px;
  background: url(../img/ico/ico-mail.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.header .head_wrapper .right .contact a:hover {
  background-color: #FFF;
  border: 1px solid #4A84CF;
}
.header .head_wrapper .right .contact a:hover::before {
  background: url(../img/ico/ico-mail-blue.svg) no-repeat center/contain;
}
.header .head_wrapper .right .contact a:hover .text {
  color: #4A84CF;
}
.header .head_wrapper .right .contact a .text {
  display: block;
  transition: all 0.3s;
}

.header .head_wrapper .right.sp_tel_schedule {
  display: none;
}

@media (max-width: 768px) {
  .header .head_wrapper .right.sp_tel_schedule {
    display: block;
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .header .head_wrapper .right.sp_tel_schedule .txt_box {
    margin-bottom: 25px;
    text-align: center;
  }
  .header .head_wrapper .right.sp_tel_schedule .txt_box a {
    font-size: 2.5rem;
  }
}
/*=============================================*/
/*media query    Tablet ipad 5.7inch */
/*=============================================*/
@media screen and (max-width: 1200px) {
  /********************************************/
  /* body fixed*/
  /********************************************/
  body {
    width: 100%;
  }
  body.fixed {
    position: fixed;
    width: 100%;
  }
  /********************************************/
  /*  Sp-menu btn*/
  /********************************************/
  .sp_menu_trigger,
  .sp_menu_trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    cursor: pointer;
  }
  .sp_menu_trigger {
    position: fixed;
    top: 5px;
    right: 10px;
    width: 50px;
    height: 50px;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  /********************************************/
  /*  Sp-menu list*/
  /********************************************/
  /********************************************/
  /*header > nav */
  /********************************************/
}
@media screen and (max-width: 1200px) and (min-width: 1024px) {
  .sp_menu_trigger {
    top: 5px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .sp_menu_trigger span {
    position: absolute;
    background: #4A84CF;
    width: 27px;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_menu_trigger span:nth-of-type(1) {
    top: 15px;
  }
  .sp_menu_trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }
  .sp_menu_trigger span:nth-of-type(3) {
    bottom: 15px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 1024px) {
  .sp_menu_trigger span {
    width: 32px;
    height: 3px;
  }
  .sp_menu_trigger span:nth-of-type(1) {
    top: 19px;
  }
  .sp_menu_trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }
  .sp_menu_trigger span:nth-of-type(3) {
    bottom: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .sp_menu_trigger.nogap {
    top: 0;
    right: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-315deg);
    transform: translateY(9px) rotate(-315deg);
  }
  .sp_menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(315deg);
    transform: translateY(-9px) rotate(315deg);
  }
}
@media screen and (max-width: 1200px) and (min-width: 1024px) {
  .sp_menu_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .sp_menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
}
@media screen and (max-width: 1200px) {
  header .main_nav {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100vw;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    overflow-y: scroll;
    padding: 70px 20px 100px;
    box-sizing: border-box;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100px);
    transition: 0.3s;
  }
  header .main_nav.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  header .nav_list > li {
    display: block;
    border-bottom: solid 1px #e3e3e3;
    text-align: left;
  }
  header .nav_list > li a {
    padding: 1em 0;
    color: #333;
  }
  .nav_list {
    width: 100%;
    overflow: hidden;
  }
  .header .main_nav .nav_list .event .toggle {
    position: relative;
  }
  .header .main_nav .nav_list .event .toggle::after {
    position: absolute;
    top: 50%;
    right: 10px;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/ico/ico-arrow-down.svg) no-repeat center/contain;
    transition: all 0.5s;
    transform: rotate(0deg) translateY(-50%);
    transform-origin: 50% 25%;
  }
  .header .main_nav .nav_list .event .toggle.active::after {
    transform: rotate(180deg);
  }
}
/********************************************/
/* footer */
/********************************************/
.footer_common_content {
  padding-top: 200px;
}
@media (max-width: 768px) {
  .footer_common_content {
    padding-top: 100px;
  }
}

.common_link {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3%;
  row-gap: 10px;
}
.common_link li {
  position: relative;
  padding: 10px;
  width: 48.5%;
}
@media (max-width: 768px) {
  .common_link li {
    width: 100%;
  }
}
.common_link li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #4A84CF;
  opacity: 0.6;
  z-index: -1;
}
.common_link li:nth-child(1)::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../img/common/bg-esg.jpg) no-repeat center/cover;
  z-index: -2;
}
.common_link li:nth-child(2)::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../img/common/bg-recruit.jpg) no-repeat center/cover;
  z-index: -2;
}
.common_link li a {
  display: block;
  padding: 20px 0;
  border: 1px solid #FFF;
  transition: all 0.3s;
}
.common_link li a:hover {
  opacity: 0.6;
}
.common_link li .text {
  display: block;
  line-height: 1.5;
  font-size: clamp(2.4rem, 2.5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFF;
}
.common_link li .arrow {
  display: block;
  color: #FFF;
}

.footer_common_content .common_about {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .footer_common_content .common_about {
    padding-bottom: 50px;
  }
}
.footer_common_content .common_about .title {
  display: block;
  margin-bottom: 60px;
  font-size: clamp(2.4rem, 2.8vw, 4rem);
}
.footer_common_content .common_about .container {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  row-gap: 20px;
}
.footer_common_content .common_about .g-map {
  width: 42%;
  padding-top: 411px;
}
@media (max-width: 1024px) {
  .footer_common_content .common_about .g-map {
    width: 100%;
    padding-top: 300px;
  }
}
.footer_common_content .common_about .text_area {
  width: 55%;
}
@media (max-width: 1024px) {
  .footer_common_content .common_about .text_area {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer_common_content .common_about .bg-yellow {
    overflow-x: scroll;
  }
}
.footer_common_content .common_about table {
  width: 100%;
  border-spacing: 0 12px;
  line-height: 2;
  text-align: center;
}
@media (max-width: 480px) {
  .footer_common_content .common_about table {
    width: 500px;
  }
}
.footer_common_content .common_about table th, .footer_common_content .common_about table td {
  border-bottom: 1px solid #D2D1C0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer_common_content .common_about table th small, .footer_common_content .common_about table td small {
  display: block;
  font-size: 0.8em;
}
.footer_common_content .common_about .anno, .footer_common_content .common_about .date {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .footer_common_content .common_about .anno, .footer_common_content .common_about .date {
    font-size: 1.2rem;
  }
}
.footer_common_content .common_about .ac-common_btn {
  max-width: 230px;
}
@media (max-width: 768px) {
  .footer_common_content .common_about .ac-common_btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer_common_content .common_contact {
  position: relative;
  padding-top: 100px;
  padding-bottom: 130px;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer_common_content .common_contact {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.footer_common_content .common_contact::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/footer-bg.jpg) no-repeat center/cover;
  z-index: -2;
}

.footer_common_content .common_contact .title {
  padding-bottom: 20px;
  font-size: clamp(2.4rem, 2.8vw, 4rem);
}
.footer_common_content .common_contact .btn_length {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 810px;
  margin: 80px auto 0 auto;
}
@media (max-width: 768px) {
  .footer_common_content .common_contact .btn_length {
    margin-top: 30px;
  }
}
.footer_common_content .common_contact .btn_length li:not(:last-child) {
  width: calc((100% - 20px) / 2);
}
@media (max-width: 768px) {
  .footer_common_content .common_contact .btn_length li:not(:last-child) {
    width: 100%;
  }
}
.footer_common_content .common_contact .btn_length:last-child {
  width: 100%;
}
.footer_common_content .common_contact .small {
  text-align: center;
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
}
@media (max-width: 768px) {
  .footer_common_content .common_contact .small {
    text-align: left;
  }
}

.footer_common_content .common_contact .btn_length li:nth-child(1), .footer_common_content .common_contact .btn_length li:nth-child(2) {
  height: 70px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer_common_content .common_contact .btn_length li:nth-child(1), .footer_common_content .common_contact .btn_length li:nth-child(2) {
    height: 70px;
  }
}
.footer_common_content .common_contact .btn_length li:nth-child(1) a, .footer_common_content .common_contact .btn_length li:nth-child(2) a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 70px;
}
.footer_common_content .common_contact .btn_length li:nth-child(1) a {
  border: 2px solid #94BEF5;
  background-color: #4A84CF;
  transition: all 0.3s;
}
.footer_common_content .common_contact .btn_length li:nth-child(1) a .text {
  position: relative;
  padding-left: 35px;
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}
.footer_common_content .common_contact .btn_length li:nth-child(1) a .text::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 26px;
  height: 20px;
  background: url(../img/ico/ico-mail.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.footer_common_content .common_contact .btn_length li:nth-child(1) a:hover {
  background-color: #FFF;
}
.footer_common_content .common_contact .btn_length li:nth-child(1) a:hover .text {
  color: #4A84CF;
}
.footer_common_content .common_contact .btn_length li:nth-child(1) a:hover .text::before {
  background: url(../img/ico/ico-mail-blue.svg) no-repeat center/contain;
}
.footer_common_content .common_contact .btn_length li:nth-child(2) a {
  border: 2px solid #8BFBFF;
  background-color: #65B0B3;
  transition: all 0.3s;
}
.footer_common_content .common_contact .btn_length li:nth-child(2) a .text {
  position: relative;
  padding-left: 35px;
  font-size: clamp(2.1rem, 2.1vw, 3rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
}
.footer_common_content .common_contact .btn_length li:nth-child(2) a .text::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 26px;
  height: 26px;
  background: url(../img/ico/ico-tel-white.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.footer_common_content .common_contact .btn_length li:nth-child(2) a:hover {
  background-color: #FFF;
}
.footer_common_content .common_contact .btn_length li:nth-child(2) a:hover .text {
  color: #65B0B3;
}
.footer_common_content .common_contact .btn_length li:nth-child(2) a:hover .text::before {
  background: url(../img/ico/ico-tel-green.svg) no-repeat center/contain;
}
.footer_common_content .common_contact .btn_length li:last-child {
  height: 61px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer_common_content .common_contact .btn_length li:last-child {
    height: 70px;
  }
}
.footer_common_content .common_contact .btn_length li:last-child a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 61px;
  border: 2px solid #4A84CF;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .footer_common_content .common_contact .btn_length li:last-child a {
    height: 70px;
  }
}
.footer_common_content .common_contact .btn_length li:last-child a .text {
  position: relative;
  padding-right: 30px;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  transition: all 0.3s;
}
.footer_common_content .common_contact .btn_length li:last-child a .text::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 25px;
  height: 31px;
  background: url(../img/ico/ico-pdf-blue.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.footer_common_content .common_contact .btn_length li:last-child a:hover {
  background-color: #4A84CF;
}
.footer_common_content .common_contact .btn_length li:last-child a:hover .text {
  color: #FFF;
}
.footer_common_content .common_contact .btn_length li:last-child a:hover .text::after {
  background: url(../img/ico/ico-pdf-white.svg) no-repeat center/contain;
}

.footer {
  padding-bottom: 10px;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5%;
  row-gap: 30px;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .footer .container {
    padding: 50px 0;
  }
}
.footer .left {
  width: 40%;
}
@media (max-width: 1024px) {
  .footer .left {
    width: 100%;
  }
}
.footer .right {
  width: 55%;
}
@media (max-width: 1024px) {
  .footer .right {
    width: 100%;
  }
}

.footer .logo {
  max-width: 390px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .footer .logo {
    max-width: 250px;
    margin-bottom: 10px;
  }
}

.footer .base-txt {
  margin-bottom: 87px;
}
@media (max-width: 1024px) {
  .footer .base-txt {
    margin-bottom: 0;
  }
}

.copyright {
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.copyright.pc_only {
  display: block;
}
@media (max-width: 1024px) {
  .copyright.pc_only {
    display: none;
  }
}
.copyright.sp_only {
  display: none;
}
@media (max-width: 1024px) {
  .copyright.sp_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .copyright {
    font-size: 1.2rem;
  }
}

.footer .right {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 30px;
}
@media (max-width: 1024px) {
  .footer .right {
    column-gap: 10px;
  }
}
.footer .right .block {
  width: calc((100% - 40px) / 3);
}
@media (max-width: 480px) {
  .footer .right .block {
    width: calc((100% - 10px) / 2);
  }
}
.footer .right .block .footer_link .item:not(:last-child) {
  margin-bottom: 10px;
}
.footer .right .block .footer_link .item a {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  transition: all 0.3s;
}
.footer .right .block .footer_link .item a:hover {
  color: #4A84CF;
}
.footer .right .block .footer_link .item:nth-child(1) span, .footer .right .block .footer_link .item:nth-child(2) span {
  line-height: 1.5;
  font-size: clamp(1.5rem, 1.7vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer .right #nav1 .footer_link li:not(:first-child) a, #nav2 .footer_link li:not(:first-child) a {
  position: relative;
  display: block;
  padding-left: 1.4em;
}
.footer .right #nav1 .footer_link li:not(:first-child) a::before, #nav2 .footer_link li:not(:first-child) a::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "ー";
}/*# sourceMappingURL=navigation.css.map */