@charset "UTF-8";
.header {
  position: relative;
  line-height: 1;
  z-index: 10000;
  width: 100%;
  height: 70px;
  background-color: #fff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}
.header__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 70px;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 780px) {
  .header__container {
    height: 60px;
  }
}
.header__logo {
  flex: 0 1 221px;
  line-height: 1;
  margin-right: auto;
  margin-left: 20px;
}
.header__logo a {
  width: 100%;
  display: block;
}
@media screen and (max-width: 780px) {
  .header__logo {
    flex: 0 1 40%;
    max-width: 160px;
    margin-left: 10px;
  }
}
.header__sp-btn {
  display: none;
  flex: 0 0 28px;
  position: relative;
  height: 26px;
  margin: 0 15px;
  cursor: pointer;
}
.header__sp-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0A0A0A;
  position: absolute;
  transition-duration: 0.5s;
}
.header__sp-btn .m_top {
  top: 2px;
}
.header__sp-btn .m_center {
  top: 12px;
}
.header__sp-btn .m_btm {
  bottom: 2px;
}
.header__sp-btn.opened .m_top {
  transform: translateY(10px) rotate(45deg);
}
.header__sp-btn.opened .m_center {
  opacity: 0;
}
.header__sp-btn.opened .m_btm {
  transform: translateY(-10px) rotate(-45deg);
}
@media screen and (max-width: 780px) {
  .header__sp-btn {
    display: block;
    order: 3;
  }
}
.header__nav {
  max-width: 550px;
  text-align: center;
  padding: 0px 15px;
  margin-left: 15px;
  font-weight: bold;
  flex: 1 1 auto;
}
@media screen and (max-width: 780px) {
  .header__nav {
    display: none;
  }
}
.header__nav--sp {
  display: block;
  max-width: 100%;
}
.header__contact {
  display: flex;
  flex: 0 0 400px;
  justify-content: center;
  align-items: flex-end;
}
.header__contact a {
  background-color: #EA7240;
  display: flex;
  color: #fff;
  height: 48px;
  border-radius: 5px;
  padding: 3px 10px;
  line-height: 1.2;
  margin: 0 0 0 10px;
  font-weight: 700;
  width: 50%;
  position: relative;
  justify-content: center;
  text-decoration: none;
  align-items: center;
}
.header__contact a:last-of-type {
  background-color: #E1E1E1;
  color: #333333;
}
@media screen and (max-width: 780px) {
  .header__contact {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .header__contact {
    display: none;
  }
}
.header__sp-container {
  position: absolute;
  left: 0;
  width: 100%;
  background: rgba(51, 51, 51, 0.9);
}
@media screen and (max-width: 780px) {
  .header__sp-container {
    text-align: center;
  }
}
.header__nav--sp {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  padding-bottom: 30px;
  border-right: none;
}
.header .gloval-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .gloval-nav__list a {
  font-size: 0.875rem;
  line-height: 1.2;
  margin: 0;
  height: 40px;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0;
}
.header .gloval-nav__list a.current::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 5px;
  border-radius: 3px 3px 0 0;
  background-color: #EA7240;
  bottom: -15px;
  transform: scale(1, 1);
  transform-origin: center bottom;
  transition: transform 0.3s;
}
.header .gloval-nav__list a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 5px;
  border-radius: 3px 3px 0 0;
  background-color: #EA7240;
  bottom: -15px;
  transform: scale(0, 1);
  transform-origin: center bottom;
  transition: transform 0.3s;
}
.header .gloval-nav__list a:hover::after {
  transform: scale(1, 1);
}
.header .gloval-nav__list--sp {
  flex: 1 1 100%;
  box-sizing: border-box;
  width: 100%;
}
.header .gloval-nav__list--sp a {
  display: block;
  color: #FFF;
  font-size: 1rem;
  padding: 25px 0;
  font-weight: bold;
  height: auto;
}
.header .gloval-nav__list--sp a.current::after {
  background-color: transparent;
  position: static;
}
@media screen and (max-width: 780px) {
  .header .gloval-nav {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .header .gloval-nav--sp {
    display: flex;
    flex-direction: column;
  }
}
.header.header-clone {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  transition: 0.3s;
  transform: translateY(-100%);
  background: rgba(255, 255, 255, 0.9);
}
.header.header-clone.show {
  transform: translateY(0);
}

/*=============フッター==============*/
.footlink {
  background-color: #f1f1f1;
  padding: 80px 0 50px;
  text-align: center;
}
.footlink__title {
  font-size: 2.1875rem;
}
@media screen and (max-width: 780px) {
  .footlink__title {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 780px) {
  .footlink {
    padding: 6.5104166667vw 0 6.5104166667vw;
  }
}

.footer {
  margin: 0;
  padding: 50px 10px 10px;
  background-color: #333333;
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 2;
}
.footer__inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 780px) {
  .footer__inner {
    max-width: 760px;
  }
}
.footer__lists {
  display: flex;
  font-size: 0.9375rem;
}
@media screen and (max-width: 780px) {
  .footer__lists {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 5px;
    font-size: 0.75rem;
  }
}
.footer__list:not(:last-child) {
  padding-right: 20px;
}
@media screen and (max-width: 780px) {
  .footer__list:not(:last-child) {
    padding-right: 10px;
  }
}
.footer__list:not(:last-child) a::after {
  content: "|";
  padding-left: 15px;
}
@media screen and (max-width: 780px) {
  .footer__list:not(:last-child) a::after {
    padding-left: 15px;
  }
}
.footer__logo {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 0;
  font-size: 0.875rem;
}
.footer__logo a:first-of-type img {
  width: 176px;
}
.footer__logo a:last-of-type img {
  width: 131px;
}
@media screen and (max-width: 780px) {
  .footer__logo a:last-of-type img {
    width: 90px;
  }
}
.footer__logo img {
  margin: 0 5px;
}
@media screen and (max-width: 780px) {
  .footer__logo {
    margin-top: 30px;
    font-size: 0.625rem;
  }
}
.footer__txt {
  text-align: center;
  font-size: 15rem;
  flex-basis: calc(60% - 20px);
  margin: 10px;
}
@media screen and (max-width: 780px) {
  .footer__txt {
    flex-basis: 90%;
    margin: 2.6041666667vw auto;
  }
}
@media screen and (max-width: 780px) {
  .footer__link a {
    display: block;
    text-decoration: underline;
  }
}
@media screen and (max-width: 780px) {
  .footer__link {
    font-size: 0.625rem;
    transform: translateX(0);
  }
}
.footer__link a:first-child {
  padding-right: 15px;
}
@media screen and (max-width: 780px) {
  .footer__link a:first-child {
    padding-right: 0;
  }
}
.footer__link a:first-child::after {
  content: "|";
  padding-left: 15px;
}
@media screen and (max-width: 780px) {
  .footer__link a:first-child::after {
    content: "";
    padding: 0;
  }
}
.footer__access span:not(:last-child) {
  padding-right: 10px;
}
.footer__access span:not(:last-child)::after {
  content: "|";
  padding-left: 10px;
}
@media screen and (max-width: 780px) {
  .footer__access span:not(:last-child)::after {
    content: "";
    padding-left: 0;
  }
}
@media screen and (max-width: 780px) {
  .footer__access span:not(:last-child) {
    padding-right: 0;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 780px) {
  .footer__access span {
    display: block;
  }
}
@media screen and (max-width: 780px) {
  .footer__access span a {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 780px) {
  .footer__access {
    margin-top: 15px;
  }
}
.footer .copyright {
  margin-top: 15px;
}
@media screen and (max-width: 780px) {
  .footer .copyright {
    font-size: 0.5625rem;
  }
}
@media screen and (max-width: 780px) {
  .footer {
    margin: 0;
    padding: 6.5104166667vw 1.3020833333vw 1.3020833333vw;
    font-size: 0.75rem;
  }
}

.copyright {
  flex-basis: 100%;
  text-align: center;
  margin-top: 70px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #A1A1A1;
}

/*===========スティッキーヘッダー============*/
.sticky {
  position: fixed;
  bottom: 0;
  top: 0;
  margin: auto 0;
  right: -100%;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 10000;
  transition: 0.3s;
}
.sticky.is-open {
  right: 0;
}
.sticky__first, .sticky__second {
  border-radius: 10px 0 0 10px;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 10px;
  text-decoration: none;
  width: 250px;
  box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.sticky__first.vertical, .sticky__second.vertical {
  width: auto;
}
.sticky__first {
  background-color: #EA7240;
  color: #fff;
  margin-bottom: 10px;
}
.sticky__second {
  background-color: #fff;
  color: #EA7240;
  border: 2px solid #EA7240;
  border-right: none;
}
@media screen and (max-width: 780px) {
  .sticky {
    display: none;
  }
}
.sticky__btn.vertical {
  writing-mode: vertical-rl;
}/*# sourceMappingURL=comp.css.map */