/* ---------------------------------------*/
/* common */
/* ---------------------------------------*/
.wrapper {
  max-width: 1025px;
  padding: 0 50px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
    padding: 0 25px;
  }
}

/* ---------------------------------------*/
/* global_navi */
/* ---------------------------------------*/
body {
  width: 100%;
}

body.fixed {
  position: fixed;
}

.global_navi {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  z-index: 101;
}
.global_navi.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.global_navi-list {
  display: inline-block;
  background: rgba(102, 100, 100, 0.7);
  padding: 140px 45px 60px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: left;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .global_navi-list {
    display: block;
    width: 100%;
    background: #949495;
    padding: 60px 0 30px;
    text-align: center;
  }
}

.global_navi-list__item {
  font-size: 1.5rem;
  font-weight: 400;
  white-space: nowrap;
  color: #fff;
  margin: 0 0 0.8em;
  position: relative;
}
.global_navi-list__item::before {
  content: "* ";
  position: absolute;
  left: -1em;
  top: 0.26em;
}
@media screen and (max-width: 768px) {
  .global_navi-list__item {
    font-size: 1.5rem;
    width: 14em;
    margin: 0 auto 0.8em;
    position: relative;
  }
  .global_navi-list__item:nth-child(4), .global_navi-list__item:nth-child(5), .global_navi-list__item:nth-child(8), .global_navi-list__item:nth-child(9) {
    margin: 0 auto 0.8em;
  }
  .global_navi-list__item:nth-child(10) {
    margin: 1.8em auto 0;
  }
  .global_navi-list__item::before {
    position: absolute;
    left: 0;
    top: 0.3em;
  }
  .global_navi-list__item::after {
    content: "* ";
    position: absolute;
    right: 0;
    top: 0.3em;
  }
}

.global-navi-list--sns {
  margin: 43px 0 0;
}
@media screen and (max-width: 768px) {
  .global-navi-list--sns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 35px 0 0;
  }
}

.global-navi-list--sns__item {
  width: 35px;
  margin: 0 0 23px 1.5em;
}
.global-navi-list--sns__item:last-child {
  margin: 0 0 0 1.5em;
}
@media screen and (max-width: 768px) {
  .global-navi-list--sns__item {
    width: 26px;
    margin: 0 14px;
  }
}

.navToggle {
  display: block;
  position: fixed;
  right: 50px;
  top: 50px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: #fff;
  text-align: center;
  z-index: 101;
  cursor: pointer;
}
.navToggle span {
  display: block;
  position: absolute;
  width: 34px;
  height: 1px;
  background: #000;
  left: 13px;
}
.navToggle span:nth-child(1) {
  top: 20px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.navToggle span:nth-child(2) {
  top: 50%;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.navToggle span:nth-child(3) {
  bottom: 20px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.navToggle.active span:nth-child(1) {
  top: 50%;
  left: calc(50% - 17px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.navToggle.active span:nth-child(2) {
  top: 50%;
  left: calc(50% - 17px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.navToggle.active span:nth-child(3) {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 17px;
    top: 20px;
    width: 22px;
    height: 17px;
    border-radius: 0;
    background: none;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 22px;
    left: 0;
  }
  .navToggle span:nth-child(1) {
    top: 0;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .navToggle span:nth-child(2) {
    top: 50%;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .navToggle span:nth-child(3) {
    bottom: 0;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .navToggle.active span {
    background: #fff;
  }
  .navToggle.active span:nth-child(1) {
    top: 50%;
    left: calc(50% - 11px);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .navToggle.active span:nth-child(2) {
    top: 50%;
    left: calc(50% - 11px);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
}

/* ---------------------------------------*/
/* footer */
/* ---------------------------------------*/
footer {
  padding: 40px 100px 60px;
  background: #efefef;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 30px 0 35px 0;
    line-height: 2;
  }
}

.footer-button-top {
  width: 46px;
  position: absolute;
  top: 80px;
  right: 57px;
}
@media screen and (max-width: 768px) {
  .footer-button-top {
    display: none;
  }
}

.footer-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 40px;
}
.footer-content address {
  width: 43%;
  padding: 0 3% 0 0;
  font-size: 1.3rem;
  line-height: 1.73;
}
.footer-content nav {
  width: 57%;
  display: grid;
  grid-template-columns: 2.5fr 1.8fr 1.2fr 1fr;
  padding: 3.4em 0 0;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.73;
}
@media screen and (max-width: 768px) {
  .footer-content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .footer-content address {
    width: 100%;
    padding: 0;
    margin: -20px 0 0;
    text-align: center;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    font-size: 1.4rem;
  }
  .footer-content nav {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    padding: 0 0 3em;
    grid-template-columns: 2.4fr 1.7fr 1fr;
    font-size: 1.2rem;
    line-height: 2;
  }
  .footer-content nav .footer-list--company {
    grid-column: 3;
    position: relative;
  }
  .footer-content nav .footer-list--contact {
    grid-column: 3;
    position: relative;
    top: -2em;
  }
}

.footer-list--page__item,
.footer-list--policy__item,
.footer-list--company__item {
  padding: 0 10% 0 0;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .footer-list--page__item,
  .footer-list--policy__item,
  .footer-list--company__item {
    padding: 0;
    font-size: 1.2rem;
  }
}

.footer-list--contact__item {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .footer-list--contact__item {
    font-size: 1.2rem;
  }
}

.footer-company_name {
  font-size: 2.1rem;
  font-weight: 600;
  display: block;
  margin: 0 0 0.4em;
}
@media screen and (max-width: 768px) {
  .footer-company_name {
    font-size: 1.6rem;
  }
}

.footer-copyright {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    font-size: 1.2rem;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .footer-list--page__item:nth-child(4) {
    display: none;
  }
}

.footer-list--policy__item:first-child {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer-list--policy__item:first-child {
    display: block;
  }
}