/*******************************************************
 *
 * COMMON
 *
 *******************************************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  position: relative;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
  background: #ffffff;
  font-family: a-otf-ryumin-pr6n, serif;
  color: #393939;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
  font-weight: 300;
  overflow-x: hidden;
}

.inner {
  padding: 0;
}
@media (min-width: 992px) {
  .inner {
    padding: 0 30px;
  }
}

canvas {
  width: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  background-color: #666666;
}

img, iframe {
  max-width: 100%;
  width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-size: 3rem;
  margin: 0;
}

a, a:hover {
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
}

.textCenter {
  text-align: center;
}

.textCenter02 {
  text-align: center;
}

.relative {
  position: relative;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.block {
  display: block;
}

.greyOut {
  pointer-events: none;
  position: relative;
}
.greyOut::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.main {
  padding-top: 6.9rem;
}
@media (min-width: 992px) {
  .main {
    padding-top: 7.9rem;
  }
}

.hiddenSp {
  display: none !important;
}
@media (min-width: 992px) {
  .hiddenSp {
    display: block !important;
  }
  .hiddenSp.flexbox {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .hiddenPc {
    display: none !important;
  }
}

.hiddenImgSp {
  display: none !important;
}
@media (min-width: 992px) {
  .hiddenImgSp {
    display: inline-block !important;
  }
}

.hiddenImgPc {
  display: inline-block !important;
}
@media (min-width: 992px) {
  .hiddenImgPc {
    display: none !important;
  }
}

/*******************************************************
 *
 * CONTAINERS
 *
 *******************************************************/
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 1515px) {
  .container {
    padding: 0;
    max-width: 1410px;
  }
}

.container02 {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
@media (min-width: 1515px) {
  .container02 {
    padding: 0;
    max-width: 1410px;
  }
}

/*******************************************************
 *
 * Image Wrapper
 *
 *******************************************************/
.imgWrap {
  position: relative;
}
.imgWrap__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.imgWrap .canvas-pc, .imgWrap__pc {
  display: none;
}
@media (min-width: 992px) {
  .imgWrap .canvas-pc, .imgWrap__pc {
    display: block;
  }
}
@media (min-width: 992px) {
  .imgWrap .canvas-sp, .imgWrap__sp {
    display: none;
  }
}

/*******************************************************
 *
 * SECTIONS
 *
 *******************************************************/
section[class^=ip]:not(:first-child) {
  margin-top: 8rem;
}

.sec__ttl-alt {
  position: absolute;
  bottom: 1vw;
  right: 1vw;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
}
.sec__ttl {
  font-size: 2.5rem;
}
@media (min-width: 992px) {
  .sec__ttl {
    font-size: 3.5rem;
  }
}
.sec__ttl-alt {
  position: absolute;
  bottom: 1vw;
  right: 1vw;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: bold;
}
.sec__ttl-bnr {
  position: relative;
  padding: 30px 15px;
  font-size: 42px;
  color: #fff;
  font-family: linotype-didot, serif;
  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;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
@media (min-width: 992px) {
  .sec__ttl-bnr {
    padding: 7vw 15px;
    font-size: 72px;
  }
}
.sec__content p:not(:first-child) {
  margin-top: 1rem;
}

.slide-animation {
  -webkit-animation: fadezoom 20s 0s forwards;
          animation: fadezoom 20s 0s forwards;
}

@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 5s;
    transition: 5s;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 5s;
    transition: 5s;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
/*******************************************************
 *
 * MOBILE HEADER
 *
 *******************************************************/
.header-mobile {
  padding: 13px 18px 10px !important;
}

.mobileHeader {
  position: fixed;
  width: 100%;
  background-color: #fff;
  min-width: inherit;
  display: block;
  height: auto;
  z-index: 101;
  top: 0;
  left: 0;
}
@media (min-width: 992px) {
  .mobileHeader {
    display: none;
  }
}
.mobileHeader__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  border-bottom: #000 solid 1px;
}
.mobileHeader__list-item {
  text-align: center;
  border-left: #000 solid 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 16.6%;
  height: 67px;
  padding-top: 3.5px;
}
.mobileHeader__list-item-link {
  color: inherit;
}
.mobileHeader__list-item-icon {
  display: block;
}
.mobileHeader__list-item-img {
  width: 44px;
  height: auto;
}
.mobileHeader__list-item-text {
  display: block;
  font-size: 10px;
  margin-top: -11px;
  letter-spacing: 0 !important;
}
.mobileHeader__list-item:nth-child(1) {
  border: none;
}
.mobileHeader__logo {
  width: 100%;
  max-width: 150px;
}
.mobileHeader__menu {
  display: none;
  position: absolute;
  right: 0;
  top: 80px;
  background-color: #000;
  width: 100%;
  z-index: 101;
}
.mobileHeader__gnav__list {
  position: fixed;
  left: 0;
  background: #333;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  top: -120%;
  left: 0;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}
.mobileHeader__gnav__list.panelactive {
  top: 68px;
}
.mobileHeader__gnav__list-item {
  width: 50%;
  border: 1px solid #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 40px;
}
.mobileHeader__gnav__list-item-link {
  padding: 0 1%;
  display: block;
  background: #EEE;
  color: #333;
}
.mobileHeader__gnav__list-item-link span {
  font-size: 12px;
}
.mobileHeader__gnav__list-item:last-child {
  width: 100%;
}
.mobileHeader__gnav__list-item:last-child a {
  background: #960000;
  color: #FFF;
}
.mobileHeader__gnav__list-item:nth-last-child(2) {
  width: 100%;
}
.mobileHeader__gnav__list-item:nth-last-child(2) a {
  background: #b39532;
  color: #FFF;
}

#gnav_wrap {
  display: block;
  position: relative;
}
@media (min-width: 992px) {
  #gnav_wrap {
    display: none;
  }
}

