/*=============================================*/
/*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 {
  color: #353535;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:visited,
a:active {
  color: #59C2E1;
}

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;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/********************************************/
/*  ham_menu*/
/********************************************/
@media (min-width: 769px) {
  #ham_menu_trigger,
  #ham_nav_wrapper {
    display: none;
  }
}
#fixed_main {
  padding-top: 0;
}

.header .ham_menu_trigger {
  position: fixed;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
  background: #59C2E1;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .ham_menu_trigger span {
  width: 28px;
  height: 2px;
  background: #FFF;
  display: block;
}
.header .ham_menu_trigger span + span {
  margin-top: 8px;
}

.ham_menu_trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-315deg);
          transform: translateY(9px) rotate(-315deg);
}
.ham_menu_trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.ham_menu_trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10.5px) rotate(315deg);
          transform: translateY(-10.5px) rotate(315deg);
}

/********************************************/
/*header > ham_nav_wrapper */
/********************************************/
.header .ham_nav_wrapper {
  position: fixed;
  padding: 45px 40px;
  top: 0;
  right: -150px;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: rgba(89, 194, 225, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9980;
}

@media (max-width: 768px) {
  .header .ham_nav_wrapper {
    padding: 45px 10%;
  }
}
@media (min-width: 1300px) {
  .header .ham_nav_wrapper {
    padding: 90px 80px;
    width: 52.6%;
  }
}
.header .ham_nav_wrapper.open {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.header .ham_main_nav {
  color: #FFF;
  /* font-size: clamp(1.8rem, 1.6vw, 2.5rem); */
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.header .ham_main_nav a {
  color: #FFF;
  /* font-size: clamp(1.8rem, 1.6vw, 2.5rem); */
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
}

.header .ham_main_nav a:hover {
  opacity: 0.5;
}

.header .ham_main_nav .nav_box {
  border-top: 1px solid #FFF;
}

.header .ham_main_nav .nav_box.nav01 {
  border-top: none;
}

.header .ham_main_nav .nav_box.nav01 ul {
  margin: 30px auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .ham_main_nav .nav_box.nav01 ul li {
  padding: 10px 0 10px 15px;
  position: relative;
  border-bottom: 1px solid #fff;
}
.header .ham_main_nav .nav_box.nav01 ul li:first-of-type {
  border-top: 1px solid #fff;
}
.header .ham_main_nav .nav_box.nav01 ul li.animate a {
  position: relative;
  -webkit-animation-name: txt_anime;
          animation-name: txt_anime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}
.header .ham_main_nav .nav_box.nav01 ul li .child ul {
  margin: 10px 0 0;
}
.header .ham_main_nav .nav_box.nav01 ul li .child ul li:last-of-type {
  padding: 10px 0 0 15px;
  border-bottom: none;
}

/********************************************/
/*header */
/********************************************/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
}
@media (max-width: 1023px) {
  .header {
    height: 65px;
  }
}

.header .head_wrapper {
  padding-left: 30px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #FFF;
  /*
    @media (min-width: 768px) {
  //    padding-right: 10px;
      padding-top: 13px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    @media (min-width: 769px) {
  //    padding-top: 26px;
      padding-top: 22px;
      padding-right: 40px;
    }
    @media (min-width: 1200px) {
      padding-left: 100px;
    }
  */
}

.header .logo {
  width: 42%;
  max-width: 100px;
  font-size: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 860px) {
  .header .logo {
    max-width: 160px;
  }
}

.header .gnav_wrapper {
  display: none;
}
@media (min-width: 769px) {
  .header .gnav_wrapper {
    display: block;
  }
}

.header .gnav_wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2vw;
}
@media (min-width: 1200px) {
  .header .gnav_wrapper ul {
    gap: 0 30px;
  }
}

.header .gnav_wrapper ul li {
  position: relative;
}

.header .gnav_wrapper ul li a,
.header .gnav_wrapper ul li span {
  font-size: clamp(1.4rem, 1.3vw, 1.5rem);
  letter-spacing: 0.05em;
  line-height: 80px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header .gnav_wrapper ul li a:not(.h_btn):hover {
  color: #59C2E1;
}

.header .gnav_wrapper ul li a.h_btn {
  padding-left: 15px;
  padding-right: 15px;
  color: #FFF;
  background: #59C2E1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .gnav_wrapper ul li a.h_btn:hover {
  background: #606060;
}

/*
.header .gnav_wrapper ul li a,
.header .gnav_wrapper ul li:not(.tel) span {
  cursor: pointer;
}
.header .gnav_wrapper ul li a:hover,
.header .gnav_wrapper ul li:not(.tel) span:hover {
  color: $primary;
}
.header .gnav_wrapper ul li > span {
  position: relative;
  padding: 24px 0;
  &::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 4px;
    background: url(../img/common/arrow_down.svg) no-repeat 0 0 / contain;
    top: calc(50% - 2px);
    right: -14px;
  }
}
.header .gnav_wrapper ul li ul.child {
  position: absolute;
  content: "";
  top: 48px;
  left: 0;
  padding: 24px 26px;
  width: 295px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px 0;
  background: #f3f3f3;
  display: none;
  opacity: 0;
}
.header .gnav_wrapper ul li ul.child.active {
  display: flex;
  opacity: 1;
}
.header .gnav_wrapper ul li ul.child li {
  line-height: 1;
}
.header .gnav_wrapper ul li.tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  .time {
    padding: 0 5px 0 0;
    font-size: 1rem;
    letter-spacing: 0.12em;
    display: block;
    &::after {
      content: none;
    }
  }
}
*/
/********************************************/
/*header > nav */
/********************************************/
.header .main_nav .nav_box {
  width: 48%;
  margin-right: 4%;
}

.header .main_nav .nav_box:nth-child(2n) {
  margin-right: 0;
}

@media (min-width: 600px) {
  .header .main_nav .nav_box {
    width: 24%;
    margin-right: 1.3333%;
  }
  .header .main_nav .nav_box:nth-child(4n) {
    margin-right: 0;
  }
}
/********************************************/
/*footer */
/********************************************/
.f_contact {
  margin-left: 35px;
  margin-right: 35px;
  padding-top: 120px;
  padding-bottom: 120px;
  background: url(../img/common/f-contact-bg.webp) no-repeat center center/cover;
  border-radius: 8px;
}
@media (max-width: 1300px) {
  .f_contact {
    margin: 0 auto;
    width: 98%;
  }
}
@media (max-width: 768px) {
  .f_contact {
    padding-top: 60px;
    padding-bottom: 60px;
    width: 96%;
  }
}
.f_contact .f_contact_inner {
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .f_contact .f_contact_inner {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px 0;
  }
}
.f_contact .f_contact_inner .f_contact_box_01 {
  padding-right: 50px;
}
@media (max-width: 768px) {
  .f_contact .f_contact_inner .f_contact_box_01 {
    padding-right: 0;
  }
}
.f_contact .f_contact_inner .f_contact_box_01 h2 {
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .f_contact .f_contact_inner .f_contact_box_01 h2 {
    text-align: center;
  }
}
.f_contact .f_contact_inner .f_contact_box_01 h2 span {
  padding-top: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}
@media (max-width: 768px) {
  .f_contact .f_contact_inner .f_contact_box_01 h2 span {
    padding-top: 10px;
  }
}
.f_contact .f_contact_inner .f_contact_box_01 p {
  padding-top: 50px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (max-width: 768px) {
  .f_contact .f_contact_inner .f_contact_box_01 p {
    padding-top: 30px;
  }
}
.f_contact .f_contact_inner .f_contact_box_02 {
  padding-left: 50px;
  width: 470px;
  border-left: 1px solid #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .f_contact .f_contact_inner .f_contact_box_02 {
    padding-left: 0;
    border-left: none;
    margin: 0 auto;
    width: 100%;
  }
}
.f_contact .f_contact_inner .f_contact_box_02 .tel {
  margin-bottom: 15px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
.f_contact .f_contact_inner .f_contact_box_02 .tel a {
  color: #FFF;
}
.f_contact .f_contact_inner .f_contact_box_02 .tel .tel_link {
  font-size: 3.5rem;
}
.f_contact .f_contact_inner .f_contact_box_02 .time {
  margin-bottom: 25px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.f_entry {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 70px);
  max-width: 1370px;
  height: 496px;
  background: url(../img/common/f-entry-bg.webp) no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .f_entry {
    width: calc(100% - 40px);
    height: 400px;
  }
}
.f_entry::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(89, 194, 225, 0.85);
  top: 0;
  left: 0;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.f_entry:hover::before {
  background: rgba(96, 96, 96, 0.85);
}
.f_entry > * {
  position: relative;
  z-index: 2;
}
.f_entry .f_entry_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 878px;
  gap: 0 5.3vw;
}
@media (max-width: 768px) {
  .f_entry .f_entry_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px 0;
  }
}
.f_entry .f_entry_inner .txt_base {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.f_entry .f_entry_inner .txt_base h2 {
  margin-bottom: 40px;
  color: #FFF;
  font-size: clamp(5rem, 5vw, 10rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .f_entry .f_entry_inner .txt_base h2 {
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-align: center;
  }
}
.f_entry .f_entry_inner .txt_base h2 span {
  font-size: 2.5rem;
  display: block;
}
.f_entry .f_entry_inner .txt_base p {
  color: #FFF;
  font-weight: 500;
}
.f_entry .f_entry_inner .circle {
  width: 123px;
  height: 123px;
  border: 2px solid #FFF;
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .f_entry .f_entry_inner .circle {
    width: 60px;
    height: 60px;
  }
}
.f_entry .f_entry_inner .circle span {
  width: 16px;
  height: 29px;
  background: url(../img/common/arrow-01-w.svg) no-repeat center center/contain;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
@media (max-width: 767px) {
  .f_entry .f_entry_inner .circle span {
    width: 25px;
    height: 25px;
  }
}

.footer_wrapper {
  padding-top: 70px;
  padding-bottom: 180px;
}
@media (max-width: 1370px) {
  .footer_wrapper {
    padding-bottom: 140px;
  }
}
@media (max-width: 767px) {
  .footer_wrapper {
    padding-bottom: 100px;
  }
}
.footer_wrapper .main_width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*    gap: 0 20px; */
}
@media (max-width: 820px) {
  .footer_wrapper .main_width {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px 0;
  }
}
.footer_wrapper .main_width .f_info {
  width: 40%;
  max-width: 400px;
}
@media (max-width: 768px) {
  .footer_wrapper .main_width .f_info {
    width: 100%;
    max-width: inherit;
  }
}
.footer_wrapper .main_width .f_info .f_logo {
  margin-bottom: 20px;
  width: 300px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .footer_wrapper .main_width .f_info .f_logo {
    width: 200px;
  }
}
.footer_wrapper .main_width .f_info p {
  padding-left: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .footer_wrapper .main_width .f_nav {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }
}
.footer_wrapper .main_width .f_nav ul {
  min-width: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
}
@media (max-width: 1199px) {
  .footer_wrapper .main_width .f_nav ul {
    gap: 0 2vw;
  }
}
@media (max-width: 768px) {
  .footer_wrapper .main_width .f_nav ul {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .footer_wrapper .main_width .f_nav ul li {
    width: calc(50% - 5px);
  }
}
.footer_wrapper .main_width .f_nav ul li a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.footer_wrapper .main_width .f_nav ul {
  /*
        &.child {
          margin-top: 5px;
          display: block;
          line-height: 1.38;
          li {
            width: 100%;
            font-family: "Inter", sans-serif;
            font-size: 1.6rem;
            font-weight: 400;
            a {
              font-family: "Inter", sans-serif;
              font-size: 1.6rem;
              font-weight: 400;
              display: inline-block;
            }
          }
        }
  */
}
.footer_wrapper .copyright {
  padding-top: 30px;
  display: block;
}
.footer_wrapper .copyright p {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: right;
}

/********************************************/
/*scroll_btn */
/********************************************/
.top_scroll {
  position: fixed;
  bottom: 15px;
  left: 0;
}

.top_scroll a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 769px) {
  .top_scroll {
    bottom: 30px;
  }
  .top_scroll a {
    padding: 25px;
  }
}
.top_scroll a:hover {
  opacity: 0.7;
}

/********************************************/
/*cta */
/********************************************/
#cta {
  position: fixed;
  display: block;
  z-index: 999;
}
@media (min-width: 768px) {
  #cta {
    bottom: 40px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  #cta {
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
#cta a {
  padding: 27px 48px 27px 45px;
  width: 420px;
  height: 120px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #FFF;
  background: #59C2E1;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1370px) {
  #cta a {
    padding: 12px 24px 12px 22px;
    width: 210px;
    height: 60px;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  #cta a {
    width: 100%;
    height: 65px;
    font-size: 1.8rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0;
  }
}
#cta a span {
  display: block;
}
#cta a span.en {
  padding-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 1370px) {
  #cta a span.en {
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  #cta a span.en {
    font-size: 1.2rem;
  }
}
#cta a::after {
  position: absolute;
  content: "";
  margin-right: 13px;
  margin-left: 13px;
  width: 22px;
  height: 22px;
  background: url(../img/common/arrow-01-w.svg) no-repeat center center/7px 13px;
  top: calc(50% - 11px);
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#cta a:hover {
  background: #606060;
}

