@charset "UTF-8";
/* IEハック用mixin */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
@import url("https://fonts.googleapis.com/earlyaccess/roundedmplus1c.css");
@-ms-viewport {
  width: auto;
  initial-scale: 1;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* background-color: inherit; */
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  height: 100%;
  min-width: 320px;
  line-height: 1.8;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", Meiryo, "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  color: #333;
  margin: 0;
  padding-top: 60px;
  -ms-font-feature-settings: "normal";
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body {
    /* IE10以上 */
    font-family: Meiryo, "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  }
}
body.overflow {
  overflow: hidden;
}

body.home {
  padding-top: 0px !important;
}

#wrap {
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
}

.js #wrap {
  visibility: hidden;
}

.no-js #wrap {
  visibility: visible;
}

a {
  text-decoration: none;
  color: #004191;
  outline: none;
}

a:hover {
  color: #fccc00;
}

hr {
  border: medium none;
  display: block;
  height: 1px;
  margin: 50px 0;
  width: 100%;
  background-color: #ccc;
}

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

.container {
  max-width: calc(1000px + 10vw);
  padding-left: 5vw;
  padding-right: 5vw;
}

.container-slim {
  max-width: calc(860px + 10vw);
  padding-left: 5vw;
  padding-right: 5vw;
  margin: 0 auto;
}

.linkBox-img {
  overflow: hidden;
}

.linkBox-img img {
  transition: all 0.5s ease 0s;
}

.linkBox-img img:hover {
  opacity: 0.5;
  transform: scale(1.1, 1.1);
}

a.button:link, .button:visited {
  width: 100%;
  max-width: 20em;
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 14px 15px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: .08em;
  border-radius: 5px;
  line-height: 1.2;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 998;
}

a.button:link:after, a.button:visited:after {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 150%;
  z-index: -1;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

a.button:link:hover, a.button:visited:hover {
  color: #FFF;
  text-shadow: none;
}

a.button:link:hover:after, a.button:visited:hover:after {
  height: 450%;
}

a.button-green {
  border: 2px solid #00B59D;
  border-radius: 5px;
  color: #00B59D;
}

a.button-green:after {
  background: #00B59D;
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
  transform: translateX(-50%) translateY(-50%) rotate(-25deg);
}

/**********************************************************************************
* #header
**********************************************************************************/
#header {
  background-color: #fff;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.header-inner {
  height: 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#header-logo {
  margin-right: auto;
  -webkit-align-self: center;
  align-self: center;
  padding-left: 20px;
  padding-right: 20px;
}
#header-logo a {
  display: block;
}
#header-logo a img {
  width: 100%;
  max-width: 244px;
  line-height: 1;
  vertical-align: middle;
}

#header-contactbtn a {
  color: #fff;
  height: 100%;
  transition: 0.3s ease;
  padding: 0.6em;
  background-color: #ffb400;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #header-contactbtn a {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
#header-contactbtn a:hover {
  background-color: #fccc00;
  color: #fff;
}
#header-contactbtn a i {
  font-size: 26px;
  font-size: 2.6rem;
  margin-right: 5px;
  line-height: 1;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #header-contactbtn a i {
    display: block;
    margin-right: 0px;
    margin-bottom: 2px;
  }
}
#header-contactbtn a span {
  line-height: 1;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  white-space: nowrap;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #header-contactbtn a span {
    display: block;
    font-size: 10px;
    font-size: 1rem;
    font-weight: normal;
  }
}

/*  BURGER
========================================== */
.burger {
  width: 55px;
  background-color: #004191;
  position: relative;
  z-index: 10;
}
.burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -1.5px;
}
.burger span, .burger span::before, .burger span::after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.burger span::before, .burger span::after {
  position: absolute;
  content: "";
}
.burger span::before {
  top: -9px;
}
.burger span::after {
  top: 9px;
}
.burger.clicked span {
  background-color: transparent;
}
.burger.clicked span::before {
  -webkit-transform: translateY(9px) rotate(45deg);
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.burger.clicked span::after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -moz-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}
.burger:hover {
  cursor: pointer;
}