/*******************************************************
 *
 * 5. BURGER MENU
 *
 *******************************************************/
.burger-menu {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 99;
}
@media (min-width: 992px) {
  .burger-menu {
    display: none;
  }
}
.burger-menu div {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #6d533c;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.burger-menu div:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.burger-menu div:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.burger-menu div:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.burger-menu.open div:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}
.burger-menu.open div:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.burger-menu.open div:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 22px;
  left: 5px;
}

.Spheader__logo {
  display: block;
  margin-top: 69px;
  padding: 10px;
  background: #434851;
}
@media (min-width: 992px) {
  .Spheader__logo {
    display: none;
  }
}

/*******************************************************
 *
 * HEADER
 *
 *******************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 15px;
  width: 100%;
  background: #434851;
  z-index: 1000;
  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 (min-width: 992px) {
  .header {
    display: block;
    padding: 20px 0 0;
    width: calc(100% - 60px);
    margin-left: 30px;
  }
}
.header__logo {
  max-width: 320px;
  display: none;
}
@media (min-width: 992px) {
  .header__logo {
    margin: 0 30px 0 0;
    display: block;
    max-width: 550px;
  }
}
.header__logo img {
  width: 100%;
}
.header__menu {
  display: none;
}
@media (min-width: 992px) {
  .header__menu {
    display: block;
    margin-top: 20px;
  }
}
.header__menuTrigger {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 99;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media (min-width: 992px) {
  .header__menuTrigger {
    display: none;
  }
}
.header__menuTrigger div {
  display: block;
  position: absolute;
  left: 0;
  border-radius: 9px;
  height: 4px;
  width: 100%;
  background: #000002;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header__menuTrigger div:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.header__menuTrigger div:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.header__menuTrigger div:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.header__menuTrigger.open div:nth-child(1) {
  top: 0px;
  left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header__menuTrigger.open div:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.header__menuTrigger.open div:nth-child(3) {
  top: 22px;
  left: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header__menuNav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .header__menuNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    width: initial;
  }
}
.header-mobile .header__menuNav {
  border-top: 1px solid #ccc;
  background: #fff;
}
@media (min-width: 992px) {
  .header__other {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__btn {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__btn .links {
  margin-right: 20px;
}
.header__btn .links a:last-child {
  margin-top: 10px;
}
.header__btn .rr-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__btn .rr-btn a {
  max-width: 177px;
}
.header__btn .rr-btn a:first-child {
  margin-right: 10px;
}

/*******************************************************
 *
 * NAV
 *
 *******************************************************/