/********************************************/
/*breadcrumb */
/********************************************/
.breadcrumb {
  padding-top: 30px;
  padding-bottom: 80px;
}
@media (max-width: 1023px) {
  .breadcrumb {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.breadcrumb .breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 26px;
}
.breadcrumb .breadcrumb__list .breadcrumb__item {
  color: #353535;
  font-size: 1.3rem;
  line-height: 1.3;
}
.breadcrumb .breadcrumb__list .breadcrumb__item a {
  position: relative;
  color: #353535;
  font-size: 1.3rem;
}
.breadcrumb .breadcrumb__list .breadcrumb__item a::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 1px;
  margin-left: 10px;
  background: #CDCDCD;
  top: 50%;
  right: -16px;
}
.breadcrumb .breadcrumb__list .breadcrumb__item a:hover {
  color: #59C2E1;
}

/********************************************/
/** pagination */
/********************************************/
.page-numbers {
  margin: 75px auto 20px;
  line-height: 1;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 767px) {
  .page-numbers {
    margin: 60px auto 0;
  }
}

.page-numbers li a,
.page-numbers li .current {
  width: 50px;
  height: 50px;
  color: #606060;
  background: #E6F2F6;
  border-radius: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .page-numbers li a,
  .page-numbers li .current {
    width: 30px;
    height: 30px;
    font-size: 1.4rem;
  }
}

