/********************************************/
/*  header */
/********************************************/
.header {
  position: relative;
  display: flex;
  background-color: #fff;
}
@media (max-width: 1550px) {
  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
  }
}

.header .header_wrapper {
  display: flex;
  flex: 1;
}

.header .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  column-gap: 30px;
  margin-left: auto;
}
@media (max-width: 1550px) {
  .header .right {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 40%;
    height: calc(100svh - 86.7px);
    background-color: #fff;
    border-left: 1px solid #c6c6c6;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s;
  }
  .header .right.is_open {
    display: block;
    transform: translateX(0);
    z-index: 99;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .header .right {
    width: 100%;
    border-left: none;
  }
}
@media (max-width: 768px) {
  .header .right {
    height: calc(100dvh - 81.31px);
  }
}

.header .logo {
  display: block;
  padding: 20px 0 20px 30px;
  max-width: 290px;
}
.header .logo img {
  display: block;
}
@media (max-width: 768px) {
  .header .logo {
    max-width: 250px;
    width: 70%;
    padding-left: 20px;
  }
}

.header #header_nav .main_nav {
  display: flex;
  column-gap: 30px;
}
@media (max-width: 1550px) {
  .header #header_nav .main_nav {
    display: block;
  }
}
.header #header_nav .main_nav .main_list {
  position: relative;
  padding: 10px 0;
  transition: all 0.3s;
}
@media (max-width: 1550px) {
  .header #header_nav .main_nav .main_list {
    border-top: 1px solid #c6c6c6;
    padding: 0;
    transition: none;
  }
  .header #header_nav .main_nav .main_list:last-child {
    border-bottom: 1px solid #c6c6c6;
  }
  .header #header_nav .main_nav .main_list a {
    position: relative;
  }
  .header #header_nav .main_nav .main_list a::after {
    position: absolute;
    right: 10px;
    top: 50%;
    content: "";
    width: 20px;
    height: 14px;
    background: url(../img/ico/ico-triangle-green.svg) no-repeat center/contain;
    transform: translateY(-50%);
    z-index: 999;
  }
}
.header #header_nav .main_nav .main_list:not(:last-child)::after {
  position: absolute;
  right: -15px;
  top: 50%;
  content: "";
  width: 1px;
  height: 80%;
  background-color: #eeeeee;
  transform: translateY(-50%);
}
@media (max-width: 1550px) {
  .header #header_nav .main_nav .main_list:not(:last-child)::after {
    content: none;
  }
}
.header #header_nav .main_nav .main_list:nth-child(7)::after {
  content: none;
}
.header #header_nav .main_nav .main_list.is_mobile {
  display: none;
}
.header #header_nav .main_nav .main_list.is_mobile::after {
  content: none;
}
@media (max-width: 1550px) {
  .header #header_nav .main_nav .main_list.is_mobile {
    display: block;
  }
}
.header #header_nav .main_nav .main_list > a {
  transition: all 0.3s;
}
.header #header_nav .main_nav .main_list > a:hover {
  color: #2f9f8a;
}
.header #header_nav .main_nav .main_list > a span {
  font-size: clamp(1.6rem, 1vw, 1.8rem);
  font-weight: 700;
}
@media (max-width: 1550px) {
  .header #header_nav .main_nav .main_list > a {
    display: block;
    padding: 20px 10px;
    transition: none;
  }
}
@media (max-width: 1550px) {
  .header #header_nav .main_nav .main_list .border {
    border-top: 1px solid #c6c6c6;
  }
}
.header #header_nav .main_nav .main_list .sub_list a {
  transition: all 0.3s;
}
.header #header_nav .main_nav .main_list .sub_list a:hover {
  opacity: 0.7;
}
@media (max-width: 1550px) {
  .header #header_nav .main_nav .main_list .sub_list a {
    display: block;
    transition: none;
  }
}

.header .contact_btn {
  max-width: 213px;
}
.header .contact_btn.is_pc {
  flex: 1;
  height: 100%;
}
@media (max-width: 1550px) {
  .header .contact_btn.is_pc {
    display: none;
  }
}
.header .contact_btn.is_pc a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 10px;
  background: linear-gradient(90deg, rgb(47, 159, 138) 0%, rgb(15, 106, 130) 100%);
}
.header .contact_btn.is_pc a span {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  font-size: clamp(1.6rem, 1vw, 1.8rem);
  color: #fff;
}
.header .contact_btn.is_pc a span::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/ico/ico-mail-white.svg) no-repeat center/contain;
  transform: translateY(-50%);
}