.menuNav {
  width: 100%;
  background: #434851;
}
@media (min-width: 992px) {
  .menuNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.menuNav__item {
  width: 100%;
}
@media (min-width: 992px) {
  .menuNav__item {
    width: 16.667%;
  }
}
.menuNav__itemLink {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
  padding: 5px 0;
  letter-spacing: 0.2em;
  position: relative;
}
@media (min-width: 992px) {
  .menuNav__itemLink {
    border-bottom: 3px solid #8f7f76;
  }
  .menuNav__itemLink::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 50%;
    background-color: #fff;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.menuNav__itemLink--mover-before {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.menuNav__itemLink--mover {
  display: none;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.menuNav__itemLink:hover {
  background: #7b909e;
  border-bottom-color: #b5a470;
}
.menuNav__itemLink:hover .menuNav__itemLink--mover-before {
  display: none;
  opacity: 0;
}
.menuNav__itemLink:hover .menuNav__itemLink--mover {
  display: inline;
  opacity: 1;
}
.menuNav__itemLink.nobdr::after {
  display: none;
}
.menuNav__item.subnav {
  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;
}

/*******************************************************
 *
 * FOOTER
 *
 *******************************************************/
.footer {
  padding: 50px 0 40px;
}
.footer__info {
  max-width: 560px;
  margin: 50px auto 0;
}
@media (min-width: 576px) {
  .footer__info {
    margin: 100px auto 0;
  }
}
.footer__info-links {
  margin: 25px -10px;
}
@media (min-width: 992px) {
  .footer__info-links {
    margin: 50px -10px;
  }
}
.footer__info-links li {
  width: 50%;
  padding: 0 10px;
}
.footer__info-links li a {
  display: block;
}
.footer__logos {
  margin: 50px auto 10px;
  max-width: 1240px;
}
@media (min-width: 576px) {
  .footer__logos {
    margin: 100px auto 10px;
  }
}
.footer__logos .info-bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -15px;
}
@media (min-width: 768px) {
  .footer__logos .info-bnr {
    margin: -10px;
  }
}
.footer__logo-item {
  width: calc(33.33% - 5px);
  padding: 5px;
}
@media (min-width: 768px) {
  .footer__logo-item {
    width: auto;
    padding: 10px;
  }
}
.footer__logo-item .img {
  width: 100%;
}
.footer__bnr {
  max-width: 1015px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__bnr a {
  padding: 10px 0;
}
@media (min-width: 768px) {
  .footer__bnr a {
    padding: 0 20px;
  }
}
.footer .copyright {
  margin: 30px 0 0;
}
@media (min-width: 992px) {
  .footer .copyright {
    margin: 60px 0 0 -30px;
  }
}

/*******************************************************
 *
 * TOP PAGE
 *
 *******************************************************/
/*===TopSec01===*/
img {
  image-rendering: auto;
}

.topBannerwrap__slider {
  display: block;
}
.topBannerwrap__slider .slide {
  display: block;
  height: 80vh;
}
.topBannerwrap__slider .slide img {
  display: block;
  width: 100%;
  height: 100%;
}

/*===TopSec01===*/
.topSec01 {
  margin: -2% auto 0;
  position: relative;
}
@media (min-width: 992px) {
  .topSec01__list {
    max-width: unset;
  }
}
.topSec01__item {
  width: 100%;
}
.topSec01__item img {
  display: block;
}
.topSec01__top-annotation {
  text-align: start;
}
@media (min-width: 992px) {
  .topSec01__top-annotation {
    text-align: end;
    margin: 10px 0 0;
  }
}
.topSec01__top-annotation .kome {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  padding: 0 20px;
}

/*===TopSec02===*/
.topSec02 {
  padding: 50px 0;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .topSec02 {
    padding: 100px 0;
  }
}
.topSec02__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 768px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .topSec02__wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: unset;
    margin: 0;
  }
}
.topSec02__left {
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .topSec02__left {
    width: 42.2442244224%;
    text-align: left;
  }
}
.topSec02__left-txt__text {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  text-align: start;
}
@media (min-width: 992px) {
  .topSec02__left-txt__text {
    padding-left: 1em;
  }
}
.topSec02__right {
  width: 100%;
  margin: 30px 0 0;
}
@media (min-width: 992px) {
  .topSec02__right {
    width: 41.9141914191%;
    margin: 0;
  }
}

