@charset "UTF-8";
/* IEハック用mixin */
@-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%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  height: 100%;
  overflow: auto;
  min-width: 320px;
  line-height: 1.8;
  font-size: 14px;
  font-size: 1.4rem;
  overflow-x: hidden;
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Hiragino Sans , Hiragino Kaku Gothic ProN, 'ヒラギノ角ゴ ProN W3',"游ゴシック体", YuGothic, "Yu Gothic M", "Yu Gothic Medium", Meiryo, 'メイリオ','ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #333;
  margin: 0;
}

body.overflow {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: inherit;
  }
}

@media screen and (max-width: 896px) {
  .lg-only {
    display: none !important;
  }
}

a {
  text-decoration: none;
  outline: none;
  display: inline-block;
  color: #981c5b;
}

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;
}

/* 色 */
.color-main {
  color: #981c5b;
}

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

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

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

.flex {
  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: space-between;
  justify-content: space-between;
}

/* =========================================================
共通
========================================================= */
.merit-sec {
  padding: 60px 0;
}
@media screen and (max-width: 480px) {
  .merit-sec {
    padding: 30px 0;
  }
}

.merit-sec:nth-child(even) {
  background-color: #fbebf3;
}

.section-title {
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  font-family: "Noto Sans JP","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", Meiryo, "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
}

.subTxt {
  font-size: 2.0rem;
  display: block;
}

.mainTxt {
  font-size: 5.0rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .mainTxt {
    font-size: 4.0rem;
  }
}
@media screen and (max-width: 480px) {
  .mainTxt {
    font-size: 3.0rem;
  }
}

.merit-sec h3:not([class]), .section-midashi {
  background-color: #981c5b;
  color: #fff;
  font-size: 2.0rem;
  text-align: center;
  font-weight: bold;
  padding: 0.2em;
  margin: 1em 0 0.6em;
}
@media screen and (max-width: 480px) {
  .merit-sec h3:not([class]), .section-midashi {
    font-size: 1.6rem;
    padding: 0.2em 0.4em;
  }
}

.merit-sec h4:not([class]) {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 2px solid #999;
  color: #981c5b;
  margin: 1.5em 0 0.8em;
  padding: 0.2em 0.6em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .merit-sec h4:not([class]) {
    font-size: 1.6rem;
  }
}

.merit-sec h4:not([class])::before {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background-color: #981c5b;
  top: 0;
  left: 0;
}

/* =========================================================
その他
========================================================= */
.planBox {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
}

.planBox p {
  font-weight: bold;
}

.box-ami {
  background-color: #efefef;
}

.box-ami p {
  font-weight: bold;
  font-size: 1.6rem;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .box-ami p {
    font-size: 1.4rem;
  }
}

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

.header-inner {
  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;
}

#header-logo {
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  align-self: center;
}

#header-logo a {
  display: block;
}

/* contactBtn */
#header-contactBtn a {
  color: #fff;
  background-color: #d58fb9;
  text-align: center;
  display: block;
  padding: 0.6em;
}

#header-contactBtn a:hover {
  background-color: #fccc00;
}

#header-contactBtn i {
  margin-right: 5px;
  font-size: 2.6rem;
  line-height: 1;
  vertical-align: middle;
}

#header-contactBtn span {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #header-contactBtn span {
    display: block;
    font-size: 1.0rem;
  }
}

/* ==============
gnavi
================= */
#gnavi {
  background-color: #981c5b;
}
@media screen and (max-width: 768px) {
  #gnavi {
    display: none;
  }
}

#gnavi ul {
  padding: 1em 0;
  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: space-around;
  justify-content: space-around;
}

#gnavi ul li {
  width: 100%;
  border-right: 1px solid #fff;
}

#gnavi ul li:first-child {
  border-left: 1px solid #fff;
}

#gnavi ul li a {
  color: #fff;
  line-height: 1.2;
  display: table;
  text-align: center;
  width: 100%;
  height: 40px;
  font-weight: bold;
}

#gnavi ul li a span {
  display: table-cell;
  width: 100%;
  height: 40px;
  vertical-align: middle;
}

#gnavi ul li a:hover {
  opacity: 0.8;
}

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

/* ==============
#spnavi
================= */
#spnavi {
  list-style-type: none;
  opacity: 1;
  visibility: visible;
  overflow: auto;
  display: none;
}
#spnavi.open {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  #spnavi {
    position: fixed;
    top: 50px;
    left: 0;
    display: block;
    background-color: #981c5b;
    margin: auto;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    padding: 40px 30px;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
  }
}

#spnavi li {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

#spnavi li a {
  display: block;
  width: 100%;
  padding: 1em 2em;
  margin: 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
}