#header_nav .main_nav .event .sub_nav {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  right: 0;
  top: 100%;
  width: max-content;
  padding: 30px;
  background-color: #fff;
  border: 1px solid #c6c6c6;
  transition: all 0.3s;
  z-index: 99;
}
@media (max-width: 1550px) {
  #header_nav .main_nav .event .sub_nav {
    position: static;
    width: 100%;
    background-color: #eeeeee;
    padding: 20px 10px;
    visibility: visible;
    opacity: 1;
    border: none;
    transition: none;
  }
}
@media (max-width: 1550px) {
  #header_nav .main_nav .event .sub_nav.sp {
    padding: 0;
  }
  #header_nav .main_nav .event .sub_nav.sp .border a {
    padding: 20px 10px;
    display: block;
  }
}
@media (max-width: 1550px) {
  #header_nav .main_nav .event .sub_nav.gap .pad {
    margin-bottom: 10px;
  }
  #header_nav .main_nav .event .sub_nav.gap .pad:nth-of-type(2) {
    margin-top: 10px;
  }
}
#header_nav .main_nav .event:hover .sub_nav {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1550px) {
  #header_nav .main_nav .event:hover .sub_nav {
    visibility: unset;
    opacity: unset;
  }
}
#header_nav .main_nav .event .sub_menu {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 1550px) {
  #header_nav .main_nav .event .sub_menu {
    row-gap: 0;
  }
}
@media (max-width: 1550px) {
  #header_nav .main_nav .event .sub_menu .pad {
    margin-left: 20px;
  }
}
#header_nav .main_nav .event .sub_menu .single {
  position: relative;
  margin-bottom: 10px;
  padding-right: 40px;
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
  border-bottom: 1px solid #c6c6c6;
}
@media (max-width: 1550px) {
  #header_nav .main_nav .event .sub_menu .single {
    padding-right: 0;
    margin-bottom: 0;
  }
}
#header_nav .main_nav .event .sub_menu .single::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 20px;
  height: 14px;
  background: url(../img/ico/ico-triangle-green.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
@media (max-width: 1550px) {
  #header_nav .main_nav .event .sub_menu .single::after {
    content: none;
  }
}
#header_nav .main_nav .event .sub_menu .lower {
  position: relative;
  padding-left: 20px;
}
#header_nav .main_nav .event .sub_menu .lower:not(:last-child) {
  margin-bottom: 5px;
}
#header_nav .main_nav .event .sub_menu .lower::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #838383;
  transform: translateY(-50%);
}
#header_nav .main_nav .event .sub_menu .lower a {
  color: #838383;
}

.header .pdf a {
  position: relative;
  padding-right: 40px;
}
.header .pdf a::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  width: 25px;
  height: 26px;
  background: url(../img/ico/ico-pdf.svg) no-repeat center/contain;
  transform: translateY(-50%);
}

.sp_menu_trigger {
  display: none;
  cursor: pointer;
}
@media (max-width: 1550px) {
  .sp_menu_trigger {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    content: "";
    width: 60px;
    height: 60px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgb(47, 159, 138) 0%, rgb(15, 106, 130) 100%);
  }
  .sp_menu_trigger span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
  }
  .sp_menu_trigger span:nth-of-type(1) {
    top: 14px;
  }
  .sp_menu_trigger span:nth-of-type(2) {
    top: 23px;
  }
  .sp_menu_trigger span:nth-of-type(3) {
    bottom: 24px;
  }
  .sp_menu_trigger .en {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
  }
}
.sp_menu_trigger.is_open span:nth-of-type(1) {
  top: 24px;
  transform: rotate(45deg);
}
.sp_menu_trigger.is_open span:nth-of-type(2) {
  opacity: 0;
}
.sp_menu_trigger.is_open span:nth-of-type(3) {
  bottom: 32px;
  transform: rotate(-45deg);
}

@media (max-width: 1550px) {
  .header #header_nav .main_nav .main_list.event > a::after {
    right: 10px;
    width: 20px;
    height: 20px;
    background: url(../img/ico/ico-plus.svg) no-repeat center/contain;
  }
}

.header #header_nav .main_nav .main_list.event > a.active::after {
  background: url(../img/ico/ico-minus.svg) no-repeat center/contain;
}

