@charset "UTF-8";

/* Scss Document */
html {
  width: 100%;
  height: 100%;
  min-width: 1200px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}

@media only screen and (max-width: 640px) {
  html {
    min-width: 100%;
    font-size: 2.2vw;
  }
}

body {
  font-size: 1.6rem;
  width: 100%;
  height: 100%;
  min-width: 1200px;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 640px) {
  body {
    min-width: 100%;
  }
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.inner {
  margin: 0 auto;
  padding: 0 40px;
  width: 1200px;
}

@media only screen and (max-width: 640px) {
  .inner {
    padding: 0 5vw;
    width: 100%;
  }
}

h1 {
  font-size: 3.2rem;
}

@media only screen and (max-width: 640px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 2.4rem;
}

@media only screen and (max-width: 640px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 2rem;
}

@media only screen and (max-width: 640px) {
  h3 {
    font-size: 1.8rem;
  }
}

address {
  font-style: normal;
}

.header {
  padding: 2rem 0 0;
  background: #fff;
  width: 100%;
  position: relative;
  z-index: 100;
}

@media only screen and (max-width: 640px) {
  .header {
    padding: 3vw 0 0;
    width: 100%;
    height: 14vw;
    position: fixed;
    top: 0;
    left: 0;
  }
}

.header .logo {
  margin: 0 auto 0 3rem;
  width: 26rem;
  font-size: 0;
  line-height: 0;
}

@media only screen and (max-width: 1300px) {
  .header .logo {
    width: 24rem;
  }
}

@media only screen and (max-width: 640px) {
  .header .logo {
    margin: 0 auto;
    width: 40vw;
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 640px) {
  .header-nav {
    display: none;
  }
}

.header-nav-sub ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav-sub ul li {
  margin-right: 1rem;
}

.header-nav-sub a {
  padding: 0.5em 1.25em;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #251d1a;
}

@media only screen and (max-width: 1300px) {
  .header-nav-sub a {
    padding: 0.5em 1em;
    font-size: 1.2rem;
  }
}

.header-nav-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav-sns ul li {
  margin-right: 1rem;
  width: 2.4rem;
}

.header-nav-link {
  margin-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .translate {
  width: 115px;
  font-size: 1.3rem;
  text-align: left;
  position: relative;
}

.header .translate-title {
  margin-bottom: 0;
  padding: 1rem 2rem 1rem 0;
  background: rgba(0, 0, 0, 0.4) url(../images/common/ico_arrow_translate.png) no-repeat center right 5px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.header .translate-title:after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border: 0.2rem solid #fff;
  border-top: 0;
  border-right: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header .translate-title.open:after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 2.25rem;
}

.header .translate div {
  border: solid 1px #ccc;
  border-top: none;
  background: #fff;
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
}

.header .translate a {
  padding: 0.5em;
  display: block !important;
  text-decoration: none;
  color: #111;
}

.header .translate a:hover {
  background: #eee;
}

.header .green a {
  color: #fff;
  background: #38c180;
  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;
  padding: 0 1rem;
  height: 100%;
  font-weight: bold;
  text-decoration: none;
}

.header .green a img {
  margin-right: 0.5rem;
  width: 2.5rem;
  display: inline-block;
}

.global-nav {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: ease 0s;
  transition: ease 0s;
  background: #fff;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 640px) {
  .global-nav {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    z-index: 1000;
    width: 100vw;
    height: calc(100vh - 14vw);
    overflow: auto;
    background: #2A2A60;
    position: fixed;
    top: 14vw;
  }
}

.global-nav.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.global-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .global-nav.is-fixed {
    top: 14vw;
    z-index: 10;
  }
}

.global-nav-list {
  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;
  margin: 0 auto;
  padding: 0 3rem;
  width: 1200px;
}

@media only screen and (max-width: 640px) {
  .global-nav-list {
    margin: 0;
    padding: 0;
    display: block;
    width: auto;
  }
}

.global-nav-list li {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .global-nav-list li {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  }
}

.global-nav-list li:hover>.global-nav-sub {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.global-nav-list li .btn-open {
  display: none;
}

@media only screen and (max-width: 640px) {
  .global-nav-list li .btn-open {
    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;
    position: absolute;
    width: 11vw;
    height: 11vw;
    top: .75vw;
    right: .75vw;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
  }

  .global-nav-list li .btn-open:before {
    content: "＋";
    font-size: 2.4rem;
    font-weight: 100;
    color: #fff;
  }

  .global-nav-list li .btn-open.open:before {
    content: "－";
  }
}

.global-nav-list a,
.global-nav-list span {
  padding: 2rem;
  display: block;
  text-decoration: none;
  color: #251d1a;
  text-align: center;
}

@media only screen and (max-width: 640px) {

  .global-nav-list a,
  .global-nav-list span {
    color: #fff;
    text-align: left;
  }
}

.global-nav-sub {
  position: absolute;
  top: 5.8rem;
  left: 50%;
  width: 24rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background: #000;
}

@media only screen and (max-width: 640px) {
  .global-nav-sub {
    position: static;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.2);
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  .global-nav-sub ul {
    padding: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.global-nav-sub li {
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .global-nav-sub li {
    width: 50%;
    border: none;
  }
}

.global-nav-sub li a {
  padding: 1.5rem 0.5rem 1.5rem 2rem;
  border-top: solid 1px rgba(0, 0, 0, 0.2);
  background: #2A2A60;
  font-size: 1.5rem;
  color: #fff;
  text-align: left;
  font-weight: normal;
  text-decoration: none;
}

@media only screen and (max-width: 640px) {
  .global-nav-sub li a {
    padding: 1rem 0.5rem 1rem 2rem;
    border: none;
    background: transparent;
  }
}

.global-nav-sub li a:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border: 0.1rem solid #fff;
  border-top: 0;
  border-right: 0;
  -webkit-transform: translateY(-100%) rotate(-135deg);
  transform: translateY(-100%) rotate(-135deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 640px) {
  .global-nav-sub li a:before {
    right: auto;
    left: 2vw;
  }
}

.global-nav-menu {
  display: none;
}

@media only screen and (max-width: 640px) {
  .global-nav-menu {
    margin-bottom: 0.5em;
    padding: 0;
    border: none;
    background: none;
    display: block;
    position: absolute;
    z-index: 10;
    top: 5vw;
    right: 5vw;
  }

  .global-nav-menu-outer {
    position: relative;
    width: 5vw;
    height: 4vw;
  }

  .global-nav-menu-item {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5vw;
    height: 2px;
    margin: -1px 0 0 -2.5vw;
    background: #2A2A60;
  }

  .global-nav-menu-item:before,
  .global-nav-menu-item:after {
    display: block;
    position: absolute;
    left: 0;
    width: 5vw;
    height: 2px;
    background: #2A2A60;
    content: "";
    -webkit-transition: top 200ms, -webkit-transform 200ms;
    transition: top 200ms, -webkit-transform 200ms;
    transition: transform 200ms, top 200ms;
    transition: transform 200ms, top 200ms, -webkit-transform 200ms;
  }

  .global-nav-menu-item:before {
    top: -400%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .global-nav-menu-item:after {
    top: 400%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.open .global-nav-menu-item {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5vw;
  height: 2px;
  margin: -1px 0 0 -2.5vw;
  background: #2A2A60;
  background-color: transparent;
}

.open .global-nav-menu-item:before,
.open .global-nav-menu-item:after {
  top: 0;
}

.open .global-nav-menu-item:before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.open .global-nav-menu-item:after {
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.sp-nav {
  display: none;
}

@media only screen and (max-width: 640px) {
  .sp-nav {
    display: block;
  }

  .sp-nav-sub ul {
    padding: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .sp-nav-sub li {
    width: 50%;
  }

  .sp-nav-sub a {
    padding: 1rem 0.5rem 1rem 2rem;
    font-size: 1.5rem;
    color: #fff;
    text-align: left;
    font-weight: normal;
    display: block;
    position: relative;
    text-decoration: none;
  }

  .sp-nav-sub a:before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border: 0.1rem solid #fff;
    border-top: 0;
    border-right: 0;
    -webkit-transform: translateY(-100%) rotate(-135deg);
    transform: translateY(-100%) rotate(-135deg);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 640px) and (max-width: 640px) {
  .sp-nav-sub a:before {
    right: auto;
    left: 2vw;
  }
}

@media only screen and (max-width: 640px) {
  .sp-nav-sns {
    padding: 2.5rem 0;
    border-top: solid 1px rgba(0, 0, 0, 0.2);
  }

  .sp-nav-sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sp-nav-sns ul li {
    margin: 0 0.5rem;
    width: 3rem;
  }
}

@media only screen and (max-width: 640px) {
  .sp-nav-languages {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
  }

  .sp-nav-languages a {
    margin: 0 0.75rem;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 640px) {
  .sp-nav-link {
    padding: 4vw;
  }

  .sp-nav-link li {
    margin: 1rem auto;
    font-size: 2rem;
  }

  .sp-nav-link .green a {
    color: #fff;
    background: #38c180;
    padding: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
    text-align: center;
  }

  .sp-nav-link .green a img {
    margin-right: 0.5rem;
    width: 2.5rem;
    display: inline-block;
    vertical-align: middle;
  }

  .sp-nav-link .takasu a {
    color: #fff;
    background: rgb(228, 59, 134);
    padding: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
    text-align: center;
  }

  .sp-nav-link .takasu a img {
    margin-right: 0.5rem;
    width: 2.5rem;
    display: inline-block;
    vertical-align: middle;
  }
}

.main {
  width: 100%;
  min-width: 1200px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .main {
    padding-top: 14vw;
    min-width: 100%;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    overflow: hidden;
  }
}

section {
  padding: 3em 0;
  width: 100%;
  min-width: 1200px;
  position: relative;
  line-height: 1.8;
}

@media only screen and (max-width: 640px) {
  section {
    min-width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .content {
    padding: 4vw 0;
  }
}

.inner {
  margin: 0 auto;
  padding: 0 3rem;
  width: 1200px;
}

@media only screen and (max-width: 640px) {
  .inner {
    padding: 0 5vw;
    width: 100%;
  }
}

.content_inner figure {
  margin: 0 0 2rem;
}

#page_ttl {
  padding: 3rem 0 4rem;
  height: 498px;
  overflow: hidden;
  background: url(../../assets/img/common/bg_pagehead.jpg) center center no-repeat;
  color: #FFF;
}

@media only screen and (max-width: 640px) {
  #page_ttl {
    height: 50vw;
    background-size: cover;
  }
}

@media only screen and (max-width: 640px) {
  #page_ttl {
    padding: 2rem 1rem;
  }
}

#page_ttl .inner {
  position: relative;
  height: 100%;
}

#page_ttl h1,
#page_ttl .jp {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #FFF;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (max-width: 640px) {

  #page_ttl h1,
  #page_ttl .jp {
    font-size: 2rem;
  }
}

#page_ttl .en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10rem;
  opacity: 0.5;
  font-weight: 700;
  line-height: 1;
}

@media only screen and (max-width: 640px) {
  #page_ttl .en {
    font-size: 4rem;
  }
}

#pankuzu {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

#pankuzu ol {
  padding: 0em 0;
}

#pankuzu li {
  display: inline-block;
  color: #393FCE;
  font-size: 1.2rem;
}

#pankuzu li:after {
  content: ">";
  margin: 0 1em;
}

#pankuzu li:last-child:after {
  content: none;
}