/*  #spnavi
========================================== */
#spnavi {
  background-color: #004191;
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 500px;
  width: 100%;
  padding: 100px 40px 60px 40px;
  overflow-y: auto;
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-transition: -moz-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: -o-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
#spnavi.show {
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
#spnavi.show ul.sp-main li {
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}
#spnavi.show ul.sp-main li:nth-child(1) {
  transition-delay: 0.15s;
}
#spnavi.show ul.sp-main li:nth-child(2) {
  transition-delay: 0.3s;
}
#spnavi.show ul.sp-main li:nth-child(3) {
  transition-delay: 0.45s;
}
#spnavi.show ul.sp-main li:nth-child(4) {
  transition-delay: 0.6s;
}
#spnavi.show ul.sp-main li:nth-child(5) {
  transition-delay: 0.75s;
}
#spnavi.show ul.sp-main li:nth-child(6) {
  transition-delay: 0.9s;
}
#spnavi.show ul.sp-main li:nth-child(7) {
  transition-delay: 1.05s;
}
#spnavi.show ul.sp-main li:nth-child(8) {
  transition-delay: 1.2s;
}
#spnavi.show ul.sp-main li:nth-child(9) {
  transition-delay: 1.35s;
}
@media screen and (min-width: 768px) {
  #spnavi {
    display: none;
  }
}
#spnavi ul.sp-main {
  list-style-type: none;
}
#spnavi ul.sp-main li {
  margin-bottom: 5px;
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#spnavi ul.sp-main li:last-of-type {
  margin-bottom: 0px;
}
#spnavi ul.sp-main li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  display: block;
  letter-spacing: 5px;
  font-weight: 600;
  padding: 10px 0;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#spnavi ul.sp-main li a:hover {
  color: #fccc00;
}
#spnavi ul.sp-sub {
  list-style-type: none;
  margin-top: 40px;
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#spnavi ul.sp-sub li {
  margin-bottom: 10px;
}
#spnavi ul.sp-sub li:last-of-type {
  margin-bottom: 0px;
}
#spnavi ul.sp-sub li a {
  color: #fff;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#spnavi ul.sp-sub li a:hover {
  color: #fccc00;
}

/*  OVERLAY
========================================== */
.sp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fccc00;
  opacity: 0;
  visibility: hidden;
}
.sp-overlay.show {
  opacity: 0.8;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .sp-overlay {
    display: none;
  }
}

/**********************************************************************************
* #topHero
**********************************************************************************/
#topHero {
  overflow: hidden;
  background-image: url(../images/hero-back.jpg);
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  height: 800px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #topHero {
    height: 600px;
  }
}
@media screen and (max-width: 576px) {
  #topHero {
    height: 400px;
  }
}

.hero-txt {
  position: relative;
  z-index: 1;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}

.hero-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 100%;
  max-width: 1000px;
}

.hero-img img {
  width: 100%;
  max-width: inherit;
}

