.more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 24px;
  padding: 1.6rem 0.8rem 1.6rem 2.4rem;
  font-size: 1.4rem;
  font-weight: bold;
    transition: all ease 200ms;
}

.more-btn__arrow {
  position: relative;
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
    transition: all ease 200ms;
}

.more-btn__arrow::after {
  content: url("../../img/common/icon_arrow-blue.svg");
  width: 21px;
  height: auto;
}

.more-btn--blue {
  background-color: #2659AE;
  color: #ffffff;
}
.more-btn--blue:hover {
  background-color: #fff;
  color: #2659AE;
}

.arrow--blue {
  position: relative;
  background-color: #ffffff;
}

.more-btn--white {
  background-color: #ffffff;
  color: #2659AE;
}

.border--blue {
  border: solid 1px #2659AE;
}
.more-btn--white:hover .more-btn__arrow.border--blue{
    background: #2659AE;
}

.more-btn--white:hover .more-btn__arrow.border--blue::after{
-webkit-filter: brightness(0) invert(1);
filter: brightness(0) invert(1);
}

.menu-toggle {
  z-index: 100;
  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;
  width: min(17vw,90px);
  height: min(17vw,90px);
  background-color: #2659AE;
  border: none;
  -webkit-transition: background-color 0.3s ease, border-radius 0.3s ease;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.menu-toggle__lines {
  position: relative;
  width: 28px;
  height: 20px;
}

.menu-toggle__lines span {
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}

.menu-toggle__lines span:nth-child(1) {
  top: 0;
}

.menu-toggle__lines span:nth-child(2) {
  top: 9px;
}

.menu-toggle__lines span:nth-child(3) {
  bottom: 0;
}

.menu-toggle__text {
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
    line-height: 1;
    margin-top: min(1vw,8px);
}

.menu-toggle.is-open {
  z-index: 100;
  border-radius: 50%;
  background-color: #ffffff;
}

.menu-toggle.is-open .menu-toggle__text {
  color: #2659AE;
}

.menu-toggle.is-open .menu-toggle__lines span {
  background-color: #2659AE;
}

.menu-toggle.is-open .menu-toggle__lines span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle__lines span:nth-child(3) {
  bottom: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}