@charset "UTF-8";
/* Scss Document */
body {
  width: 100%;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: justify;
  background: #fff;
  position: relative;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

a:hover img {
  opacity: 0.64;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

img {
  max-width: 100%;
  height: auto;
}

/* header */
.header {
  position: relative;
}
.header .fixed {
  width: 12.3125rem;
  height: 100vh;
  background: rgba(26, 26, 26, 0.7);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 979px) {
  .header .fixed {
    width: 100%;
    height: auto;
    background: none;
    position: absolute;
  }
}
.header .fxdNav {
  width: 12.3125rem;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 11;
}
@media screen and (max-width: 979px) {
  .header .fxdNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
@media screen and (max-width: 979px) {
  .header .fxdNav li {
    width: 50%;
  }
}
.header .fxdNav li a {
  display: block;
  padding: 1.25rem 0;
  background: #000;
}
.header .fxdNav li a img {
  height: 2.1875rem;
  margin: 0 auto;
}
@media screen and (max-width: 979px) {
  .header .fxdNav li a img {
    height: 2.5rem;
  }
}
.header .fxdNav li .tel {
  padding: 1rem 0;
  background: #FFF;
}
@media screen and (max-width: 979px) {
  .header .fxdNav li .tel {
    padding: 1.5rem 0;
  }
}
.header .fxdNav li .tel img {
  height: 1.5625rem;
}
@media screen and (max-width: 979px) {
  .header .fxdNav li .tel img {
    height: 2rem;
  }
}
.header .menu {
  width: 2.75rem;
  height: 2.75rem;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translateX(50%) translateY(-50%);
          transform: translateX(50%) translateY(-50%);
  cursor: pointer;
  z-index: 99;
}
@media screen and (max-width: 979px) {
  .header .menu {
    position: fixed;
    right: 3rem;
    top: 3rem;
  }
}
.header .menu::after {
  width: 2.375rem;
  height: 1rem;
  content: "";
  background: url("../img/menu.svg") center/100% no-repeat;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
}
@media screen and (max-width: 979px) {
  .header .menu::after {
    width: 3rem;
  }
}
.header .menu span {
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  position: absolute;
  right: 0;
  background: #FFF;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header .menu .span {
  width: 1.5rem;
  top: calc(50% - 0.5rem);
}
.header .menu .span2 {
  width: 2rem;
  top: calc(50% - 1px);
}
.header .menu .span3 {
  bottom: calc(50% - 0.5rem);
}
.header .menu.open span {
  width: 100%;
  background: #FFF;
}
.header .menu.open .span {
  top: calc(50% - 0.5px);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.header .menu.open .span2 {
  opacity: 0;
}
.header .menu.open .span3 {
  bottom: calc(50% - 0.5px);
  -webkit-transform: rotate(-315deg);
  transform: rotate(-315deg);
}
.header .h1 {
  width: 7.5rem;
  position: absolute;
  left: 50%;
  top: 4.125rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.375s;
  transition: 0.375s;
}
@media screen and (max-width: 979px) {
  .header .h1 {
    top: 2rem;
  }
}
.header .mainImage {
  position: relative;
}

nav {
  color: #FFF;
  width: 100%;
  height: 100vh;
  background: rgba(26, 26, 26, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  overflow: scroll;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
          transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  opacity: 0;
  visibility: hidden;
}
nav.show {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}
nav .inner {
  width: 100%;
  max-width: 898px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
nav .inner.show {
  opacity: 1;
}
@media screen and (max-width: 979px) {
  nav .inner {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin: 0 auto;
    padding: 10em 0;
  }
}
nav .first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1300px) {
  nav .first {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.16rem;
  }
}
@media screen and (max-width: 979px) {
  nav .first {
    max-width: 210px;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
nav .news {
  margin-top: 1.875rem;
}
nav .news a {
  display: block;
  width: 186px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 979px) {
  nav .news a {
    width: 100%;
  }
}
nav .news a img {
  height: 3.5rem;
}
@media screen and (max-width: 979px) {
  nav .news a img {
    height: auto;
  }
}
@media screen and (max-width: 979px) {
  nav .last {
    width: 100%;
  }
}
@media screen and (max-width: 1300px) {
  nav .logo {
    display: none;
    display: none;
  }
}
nav .logo img {
  height: 8.375rem;
}
@media screen and (max-width: 979px) {
  nav .nav {
    margin: 0 0 1.75em;
  }
}
nav .nav li {
  margin: 0 0 1.75rem;
}
nav .nav li:last-child {
  margin: 0;
}
nav .nav li .child li {
  margin: 0.75rem 0 0;
}
nav .nav li .child li a {
  display: block;
  font-size: 0.625rem;
  padding-left: 5.5rem;
  background: url("../img/arw.svg") center left/4.6875rem no-repeat;
}
nav .nav li.off {
  opacity: 0.4;
}
nav .nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
nav .nav li a:hover {
  opacity: 0.8;
  text-decoration: none;
}
nav .nav li a span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0 0 0 1em;
}
@media screen and (max-width: 979px) {
  nav .nav li a span {
    font-size: 0.875rem;
  }
}
nav .nav li a img {
  height: 1rem;
}
nav .nav li a img.stay {
  height: 1.375rem;
}
@media screen and (max-width: 979px) {
  nav .nav li a img.stay {
    height: 2rem;
  }
}
@media screen and (max-width: 979px) {
  nav .nav li a img {
    height: 1.5rem;
  }
}
nav .nav li a img.l {
  height: 1.375rem;
}
@media screen and (max-width: 979px) {
  nav .nav li a img.l {
    height: 1.875rem;
  }
}
nav .nav li a img.m {
  height: 1.125rem;
}
@media screen and (max-width: 979px) {
  nav .nav li a img.m {
    height: 1.75rem;
  }
}
nav .second {
  margin: 5em 0 0;
}
@media screen and (max-width: 979px) {
  nav .second {
    margin: 4em 0 0;
  }
}
nav .nav2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 979px) {
  nav .nav2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
nav .nav2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.375rem;
  border-right: 1px solid #FFF;
}
@media screen and (max-width: 979px) {
  nav .nav2 li {
    height: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
nav .nav2 li a {
  display: block;
  padding: 0 1.75rem;
}
@media screen and (max-width: 979px) {
  nav .nav2 li a {
    padding: 1.25rem 0;
  }
}
nav .nav2 li a img {
  height: 3.625rem;
}
nav .nav2 li:first-child a img {
  height: 4.1875rem;
}
nav .nav2 li:last-child {
  border: none;
}
nav .nav2 li:last-child a img {
  height: 4.1875rem;
}
nav .group {
  padding: 6.125rem 0 0;
}
@media screen and (max-width: 979px) {
  nav .group {
    padding: 3.5rem 2rem 0;
  }
}
nav .group .h2 img {
  height: 2.75rem;
  margin: 0 auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
nav .group .link {
  display: block;
  color: #fff;
  width: 14rem;
  margin: 2rem auto 0;
  padding-bottom: 1rem;
  text-decoration: none;
  position: relative;
}
nav .group .link::after {
  content: "";
  width: 0.75rem;
  height: 0.6875rem;
  background: url(../img/link2.svg) center/contain no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
nav .group .link span {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  text-align: left;
}
nav .group .link:hover .border::after {
  -webkit-transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
nav .group .link:hover .border::before {
  opacity: 0;
}
nav .group .link .border {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
nav .group .link .border::after, nav .group .link .border::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
nav .group .link .border::after {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
nav .group .list .link {
  width: 10.75rem;
  margin-top: 1.5rem;
}
nav .group .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 3.75rem;
  margin-top: 3.875rem;
}
@media screen and (max-width: 979px) {
  nav .group .list {
    margin: 3rem auto 0;
    max-width: 26.25rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.1875rem 3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 979px) {
  nav .group .list li {
    width: 50%;
    max-width: 11rem;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
nav .group .list li img {
  width: auto;
  height: 4.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 1091px) {
  nav .group .list li img {
    height: 4.125rem;
    margin: 0 auto;
  }
}

.copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 2.1875rem 12.3125rem 2.1875rem 0;
  background: #ebebeb;
}
@media screen and (max-width: 979px) {
  .copy {
    font-size: 1rem;
    padding: 2rem 0 7rem;
  }
}

.footer {
  color: #FFF;
  padding: 6.0625rem 12.3125rem 5rem 0;
  background: #1a1a1a;
}
@media screen and (max-width: 979px) {
  .footer {
    padding: 5em 0 3em;
  }
}
.footer .first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .footer .first {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.16rem;
  }
}
@media screen and (max-width: 979px) {
  .footer .first {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer .first .news {
  margin: 1.875rem 0 0;
}
@media screen and (max-width: 979px) {
  .footer .first .news {
    margin: 0;
  }
}
.footer .first .news a {
  display: block;
  width: 186px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.footer .first .news a img {
  height: 3.5rem;
}
@media screen and (max-width: 979px) {
  .footer .first .news a img {
    height: 4rem;
  }
}
@media screen and (max-width: 979px) {
  .footer .first .last {
    width: 100%;
    max-width: 324px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 1.75em 0 0;
  }
}
@media screen and (max-width: 1100px) {
  .footer .first .logo {
    width: 100%;
  }
}
@media screen and (max-width: 979px) {
  .footer .first .logo {
    width: 100%;
    margin: 0 0 3em;
  }
}
.footer .first .logo img {
  height: 8.375rem;
}
@media screen and (max-width: 1100px) {
  .footer .first .logo img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 979px) {
  .footer .first .logo img {
    height: 7rem;
  }
}
@media screen and (max-width: 979px) {
  .footer .first .nav {
    margin: 0 1em;
  }
}
.footer .first .nav:last-child {
  margin-left: 2.9375rem;
}
.footer .first .nav li {
  margin: 0 0 1.75rem;
}
.footer .first .nav li:last-child {
  margin: 0;
}
.footer .first .nav li .child li {
  margin: 0.75rem 0 0;
}
.footer .first .nav li .child li a {
  display: block;
  font-size: 0.625rem;
  padding-left: 5.5rem;
  background: url("../img/arw.svg") center left/4.6875rem no-repeat;
}
.footer .first .nav li.mgb {
  margin: 0 0 1.25rem;
}
.footer .first .nav li.off {
  opacity: 0.4;
}
.footer .first .nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer .first .nav li a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.footer .first .nav li a span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0 0 0 1em;
}
.footer .first .nav li a img {
  height: 1rem;
}
.footer .first .nav li a img.stay {
  height: 1.375rem;
}
.footer .first .nav li a img.m {
  height: 1.125rem;
}
@media screen and (max-width: 979px) {
  .footer .first .nav li a img.m {
    height: 1.1875rem;
  }
}
.footer .first .nav li a img.l {
  height: 1.375rem;
}
.footer .second {
  margin: 6em 0 0;
}
@media screen and (max-width: 979px) {
  .footer .second {
    margin: 4em 0 0;
  }
}
.footer .nav2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .nav2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.375rem;
  padding: 0 1.75rem;
  border-right: 1px solid #FFF;
}
@media screen and (max-width: 979px) {
  .footer .nav2 li {
    border: none;
    padding: 0 1.5em;
    margin: 0 0 2em;
  }
}
.footer .nav2 li a {
  display: block;
}
.footer .nav2 li a img {
  height: 3.75rem;
}
@media screen and (max-width: 979px) {
  .footer .nav2 li a img {
    height: 3.25rem;
  }
}
.footer .nav2 li:first-child a img {
  height: 4.25rem;
}
.footer .nav2 li:last-child {
  border: none;
}
.footer .nav2 li:last-child a img {
  height: 4.25rem;
}
@media screen and (max-width: 979px) {
  .footer .nav2 li:last-child a img {
    height: 3.75rem;
  }
}
.footer .group {
  padding: 6.125rem 0 0;
}
@media screen and (max-width: 979px) {
  .footer .group {
    padding: 3.5rem 2rem 0;
  }
}
.footer .group h2 {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer .group h2 img {
  height: 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 979px) {
  .footer .group h2 img {
    height: 3.51rem;
  }
}
.footer .group .link {
  display: block;
  color: #fff;
  width: 14rem;
  margin: 2rem auto 0;
  padding-bottom: 1rem;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 979px) {
  .footer .group .link {
    width: 15.12rem;
    margin-top: 2.16rem;
    padding-bottom: 1.08rem;
  }
}
.footer .group .link::after {
  content: "";
  width: 0.75rem;
  height: 0.6875rem;
  background: url(../img/link2.svg) center/contain no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 979px) {
  .footer .group .link::after {
    width: 0.81rem;
    height: 0.7425rem;
  }
}
.footer .group .link span {
  display: block;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  text-align: left;
}
@media screen and (max-width: 979px) {
  .footer .group .link span {
    font-size: 0.945rem;
  }
}
.footer .group .link:hover .border::after {
  -webkit-transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.footer .group .link:hover .border::before {
  opacity: 0;
}
.footer .group .link .border {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer .group .link .border::after, .footer .group .link .border::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.footer .group .link .border::after {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.footer .group .list .link {
  width: 10.75rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 979px) {
  .footer .group .list .link {
    width: 11.61rem;
    margin-top: 1.62rem;
  }
}
.footer .group .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 3.75rem;
  margin-top: 3.875rem;
}
@media screen and (max-width: 979px) {
  .footer .group .list {
    margin: 3.24rem 0 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.3625rem 3.24rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 699px) {
  .footer .group .list {
    margin: 3.24rem auto 0;
    max-width: 28.35rem;
  }
}
@media screen and (max-width: 979px) {
  .footer .group .list li {
    width: 50%;
    max-width: 10.8333333333rem;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .group .list li img {
  height: 4.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 979px) {
  .footer .group .list li img {
    height: 5.5rem;
  }
}
.footer .links {
  margin: 3rem 0 0;
}
@media screen and (min-width: 979px) {
  .footer .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem 2rem;
  }
}
@media screen and (max-width: 979px) {
  .footer .links {
    margin: 3.5rem 0 0;
  }
}
@media screen and (max-width: 979px) {
  .footer .links li {
    margin: 1rem 0 0;
  }
}
.footer .links li a {
  display: block;
  width: 294px;
  max-width: 350px;
  height: 55px;
  border: 1px solid #FFF;
  position: relative;
  text-decoration: none;
  -webkit-transition: 0.375s;
  transition: 0.375s;
  overflow: hidden;
}
.footer .links li a:not(.img):not(.arrow) {
  background: url(../img/common/link.svg) right 1rem center/1rem no-repeat;
}
.footer .links li a.img {
  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;
  padding: 1rem;
}
@media screen and (max-width: 979px) {
  .footer .links li a.img {
    padding: 2rem;
  }
}
.footer .links li a.img img {
  width: 100%;
  height: auto;
}
.footer .links li a.arrow {
  background: url(../img/common/arrow.svg) right 1rem center/0.5rem no-repeat;
}
.footer .links li a.arrow span {
  font-size: 0.8125rem;
  padding-right: 1rem;
  text-align: center;
}
@media screen and (max-width: 979px) {
  .footer .links li a.arrow span {
    font-size: 1.0714285714rem;
  }
}
@media screen and (max-width: 979px) {
  .footer .links li a {
    width: calc(100% - 4rem);
    margin: 0 auto;
  }
}
.footer .links li a:hover {
  opacity: 0.6;
}
.footer .links li a span {
  display: block;
  color: #FFF;
  white-space: nowrap;
  line-height: 1.5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
@media screen and (max-width: 979px) {
  .footer .links li a span {
    font-size: 1.0714285714rem;
  }
}

.subPage .header .mainImage {
  height: 23.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 979px) {
  .subPage .header .mainImage {
    height: 100vw;
  }
}
.subPage .header .mainImage h1 {
  position: absolute;
  left: 11.7130307467vw;
  top: 20.25rem;
}
@media screen and (max-width: 979px) {
  .subPage .header .mainImage h1 {
    top: calc(100% - 2rem);
    left: 4rem;
  }
}
.subPage .header .mainImage h1 img {
  height: 4.8125rem;
}
@media screen and (max-width: 979px) {
  .subPage .header .mainImage h1 img {
    height: 4rem;
  }
}
.subPage .header .ancestor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  padding: 6.1875rem 12.3125rem 8.1875rem 0;
  background: #212946;
}
@media screen and (max-width: 979px) {
  .subPage .header .ancestor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5em 4em;
  }
}
.subPage .header .ancestor h1 {
  padding-right: 7.027818448vw;
}
@media screen and (max-width: 979px) {
  .subPage .header .ancestor h1 {
    padding: 0;
  }
}
.subPage .header .ancestor h1 img {
  height: 9.125rem;
}
@media screen and (max-width: 979px) {
  .subPage .header .ancestor h1 img {
    margin: 0 auto 3em;
  }
}
.subPage .header .ancestor .pageTitle {
  font-size: 2.25rem;
  line-height: 2;
  margin: -0.5em 0;
}
@media screen and (max-width: 979px) {
  .subPage .header .ancestor .pageTitle {
    font-size: 2rem;
  }
}
.subPage .header .ancestor p {
  width: 32.5768667643vw;
  line-height: 2.5;
  letter-spacing: 0.1em;
  margin: -0.75em 0;
}
@media screen and (max-width: 979px) {
  .subPage .header .ancestor p {
    width: 100%;
  }
}
.subPage .contents .detail {
  color: #FFF;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  text-align: center;
  padding: 3.375rem 19.3125rem 4rem 7rem;
  margin: 7.75rem auto 0;
  background: #212946;
}
@media screen and (max-width: 979px) {
  .subPage .contents .detail {
    padding: 4em 2em;
    margin: 4em 0 0;
  }
}
.subPage .contents .detail dl {
  font-size: 0.875rem;
  padding: 1.375rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.84);
}
.subPage .contents .detail dl:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.84);
}
.subPage .contents .detail dl dd {
  line-height: 1.75;
  margin: calc(1.25rem - 0.375em) 0 -0.375em;
}

#index {
  overflow: hidden;
}
#index .popup {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 50%;
  left: 50%;
  min-width: 800px;
  background: #FFF;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99;
  border: 10px solid #212946;
  -webkit-transition: 0.375s;
  transition: 0.375s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 979px) {
  #index .popup {
    min-width: 90vw;
    min-height: 50svh;
  }
}
#index .popup.show {
  opacity: 1;
  visibility: visible;
}
#index .popup .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}
@media screen and (max-width: 979px) {
  #index .popup .close {
    top: 1.5rem;
    right: 1rem;
  }
}
#index .popup .close div {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 2rem;
  height: 2px;
  background: #000;
  border-radius: 0.1em;
  position: relative;
  -webkit-transform: rotate(45deg) translate(0.23rem);
          transform: rotate(45deg) translate(0.23rem);
}
#index .popup .close div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#index .popup .inner {
  width: 100%;
  text-align: center;
  padding: 4rem;
}
@media screen and (max-width: 979px) {
  #index .popup .inner {
    width: calc(100% - 2rem);
    padding: 3rem 2rem;
  }
}
#index .popup .inner .title {
  display: block;
  font-size: 1.2rem;
  line-height: 1.75;
}
#index .popup .inner p {
  display: inline-block;
  margin: 2rem 0 0;
  line-height: 1.75;
  text-align: left;
  word-break: break-all;
}
#index .op {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  -webkit-transition: 1s;
  transition: 1s;
  visibility: visible;
  opacity: 1;
}
#index .op.hide {
  visibility: hidden;
  opacity: 0;
}
#index .op img {
  width: 10.4166666667vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  -webkit-filter: blur(16px);
          filter: blur(16px);
}
@media screen and (max-width: 979px) {
  #index .op img {
    width: 39.0625vw;
  }
}
#index .op img.show {
  -webkit-animation: myAnime 2.25s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 forwards;
          animation: myAnime 2.25s cubic-bezier(0.25, 1, 0.5, 1) 0s 1 forwards;
}
@-webkit-keyframes myAnime {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.9);
            transform: translateX(-50%) translateY(-50%) scale(0.9);
    opacity: 0;
    -webkit-filter: blur(16px);
            filter: blur(16px);
  }
  25% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
            transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  80% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
            transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
            transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes myAnime {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.9);
            transform: translateX(-50%) translateY(-50%) scale(0.9);
    opacity: 0;
    -webkit-filter: blur(16px);
            filter: blur(16px);
  }
  25% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
            transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  80% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
            transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
            transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