.bg-footer {
  margin-top: -10rem;
  width: 100%;
  background: url(../img/common/bg_footer.jpg) no-repeat center center;
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 100% 30rem, 100% 107rem, 0 107rem);
  clip-path: polygon(0 0, 100% 30rem, 100% 107rem, 0 107rem);
  height: 107rem;
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 640px) {
  .bg-footer {
    margin-top: -5rem;
    background: url(../img/common/bg_footer.jpg) no-repeat center bottom;
    background-size: 150% auto;
    -webkit-clip-path: polygon(0 0, 100% 18vw, 100% 80vw, 0 80vw);
    clip-path: polygon(0 0, 100% 18vw, 100% 80vw, 0 80vw);
    height: 80vw;
  }
}

.floating-items {
  position: fixed;
  top: 13rem;
  right: 0;
  z-index: 5;
  width: 6rem;
}

@media only screen and (max-width: 640px) {
  .floating-items {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .floating-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.floating-list li {
  margin-bottom: 1rem;
  width: 23.5rem;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 641px) {
  .floating-list li {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@media only screen and (max-width: 640px) {
  .floating-list li {
    /* width: 25%; */
    width: 33.3333333333%;
  }
}

@media only screen and (max-width: 640px) {
  .floating-list li {
    margin-bottom: 0;
    /* width: 25%; */
    width: 33.3333333333%;
  }
}

@media only screen and (min-width: 641px) {
  .floating-list li:hover {
    -webkit-transform: translate(-17.5rem, 0);
    transform: translate(-17.5rem, 0);
  }
}

.floating-list li:hover a {
  opacity: 1;
}

.floating-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .floating-list li a {
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}

.floating-list li figure {
  width: 6rem;
  height: 6rem;
  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 only screen and (max-width: 640px) {
  .floating-list li figure {
    width: 40%;
  }
}

.floating-list li figure img {
  width: 4rem;
}

@media only screen and (max-width: 640px) {
  .floating-list li figure img {
    width: 2.4rem;
  }
}

.floating-list li.lift {
  background: rgba(73, 15, 205, 0.8);
}

.floating-list li.ticket {
  background: rgba(31, 59, 149, 0.8);
}

.floating-list li.ec {
  background: rgba(23, 131, 216, 0.8);
}

.floating-list li.reserve {
  background: rgba(18, 173, 221, 0.8);
}

.floating-list li.takasu {
  background: rgba(228, 59, 134, 0.8);
}

.floating-list li.hotel {
  background: rgba(128, 10, 209, 0.8);
}

@media only screen and (max-width: 640px) {
  .pr-bnr {
    padding: 3rem 0;
  }
}

.pr-bnr .inner {
  margin: 0 auto;
  width: 100%;
  max-width: 159.6rem;
  min-width: 1200px;
}

@media only screen and (max-width: 640px) {
  .pr-bnr .inner {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

.pr-bnr-list {
  margin: 0 -0.8rem;
  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;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .pr-bnr-list {
    margin: 0;
  }
}

.pr-bnr-list li {
  margin: 0.8rem;
  width: 24rem;
}

@media only screen and (max-width: 640px) {
  .pr-bnr-list li {
    margin: 1%;
    width: 48%;
  }
}

.footer {
  padding: 6rem 0 0;
  color: #fff;
  position: relative;
  z-index: 0;
  background: #2A2A60;
}

@media only screen and (max-width: 640px) {
  .footer {
    padding: 0 0 4rem;
  }
}

.footer>.inner {
  padding-bottom: 6rem;
}

@media only screen and (max-width: 640px) {
  .footer>.inner {
    padding: 0;
  }
}

.footer>.inner .logo {
  margin: 0 auto 0.75em;
  width: 380px;
}

.footer>.inner address {
  margin-bottom: 4em;
  display: block;
  font-size: 1.8rem;
  font-style: normal;
  line-height: 1.8;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer-nav-list {
  margin: 0 auto 3rem;
}

.footer-nav-list a,
.footer-nav-list span {
  display: block;
  text-decoration: none;
  color: #fff;
}

.footer-nav-list>li {
  padding: 1.5rem 0;
  font-size: 1.6rem;
  line-height: 1.2;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-nav-list>li>a {
  margin-top: 0.75rem;
  width: 16.6666666667%;
  font-weight: bold;
  display: inline-block;
}

.footer-nav-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 83.3333333333%;
}

.footer-nav-sub>li {
  margin: 0.75rem 0;
  width: 25%;
  font-size: 1.5rem;
}

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

.footer-nav-bottom li {
  margin: 0.5em 0;
  padding-right: 4rem;
}

.footer-nav-bottom li a {
  font-weight: bold;
}

@media only screen and (max-width: 640px) {
  .footer-nav {
    display: none;
  }
}

.footer-company {
  width: 38rem;
}

@media only screen and (max-width: 640px) {
  .footer-company {
    margin: 0 -5vw 5rem;
    padding: 10vw 5vw;
    width: auto;
    background: #2A2A60;
    text-align: center;
  }
}

.footer-company .logo {
  margin-bottom: 5rem;
}

@media only screen and (max-width: 640px) {
  .footer-company .logo {
    margin: 0 auto 5rem;
    width: 65%;
  }
}

.footer-company address {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 640px) {
  .footer-company address {
    margin-bottom: 1rem;
  }
}

.footer-company .tel {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
}

@media only screen and (max-width: 640px) {
  .footer-company .tel {
    margin-bottom: 3rem;
  }
}

.footer-company .sns {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 640px) {
  .footer-company .sns {
    margin-bottom: 4rem;
  }
}

.footer-company .sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 640px) {
  .footer-company .sns ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer-company .sns ul li {
  margin-right: 1.2rem;
}

.footer-company .sns ul li img {
  width: 2.4rem;
}

.footer-company .sns ul .green {
  margin-left: auto;
}

@media only screen and (max-width: 640px) {
  .footer-company .sns ul .green {
    margin-top: 4rem;
    width: 100%;
  }
}

.footer-company .sns ul .green a {
  color: #fff;
  background: #38c180;
  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;
  padding: 0.5rem 1rem;
  height: 100%;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.3rem;
}

@media only screen and (max-width: 640px) {
  .footer-company .sns ul .green a {
    padding: 1rem;
    display: block;
    text-align: center;
    font-size: 2rem;
  }
}

.footer-company .sns ul .green a img {
  margin-right: 0.5rem;
  width: 2.5rem;
  display: inline-block;
}

@media only screen and (max-width: 640px) {
  .footer-company .sns ul .green a img {
    margin-right: 1rem;
  }
}

.footer-company .copyright {
  font-size: 1.4rem;
}

.footer-related {
  padding: 7rem 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .footer-related {
    padding: 0;
  }
}

.footer-related .inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 640px) {
  .footer-related .inner {
    display: block;
  }
}

.footer-related-list {
  margin-left: 3rem;
  width: 27rem;
}

@media only screen and (max-width: 640px) {
  .footer-related-list {
    margin-left: 0;
    padding-bottom: 10vw;
    width: 100%;
  }
}

.footer-related-list h4 {
  margin-bottom: 0.75em;
  padding-bottom: 0.75em;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1;
  font-weight: bold;
}

.footer-related-list h4 img {
  margin-right: 0.5em;
  vertical-align: middle;
  display: inline-block;
}

.footer-related-list ul li {
  margin-bottom: 1em;
}

@media only screen and (max-width: 640px) {
  .footer-related-list ul li {
    margin-bottom: 0.5em;
  }
}

.footer-related-list ul li a {
  padding-left: 1.25em;
  display: inline-block;
  position: relative;
}

.footer-related-list ul li a:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
  display: inline-block;
}

.txtlink a:link,
a:visited {
  text-decoration: underline;
}

.txtlink a:hover,
a:active {
  text-decoration: none;
}