/**********************************************************************************
* 共通
**********************************************************************************/
.merit-sec {
  padding-top: 60px;
  padding-bottom: 60px;
}
.merit-sec:nth-child(even) {
  background-color: white;
}
@media screen and (max-width: 768px) {
  .merit-sec {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.merit-sec .section-title {
  font-weight: bold;
  line-height: 1.4;
  font-feature-settings: "palt";
  text-align: center;
  margin-bottom: 1em;
  color: #004191;
  font-family: "Noto Sans JP","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", Meiryo, "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
}
.merit-sec .subTxt {
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .merit-sec .subTxt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .merit-sec .subTxt {
    font-size: 1.6rem;
  }
}
.merit-sec .mainTxt {
  display: block;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .merit-sec .mainTxt {
    font-size: 4rem;
  }
}
@media screen and (max-width: 576px) {
  .merit-sec .mainTxt {
    font-size: 3rem;
  }
}

.merit-sec .section-midashi {
  font-weight: bold;
  line-height: 1.4;
  background: #004191;
  padding: 0.2em 0.6em;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  .merit-sec .section-midashi {
    font-size: 1.8rem;
  }
}
.merit-sec h3:not([class]) {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 2px solid #999;
  margin: 1.5em 0 0.4em;
  position: relative;
  padding: 0.2em 0 0.2em 10px;
}
@media screen and (max-width: 768px) {
  .merit-sec h3:not([class]) {
    font-size: 1.6rem;
  }
}
.merit-sec h3:not([class])::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 5px;
  background-color: #004191;
  height: 100%;
}
.merit-sec [class*="col-"] > *:first-child {
  margin-top: 0 !important;
}

.floorGuideNavi {
  counter-reset: my-counter;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-left: -5px;
  margin-right: -5px;
}
.floorGuideNavi li {
  width: 50%;
  padding: 0 5px;
  margin-bottom: 10px;
}
.floorGuideNavi li a {
  transition: all 0.3s ease;
}
.floorGuideNavi .naviCard-title {
  font-size: 1.6rem;
  line-height: 1.2;
  background-color: #004191;
  color: #fff;
  padding: 0.4em 0.5em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .floorGuideNavi .naviCard-title {
    font-size: 1.4rem;
  }
}
.floorGuideNavi .naviCard-title span {
  position: relative;
  padding-left: 1.4em;
}
.floorGuideNavi .naviCard-img {
  transition: all 0.3s ease;
}
.floorGuideNavi .naviCard-txt {
  background-color: #e3e3e3;
  padding: 0.4em 0.5em;
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .floorGuideNavi .naviCard-txt {
    font-size: 1.2rem;
  }
}
.floorGuideNavi li a:hover .naviCard-img {
  opacity: 0.8;
}
.floorGuideNavi li a:hover .naviCard-txt {
  background-color: #fccc00;
  color: #fff;
}

/**********************************************************************************
*.popupBox
**********************************************************************************/
.popupBox {
  background-color: #fff;
  padding: 30px;
}
@media screen and (max-width: 576px) {
  .popupBox {
    padding: 15px;
  }
}
.popupBox .popupBox-inner {
  background-color: #fff;
  padding: 30px;
}
@media screen and (max-width: 576px) {
  .popupBox .popupBox-inner {
    padding: 15px;
  }
}

.popupBox-title {
  font-size: 1.6rem;
  line-height: 1.2;
  background-color: #ffb400;
  color: #fff;
  padding: 0.4em 0.5em;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .popupBox-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

.popupBox-title span {
  position: relative;
  padding-left: 1.4em;
}

.popupBox-title span:before {
  background-color: #fff;
  color: #ffb400;
  display: block;
  position: absolute;
  left: 0;
  top: -0.05em;
  line-height: 1.2em;
  text-align: center;
  height: 1.2em;
  width: 1.2em;
  border-radius: 50%;
}

#pop-io .popupBox-title span:before {
  content: "1";
}

#pop-ex1 .popupBox-title span:before {
  content: "2";
}

#pop-ex2 .popupBox-title span:before {
  content: "3";
}

#pop-vip .popupBox-title span:before {
  content: "4";
}

#pop-cafe .popupBox-title span:before {
  content: "5";
}

.popupBox-midashi {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.popupBox .popup-modal-dismiss {
  margin-top: 20px;
  text-align: right;
}

.popupBox .popup-modal-dismiss a {
  background-color: #ffb400;
  color: #fff;
  font-weight: bold;
  padding: 0.5em 1em;
  line-height: 1;
  border-radius: 2em;
}

/**********************************************************************************
*#merit01
**********************************************************************************/
@media screen and (max-width: 768px) {
  .eraberuCard {
    margin-bottom: 40px;
  }
}
.eraberuCard .eraberuCard-imgArea {
  position: relative;
}
.eraberuCard .eraberuCard-imgArea::after {
  display: block;
  content: "";
  background: url("../images/eraberu-arrow.png") no-repeat center bottom;
  width: 100%;
  height: 15px;
  margin: 10px 0 10px;
}
.eraberuCard .eraberuCard-imgArea-title {
  background-color: #004191;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  padding: 0.5em 1em;
  font-size: 1.6rem;
}
.eraberuCard .eraberuCard-imgArea-img img {
  width: 100%;
  max-width: inherit;
}
.eraberuCard .eraberuCard-mapArea-title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #ffb400;
  margin-bottom: 0.5em;
  text-align: center;
}
.eraberuCard .eraberuCard-mapArea-map {
  text-align: center;
}