#index .header .fixed,
#index .header .fxdNav {
  -webkit-transition: 0.375s;
  transition: 0.375s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
          transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (max-width: 979px) {
  #index .header .fixed,
  #index .header .fxdNav {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
#index .header .fixed.show,
#index .header .fxdNav.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#index .header .mainImage {
  height: 100vh;
}
#index .header .mainImage::after {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 979px) {
  #index .header .mainImage {
    height: calc(100vh - 5em);
  }
}
#index .header .mainImage video {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#index .header .mainImage .catch {
  width: 100%;
  color: #FFF;
  font-size: 2.25rem;
  text-align: center;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  line-height: 2;
  margin: -0.5em 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  -webkit-filter: blur(16px);
          filter: blur(16px);
  z-index: 5;
}
@media screen and (max-width: 979px) {
  #index .header .mainImage .catch {
    font-size: 2rem;
  }
}
#index .header .mainImage .catch.show {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
#index .header .mainImage .covid {
  position: absolute;
  left: 1.875rem;
  bottom: 1.875rem;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
@media screen and (max-width: 979px) {
  #index .header .mainImage .covid {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#index .header .mainImage .covid.show {
  opacity: 1;
}
#index .header .mainImage .covid a {
  display: block;
  width: 294px;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#index .header .mainImage .covid a img {
  height: 0.875rem;
}
@media screen and (max-width: 979px) {
  #index .header .mainImage .covid a img {
    height: 1.25rem;
  }
}
#index .header .mainImage .news {
  position: absolute;
  left: 1.875rem;
  bottom: 6.5625rem;
  z-index: 5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}
