@charset "UTF-8";
@media screen and (min-width: 1500px) {
  html {
    font-size: 18px;
  }
}
@media screen and (min-width: 1700px) {
  html {
    font-size: 20px;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 14px;
  }
}

body {
  background-color: #FCFBF5;
  color: #26435C;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  overflow: hidden;
  background-image: url(../img/bg-01.webp);
  background-size: 100%;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  body {
    background-image: url(../img/bg-01-sp.webp);
  }
}
body::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/border.webp);
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  body::before {
    background-image: url(../img/border-sp.webp);
  }
}

a {
  color: #26435C;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

p, li, dt, dd, th, td {
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

h1, h2, h3, h4 {
  line-height: 1.7;
  font-weight: normal;
  letter-spacing: 0.05em;
}

strong {
  font-weight: 700;
}

/* smartphone */
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block;
  }
}
/* layout */
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1500px) {
  .content-wrap {
    max-width: 1320px;
  }
}
@media screen and (min-width: 1700px) {
  .content-wrap {
    max-width: 1500px;
  }
}
@media screen and (max-width: 1264px) {
  .content-wrap {
    margin: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .content-wrap {
    margin: 0 16px;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.title__english {
  display: block;
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .title__english {
    font-size: 2.5rem;
  }
}
.title__japanese {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .title__japanese {
    font-size: 0.9375rem;
  }
}

.table {
  border-spacing: 8px;
  width: calc(100% + 16px);
  margin-left: -8px;
}
@media screen and (max-width: 767px) {
  .table {
    border-spacing: 4px;
    width: calc(100% + 8px);
    margin-left: -4px;
  }
}
.table th,
.table td {
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .table th,
  .table td {
    padding: 12px;
    font-size: 0.9375rem;
  }
}
.table th {
  background: #26435C;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .table th {
    width: 25%;
  }
}
.table td {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .table td {
    width: 75%;
  }
}

.hero {
  height: calc(100vh - 84px);
  margin-top: 84px;
}
@media screen and (max-width: 767px) {
  .hero {
    height: auto;
    margin-top: 72px;
    aspect-ratio: 375/560;
  }
}
.hero .content-wrap {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .hero .content-wrap {
    width: 100%;
    margin: 0;
    max-width: 100%;
  }
}
.hero .content-wrap::after {
  content: "";
  display: block;
  width: 55.75%;
  aspect-ratio: 669/544;
  background-image: url(../img/bg-img-mv.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: -7%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .hero .content-wrap::after {
    top: -6%;
    right: -5%;
    -webkit-transform: inherit;
            transform: inherit;
    width: 95.75%;
  }
}
.hero__content {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .hero__content {
    top: inherit;
    bottom: 10%;
    left: 6%;
    -webkit-transform: inherit;
            transform: inherit;
  }
}
.hero__badge-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .hero__badge-row {
    margin-bottom: 5%;
  }
}
.hero__badge {
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  font-size: 1.125rem;
  padding: 0 16px;
  background: #fff;
  border-radius: 0 4px 4px 0;
}
@media screen and (max-width: 767px) {
  .hero__badge {
    height: auto;
    line-height: 1.7;
    font-size: 3.5vw;
    padding: 1.5% 4%;
  }
}
.hero__badge--primary {
  padding: 0 12px;
  font-size: 0.875rem;
  color: #fff;
  background: #26435C;
  border-radius: 4px 0 0 4px;
}
@media screen and (max-width: 767px) {
  .hero__badge--primary {
    padding: 2% 4%;
    font-size: 3vw;
  }
}
.hero__title {
  font-size: 3.375rem;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 9vw;
    margin-bottom: 5%;
    line-height: 1.6;
  }
}
.hero__lead {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .hero__lead {
    font-size: 3.5vw;
  }
}

.fixed-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .fixed-button {
    bottom: 8px;
    right: 8px;
  }
}
.fixed-button__cta {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 136px;
  height: 136px;
  background: #26435C;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .fixed-button__cta {
    width: 100px;
    height: 100px;
  }
}
.fixed-button__cta img {
  width: 48.5px;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .fixed-button__cta img {
    width: 40px;
  }
}
.fixed-button__cta small {
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 767px) {
  .fixed-button__cta small {
    font-size: 0.65rem;
  }
}
.fixed-button__cta span {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .fixed-button__cta span {
    font-size: 0.75rem;
  }
}