/**********************************************************************************
*#merit04
**********************************************************************************/
.box-setsubi {
  background-color: #f0f0f1;
  padding: 20px;
}
.box-setsubi dl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.box-setsubi dl + dl {
  margin-top: 10px;
}
.box-setsubi dl dt {
  background-color: #004191;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  padding: 0.4em;
  font-size: 1.8rem;
}
.box-setsubi dl dd {
  padding: 0 10px;
}
.box-setsubi ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1em;
}

/**********************************************************************************
* #hallExample
**********************************************************************************/
#hallExample {
  background-color: #004191;
  padding: 60px 0;
}

#hallExample .hallExample-title {
  font-size: 3.4rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #fff;
  text-align: center;
}

#hallExample .tabtitle {
  background-color: #004191;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
  padding: 0.3em 1em;
  margin-bottom: 0.5em;
}

#hallExample .tabmidashi {
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 2px solid #999;
  margin: 1.5em 0 0.8em;
  position: relative;
  padding: 0.2em 0 0.2em 10px;
}
@media screen and (max-width: 768px) {
  #hallExample .tabmidashi {
    font-size: 1.6rem;
  }
}
#hallExample .tabmidashi::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 5px;
  background-color: #ffb400;
  height: 100%;
}

/* TABS */
.accordion-tabs {
  *zoom: 1;
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 0.1875em;
  margin-bottom: 1.5em;
  margin-left: 0;
  padding-left: 0;
}

.accordion-tabs:before,
.accordion-tabs:after {
  content: " ";
  display: table;
}

.accordion-tabs:after {
  clear: both;
}

.accordion-tabs li {
  list-style: none;
}

.accordion-tabs li.tab-head-cont:first-child a {
  border-top-left-radius: 0.1875em;
  border-top-right-radius: 0.1875em;
  border-top: 0;
}

.accordion-tabs li.tab-head-cont:last-child a {
  border-bottom-left-radius: 0.1875em;
  border-bottom-right-radius: 0.1875em;
}

.accordion-tabs li.tab-head-cont a {
  text-decoration: none;
  border-top: 1px solid #dddddd;
  display: block;
  padding: 0.75em 0.809em;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  background-color: #0058c4;
  color: #fff;
}

.accordion-tabs li.tab-head-cont a br {
  display: none;
}

.accordion-tabs li.tab-head-cont a:hover {
  background-color: #fccc00;
}

.accordion-tabs li.tab-head-cont a:focus {
  outline: none;
}

.accordion-tabs li.tab-head-cont a.is-active {
  border-bottom: 0;
  color: #fff;
  background-color: #5ea6ff;
}

.accordion-tabs li.tab-head-cont section {
  padding: 4vw;
  background: #fff;
  display: none;
  overflow: hidden;
  width: 100%;
}

/* RESPONSIVE */
@media screen and (min-width: 40em) {
  .accordion-tabs {
    border: none;
    position: relative;
  }

  .accordion-tabs li.tab-head-cont {
    display: inline;
  }

  .accordion-tabs li.tab-head-cont:last-child a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .accordion-tabs li.tab-head-cont a {
    display: inline-block;
    vertical-align: baseline;
    zoom: 1;
    *display: inline;
    *vertical-align: auto;
    border-top: 0;
    border-top-right-radius: 0.1875em;
    border-top-left-radius: 0.1875em;
    background-color: #0058c4;
    color: #fff;
  }

  .accordion-tabs li.tab-head-cont a br {
    display: inline;
  }

  .accordion-tabs li.tab-head-cont a.is-active {
    background-color: #fff;
    margin-bottom: -1px;
    color: #000;
  }

  .accordion-tabs li.tab-head-cont section {
    border-bottom-left-radius: 0.1875em;
    border-bottom-right-radius: 0.1875em;
    border: 1px solid #dddddd;
    float: left;
    left: 0;
    padding: 20px;
  }
}
/**********************************************************************************
#topAbout
**********************************************************************************/
#topAbout {
  padding: 60px 0;
  background-color: #f0f0f1;
}
#topAbout .topAbout-title {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: center;
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #topAbout .topAbout-title {
    font-size: 2rem;
  }
}
#topAbout .topAbout-title::before {
  position: absolute;
  height: 2px;
  width: 100px;
  background-color: #004191;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
  content: "";
  display: block;
}
#topAbout h4 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
  color: #004191;
  margin-bottom: 0.3em;
}
#topAbout .whiteBox {
  background-color: #fff;
  padding: 20px;
}
#topAbout .whiteBox h5 {
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.6rem;
  margin-bottom: 0.3em;
  color: #004191;
}
#topAbout .whiteBox table tr {
  margin-bottom: 10px;
}
#topAbout .whiteBox table tr th, #topAbout .whiteBox table tr td {
  padding: 0.2em 0.5em;
}
#topAbout .whiteBox table tr th {
  font-weight: bold;
  width: 6em;
  text-align: left;
}