@media screen and (max-width: 979px) {
  #index .header .mainImage .news {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#index .header .mainImage .news.show {
  opacity: 1;
}
#index .header .mainImage .news a {
  display: block;
  width: 294px;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#index .header .mainImage .news a img {
  height: 0.875rem;
}
@media screen and (max-width: 979px) {
  #index .header .mainImage .news a img {
    height: 1.25rem;
  }
}
#index #about {
  padding: 9.25rem 12.3125rem 9.25rem 0;
}
@media screen and (max-width: 979px) {
  #index #about {
    padding: 5em 2em;
  }
}
#index #about .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#index #about h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#index #about h2 img {
  width: 1.75rem;
}
#index #about h2 span {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  padding: 0 1rem 0 2rem;
}
#index #about h2 + p {
  height: 347px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  line-height: 2;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  margin: 0 -0.5em;
}
@media screen and (max-width: 979px) {
  #index #about h2 + p {
    height: 300px;
  }
}
#index #about .more {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: 1.5rem;
}
#index #about .more a {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  padding: 1rem 0.5rem;
  border: 1px solid #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#index #about .more a:hover {
  opacity: 0.7;
  text-decoration: none;
}
#index .fxdImg {
  height: 20.4245973646vw;
  background: url("../img/03.jpg") center/cover no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 979px) {
  #index .fxdImg {
    height: 50vw;
    background-attachment: scroll;
  }
}
#index .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  padding: 5.625rem 12.3125rem 5.125rem 0;
  background: #212946;
}
@media screen and (max-width: 979px) {
  #index .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5em 2em;
  }
}
#index .box .txtBox {
  width: 25.6222547584vw;
  margin: 0 3.6603221083vw;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 979px) {
  #index .box .txtBox {
    width: calc(100% - 4em);
    margin: 0 auto 3em;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#index .box .txtBox h2 img {
  width: auto;
  height: 9.125rem;
  margin: 0 auto 2.5rem;
}
#index .box .txtBox h2 img.stay {
  height: 11.75rem;
}
#index .box .txtBox h2 + p {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  line-height: 2;
  margin: -0.5em 0;
}
#index .box .txtBox .more {
  margin: 2rem 0 0;
}
#index .box .txtBox .more a img {
  height: 1.625rem;
  margin: 0 auto;
}
#index .box .image {
  width: 48.3162518302vw;
  height: 37.9209370425vw;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 979px) {
  #index .box .image {
    width: 100%;
    aspect-ratio: 660/420;
    height: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#index .box.green {
  background: rgba(0, 37, 24, 0.8);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#index .box.green .image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#index .box.green .txtBox {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#index .box.gray {
  background: #999;
}
@media screen and (max-width: 979px) {
  #index .box.gray .image {
    background-position: top center;
    background-size: 120%;
  }
}
#index #design {
  color: #FFF;
  height: 39.3118594436vw;
  background: url("../img/17.jpg") center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 979px) {
  #index #design {
    height: auto;
    padding: 5em 0 0;
  }
}
#index #design .body {
  position: absolute;
  left: 16.9838945827vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 979px) {
  #index #design .body {
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}
#index #design .body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 979px) {
  #index #design .body ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#index #design .body ul li {
  width: 345px;
  margin: 2.5rem 2.25rem 0 0;
}
@media screen and (max-width: 979px) {
  #index #design .body ul li {
    width: 50%;
    margin: 3rem 0 0;
  }
}
#index #design h2 {
  height: 36.7496339678vw;
  position: absolute;
  left: -3.074670571vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 979px) {
  #index #design h2 {
    height: 33vw;
    top: -11vw;
    left: 77vw;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
#index #design h2 img {
  height: 100%;
}
#index #design .read {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 0 0 1em;
}
@media screen and (max-width: 979px) {
  #index #design .read {
    padding: 0 4rem;
  }
}
#index #design .read + p {
  line-height: 2;
  margin: -0.5em 0;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 979px) {
  #index #design .read + p {
    padding: 0 4rem;
  }
}
#index #movie {
  background: #1a1a1a;
  padding: 7.625rem 12.3125rem 8.9375rem 0;
}
@media screen and (max-width: 979px) {
  #index #movie {
    padding: 5em 0 0;
  }
}
#index #movie .cb {
  width: 66.1054172767vw;
  margin: 0 auto 8.4375rem;
}
@media screen and (max-width: 979px) {
  #index #movie .cb {
    width: calc(100% - 8em);
    margin-bottom: 5em;
  }
}
#index #movie .cb a {
  display: block;
  height: 10.3125rem;
  border-radius: 5.125rem;
  background: #FFF;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#index #movie .cb a:hover {
  opacity: 0.7;
}
#index #movie .cb a div {
  width: 100%;
  position: absolute;
  top: 1.3125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#index #movie .cb a img {
  height: 3.25rem;
  margin: 0 auto;
}
#index #movie .cb a img:last-child {
  height: 1.1875rem;
}
#index #movie .cb a span {
  display: block;
  font-size: 1.375rem;
  letter-spacing: 0.15em;
  text-align: center;
  margin: 0.625rem 0 0.8125rem;
}
#index #movie .body {
  width: 66.7642752562vw;
  height: 27.5988286969vw;
  background: url("../img/09.jpg") center/cover no-repeat;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 979px) {
  #index #movie .body {
    width: 100%;
    height: 66vw;
  }
}
#index #movie .body p {
  position: absolute;
  top: 12.2254758419vw;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 979px) {
  #index #movie .body p {
    top: 50%;
  }
}
#index #movie .body p a img {
  height: 4.8125rem;
  margin: 0 auto;
}
#index #map {
  padding: 5.3125rem 12.3125rem 6.3125rem 0;
  background: #f2f2f2;
}
@media screen and (max-width: 979px) {
  #index #map {
    padding: 5em 0 0;
  }
}
#index #map h2 img {
  height: 2.3125rem;
  margin: 0 auto 0.5rem;
}
#index #map h2 span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
#index #map .body {
  width: 66.7642752562vw;
  height: 27.5988286969vw;
  margin: 3.25em auto 0;
  position: relative;
}
@media screen and (max-width: 979px) {
  #index #map .body {
    width: 100%;
    height: 100vw;
  }
}
#index #map .body iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