/* =========================================================
#toggle-menu
========================================================= */
.toggle-menu {
  background-color: #981c5b;
  border: none;
  cursor: pointer;
  float: right;
  outline: none;
  padding: 0;
  pointer-events: initial;
  position: relative;
  vertical-align: middle;
  width: 53px;
  z-index: 999;
  display: none;
}
@media screen and (max-width: 768px) {
  .toggle-menu {
    display: inline-flex;
  }
}
.toggle-menu span {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  left: calc(50% - 13px );
  position: absolute;
  top: calc(50% - 1px );
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear;
  width: 26px;
}
.toggle-menu span:before, .toggle-menu span:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out,  transform 0.2s linear;
  width: 26px;
}
.toggle-menu span:before {
  top: 7px;
}
.toggle-menu span:after {
  top: -7px;
}
.toggle-menu.active span {
  background-color: transparent;
  transition: background 0.2s ease-out;
}
.toggle-menu.active span:before, .toggle-menu.active span:after {
  transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
}
.toggle-menu.active span:before {
  top: 0;
  transform: rotate3d(0, 0, 1, -45deg);
}
.toggle-menu.active span:after {
  top: 0;
  transform: rotate3d(0, 0, 1, 45deg);
}

/* =========================================================
#contents
========================================================= */
/* =========================================================
#topHero
========================================================= */
#topHero {
  position: relative;
  background-image: url(../images/hero-back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 50%;
  width: 100%;
  height: 800px;
}
@media screen and (max-width: 768px) {
  #topHero {
    height: 400px;
    margin-bottom: 180px;
  }
}
@media screen and (max-width: 480px) {
  #topHero {
    height: 34.426vh;
  }
}

.hero-txt {
  position: absolute;
  bottom: 50%;
  transform: translate(0%, 50%);
  -webkit-transform: translate(0%, 50%);
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .hero-txt {
    padding: 20px 0;
    bottom: 0%;
    transform: translate(0%, 100%);
    -webkit-transform: translate(0%, 100%);
    text-align: center;
  }
}

.hero-txt span {
  display: block;
}

.hero-img {
  position: absolute;
  left: 0;
  bottom: 0%;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  width: 50vw;
  z-index: 1;
}

/* =========================================================
#testExample
========================================================= */
#testExample {
  background-color: #981c5b;
  padding: 60px 0;
}

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

#testExample .tabTitle {
  background-color: #981c5b;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.4em 0.8em;
  margin-bottom: 1em;
}

#testExample section {
  background-color: #fff;
  padding: 20px;
}

/* TABS */
.accordion-tabs {
  *zoom: 1;
  display: table;
}

.tab-head-cont {
  flex-grow: 1;
  padding: 1em 0.4em;
  list-style: none;
  text-align: center;
  cursor: pointer;
  display: table-cell;
  vertical-align: middle;
  background-color: #d58fb9;
  border-top-left-radius: 0.2em;
  border-top-right-radius: 0.4em;
  line-height: 1.0;
  font-weight: bold;
  border-right: 4px solid #981c5b;
}

.tab-head-cont:last-child {
  border-right: none;
}

.panel-group {
  border-top: none;
  background: #eee;
}

.panel {
  display: none;
}

.tab-head-cont.is-active {
  background-color: #fff;
  color: #000;
  transition: all 0.2s ease-out;
}

.panel.is-show {
  display: block;
}

/* =========================================================
#topAccess
========================================================= */
#topAccess {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  #topAccess {
    padding: 30px 0;
  }
}

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

#access-map {
  margin-bottom: 30px;
}

#access-map figcaption {
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

#access-midashi {
  color: #981c5b;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #access-midashi {
    font-size: 2.0rem;
  }
}

#access-transportation {
  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: space-between;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-left: -10px;
  margin-right: -10px;
}

#access-transportation dl {
  width: 50%;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  #access-transportation dl {
    width: 100%;
    font-size: 1.6rem;
  }
}

#access-transportation dl i {
  color: #fccc00;
}

#access-transportation dl dt {
  background-color: #981c5b;
  color: #fff;
  padding: 0.5em 1em;
}

#access-transportation dl dd {
  background-color: #efefef;
  padding: 0.5em 1em;
}

/* google map */
#access-btn {
  text-align: center;
  margin-bottom: 30px;
}

#access-btn a {
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  background-color: #981c5b;
  padding: 1em 2em;
  line-height: 1;
  border-radius: 1.5em;
  display: inline-block;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  #access-btn a {
    font-size: 1.6rem;
  }
}

#access-btn a:hover {
  color: #fff;
  background-color: #fccc00;
}

/* #access-dataBox */
#access-dataBox {
  background-color: #fff;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  #access-dataBox {
    padding: 20px 15px;
  }
}

#access-dataBox h4 {
  color: #981c5b;
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.2;
}

#access-dataBox-table th {
  width: 6.5em;
  display: block;
  text-align: left;
  font-weight: bold;
}
#access-dataBox-table th:before {
  color: #981c5b;
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.2em;
}