/**contact-box********************/
.contact-box {
  background: #ffb400;
  background-size: cover;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .contact-box {
    padding: 20px 0;
  }
}

.contact-box-txt {
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .contact-box-txt {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.contact-box-txt br {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact-box-txt br {
    display: block;
  }
}

.contact-box-btn {
  text-align: center;
}

.contact-box-btn a {
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  background-color: #004191;
  padding: 1em 2em;
  line-height: 1;
  border-radius: 1.5em;
  display: inline-block;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=0, Color='#000000');
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact-box-btn a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.contact-box-btn a:hover {
  color: #004191;
  background-color: #fff;
}

.contact-box-btn a i {
  font-size: 130%;
  margin-right: 0.2em;
  vertical-align: central;
}

#footer {
  background-color: #004191;
  padding: 30px 0;
  color: #fff;
}

#footer-logo {
  margin-bottom: 10px;
}

#footer-logo a {
  display: inline-block;
}

.footer-address {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
}

#footer-navi {
  padding-left: 0;
}

#footer-navi li {
  display: inline-block;
  margin-left: 0;
  margin-right: 1em;
  padding-left: 0;
}
#footer-navi li::before {
  display: none;
}

#footer-navi li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
}

#footer-navi li a:hover {
  text-decoration: none;
  color: #fccc00;
}

#footer-navi li a:before {
  content: "\f0da";
  font-family: 'FontAwesome';
  display: inline-block;
  text-rendering: auto;
  margin-right: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#copy {
  font-size: 12px;
  text-align: center;
  margin-top: 15px;
}

/* =========================================================
.pagetop
========================================================= */
.pagetop {
  background-color: #004191;
  bottom: 10px;
  display: inline-block;
  position: fixed;
  right: 10px;
  transform: translate3d(0px, 50px, 0px);
  transition-duration: 0.3s;
  visibility: hidden;
  z-index: 999;
  padding: 1em;
  line-height: 1;
  border-radius: 1.5em;
  border: 1px solid #fff;
  color: #fff !important;
}
.pagetop:hover {
  background-color: #fccc00;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.pagetop.backtotop-visible {
  transform: translate3d(0px, 0px, 0px);
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  visibility: visible;
}
.pagetop.backtotop-visible:hover {
  background-color: #fccc00;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.box-ami {
  background-color: #ffb400;
  padding: 20px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

/* =========================================================
.inview & animation
========================================================= */
body:not(.wp-admin) [class*="inview_"] {
  opacity: 0;
}

.invew_title span, .animate__animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media print, (prefers-reduced-motion: reduce) {
  .invew_title span,
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
.inview
========================================================= */
/*============================
textileflip
============================*/
.inview_textyle {
  opacity: 0;
}

.inview_textyle span {
  position: relative;
  top: 10px;
  left: 10px;
  opacity: 0;
}

/*============================
animate.css
============================*/
@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 50%, 0);
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 50%, 0);
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate_fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate_fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1 !important;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate_zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.anime_delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.anime_delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.anime_delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.anime_delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.anime_delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.anime_faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.anime_fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.anime_slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.anime_slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

/*============================
全体のアニメ完了フラグ
============================*/
.animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    -webkit-transition: none !important;
    animation: unset !important;
    transition: none !important;
  }
}