#about .contents {
  color: #FFF;
  background: rgba(26, 26, 26, 0.9);
  padding: 0 12.3125rem 6.75rem 0;
}
@media screen and (max-width: 979px) {
  #about .contents {
    padding: 0 0 6.5em;
  }
}
#about .a {
  width: calc(100% - 8em);
  max-width: 726px;
  margin: 0 auto;
  padding: 5.3125rem 0 0;
}
#about .a h2 {
  font-weight: 300;
  font-size: 2.25rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 979px) {
  #about .a h2 {
    font-size: 2rem;
    line-height: 1.75;
    margin: -0.375em 0;
  }
}
#about .a p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: -0.5em 0;
}
#about .a h2 + p {
  margin: calc(2.5rem - 0.5em) 0 -0.5em;
}
#about .a .movie {
  height: 21.625rem;
  margin: 3.5em 0 0;
  background: url("../img/09.jpg") center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 979px) {
  #about .a .movie {
    width: 100%;
    height: 50vw;
  }
}
#about .a .movie a {
  display: block;
  position: absolute;
  top: 10rem;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 979px) {
  #about .a .movie a {
    top: 50%;
  }
}
#about .a .movie a img {
  height: 3.375rem;
  margin: 0 auto;
}
#about #b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 57.125rem;
  margin: 4.0625rem auto 0;
}
@media screen and (max-width: 979px) {
  #about #b {
    width: 100%;
    margin: 6.5em auto 10vw;
    position: relative;
  }
}
#about #b > div {
  width: 50%;
  height: 18.125rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 979px) {
  #about #b > div {
    width: 100%;
    height: 50vw;
  }
}
#about #b .img1 {
  width: 21.0625rem;
  height: 13.0625rem;
  margin-top: 10.125rem;
}
@media screen and (max-width: 979px) {
  #about #b .img1 {
    width: calc(50% - 2em);
    height: 33vw;
    margin: 0;
    position: absolute;
    left: 0;
    top: 25vw;
    z-index: 2;
  }
}
#about #b .img2 {
  width: calc(50% + 4em);
  margin-left: auto;
}
#about .fxdImg {
  height: 21.2298682284vw;
  background: url("../img/about/04.jpg") center/cover no-repeat;
  background-attachment: fixed;
  margin-top: 6.5625rem;
}
@media screen and (max-width: 979px) {
  #about .fxdImg {
    height: 50vw;
    background-attachment: scroll;
  }
}
#about #c {
  width: calc(100% - 8em);
  max-width: 733px;
  margin: 6.8125rem auto 0;
}
#about #c .box {
  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: 979px) {
  #about #c .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about #c .box:nth-child(2n) {
  margin-top: 5em;
}
#about #c .box:nth-child(2n) .txtBox {
  width: 24.625rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 979px) {
  #about #c .box:nth-child(2n) .txtBox {
    width: 100%;
  }
}
#about #c .box:nth-child(2n) .image {
  width: 21.0625rem;
  height: 13.0625rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-transform: translateX(5.25rem);
          transform: translateX(5.25rem);
}
@media screen and (max-width: 979px) {
  #about #c .box:nth-child(2n) .image {
    width: 100%;
    height: 50vw;
    -webkit-transform: none;
            transform: none;
  }
}
#about #c .image {
  width: 26.1875rem;
  height: 18.125rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-transform: translateX(-4.5rem);
          transform: translateX(-4.5rem);
}
@media screen and (max-width: 979px) {
  #about #c .image {
    width: 100%;
    height: 50vw;
    -webkit-transform: none;
            transform: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#about #c .image div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#about #c .txtBox {
  width: 19.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 979px) {
  #about #c .txtBox {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 2em;
  }
}
#about #c .txtBox p {
  line-height: 2;
  letter-spacing: 0.1em;
  margin: -0.5em 0;
}
#about #d {
  width: calc(100% - 4em);
  max-width: 736px;
  margin: 6.75rem auto 0;
}