.about {
  padding-top: 120px;
  max-width: 768px;
  margin: 0 auto;
  padding-bottom: 240px;
}
@media screen and (min-width: 1500px) {
  .about {
    max-width: 900px;
  }
}
@media screen and (min-width: 1700px) {
  .about {
    max-width: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}
.about .content-wrap {
  height: 100%;
}
.about .content-wrap::before {
  content: "";
  display: block;
  width: 80%;
  aspect-ratio: 619/425;
  background-image: url(../img/bg-img-about-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 24%;
  left: -77%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .about .content-wrap::before {
    content: none;
  }
}
.about .content-wrap::after {
  content: "";
  display: block;
  width: 80%;
  aspect-ratio: 619/485;
  background-image: url(../img/bg-img-about-02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -9%;
  right: -76%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .about .content-wrap::after {
    content: none;
  }
}
.about__title {
  text-align: center;
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .about__title {
    margin-bottom: 64px;
  }
}
.about__body, .about__footer {
  position: relative;
  z-index: 3;
}
.about__body p, .about__footer p {
  line-height: 2.5625;
}
@media screen and (max-width: 767px) {
  .about__body p, .about__footer p {
    font-size: 0.9375rem;
    line-height: 2.3;
  }
}
.about__body p + p, .about__footer p + p {
  margin-top: 1.5em;
}
.about__body {
  margin-bottom: 56px;
}
.about__callout {
  text-align: center;
  margin-bottom: 32px;
}
.about__callout-badge {
  display: inline-block;
  max-width: 420px;
  margin: 0 auto;
  padding: 4px 20px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  background: #26435C;
}
.about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .about__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 16px;
  }
}
.about__list-content {
  width: 31%;
  border: 1px solid #26435C;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .about__list-content {
    width: 100%;
  }
}
.about__list-no {
  font-size: 2.9375rem;
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  color: #8FCED8;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 16px;
}
.about__list-title {
  font-size: 1.125rem;
  white-space: nowrap;
  font-weight: bold;
  margin-bottom: 12px;
}
.about__list-description {
  font-size: 0.9375rem;
}

.contents {
  padding-bottom: 160px;
  position: relative;
  background: #F4F4D7;
}
@media screen and (max-width: 767px) {
  .contents {
    padding-bottom: 80px;
  }
}
.contents::before {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background-image: url(../img/bg-contents-top.webp);
  background-size: 100% 100%;
  position: absolute;
  top: -159px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contents::before {
    background-image: url(../img/bg-contents-top-sp.webp);
    height: 80px;
    top: -79px;
  }
}
.contents::after {
  content: "";
  display: block;
  width: 100%;
  height: 220px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(252, 251, 245, 0)), to(rgb(252, 251, 245)));
  background: linear-gradient(to bottom, rgba(252, 251, 245, 0) 0%, rgb(252, 251, 245) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contents::after {
    height: 120px;
  }
}
.contents__title {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .contents__title {
    text-align: center;
  }
}
.contents__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .contents__list {
    grid-gap: 16px;
  }
}
.contents__list::after {
  content: "";
  display: block;
  width: calc(25% - 18px);
}
.contents__list-content {
  width: calc(25% - 18px);
  background: #fff;
  border-radius: 10px;
  padding: 32px 20px;
}
@media screen and (max-width: 767px) {
  .contents__list-content {
    width: calc(50% - 8px);
    padding: 12px;
  }
}
.contents__list-header {
  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;
  margin-bottom: 20px;
}
.contents__list-icon {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .contents__list-icon {
    width: 48px;
  }
}
.contents__list-title {
  width: calc(100% - 96px);
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents__list-title {
    width: calc(100% - 56px);
    font-size: 1rem;
    line-height: 1.5;
  }
}
.contents__list-text {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .contents__list-text {
    font-size: 0.75rem;
  }
}