/* =========================================================
.contact-box
=========================================================*/
.contact-box {
  background-color: #d58fb9;
  padding: 40px 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.8rem;
  }
}

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

.contact-box-btn a {
  color: #981c5b;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  background-color: #fccc00;
  padding: 1em 2em;
  line-height: 1;
  border-radius: 1.5em;
  display: inline-block;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .contact-box-btn a {
    font-size: 1.6rem;
  }
}

.contact-box-btn a:hover {
  color: #fff;
  background-color: #981c5b;
  opacity: 0.8;
}

/* =========================================================
#pagetop backtotop
========================================================= */
.pagetop {
  width: 3em;
  height: 3em;
  background-color: #981c5b;
  bottom: 30px;
  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;
  color: #fff !important;
  border: 1px solid #fff;
}

.pagetop i {
  text-align: center;
  width: 1em !important;
}

.pagetop:hover {
  /*	background-color: $color-back;*/
  opacity: 0.8;
  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: $color-back;*/
  opacity: 0.8;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  background-color: #fccc00;
}

/* =========================================================
#footer
=========================================================*/
#footer {
  background-color: #000;
  padding: 30px 0;
  color: #fff;
}

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

#footer-logo:hover {
  opacity: 0.8;
}

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

.footer-address {
  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: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 0.1em;
}

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

/* =========================================================
Headline Animation
========================================================= */
.text-effect .char {
  display: inline-block;
  -webkit-animation-delay: calc(0.25s + var(--char-index) * 0.1s);
  animation-delay: calc(0.25s + var(--char-index) * 0.1s);
  transition: all 0.25s calc(0.25s + var(--char-index) * 0.1s);
}

.text-effect[data-scroll='out'] .char {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.effect-zoom {
  -webkit-animation-duration: 0.5s !important;
  -webkit-animation-fill-mode: both;
  animation-duration: 0.5s !important;
  animation-fill-mode: both;
}

.effect-block[data-scroll='out'] {
  visibility: hidden;
}

.effect-block[data-scroll='in'] {
  overflow: hidden;
  position: relative;
  background-color: transparent;
  -webkit-animation: backcolor 0.5s ease 0.5s normal both;
  animation: backcolor 0.5s ease 0.5s normal both;
}

.effect-block[data-scroll='in'] span {
  transition-delay: 1s;
}

.effect-block[data-scroll='in']::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fccc00;
  -webkit-animation: block 0.5s ease 0.5s normal both;
  animation: block 0.5s ease 0.5s normal both;
}

@-webkit-keyframes backcolor {
  0% {
    visibility: hidden;
  }
  44% {
    visibility: hidden;
  }
  45%, 55% {
    background-color: rgba(152, 28, 91, 0);
    visibility: visible;
  }
  100% {
    background-color: #981c5b;
  }
}
@keyframes backcolor {
  0% {
    opacity: 0;
  }
  44% {
    opacity: 0;
  }
  45%, 55% {
    background-color: rgba(152, 28, 91, 0);
    opacity: 1;
  }
  100% {
    background-color: #981c5b;
  }
}
@-webkit-keyframes block {
  0% {
    -webkit-transform: translate(-110%, 0);
    transform: translate(-110%, 0);
  }
  45%, 55% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(110%, 0);
    transform: translate(110%, 0);
  }
}
@keyframes block {
  0% {
    -webkit-transform: translate(-110%, 0);
    transform: translate(-110%, 0);
  }
  45%, 55% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(110%, 0);
    transform: translate(110%, 0);
  }
}
/* モーダルCSSここから */
.modalArea {
  visibility: hidden;
  /* displayではなくvisibility */
  opacity: 0;
  position: fixed;
  z-index: 99999;
  /* サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .4s;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-width: 1000px;
  padding: 10px 30px;
  background-color: #fff;
  overflow: auto;
}

.closeModal {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
  width: 1em;
  text-align: center;
}

.is-show {
  /* モーダル表示用クラス */
  visibility: visible;
  opacity: 1;
}

/* モーダルCSSここまで */
/* 以下ボタンスタイル */
#openModal {
  position: relative;
  cursor: pointer;
  padding: 1em 1em 1em 2em;
  background-color: #981c5b;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  line-height: 1.2;
}
#openModal::before {
  position: absolute;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-right: 0.1em;
  left: 17px;
  top: 50%;
  transform: translate(0%, -50%);
}
#openModal:hover {
  background-color: #fccc00;
}

.coronataisaku-kakomi {
  background-color: #fff983;
  padding: 20px;
  color: black;
}
.coronataisaku-kakomi h5 {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.4;
}
.coronataisaku-kakomi ul {
  list-style-type: disc;
  padding-left: 1.2em;
}