#minato .contents h2,
#nishi .contents h2,
#stay .contents h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#minato .contents h2 span,
#nishi .contents h2 span,
#stay .contents h2 span {
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.3em;
  padding: 1rem 0 1rem 2.5rem;
  margin-left: 2.5rem;
  border-left: 3px solid #000;
}
@media screen and (max-width: 979px) {
  #minato .contents h2 span,
  #nishi .contents h2 span,
  #stay .contents h2 span {
    font-size: 1.25rem;
    padding: 1rem 0 1rem 1.5rem;
    margin-left: 2rem;
    border-left: 2px solid #000;
  }
}
#minato .contents h2 img,
#nishi .contents h2 img,
#stay .contents h2 img {
  height: 4.5rem;
}
@media screen and (max-width: 979px) {
  #minato .contents h2 img,
  #nishi .contents h2 img,
  #stay .contents h2 img {
    height: 3.5rem;
  }
}
#minato .contents .box,
#nishi .contents .box,
#stay .contents .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 3em 0 0;
}
@media screen and (max-width: 979px) {
  #minato .contents .box,
  #nishi .contents .box,
  #stay .contents .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#minato .contents .box .image,
#nishi .contents .box .image,
#stay .contents .box .image {
  width: 32.5rem;
  aspect-ratio: 520/322;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1300px) {
  #minato .contents .box .image,
  #nishi .contents .box .image,
  #stay .contents .box .image {
    width: calc((100% - 2em) / 2);
  }
}
@media screen and (max-width: 979px) {
  #minato .contents .box .image,
  #nishi .contents .box .image,
  #stay .contents .box .image {
    width: 100%;
    margin: 3em 0 0;
  }
}
#minato .contents .box .txtBox,
#nishi .contents .box .txtBox,
#stay .contents .box .txtBox {
  width: 22.875rem;
}
@media screen and (max-width: 1300px) {
  #minato .contents .box .txtBox,
  #nishi .contents .box .txtBox,
  #stay .contents .box .txtBox {
    width: calc((100% - 2em) / 2);
  }
}
@media screen and (max-width: 979px) {
  #minato .contents .box .txtBox,
  #nishi .contents .box .txtBox,
  #stay .contents .box .txtBox {
    width: 100%;
  }
}
#minato .contents .box .txtBox p,
#nishi .contents .box .txtBox p,
#stay .contents .box .txtBox p {
  line-height: 2;
  margin: -0.5em 0;
}
#minato .contents #space,
#nishi .contents #space,
#stay .contents #space {
  background: #eeeeee;
  padding: 9.25rem 12.3125rem 5.1875rem 0;
}
@media screen and (max-width: 979px) {
  #minato .contents #space,
  #nishi .contents #space,
  #stay .contents #space {
    padding: 4em 0;
  }
}
#minato .contents #space .box,
#nishi .contents #space .box,
#stay .contents #space .box {
  margin-top: 1.5rem;
}
@media screen and (max-width: 979px) {
  #minato .contents #space .box,
  #nishi .contents #space .box,
  #stay .contents #space .box {
    margin-top: 2.5rem;
  }
}
#minato .contents #space .body,
#nishi .contents #space .body,
#stay .contents #space .body {
  width: calc(100% - 8em);
  max-width: 928px;
  margin: 0 auto;
}
#minato .contents #space .body h2 img,
#nishi .contents #space .body h2 img,
#stay .contents #space .body h2 img {
  height: 5.875rem;
}
@media screen and (max-width: 979px) {
  #minato .contents #space .body h2 img,
  #nishi .contents #space .body h2 img,
  #stay .contents #space .body h2 img {
    height: 4em;
  }
}
#minato .contents #space .body ul,
#nishi .contents #space .body ul,
#stay .contents #space .body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#minato .contents #space .body ul li,
#nishi .contents #space .body ul li,
#stay .contents #space .body ul li {
  width: calc((100% - 2em) / 2);
  margin: 2em 0 0;
}
@media screen and (max-width: 979px) {
  #minato .contents #space .body ul li,
  #nishi .contents #space .body ul li,
  #stay .contents #space .body ul li {
    width: calc((100% - 1em) / 2);
    margin: 1em 0 0;
  }
}
#minato .contents #room,
#minato .contents #facility,
#nishi .contents #room,
#nishi .contents #facility,
#stay .contents #room,
#stay .contents #facility {
  padding: 7.375rem 12.3125rem 0 0;
}
@media screen and (max-width: 979px) {
  #minato .contents #room,
  #minato .contents #facility,
  #nishi .contents #room,
  #nishi .contents #facility,
  #stay .contents #room,
  #stay .contents #facility {
    padding: 4em 0 0;
  }
}
#minato .contents #room .body,
#minato .contents #facility .body,
#nishi .contents #room .body,
#nishi .contents #facility .body,
#stay .contents #room .body,
#stay .contents #facility .body {
  width: calc(100% - 8em);
  max-width: 928px;
  margin: 0 auto;
}
#minato .contents #room ul,
#minato .contents #facility ul,
#nishi .contents #room ul,
#nishi .contents #facility ul,
#stay .contents #room ul,
#stay .contents #facility ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#minato .contents #room ul li,
#minato .contents #facility ul li,
#nishi .contents #room ul li,
#nishi .contents #facility ul li,
#stay .contents #room ul li,
#stay .contents #facility ul li {
  width: calc((100% - 3em) / 3);
  margin: 2em 0 0;
}
@media screen and (max-width: 979px) {
  #minato .contents #room ul li,
  #minato .contents #facility ul li,
  #nishi .contents #room ul li,
  #nishi .contents #facility ul li,
  #stay .contents #room ul li,
  #stay .contents #facility ul li {
    width: calc((100% - 1em) / 2);
    margin: 1em 0 0;
  }
}
#minato .contents #room .box2,
#minato .contents #facility .box2,
#nishi .contents #room .box2,
#nishi .contents #facility .box2,
#stay .contents #room .box2,
#stay .contents #facility .box2 {
  padding: 2rem 2.5rem;
  margin: 2.5rem 0 0;
  background-color: #FFF;
  border-radius: 1.25rem;
}
@media screen and (max-width: 979px) {
  #minato .contents #room .box2,
  #minato .contents #facility .box2,
  #nishi .contents #room .box2,
  #nishi .contents #facility .box2,
  #stay .contents #room .box2,
  #stay .contents #facility .box2 {
    padding: 2rem 2rem;
  }
}
#minato .contents #room .box2 ul.list,
#minato .contents #room .box2 ul.list2,
#minato .contents #facility .box2 ul.list,
#minato .contents #facility .box2 ul.list2,
#nishi .contents #room .box2 ul.list,
#nishi .contents #room .box2 ul.list2,
#nishi .contents #facility .box2 ul.list,
#nishi .contents #facility .box2 ul.list2,
#stay .contents #room .box2 ul.list,
#stay .contents #room .box2 ul.list2,
#stay .contents #facility .box2 ul.list,
#stay .contents #facility .box2 ul.list2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 2;
}
#minato .contents #room .box2 ul.list li,
#minato .contents #room .box2 ul.list2 li,
#minato .contents #facility .box2 ul.list li,
#minato .contents #facility .box2 ul.list2 li,
#nishi .contents #room .box2 ul.list li,
#nishi .contents #room .box2 ul.list2 li,
#nishi .contents #facility .box2 ul.list li,
#nishi .contents #facility .box2 ul.list2 li,
#stay .contents #room .box2 ul.list li,
#stay .contents #room .box2 ul.list2 li,
#stay .contents #facility .box2 ul.list li,
#stay .contents #facility .box2 ul.list2 li {
  width: 100%;
  margin: 0;
  letter-spacing: 0;
  text-indent: -1em;
  padding-left: 1em;
}