/*===TopSecPlanning===*/
.topSecPlanning {
  display: none;
  position: relative;
}
.topSecPlanning-ttl {
  padding: 60px 0 0;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .topSecPlanning-ttl {
    padding: 160px 0 0;
  }
}
.topSecPlanning__bg-wrapper {
  position: relative;
}
.topSecPlanning__bg-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 40%;
  background-color: #dbdbdb;
  z-index: -1;
}
.topSecPlanning__bg-wrapper::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 50%;
  height: 40%;
  background-color: #dbdbdb;
  z-index: -1;
}
.topSecPlanningWrap {
  position: relative;
  padding: 0 10px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 992px) {
  .topSecPlanningWrap {
    padding: 0 140px;
    max-width: 1260px;
  }
}
.topSecPlanningWrap .under-construction {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.topSecPlanningWrap .under-construction-span {
  background-color: #fdf536;
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 5px 20px;
}
.topSecPlanningWrap__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
@media (min-width: 992px) {
  .topSecPlanningWrap__svg {
    max-width: 1260px;
    padding: 0 140px;
  }
}
.topSecPlanningWrap__svg a {
  pointer-events: none;
}
.topSecPlanningWrap__txt {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -200%);
          transform: translate(-50%, -200%);
}
@media (min-width: 992px) {
  .topSecPlanningWrap__txt {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    max-width: 4%;
    right: 0;
    left: auto;
    top: 50%;
  }
}
.topSecPlanning__link {
  padding: 60px 0 120px;
  position: relative;
  border-bottom: 10px solid #688594;
}
@media (min-width: 992px) {
  .topSecPlanning__link {
    padding: 60px 0 0;
  }
}
.topSecPlanning__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 40%;
  background-color: #E5E2DD;
  z-index: -1;
}
@media (min-width: 992px) {
  .topSecPlanning__link::after {
    height: 55%;
  }
}
.topSecPlanning__link::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  background-color: #dbdbdb;
  z-index: -1;
  width: 50%;
  height: 58%;
}
@media (min-width: 992px) {
  .topSecPlanning__link::before {
    height: 30%;
    top: 55%;
    width: 30%;
  }
}
.topSecPlanning__link__ttl {
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .topSecPlanning__link__ttl {
    max-width: 90px;
  }
}
.topSecPlanning__link__img {
  margin: 40px 0 0;
}
.topSecPlanning__link__img__txt {
  margin: 20px auto;
}
.topSecPlanning__link__img__txt-text {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.topSecPlanning__link__img__txt-text .small {
  font-size: 1.5rem;
}
.topSecPlanning__link__img__txt-text.sm {
  font-size: 1.7rem;
}
.topSecPlanning__link__img__btn-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 80%;
  margin: 0 auto 20px;
}
@media (min-width: 992px) {
  .topSecPlanning__link__img__btn-list {
    max-width: 100%;
  }
}
.topSecPlanning__link__img__btn-list__li {
  width: calc(25% - 10px);
  margin: 0 5px 5px;
  pointer-events: none;
}
@media (min-width: 992px) {
  .topSecPlanning__link__img__btn-list__li {
    max-width: 70px;
    width: 100%;
  }
}
.topSecPlanning__link_inner {
  margin-bottom: 30px;
}
.topSecPlanning__link__innerPc.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.topSecPlanning__link__innerPc-img {
  max-width: 50%;
  width: 100%;
}
.topSecPlanning__link__innerPc-img.seventy {
  max-width: 70%;
}
.topSecPlanning__link__innerPc-img.sixty {
  max-width: 60%;
}
.topSecPlanning__link__innerPc-img.fourty {
  margin: -8% 0 auto 6%;
  max-width: 44%;
}
.topSecPlanning__link__innerPc-img.thirty {
  max-width: 35%;
  margin: 0 auto;
}
.topSecPlanning__link__innerPc-img.thirty.mgt {
  margin: -8% auto 0;
  max-width: 27%;
}
.topSecPlanning__link__innerPc-img__txt {
  text-align: center;
  margin: 20px auto;
}