/********************************************/
/*  common cta */
/********************************************/
.common_cta .cta_wrapper {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .common_cta .cta_wrapper {
    padding: 30px 0;
  }
}
.common_cta .title {
  display: inline-block;
  margin-bottom: 1.5em;
  font-size: clamp(2.6rem, 2.9vw, 3.6rem);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  border-bottom: 1px solid #fff;
  letter-spacing: 0.05em;
}
.common_cta .block {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 20px;
}
.common_cta .block .cta_text {
  display: block;
  width: 58%;
  font-size: clamp(2.2rem, 2.5vw, 3rem);
  color: #fff;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .common_cta .block .cta_text {
    width: 100%;
  }
}
.common_cta .block .btn {
  width: calc(42% - 30px);
}
@media (max-width: 768px) {
  .common_cta .block .btn {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
}
.common_cta .block .btn .cta_btn {
  display: block;
  padding: 30px 15px;
  background: linear-gradient(90deg, rgb(227, 155, 12) 0%, rgb(227, 98, 12) 100%);
  text-align: center;
  background-size: 100%;
  background-position: right center;
  transition: all 1s;
}
.common_cta .block .btn .cta_btn:hover {
  background-position: left;
  background-size: 200%;
}
@media (max-width: 768px) {
  .common_cta .block .btn .cta_btn {
    padding: 20px 10px;
  }
}
.common_cta .block .btn .cta_btn span {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  line-height: 1;
  color: #fff;
  font-weight: 700;
}
.common_cta .block .btn .cta_btn span::before {
  position: absolute;
  left: -20px;
  top: 50%;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/ico/ico-mail-white.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .common_cta .block .btn .cta_btn span::before {
    left: -10px;
    width: 23px;
    height: 23px;
  }
}

/********************************************/
/* footer */
/********************************************/
.footer .bg-color {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #eeeeee;
}
@media (max-width: 1024px) {
  .footer .bg-color {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.footer .img {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .footer .img {
    margin-bottom: 40px;
  }
}
.footer .img a {
  transition: all 0.3s;
}
.footer .img a:hover {
  opacity: 0.7;
}
.footer .footer_wrapper {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .footer .footer_wrapper {
    padding-bottom: 20px;
  }
}

.footer #footer_nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}
.footer #footer_nav .nav_list {
  width: calc((70% - 30px) / 2);
}
@media (max-width: 768px) {
  .footer #footer_nav .nav_list {
    display: none;
  }
}
.footer #footer_nav .company {
  width: calc(30% - 30px);
}
@media (max-width: 768px) {
  .footer #footer_nav .company {
    width: 100%;
    text-align: center;
  }
}
.footer #footer_nav .company .banner {
  display: block;
}
@media (max-width: 768px) {
  .footer #footer_nav .company .banner {
    max-width: 250px;
    width: 80%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer #footer_nav .company .banner a {
  transition: all 0.3s;
}
.footer #footer_nav .company .banner a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer #footer_nav .company .title {
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .footer #footer_nav .company .addr {
    padding-top: 10px;
  }
}
.footer #footer_nav .company .lato {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.footer #footer_nav .nav_list > .item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  line-height: 1.5;
  row-gap: 20px;
}
.footer #footer_nav .nav_list > .item:not(:last-child) {
  margin-bottom: 20px;
}
.footer #footer_nav .nav_list > .item::before {
  position: absolute;
  left: 0;
  top: 9px;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #2f9f8a;
  border-radius: 50%;
}
.footer #footer_nav .nav_list > .item.n_dot {
  padding-left: 0;
}
.footer #footer_nav .nav_list > .item.n_dot::before {
  content: none;
}

.footer .sub_menu.space {
  margin-left: 20px;
}
.footer .sub_menu .sub_item {
  position: relative;
  padding-left: 20px;
}
.footer .sub_menu .sub_item::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #838383;
  transform: translateY(-50%);
}
.footer .sub_menu .sub_item.space {
  margin-left: 20px;
}
.footer .sub_menu .sub_item:not(:last-child) {
  margin-bottom: 10px;
}
.footer .sub_menu .sub_item a {
  font-size: 1.4rem;
  color: #838383;
}

.footer .copylight {
  text-align: center;
}
.footer .copylight p {
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #838383;
}
@media (max-width: 768px) {
  .footer .copylight p {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=navigation.css.map */