#stay .header .ancestor {
  background: #999;
}
#stay .header .ancestor h1 img {
  height: 11.75rem;
}
#stay .contents .detail {
  background: #999;
}
#stay .contents #room {
  background: #eee;
  padding-bottom: 6rem;
}
#stay .contents #room h2 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#stay .contents #room ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#stay .contents #room ul li {
  width: calc((100% - 2em) / 2);
  margin: 2em 0 0;
}
@media screen and (max-width: 979px) {
  #stay .contents #room ul li {
    width: calc((100% - 1em) / 2);
    margin: 1em 0 0;
  }
}
#stay .contents #facility h2 img {
  height: 6.1875rem;
}

#nishi .header .ancestor {
  background: rgba(0, 37, 24, 0.8);
}
#nishi .contents .detail {
  background: rgba(0, 37, 24, 0.8);
}

#design .header .mainImage h1 img {
  height: 5.8125rem;
}
@media screen and (max-width: 979px) {
  #design .header .mainImage h1 img {
    height: 4.5rem;
  }
}
#design .header .ancestor {
  -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;
  padding: 6.5625rem 12.3125rem 5.5rem 0;
  background: rgba(26, 26, 26, 0.9);
}
@media screen and (max-width: 979px) {
  #design .header .ancestor {
    padding: 5em 4em;
  }
}
#design .header .ancestor .pageTitle {
  margin: -0.5em 0 calc(-0.5em + 2.5rem);
}
#design .header .ancestor p {
  width: 710px;
  line-height: 2;
  margin: -0.5em 0;
}
@media screen and (max-width: 979px) {
  #design .header .ancestor p {
    width: 100%;
  }
}
@-webkit-keyframes myAnime3 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  51% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
}
@-webkit-keyframes myAnime2 {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  50% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
}
#design .tabHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#design .tabHeader li {
  width: 345px;
  margin: 0 1rem;
  cursor: pointer;
}
@media screen and (max-width: 979px) {
  #design .tabHeader li {
    width: 50%;
    max-width: 345px;
    margin: 0;
  }
}
#design .tabFooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5.75rem 0 5.75rem 0;
}
@media screen and (max-width: 979px) {
  #design .tabFooter {
    -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;
  }
}
#design .tabFooter li {
  width: 345px;
  margin: 0 1rem;
  cursor: pointer;
}
@media screen and (max-width: 979px) {
  #design .tabFooter li {
    width: calc(100% - 8em);
    max-width: 345px;
    margin: 0;
  }
}
#design .tabContent {
  padding: 5.4375rem 0 4.8125rem;
}
#design .contents {
  padding: 0 12.3125rem 0 0;
  background: rgba(26, 26, 26, 0.9);
}
@media screen and (max-width: 979px) {
  #design .contents {
    padding: 0;
  }
}
#design .contents h2 {
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-align: center;
}
@media screen and (max-width: 979px) {
  #design .contents h2 {
    font-size: 1.75rem;
  }
}
#design .contents .designer {
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding: 1.6875rem 0 5.9375rem;
  position: relative;
}
#design .contents .designer span img {
  height: 1rem;
  margin: 0 auto 0.75rem;
}
@media screen and (max-width: 979px) {
  #design .contents .txtBox {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#design .contents .txtBox dt img {
  height: 1rem;
}
#design .contents .txtBox dd {
  line-height: 2;
  letter-spacing: 0;
  margin: calc(-0.5em + 1.75rem) 0 -0.5em;
}
#design .contents .txtBox .img2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
#design .contents .d01 {
  max-width: 719px;
  margin: 0 auto;
  position: relative;
}
#design .contents .d01 p {
  line-height: 2;
  letter-spacing: 0;
  margin: calc(-0.5em + 1.75rem) 0 -0.5em;
}
@media screen and (max-width: 979px) {
  #design .contents .d01 p {
    padding: 0 4rem 0;
    margin: calc(-0.5em + 3rem) 0 -0.5em;
  }
}
#design .contents .d01::after, #design .contents .d01::before {
  width: 1px;
  height: 5rem;
  content: "";
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-animation: myAnime3 2s cubic-bezier(0.83, 0, 0.17, 1) 0s infinite normal;
          animation: myAnime3 2s cubic-bezier(0.83, 0, 0.17, 1) 0s infinite normal;
}
#design .contents .d01::after {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation: myAnime2 2s cubic-bezier(0.83, 0, 0.17, 1) 0s infinite normal;
          animation: myAnime2 2s cubic-bezier(0.83, 0, 0.17, 1) 0s infinite normal;
}
#design .contents .d02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5rem 0 0;
}
@media screen and (max-width: 979px) {
  #design .contents .d02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#design .contents .d02 .txtBox {
  width: 298px;
  padding: 3rem 0 0;
  margin-right: 5rem;
}
@media screen and (max-width: 979px) {
  #design .contents .d02 .txtBox {
    width: calc(100% - 8rem);
    margin: 0 auto;
    padding: 4em 0 0;
  }
}
#design .contents .d02 .img2 {
  margin: 5rem 0 0;
}
@media screen and (max-width: 979px) {
  #design .contents .d02 .img2 {
    max-width: 223px;
    margin: 3em auto 0;
  }
}
#design .contents .d03 {
  max-width: 1170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -0.75rem auto 0;
}
@media screen and (max-width: 979px) {
  #design .contents .d03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 5em 0 0;
  }
}
#design .contents .d03 .txtBox {
  width: 50%;
  padding-left: 6.588579795vw;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 979px) {
  #design .contents .d03 .txtBox {
    width: calc(100% - 8rem);
    margin: 4em auto 0;
    padding: 0;
  }
}
#design .contents .d03 .txtBox dl {
  width: 292px;
}
@media screen and (max-width: 979px) {
  #design .contents .d03 .txtBox dl {
    width: 100%;
  }
}
#design .contents .d03 .txtBox .img2 {
  width: 33.3821376281vw;
  height: 23.7188872621vw;
  margin: 11.25rem 0 0;
  position: relative;
}
@media screen and (max-width: 979px) {
  #design .contents .d03 .txtBox .img2 {
    width: 100%;
    height: 50vw;
    margin: 3em 0 0;
  }
}
#design .contents .d03 .txtBox .img2 img {
  position: absolute;
  top: 15.3001464129vw;
  right: calc(100% - 2em);
}
@media screen and (max-width: 979px) {
  #design .contents .d03 .txtBox .img2 img {
    width: 30vw;
    top: 40vw;
    right: -2em;
  }
}
#design .contents .d03 .img {
  width: 50%;
  padding: 14.375rem 0 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 979px) {
  #design .contents .d03 .img {
    width: 100%;
    padding: 0;
  }
}
#design .contents .d04 {
  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;
  margin: 9.125rem 0 0;
}
@media screen and (max-width: 979px) {
  #design .contents .d04 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#design .contents .d04 .txtBox {
  width: 264px;
  margin-right: 6.375rem;
}
@media screen and (max-width: 979px) {
  #design .contents .d04 .txtBox {
    width: calc(100% - 8rem);
    margin: 0 auto 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#design .contents .d04 .img {
  width: 50%;
}
@media screen and (max-width: 979px) {
  #design .contents .d04 .img {
    width: 100%;
    margin: 3em 0 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#design .contents .d05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 8rem 0 0;
}
@media screen and (max-width: 979px) {
  #design .contents .d05 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 5rem 0 0;
  }
}
#design .contents .d05 .txtBox {
  width: 50%;
  padding-left: 6.588579795vw;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 979px) {
  #design .contents .d05 .txtBox {
    width: calc(100% - 8rem);
    margin: 0 auto 0;
    padding: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#design .contents .d05 .txtBox dl {
  width: 288px;
}
@media screen and (max-width: 979px) {
  #design .contents .d05 .txtBox dl {
    width: 100%;
  }
}
#design .contents .d05 .img {
  width: 50%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 979px) {
  #design .contents .d05 .img {
    width: 100%;
    max-width: 388px;
    margin: 3em auto 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#design .contents .d05 .img img {
  margin-left: auto;
}
#design .contents .d06 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 8rem 0 0;
}
@media screen and (max-width: 979px) {
  #design .contents .d06 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 5rem 0 0;
  }
}
#design .contents .d06 .txtBox {
  width: 420px;
  margin-right: 6.75rem;
}
@media screen and (max-width: 979px) {
  #design .contents .d06 .txtBox {
    width: calc(100% - 8rem);
    margin: 0 auto 0;
    padding: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#design .contents .d06 .img {
  width: 225px;
}
@media screen and (max-width: 979px) {
  #design .contents .d06 .img {
    width: 100%;
    max-width: 225px;
    margin: 3em auto 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#design .contents .fxdImg {
  height: 21.2298682284vw;
  margin: 5.4375rem 0 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 979px) {
  #design .contents .fxdImg {
    height: 50vw;
    background-attachment: scroll;
  }
}
#design .contents .journal {
  width: 36.625rem;
  padding: 1.875rem 0 1.5625rem;
  margin: 4.5rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
}
@media screen and (max-width: 979px) {
  #design .contents .journal {
    width: calc(100% - 8rem);
    padding: 2.5rem 0 2rem;
  }
}
#design .contents .journal .more {
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
#design .contents .journal .more span {
  display: inline-block;
  padding: 0 1.5rem;
  background: #212946;
}
#design .contents .journal .more span.green {
  background: #304D40;
}
@media screen and (max-width: 979px) {
  #design .contents .journal .more span {
    width: 14rem;
  }
}
#design .contents .journal .flex {
  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;
}
@media screen and (max-width: 979px) {
  #design .contents .journal .flex {
    display: block;
  }
}
#design .contents .journal .flex > div:first-child {
  padding-right: 4.8125rem;
}
@media screen and (max-width: 979px) {
  #design .contents .journal .flex > div:first-child {
    padding: 0 0 1.5rem;
  }
}
#design .contents .journal .photo {
  width: 9.75rem;
  height: 8.4375rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 979px) {
  #design .contents .journal .photo {
    margin: 0 auto;
  }
}
#design .contents .journal h2 img {
  height: 0.875rem;
  margin: 0 auto 0;
}
#design .contents .journal .title {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.5;
  margin: calc(1.5rem - 0.25em) 0 -0.25em;
}
#design .contents .journal .click {
  display: block;
  width: 4.5rem;
  padding: 0 0 0.625rem;
  margin: 1.5rem auto 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#design .contents .journal .click img {
  height: 0.8125rem;
  margin: 0 auto 0;
}
#design .contents #minato {
  color: #FFF;
  background: url("../img/design/bg.svg") top 15vw center/100% no-repeat #212946;
  background: #212946;
}
#design .contents #nishi {
  color: #FFF;
  background: url("../img/design/bg.svg") top 15vw center/100% no-repeat #304d40;
  background: #304d40;
}
#design .contents #nishi .d03 {
  margin-top: -1em;
}
#design .contents #nishi .d03 .img2 {
  margin: 5.4375rem 0 0;
}
#design .contents #nishi .d03 .img {
  padding: 10em 0 0;
}
#design .contents #nishi .d03 .img img {
  margin-left: auto;
}
#design .contents #nishi .d04 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#design .contents #nishi .d04 .txtBox {
  padding: 1.25rem 0 0;
}
#design .contents #nishi .d04 .img {
  width: 313px;
}
#design .contents #nishi .d05 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 0;
}
#design .contents #nishi .d05 .img {
  width: 38.5065885798vw;
}
#design .contents #nishi .d06 {
  margin: 5.9375rem 0 0;
}

