@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
:root {
  --bgop: 1;
}

/* header */
.global-navi_fixed {
  padding: 20px 30px 18px 30px;
  position: fixed;
  top: -83px;
  left: 0;
  z-index: 999;
  background-color: #ffffff;
  width: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 1023px) {
  .global-navi_fixed {
    padding: 17px 20px;
  }
}
.global-navi_fixed.global-navi_fadein {
  top: 0;
}
.global-navi_fixed .p-header__inner {
  padding: 18px 30px 18px 30px;
}
.global-navi_fixed .burger-btn {
  top: 20px;
}
@media screen and (max-width: 1023px) {
  .global-navi_fixed .burger-btn {
    top: 12px;
  }
}

.nav-anim {
  position: relative;
  overflow: hidden;
}
.nav-anim:hover .p-nav__link-txt:first-of-type {
  transform: translateY(-100%);
}
.nav-anim:hover .p-nav__link-txt--before {
  transform: translateY(-100%);
}
.nav-anim:hover .p-nav__link-txt:last-of-type {
  transform: translateY(0);
}
.nav-anim:hover .p-nav__link-txt--after {
  transform: translateY(0);
}

#header {
  padding: 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  transition: background-color 0.35s;
}
#header.is-scrolled {
  background-color: #ffffff;
}
@media screen and (max-width: 1023px) {
  #header {
    padding: 20px;
  }
}

.nav-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .nav-inner {
    align-items: center;
  }
}