/*===TopSecLocation===*/
.topSecLocationWrap__img {
  background-color: #cad0d6;
}
.topSecLocationWrap__img__ttl {
  padding: 40px 20px;
}
.topSecLocationWrap__img__txt {
  padding: 0 20px 30px;
}
.topSecLocationWrap__img-img {
  padding: 0 0 30px;
}
.topSecLocationWrap__img-img.beige {
  background-color: #e5e2dd;
}
.topSecLocationWrap__img-img.grey {
  background-color: #dbdbdb;
}
.topSecLocationWrap__img-img--txt {
  padding: 20px 20px 0;
}
.topSecLocationWrap__inner {
  margin-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .topSecLocationWrap__inner {
    margin-top: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.topSecLocationWrap__inner__left {
  width: 100%;
}
@media (min-width: 992px) {
  .topSecLocationWrap__inner__left {
    width: 44.5%;
  }
}
.topSecLocationWrap__inner__left img {
  display: block;
}
.topSecLocationWrap__inner__right {
  width: 100%;
  margin: 20px auto 0;
}
.topSecLocationWrap__inner__right img {
  display: block;
}
@media (min-width: 992px) {
  .topSecLocationWrap__inner__right {
    width: 44%;
    margin: -20% auto auto 5%;
  }
}
.topSecLocationWrap__inner.nomrg {
  margin: 0;
}
.topSecLocationWrap__inner__img {
  max-width: 45%;
  width: 100%;
}
.topSecLocationWrap__inner__img img {
  display: block;
}
.topSecLocationWrap__inner__img__full {
  max-width: 80%;
  margin: 10% auto auto;
}
.topSecLocationWrap__inner__img.fourty {
  max-width: 40%;
}
.topSecLocationWrap__inner__img__txt {
  margin: 30px auto 0;
  max-width: 90%;
}
.topSecLocationWrap__inner__img__txt.full {
  padding: 30px 5%;
  margin: 0;
  max-width: 100%;
}
.topSecLocationWrap__inner__img__txt.full.grey {
  background-color: #d2d6db;
}
.topSecLocationWrap__inner__img__txt.full.beidge {
  background-color: #e8e7e3;
}
.topSecLocationWrap__inner__img__txt.full img {
  max-width: 90%;
  margin: auto;
}
.topSecLocationWrap__inner__img.sixty {
  max-width: 55%;
}
.topSecLocationWrap__inner__img.mgt {
  margin-top: -25%;
}
.topSecLocationWrap__inner__img.grey {
  background-color: #d2d6db;
}

/*===TopSecAccess===*/
.topSecAccessWrap__station {
  background-color: #e6e4de;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .topSecAccessWrap__station {
    padding: 85px 40px;
  }
}
.topSecAccessWrap__station::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 15%;
  background-color: #d4d4d4;
  z-index: -1;
}
.topSecAccessWrap__station__ttl {
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .topSecAccessWrap__station__ttl {
    max-width: 550px;
  }
}
.topSecAccessWrap__station__list__item {
  width: calc(50% - 40px);
  margin: 20px 20px 0;
}
@media (min-width: 992px) {
  .topSecAccessWrap__station__list__item {
    width: calc(33.3333333333% - 50px);
    margin: 50px 25px 0;
  }
}
.topSecAccessWrap__img__map-img {
  display: block;
  border-top: 10px solid #688594;
}