/* motion-> */
/*
animation -- 固有名 -- 動作時間 -- ease -- 開始遅延 -- 繰り返し -- 正反
ex) animation: anime1 2s ease 0s infinite alternate;
*/
.wait {
  opacity: 0;
}

.play.fadeIn {
  -webkit-animation: fadeIn 0.75s ease 0s 1 normal;
          animation: fadeIn 0.75s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.play.slideUp {
  -webkit-animation: slideUp 0.75s ease 0s 1 normal;
          animation: slideUp 0.75s ease 0s 1 normal;
}

@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 761px) {
  .play.slideLeft {
    -webkit-animation: slideLeft 0.75s ease 0s 1 normal;
            animation: slideLeft 0.75s ease 0s 1 normal;
  }
}
@media screen and (max-width: 760px) {
  .play.slideLeft {
    -webkit-animation: slideUp 0.75s ease 0s 1 normal;
            animation: slideUp 0.75s ease 0s 1 normal;
  }
}
@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1.5rem);
            transform: translateX(1.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1.5rem);
            transform: translateX(1.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 761px) {
  .play.slideRight {
    -webkit-animation: slideRight 0.75s ease 0s 1 normal;
            animation: slideRight 0.75s ease 0s 1 normal;
  }
}
@media screen and (max-width: 760px) {
  .play.slideRight {
    -webkit-animation: slideUp 0.75s ease 0s 1 normal;
            animation: slideUp 0.75s ease 0s 1 normal;
  }
}
@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1.5rem);
            transform: translateX(-1.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1.5rem);
            transform: translateX(-1.5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 980px) {
  .pcNone {
    display: none !important;
  }
  html {
    width: 100%;
    height: 100%;
    font-size: 16px;
  }
  body {
    width: 100%;
    height: 100%;
    font-size: 1rem;
  }
  img {
    display: block;
    height: auto;
  }
}
@media screen and (max-width: 979px) {
  .spNone {
    display: none !important;
  }
  html {
    width: 100%;
    height: 100%;
    font-size: 12px;
  }
  body {
    width: 100%;
    height: 100%;
    font-size: 1rem;
    overflow-x: hidden;
  }
  img {
    display: block;
    max-width: 100%;
    width: auto;
  }
}/*# sourceMappingURL=layout.css.map */