.page-numbers li a:hover,
.page-numbers li .current {
  color: #FFF;
  background: #59C2E1;
}

.page-numbers .prev,
.page-numbers .next {
  position: relative;
}
.page-numbers .prev::before,
.page-numbers .next::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background: url(../img/common/arrow-01-gray.svg) no-repeat center center/7px 13px;
}
@media (max-width: 767px) {
  .page-numbers .prev::before,
  .page-numbers .next::before {
    width: 30px;
    height: 30px;
    background: url(../img/common/arrow-01-gray.svg) no-repeat center center/4px 7px;
  }
}
.page-numbers .prev:hover::before,
.page-numbers .next:hover::before {
  background: url(../img/common/arrow-01-w.svg) no-repeat center center/7px 13px;
}
@media (max-width: 767px) {
  .page-numbers .prev:hover::before,
  .page-numbers .next:hover::before {
    background: url(../img/common/arrow-01-w.svg) no-repeat center center/4px 7px;
  }
}

.page-numbers .prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* paging */
.paging {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 480px) {
  .paging {
    gap: 0 10px;
  }
}
.paging a {
  padding: 10px 15px;
  color: #353535;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 8px;
}
@media (max-width: 480px) {
  .paging a {
    font-size: 1.3rem;
    gap: 0 4px;
  }
}
.paging .prev,
.paging .next {
  width: 80px;
}
@media (max-width: 480px) {
  .paging .to--list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
}
.paging .to--list a {
  padding: 10px;
  width: 56px;
  color: #353535;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  border-bottom: 1px solid #f3f3f3;
}