.voice {
  padding: 56px 0 80px;
}
.voice__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .voice__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.voice__title {
  width: 280px;
}
@media screen and (max-width: 767px) {
  .voice__title {
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
  }
}
.voice__card {
  width: calc(100% - 280px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .voice__card {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.voice__card-photo {
  width: 165px;
}
@media screen and (max-width: 767px) {
  .voice__card-photo {
    width: 100%;
    margin-bottom: 24px;
  }
}
.voice__card-photo img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .voice__card-photo img {
    display: block;
    width: 160px;
    margin: 0 auto;
  }
}
.voice__card-body {
  width: calc(100% - 245px);
}
@media screen and (max-width: 767px) {
  .voice__card-body {
    width: 100%;
  }
}
.voice__card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .voice__card-meta {
    margin-bottom: 32px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.voice__card-name {
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .voice__card-name {
    font-size: 1.25rem;
  }
}
.voice__card-name-en {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  padding-left: 16px;
  margin-left: 16px;
  position: relative;
}
.voice__card-name-en::before {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: #26435C;
  position: absolute;
  bottom: 7px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .voice__card-text {
    font-size: 0.9375rem;
  }
}

.company {
  padding: 150px 0 220px;
  background-image: url(../img/bg-02.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 80px 0 120px;
  }
}
.company::after {
  content: "";
  display: block;
  width: 100%;
  height: 220px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 251, 245)), to(rgba(252, 251, 245, 0)));
  background: linear-gradient(to bottom, rgb(252, 251, 245) 0%, rgba(252, 251, 245, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .company::after {
    height: 120px;
  }
}
.company .content-wrap {
  height: 100%;
}
.company .content-wrap::after {
  content: "";
  display: block;
  width: 57.8%;
  aspect-ratio: 694/486;
  background-image: url(../img/bg-img-profile.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -17%;
  bottom: -200px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .company .content-wrap::after {
    width: 97.8%;
    bottom: -110px;
  }
}
.company__title {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .company__title {
    margin-bottom: 48px;
  }
}
.company__table {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.footer {
  padding: 40px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0;
  }
}
.footer small {
  font-size: 1rem;
  font-weight: 600;
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
}

.header {
  width: calc(100% - 40px);
  background-color: #fff;
  height: 64px;
  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;
  z-index: 999;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 32px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.header.fixed {
  position: fixed;
}
@media screen and (max-width: 980px) {
  .header {
    height: 56px;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
  }
}
.header__logo {
  line-height: 64px;
  width: 210px;
  margin-left: 22px;
}
@media screen and (max-width: 980px) {
  .header__logo {
    line-height: 56px;
    width: 160px;
    margin-left: 16px;
  }
}
.header__logo a {
  display: block;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 8px;
  grid-gap: 40px;
}
@media screen and (max-width: 1160px) {
  .header__menu {
    grid-gap: 24px;
  }
}
@media screen and (max-width: 980px) {
  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    grid-gap: 0;
  }
}
@media screen and (max-width: 980px) {
  .header__menu-list {
    width: 100%;
    margin-bottom: 16px;
  }
}
.header__menu-list-content {
  display: inline-block;
  height: 100%;
}
@media screen and (max-width: 980px) {
  .header__menu-list-content {
    height: auto;
    display: block;
    line-height: 1.7;
  }
}
.header__menu-list-content + .header__menu-list-content {
  margin-left: 48px;
}
@media screen and (max-width: 1160px) {
  .header__menu-list-content + .header__menu-list-content {
    margin-left: 16px;
  }
}
@media screen and (max-width: 980px) {
  .header__menu-list-content + .header__menu-list-content {
    margin-left: 0;
  }
}
.header__menu-list-link {
  display: block;
  font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
}
.header__menu-list-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 980px) {
  .header__menu-list-link {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    grid-gap: 10px;
    height: 68px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #26435C;
    position: relative;
  }
  .header__menu-list-link::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../img/ico-arrow.svg);
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.header__button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  grid-gap: 16px;
}
@media screen and (max-width: 1160px) {
  .header__button-list {
    grid-gap: 12px;
  }
}
@media screen and (max-width: 980px) {
  .header__button-list {
    display: none !important;
  }
}
.header__button-list-link {
  display: block;
  width: 120px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 24px;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  background: #26435C;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1160px) {
  .header__button-list-link {
    width: 140px;
    font-size: 0.75rem;
  }
}
.header__button-list-link:hover {
  opacity: 0.7;
}
.header #nav-toggle {
  display: none;
}

@media screen and (max-width: 980px) {
  .header #nav-toggle {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 56px;
    cursor: pointer;
    z-index: 101;
  }
  .header #nav-toggle div {
    position: relative;
  }
  .header #nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    background: #26435C;
    left: 27.5%;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .header #nav-toggle span:nth-child(1) {
    top: 20px;
    width: 24px;
    left: 20px;
  }
  .header #nav-toggle span:nth-child(2) {
    top: 27px;
    width: 24px;
    left: 20px;
  }
  .header #nav-toggle span:nth-child(3) {
    top: 34px;
    width: 24px;
    left: 20px;
  }
  .header #global-nav {
    position: fixed;
    /* 開いてないときは画面外に配置 */
    right: 0;
    top: 0;
    background: #FCFBF5;
    color: #26435C;
    text-align: left;
    padding: 80px 0 40px;
    opacity: 0;
    z-index: -999;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
  }
  .fade #global-nav {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  /* #nav-toggle 切り替えアニメーション */
  .header.open #nav-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
  }
  .header.open #nav-toggle span:nth-child(1) {
    top: 27px;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    left: 20px;
  }
  .header.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .header.open #nav-toggle span:nth-child(3) {
    top: 27px;
    -webkit-transform: rotate(-315deg);
    transform: rotate(-315deg);
    left: 20px;
  }
  .header.open {
    /* #global-nav スライドアニメーション */
  }
  .header.open #global-nav {
    position: fixed;
    opacity: 1;
    visibility: visible;
    z-index: 100;
  }
}
@media screen and (max-width: 980px) {
  .header #nav-toggle {
    top: 0;
    right: 0;
  }
}