/*===TopSec03===*/
.topSec03 {
  background-color: #7b909e;
}
.topSec03__wrap img {
  display: block;
}

/*===location===*/
.location {
  position: relative;
  padding: 90px 0 80px;
}
@media (min-width: 992px) {
  .location {
    padding: 180px 0 160px;
  }
}
.location__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.location__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

/*===location===*/
.topSecQuality__inner {
  margin: 60px auto 0;
}
@media (min-width: 992px) {
  .topSecQuality__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 70%;
  }
}
.topSecQuality__inner__flex {
  margin: 0 auto 30px;
}
@media (min-width: 992px) {
  .topSecQuality__inner__flex {
    margin: 0 auto 80px;
    width: 40%;
  }
}
.topSecQuality__inner__flex-img {
  max-width: 70%;
  text-align: center;
  margin: 0 auto 5px;
}
@media (min-width: 992px) {
  .topSecQuality__inner__flex-img {
    max-width: 100%;
  }
}
.topSecQuality__inner__flex-text {
  font-size: 1.6rem;
  text-align: center;
  color: #393939;
}
@media (min-width: 992px) {
  .topSecQuality__inner__flex-text {
    font-size: 1.8rem;
  }
}
.topSecQuality__last-text {
  font-size: 1.2rem;
}

/*******************************************************
 *
 * MAP PAGE
 *
*******************************************************/
.map {
  background: #fff;
}
.map__header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 50px;
  background: #434851;
  z-index: 9;
}
.map__header-logo {
  width: 53%;
}
.map__headerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  width: 37%;
}
.map__headerMenu-item {
  width: 50%;
}
.map__headerMenu-item .img {
  width: 100%;
}
.map__title {
  margin: auto;
  text-align: center;
  font-size: 2.3rem;
  max-width: 120px;
}
.map__cap {
  margin-top: 10px;
  text-align: center;
  font-size: 1.4rem;
}
.mapSec01 {
  padding-top: 80px;
}
.map__container {
  width: calc(100% - 40px);
  margin: 0 20px;
}
.map__img {
  margin: 20px auto;
}
.map__img .img {
  width: 100%;
}
.mapSec02 .map__container {
  max-width: 400px;
  width: calc(100% - 40px);
  margin: 40px auto;
}
.mapSec02 .map__img {
  padding: 20px;
}
.mapSec02 .btn__area {
  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;
  max-width: 300px;
  margin: 0 auto 30px;
  padding: 0 10px;
}
.mapSec02 .btn__area-list {
  width: calc(50% - 5px);
  border: 1px solid #ccc;
}
.mapSec02 .btn__area-list:not(:first-child) {
  margin-left: 10px;
}
.mapSec02 .btn__area-item {
  display: block;
  color: #333;
  text-align: center;
  padding: 10px;
  background: #fff;
  font-size: 12px;
  -webkit-transition: 0.3s all ease-in-out 0s;
  transition: 0.3s all ease-in-out 0s;
}
.mapSec02 .btn__area-item:hover {
  background: #333;
  color: #fff;
}
.map .footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 90%;
  margin: 0 auto 10px;
}
.map .footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
.map .footer__link-item {
  margin: 0 2px;
  font-size: 9px;
  color: #000002;
}
.map .footer__link-item:hover {
  text-decoration: underline;
}
.map .copyright__wrap {
  margin: 0 auto;
}
.map .copyright {
  font-size: 9px;
  line-height: 1;
}