.logo-wrapper a {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
@media screen and (max-width: 1279px) {
  .logo-wrapper a img {
    width: 100px;
  }
}
@media screen and (max-width: 1023px) {
  .logo-wrapper a img {
    width: 137px;
  }
}

.logo-inner {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.p-header {
  position: absolute;
  background-color: transparent;
}
.p-header__inner {
  padding: 13px 30px 0 30px;
}
.p-header__logo {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.p-header-logo__txt {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1279px) {
  .p-header-logo__txt {
    display: none;
  }
}

.p-nav__link {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4285714286;
  font-weight: 500;
  padding: 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.p-nav__link-txt {
  display: block;
  line-height: 1.2;
  transition: transform 0.5s ease;
}
.p-nav__link-txt--before {
  transform: translateY(0);
}
.p-nav__link-txt:first-of-type {
  transform: translateY(0);
}
.p-nav__link-txt--after {
  color: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(95, 156, 200, var(--bgop)) 0%,
    rgba(54, 86, 186, var(--bgop)) 25%,
    rgba(53, 50, 197, var(--bgop)) 50%,
    rgba(54, 86, 186, var(--bgop)) 75%,
    rgba(95, 156, 200, var(--bgop)) 100%
  );
  background-size: 200px 100%;
  background-position: 0 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(100%);
  position: absolute;
  top: 0;
  left: 0;
}
.p-nav__link-txt:last-of-type {
  color: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(95, 156, 200, var(--bgop)) 0%,
    rgba(54, 86, 186, var(--bgop)) 25%,
    rgba(53, 50, 197, var(--bgop)) 50%,
    rgba(54, 86, 186, var(--bgop)) 75%,
    rgba(95, 156, 200, var(--bgop)) 100%
  );
  background-size: 200px 100%;
  background-position: 0 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(100%);
  position: absolute;
  top: 0;
  left: 0;
}
.p-nav__link--download,
.c-hamburger__list-item--download a,
.p-nav__link--contact,
.c-hamburger__list-item--contact a {
  border-radius: 100vw;
  text-align: center;
}
.p-nav__link--download,
.c-hamburger__list-item--download a {
  background: #ffffff;
  border: 1.2px solid #11225b;
  box-shadow: 0px 0px 4px rgba(17, 34, 91, 0.2);
  padding: 11.5px 0;
  transition: all 0.3s;
}
.p-nav__link--download:hover,
.c-hamburger__list-item--download a:hover {
  background-color: #11225b;
  color: #ffffff;
}
.p-nav__link--download:hover span::before,
.c-hamburger__list-item--download a:hover span::before {
  background: url(../images/common/icon-pdf-white.svg) no-repeat center center/contain;
}
.p-nav__link--download span,
.c-hamburger__list-item--download a span {
  position: relative;
  padding-right: 19px;
}
.p-nav__link--download span::before,
.c-hamburger__list-item--download a span::before {
  content: "";
  width: 14px;
  height: 19px;
  background: url(../images/common/icon-pdf.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 0;
  transition: all 0.3s;
}
.p-nav__link--download a,
.c-hamburger__list-item--download a a {
  text-align: center;
}
.p-nav__link--contact,
.c-hamburger__list-item--contact a {
  border: 1.2px solid #ed356a;
  background-color: #ed356a;
  color: #ffffff;
  display: block;
  padding: 11.5px 0;
  text-align: center;
  transition: all 0.3s;
}
.p-nav__link--contact:hover,
.c-hamburger__list-item--contact a:hover {
  background-color: #ffffff;
  color: #ed356a;
}
.p-nav__link--contact:hover .p-nav__link--contact-free,
.c-hamburger__list-item--contact a:hover .p-nav__link--contact-free {
  background-color: #ed356a;
  color: #ffffff;
}
.p-nav__link--contact .p-nav__link--contact-free,
.c-hamburger__list-item--contact a .p-nav__link--contact-free {
  background-color: #ffffff;
  color: #ed356a;
  border-radius: 2px;
  padding: 0 2.5px;
  margin-left: 10px;
  transition: all 0.3s;
}

#nav-tgl {
  display: none;
}

.burger-btn {
  width: 45px;
  height: 45px;
  border: 1.2px solid #11225b;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(17, 34, 91, 0.2);
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 1023px) {
  .burger-btn {
    width: 38px;
    height: 38px;
    top: 15px;
    right: 20px;
  }
}
.burger-btn:hover {
  cursor: pointer;
}
.burger-btn--close {
  z-index: 995;
  opacity: 1;
}
.burger-btn--open {
  z-index: 1;
  opacity: 0;
}

.nav-open .burger-btn--open {
  z-index: 995;
  opacity: 1;
}
.nav-open .burger-btn--close {
  z-index: 1;
  opacity: 0;
}

.bar {
  width: 15px;
  height: 1.5px;
  background-color: #11225b;
  border-radius: 100vw;
  display: block;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}
@media screen and (max-width: 1023px) {
  .bar {
    width: 14px;
    height: 1px;
  }
}
.bar-top {
  top: 18px;
}
@media screen and (max-width: 1023px) {
  .bar-top {
    top: 15px;
  }
}
.bar-bottom {
  bottom: 18px;
}
@media screen and (max-width: 1023px) {
  .bar-bottom {
    bottom: 15px;
  }
}

.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header-nav__list {
  display: flex;
  gap: 29px;
}
@media screen and (max-width: 1279px) {
  .header-nav__list {
    gap: 20px;
  }
}
.header-nav__item--download {
  width: 145px;
}
.header-nav__item--contact {
  width: 180px;
}

.header-contact-nav-list {
  display: flex;
  gap: 10px;
}

.nav-wrapper {
  width: auto;
  height: auto;
  position: relative;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
@media screen and (max-width: 1023px) {
  .nav-wrapper {
    display: none;
    width: 60%;
    min-width: 280px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 400;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

.nav-open .nav-wrapper {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.nav-open .nav-wrapper .header-nav {
  overflow-y: auto;
}

.header-nav.navbar-nav {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.header-nav.menu-item {
  margin-right: 0;
  margin-bottom: 40px;
}

.l-footer {
  background-color: #111e27;
  color: #ffffff;
  padding: 139px 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 80px;
    padding-top: 80px;
  }
}

.c-hamburger {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1000 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
  background-color: #33b9bb !important;
  overflow: auto !important;
}
.c-hamburger._triggerd {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.c-hamburger__panel {
  /* position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.35s ease; */
  padding-top: 40px;
}
@media screen and (max-width: 1023px) {
  .c-hamburger__panel {
    padding-top: 20px;
  }
}
.c-hamburger__panel::before {
  content: "";
  width: 248px;
  height: 248px;
  background: url(../images/common/hamburger-illustration.png) no-repeat center center/contain;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: 10px;
}
@media screen and (max-width: 1279px) {
  .c-hamburger__panel::before {
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 1023px) {
  .c-hamburger__panel::before {
    content: none;
  }
}
.c-hamburger__panel .container-1126 {
  width: 100%;
}
.c-hamburger.is-open .c-hamburger__panel {
  transform: translateX(0);
}
.c-hamburger__logo {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .c-hamburger__logo {
    text-align: left;
  }
}
.c-hamburger__logo img {
  display: inline-block;
  width: 82px;
}
@media screen and (max-width: 1023px) {
  .c-hamburger__logo img {
    width: 137px;
  }
}
.c-hamburger__title {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #11225b;
}
.c-hamburger__close {
  position: absolute;
  top: 30px;
  right: 30px;
  border: 1px solid #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .c-hamburger__close {
    width: 38px;
    height: 38px;
    top: 15px;
    right: 20px;
  }
}
.c-hamburger__close-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 21px;
  height: 1.5px;
  background-color: #ffffff;
  border-radius: 100vw;
  transform-origin: center;
}
@media screen and (max-width: 1023px) {
  .c-hamburger__close-bar {
    width: 13px;
  }
}
.c-hamburger__close-bar--1 {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-hamburger__close-bar--2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-hamburger__nav {
  padding: 0 20px;
  width: 66.3%;
}
@media screen and (max-width: 1023px) {
  .c-hamburger__nav {
    width: 100%;
  }
}
.c-hamburger__contents-inner {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (max-width: 1023px) {
  .c-hamburger__contents-inner {
    flex-wrap: wrap;
    row-gap: 30px;
  }
}
.c-hamburger__lists {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
  row-gap: 15px;
}
.c-hamburger__list-item {
  width: 50%;
  padding: 0 7.5px;
}
.c-hamburger__list-item a {
  transition: all 0.3s;
}
.c-hamburger__list-item a:hover {
  opacity: 0.7;
}
.c-hamburger__list-item a:not(.c-hamburger__child-link),
.c-hamburger__list-item .c-hamburger__list-item-inner {
  display: block;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 20px;
}
@media screen and (max-width: 1023px) {
  .c-hamburger__list-item a:not(.c-hamburger__child-link),
  .c-hamburger__list-item .c-hamburger__list-item-inner {
    font-size: 14px;
    padding: 18.5px 14px;
  }
}
.c-hamburger__list-item--download a {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.c-hamburger__list-item--contact a {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.c-hamburger__cva {
  padding: 0 20px;
  width: 33.7%;
}
@media screen and (max-width: 1023px) {
  .c-hamburger__cva {
    width: 100%;
  }
}
.c-hamburger__cva-img img {
  width: 100%;
}
.c-hamburger__child-lists {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.c-hamburger__child-link {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  color: #ffffff;
  font-size: 12px;
  padding: 2px 8px 4px;
}
@media screen and (max-width: 1023px) {
  .c-hamburger__child-link {
    font-size: 10px;
    padding: 2px 3.5px;
  }
}
.c-hamburger__child-link2 {
  padding: 0 !important;
  border: none !important;
}
.c-hamburger__cva-btn-wrapper {
  width: 100%;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}
.c-hamburger__cva-message {
  color: #ffffff;
  line-height: 1.75;
  margin-top: 14px;
}
.c-hamburger .p-spNav__illust {
  background-color: #33b9bb;
  width: 141px;
  height: auto;
  right: 0;
  bottom: 15px;
}

html.is-hamburger-open,
body.is-hamburger-open {
  overflow: hidden;
}

.footer-top-wrapper {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 95px;
}
@media screen and (max-width: 767px) {
  .footer-top-wrapper {
    padding-bottom: 60px;
  }
}
.footer-top-inner {
  display: flex;
  margin-left: -100.5px;
  margin-right: -100.5px;
}
@media screen and (max-width: 1279px) {
  .footer-top-inner {
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-top-inner {
    flex-wrap: wrap;
    row-gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer-top-inner {
    row-gap: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 20px;
  }
}
.footer-top-info-wrapper {
  width: 29.7%;
  padding: 0 100.5px;
}
@media screen and (max-width: 1279px) {
  .footer-top-info-wrapper {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-top-info-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer-top-info-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer-top-info__logo img {
    width: 168px;
  }
}
.footer-top-info__company-name {
  font-size: 1.5625rem;
  letter-spacing: 0.03em;
  line-height: 1.28;
  margin-top: 43px;
}
@media screen and (max-width: 767px) {
  .footer-top-info__company-name {
    margin-top: 28px;
    font-size: 1.25rem;
  }
}
.footer-top-info__address {
  letter-spacing: 0.03em;
  line-height: 1.75;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer-top-info__address {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.footer-top-info-sns-list {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .footer-top-info-sns-list {
    margin-top: 18px;
  }
}
.footer-top-info-sns-list-item a {
  transition: all 0.3s;
}
.footer-top-info-sns-list-item a:hover {
  opacity: 0.7;
}
.footer-top-link-wrapper {
  width: 10%;
}
.footer-top-link-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 41px;
}
@media screen and (max-width: 767px) {
  .footer-top-link-list {
    row-gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-top-link-list-item {
    width: 100%;
    border-top: 1px solid #ffffff;
    padding: 20px 0;
  }
}
.footer-top-link-list-item a {
  color: #ffffff;
  position: relative;
  display: block;
}
.footer-top-link-list-item.has-child-list > a {
  margin-bottom: 16px;
}
.footer-top-link-list-item.has-child-list ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
.footer-top-link-list-item.has-child-list ul li {
  padding-left: 5px;
  width: 100%;
}
.footer-top-link-list-item.has-child-list ul li a {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 2;
}
.footer-top-item:nth-of-type(2) {
  padding: 0 50px 0 92px;
  width: 22.9%;
}
@media screen and (max-width: 1279px) {
  .footer-top-item:nth-of-type(2) {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-top-item:nth-of-type(2) {
    width: 33.3333333%;
  }
}
@media screen and (max-width: 767px) {
  .footer-top-item:nth-of-type(2) {
    padding: 0;
    width: 100%;
  }
}
.footer-top-item:nth-of-type(3) {
  padding: 0 57px 0 50px;
  width: 19.2%;
}
@media screen and (max-width: 1279px) {
  .footer-top-item:nth-of-type(3) {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-top-item:nth-of-type(3) {
    width: 33.3333333%;
  }
}
@media screen and (max-width: 767px) {
  .footer-top-item:nth-of-type(3) {
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer-top-item:nth-of-type(3) .footer-top-link-list-item {
    border-bottom: 1px solid #ffffff;
  }
}
.footer-top-item:last-of-type {
  padding: 0 100.5px 0 50px;
  width: 28.2%;
}
@media screen and (max-width: 1279px) {
  .footer-top-item:last-of-type {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-top-item:last-of-type {
    width: 33.3333333%;
  }
}
@media screen and (max-width: 767px) {
  .footer-top-item:last-of-type {
    padding: 0;
    width: 100%;
  }
}
.footer-top-item:last-of-type .btn-pattern1 {
  padding: 17px 25px 18px 30px;
}
@media screen and (max-width: 767px) {
  .footer-top-btn-wrapper {
    width: 100%;
    margin-top: 40px;
  }
}
.footer-top-btn-inner {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
}
@media screen and (max-width: 767px) {
  .footer-top-btn-inner {
    gap: 5px;
    justify-content: space-between;
  }
}
.footer-top-btn-item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer-top-btn-item {
    width: calc(50% - 2.5px);
  }
}
@media screen and (max-width: 767px) {
  .footer-top-btn-item .btn-pattern1 {
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-top-btn-item .btn-pattern1-inner {
    display: none;
  }
}
.footer-top-btn-item .p-nav__link-txt {
  line-height: 1.7;
}
.footer-bottom-wrapper {
  padding: 24px 0 24px;
}
.footer-bottom-link-list {
  display: flex;
  gap: 40px;
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .footer-top-btn-item .p-nav__link-txt {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-bottom-link-list {
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
  }
}
.footer-bottom-link-list-item a {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 2.3333333333;
  letter-spacing: 0.03em;
  display: block;
}
@media screen and (max-width: 767px) {
  .footer-bottom-link-list-item a {
    font-size: 0.625rem;
  }
}
.footer-bottom-logo-wrapper {
  text-align: center;
}
.footer-bottom-logo-wrapper img {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .footer-bottom-logo-wrapper img {
    width: 79px;
  }
}
.footer-bottom-copy-wrapper {
  text-align: center;
  margin-top: 15px;
}
.footer-bottom-copy-wrapper small {
  font-size: 0.75rem;
  line-height: 2.3333333333;
  letter-spacing: 0.03em;
} /*# sourceMappingURL=style-nav.css.map */


#nav-outer {
  display: flex;
  align-items: center;
  gap: 20px;
}
#nav-outer .btn_sp_navi_wrap {
  display: block;
  z-index: 1001;
  position: relative;
  background-color: white;
  border: 1.2px solid #11225B;
  box-shadow: 0px 0px 4px rgba(17, 34, 91, 0.2);
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 767px) {
  #nav-outer .btn_sp_navi_wrap {
    width: 38px;
    height: 38px;
    top: 0;
    right: 0;
  }
}
#nav-outer .btn_sp_navi_wrap .line {
  background-color: #11225B;
  width: 15px;
  border-radius: 10px;
  height: 1.5px;
}
@media screen and (max-width: 767px) {
  #nav-outer .btn_sp_navi_wrap .line {
    width: 14px;
    height: 1px;
  }
}
#nav-outer .btn_sp_navi_wrap .line:nth-of-type(2) {
  opacity: 0 !important;
}
#nav-outer .btn_sp_navi_wrap .js-open_sp_navi {
  height: 100%;
  gap: 3px;
}
@media screen and (max-width: 767px) {
  #nav-outer .btn_sp_navi_wrap .js-open_sp_navi {
    gap: 2px;
  }
}
.sp-nav-active #nav-outer .btn_sp_navi_wrap{
  border-color: white;
  background-color: transparent;
  box-shadow: none;
}
.sp-nav-active #nav-outer .btn_sp_navi_wrap .line:first-of-type {
  width: 22px;
  transform: translateY(5px) rotate(-45deg);
  background-color: white;
}
@media screen and (max-width: 767px) {
  .sp-nav-active #nav-outer .btn_sp_navi_wrap .line:first-of-type {
    width: 20px;
    transform: translateY(4px) rotate(-45deg);
  }
}
.sp-nav-active #nav-outer .btn_sp_navi_wrap .line:last-of-type {
  width: 22px;
  transform: translateY(-4px) rotate(45deg);
  background-color: white;
}
@media screen and (max-width: 767px) {
  .sp-nav-active #nav-outer .btn_sp_navi_wrap .line:last-of-type {
    width: 20px;
    transform: translateY(-3px) rotate(45deg);
  }
}
.p-footer__toTop {
  display: none;
}