@import url(reset.css);
@import url(helper.css);
@import url(wysiwyg.css);
/* =========================================================
MEDIA
========================================================= */
@media (max-width: 768px) {
  .pc-visible {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}

/* =========================================================
animation
========================================================= */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

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

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeRe01 {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeRe01 {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.2, 0.2, 0.2);
    transform: scale3d(0.2, 0.2, 0.2);
  }
  20% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
  }
  40% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  60% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.2, 0.2, 0.2);
    transform: scale3d(0.2, 0.2, 0.2);
  }
  20% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
  }
  40% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  60% {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn.active {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* =========================================================
common
========================================================= */
html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: 'Noto Sans JP', 'Hind', sans-serif;
  font-weight: 400;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  color: #000000;
  background: #F0EFEA;
  letter-spacing: 0.11em;
}

img {
  width: 100%;
  vertical-align: top;
}

@media print {
  html,
  body {
    _zoom: 70% !important;
  }
}

main {
  display: block;
  /*IE*/
}

a {
  text-decoration: none;
  outline: none;
}

#page {
  opacity: 0;
}

#page__wrap {
  position: relative;
}

.body_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.js-show.card__item {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.js-show.card__item.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* =========================================================
  header
========================================================= */
.header {
  width: 100%;
}

.header__main {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: #FFFFFF;
  z-index: 300;
  -webkit-transition: top .5s;
  transition: top .5s;
}

@media screen and (max-width: 768px) {
  .header__main {
    position: absolute;
  }
}

.header__main .header__wrap {
  position: relative;
  height: 50px;
  padding: 0 30px;
  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;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 1200px) {
  .header__main .header__wrap {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .header__main .header__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 80px;
    padding: 0;
  }
}

.header__main .header__logo {
  max-width: 223px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 1200px) {
  .header__main .header__logo {
    max-width: 190px;
  }
}

@media screen and (max-width: 768px) {
  .header__main .header__logo {
    padding: 8px 0;
  }
}

@media screen and (min-width: 769px) {
  .header__main .header__logo:hover {
    opacity: .7;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
}

.header__main .header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__main .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__main .nav__item {
  position: relative;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.header__main .nav__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2em;
  line-height: 1.25;
  letter-spacing: 0.11em;
  color: #000000;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 1200px) {
  .header__main .nav__item__link {
    font-size: 1.0em;
  }
}

@media screen and (max-width: 768px) {
  .header__main .nav__item__link {
    line-height: 1.3;
  }
}

.header__main .nav__item__icon--01 {
  width: 11px;
  height: 13px;
}

.header__main .nav__item__icon--02 {
  width: 14px;
  height: 12px;
}

.header__main .nav__item__icon--03 {
  width: 10px;
  height: 13px;
}

.header__main .nav__item__icon--04 {
  width: 3px;
  height: 14px;
}

.header__main .nav__item__icon--05 {
  width: 11px;
  height: 18px;
}

.header__main .nav__item__icon--06 {
  width: 19px;
  height: 19px;
}

.header__main .nav__item__icon--07 {
  width: 18px;
  height: 13px;
}

.header__main .nav--01 .nav__list {
  margin-right: 14px;
}

.header__main .nav--01 .nav__item {
  margin-left: 24px;
}

@media screen and (max-width: 1200px) {
  .header__main .nav--01 .nav__item {
    margin-left: 14px;
  }
}

.header__main .nav--01 .nav__item__icon {
  position: relative;
  width: 31px;
  height: 25px;
  margin-right: 5px;
  background: #EBEBEB;
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media all and (-ms-high-contrast: none) {
  .header__main .nav--01 .nav__item__icon {
    -webkit-clip-path: none;
    clip-path: none;
    background: center/100% url(../images/common/ie-hexagon-grey.svg) no-repeat;
  }
}

.header__main .nav--01 .nav__item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  fill: #00aa7d;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (min-width: 769px) {
  .header__main .nav--01 .nav__item:hover .nav__item__link {
    color: #00aa7d;
  }
}

@media screen and (min-width: 769px) {
  .header__main .nav--01 .nav__item:hover .nav__item__icon {
    background: #00aa7d;
  }
  .header__main .nav--01 .nav__item:hover .nav__item__icon svg {
    fill: #FFFFFF;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
}

@media all and (-ms-high-contrast: none) {
  .header__main .nav--01 .nav__item:hover .nav__item__icon {
    background: none;
    background: center/100% url(../images/common/ie-hexagon-green.svg) no-repeat;
  }
}

.header__main .nav--02 {
  padding: 5px 0;
}

.header__main .nav--02 .nav__item {
  padding: 0 18px;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .header__main .nav--02 .nav__item {
    padding: 0 14px;
  }
}

.header__main .nav--02 .nav__item:last-child {
  padding: 0 0 0 18px;
}

@media screen and (max-width: 1200px) {
  .header__main .nav--02 .nav__item:last-child {
    padding: 0 0 0 14px;
  }
}

@media screen and (max-width: 768px) {
  .header__main .nav--02 .nav__item:last-child {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .header__main .nav--02 .nav__item {
    width: 33.06667vw;
    padding: 0;
  }
  .header__main .nav--02 .nav__item:not(:first-child)::before {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background: #EBEBEB;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 769px) {
  .header__main .nav--02 .nav__item::before {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background: #EBEBEB;
    top: 0;
    left: 0;
  }
}

.header__main .nav--02 .nav__item__link {
  height: 30px;
}

@media screen and (max-width: 768px) {
  .header__main .nav--02 .nav__item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.header__main .nav--02 .nav__item__icon {
  position: relative;
  width: 20px;
  margin-right: 6px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.header__main .nav--02 .nav__item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  fill: #61CBF9;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (min-width: 769px) {
  .header__main .nav--02 .nav__item:hover {
    opacity: .7;
  }
}

.header__sub {
  position: fixed;
  width: 100%;
  top: -40px;
  left: 0;
  background: #FFFFFF;
  z-index: 200;
  -webkit-transition: top .5s;
  transition: top .5s;
}

.header__sub .header__logo {
  max-width: 190px;
  padding: 8px 0;
  margin: 0 auto;
}

/*------------------------------------------
  footer
------------------------------------------*/
.pagetop__btn {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 200;
}

.pagetop__btn__wrap {
  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;
  background: center/cover url(../images/common/icon_pagetop.png) no-repeat;
  width: 52px;
  height: 45px;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

@media screen and (min-width: 769px) {
  .pagetop__btn__wrap:hover {
    opacity: .7;
  }
}

.pagetop__btn a {
  display: block;
  font-family: 'Hind', sans-serif;
  color: #FFFFFF;
  font-size: 1.0em;
  font-weight: 500;
  letter-spacing: .04em;
}

.footer__bnr {
  padding: 84px 20px 74px;
  background: #E8E8E5;
}

@media screen and (max-width: 768px) {
  .footer__bnr {
    padding: 40px 17.5px;
  }
}

.footer__bnr .bnr__list {
  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;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .footer__bnr .bnr__list {
    max-width: inherit;
  }
}

@media screen and (max-width: 768px) {
  .footer__bnr .bnr__list--top {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer__bnr .bnr__list--top .bnr__item {
  margin-top: 0;
  height: 80px;
  background: left top/auto 100% url(../images/common/menu_bg01.png) repeat-x;
}

@media screen and (max-width: 768px) {
  .footer__bnr .bnr__list--top .bnr__item {
    width: 44vw;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .footer__bnr .bnr__list--bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__bnr .bnr__item {
  position: relative;
  width: 480px;
  margin-left: 30px;
  margin-top: 20px;
  -webkit-transition: all .4s;
  transition: all .4s;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .footer__bnr .bnr__item {
    width: 400px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 900px) {
  .footer__bnr .bnr__item {
    width: 340px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .footer__bnr .bnr__item {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (min-width: 769px) {
  .footer__bnr .bnr__item:hover {
    opacity: .7;
  }
}

.footer__bnr .bnr__item:nth-child(odd) {
  margin-left: 0;
}

.footer__bnr .bnr__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
}

.footer__bnr .bnr__item__icon {
  position: relative;
  margin: 0 22px 0 26px;
  width: 73px;
  height: 60px;
  background: #FFFFFF;
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

@media all and (-ms-high-contrast: none) {
  .footer__bnr .bnr__item__icon {
    -webkit-clip-path: none;
    clip-path: none;
    background: center/100% url(../images/common/ie-hexagon-white.svg) no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .footer__bnr .bnr__item__icon {
    margin: 0 5px;
    width: 44px;
    height: 36px;
  }
}

.footer__bnr .bnr__item__icon--01 {
  width: 37px;
  height: 37px;
}

@media screen and (max-width: 768px) {
  .footer__bnr .bnr__item__icon--01 {
    width: 22px;
    height: 22px;
  }
}

.footer__bnr .bnr__item__icon--02 {
  width: 34px;
  height: 25px;
}

@media screen and (max-width: 768px) {
  .footer__bnr .bnr__item__icon--02 {
    width: 25px;
    height: 19px;
  }
}

.footer__bnr .bnr__item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  fill: #61CBF9;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.footer__bnr .bnr__item__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  color: #000000;
  font-size: 2.0em;
  letter-spacing: .11em;
}

@media screen and (max-width: 768px) {
  .footer__bnr .bnr__item__text {
    font-size: 1.4em;
  }
}

.footer__bnr .bnr__item__text::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 20px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #5A5A5A;
  border-right: 2px solid #5A5A5A;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .footer__bnr .bnr__item__text::before {
    right: 10px;
  }
}

.footer {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.footer__sns {
  background: #61CBF9;
}

@media screen and (max-width: 900px) {
  .footer__sns {
    padding-bottom: 34px;
  }
}

.footer__sns .sns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .footer__sns .sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__sns .sns::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  right: -82px;
  width: 386px;
  height: 204px;
  background: center/100% url(../images/common/kame04.svg) no-repeat;
  z-index: 100;
}

@media screen and (max-width: 1200px) {
  .footer__sns .sns::before {
    right: -60px;
    width: 280px;
    height: 148px;
  }
}

@media screen and (max-width: 900px) {
  .footer__sns .sns::before {
    right: -52px;
    width: 56vw;
    height: 32vw;
    background: center/100% url(../images/common/sp-kame04.svg) no-repeat;
  }
}

.footer__sns .sns__ttl {
  color: #FFFFFF;
  font-size: 4.5em;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.11em;
  margin: 0 100px 0 40px;
}

@media screen and (max-width: 1200px) {
  .footer__sns .sns__ttl {
    font-size: 3.8em;
    margin: 0 30px 0 20px;
  }
}

@media screen and (max-width: 900px) {
  .footer__sns .sns__ttl {
    text-align: center;
    font-size: 8.8vw;
    line-height: 1.3;
    margin: 0;
    padding: 28px 0 26px;
  }
  .footer__sns .sns__ttl span {
    font-size: 7.73333vw;
  }
}

.footer__sns .sns__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 500px;
  height: 204px;
  padding: 0 0 0 36px;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #FFFFFF;
}

.footer__sns .sns__list::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: -450%;
  width: 500%;
  height: 100%;
  background: #FFFFFF;
}

@media screen and (max-width: 900px) {
  .footer__sns .sns__list::before {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .footer__sns .sns__list {
    width: 380px;
  }
}

@media screen and (max-width: 900px) {
  .footer__sns .sns__list {
    width: 93.33333vw;
    height: 35.2vw;
    margin-left: 6.66667vw;
    padding: 0 0 0 14px;
  }
}

.footer__sns .sns__item {
  position: relative;
  width: 72px;
  margin-left: 42px;
  z-index: 100;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}

@media screen and (min-width: 769px) {
  .footer__sns .sns__item:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 900px) {
  .footer__sns .sns__item {
    width: 15.73333vw;
    margin-left: 20px;
  }
}

.footer__map {
  position: relative;
  height: 500px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .footer__map {
    height: auto;
  }
}

.footer__map iframe {
  width: calc(100% - 536px);
  height: 500px;
}

@media screen and (max-width: 768px) {
  .footer__map iframe {
    width: 100%;
    height: 226px;
  }
}

.footer__map .map {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 536px;
  height: 100%;
  padding: 112px 100px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  background: #FFFFFF;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .footer__map .map {
    padding: 50px 17.5px 54px;
    position: static;
    width: 100%;
    height: inherit;
    background: #FFFFFF;
  }
}

.footer__map .map__logo {
  max-width: 215px;
  margin: 0 auto;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (min-width: 769px) {
  .footer__map .map__logo:hover {
    opacity: .7;
  }
}

.footer__map .map__address {
  margin-top: 40px;
  font-size: 1.4em;
  line-height: 1.6;
  letter-spacing: 0.11em;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .footer__map .map__address {
    text-align: center;
  }
}

.footer__map .map__address--02 {
  margin-top: 5px;
}

.footer__map .map__tel {
  margin-top: 22px;
}

.footer__map .map__tel a {
  color: #000000;
  font-size: 1.4em;
  line-height: 1.6;
  letter-spacing: 0.11em;
}

@media screen and (min-width: 769px) {
  .footer__map .map__tel a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.footer__map .map__btn {
  margin-top: 27px;
}

@media screen and (max-width: 768px) {
  .footer__map .map__btn {
    margin-top: 26px;
  }
}

.footer__bottom {
  position: relative;
  padding: 37px 40px 40px;
  text-align: center;
  background: #A8A8A8;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .footer__bottom {
    padding: 55px 0 42px;
  }
}

.footer__bottom .slider {
  padding-bottom: 40px;
  border-bottom: 1px solid #EBEBEB;
  height: 92px;
}

@media screen and (max-width: 768px) {
  .footer__bottom .slider {
    padding-bottom: 50px;
    margin: 0 17.5px;
  }
}

.footer__bottom .slider__item {
  width: 269px;
  margin: 0 4px;
}

.footer__bottom .nav {
  padding: 40px 0 0;
}

@media screen and (max-width: 768px) {
  .footer__bottom .nav {
    padding: 50px 0 0;
  }
}

@media screen and (min-width: 769px) {
  .footer__bottom .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer__bottom .nav__item {
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer__bottom .nav__item:not(:first-child) {
    margin-top: 28px;
  }
}

@media screen and (min-width: 769px) {
  .footer__bottom .nav__item:not(:first-child)::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: #000000;
  }
}

.footer__bottom .nav__link {
  color: #000000;
  font-size: 1.4em;
  line-height: 1.6;
  letter-spacing: 0.08em;
  padding: 0 14px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 1200px) {
  .footer__bottom .nav__link {
    font-size: 1.2em;
    padding: 0 26px;
  }
}

@media screen and (max-width: 768px) {
  .footer__bottom .nav__link {
    font-size: 1.4em;
  }
}

@media screen and (min-width: 769px) {
  .footer__bottom .nav__link:hover {
    opacity: .7;
  }
}

.footer__bottom .nav__link img {
  width: auto;
  vertical-align: middle;
  margin-left: 6px;
}

.footer__bottom .text {
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer__bottom .text {
    margin-top: 46px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer__bottom .text .logo {
  max-width: 223px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 768px) {
  .footer__bottom .text .logo {
    margin: 0 auto;
  }
}

@media screen and (min-width: 769px) {
  .footer__bottom .text .logo:hover {
    opacity: .7;
  }
}

.footer__bottom .text .copyright {
  color: #000000;
  font-family: 'Hind', sans-serif;
  font-size: 1.0em;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 768px) {
  .footer__bottom .text .copyright {
    margin-top: 10px;
  }
}

/* =========================================================
telop
========================================================= */
.telop {
  width: 100%;
  background: #00AA7D;
  z-index: 200;
}

@media screen and (max-width: 768px) {
  .telop {
    width: 100%;
  }
}

.telop .slider {
  padding: 0 84px;
  height: 40px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .telop .slider {
    padding: 0 18px;
  }
}

.telop__list {
  padding: 10px 0;
}

.telop__item a {
  display: block;
  font-size: 1.4em;
  line-height: 1.5;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (min-width: 769px) {
  .telop__item a:hover {
    opacity: .7;
  }
}

/* =========================================================
toggle
========================================================= */
.toggle__btn {
  position: absolute;
  top: 12px;
  right: 11px;
  width: 18px;
}

.toggle__btn .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #000000;
}

.toggle__btn .bar:not(:first-child) {
  margin-top: 5px;
}

.toggle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #00AA7D;
  overflow-y: scroll;
  text-align: center;
  z-index: 1000;
  display: none;
}

.toggle__top {
  position: relative;
  padding: 8px 0;
  background: #FFFFFF;
}

.toggle__logo {
  max-width: 189px;
  margin: 0 auto;
}

.toggle__close {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.toggle__bottom {
  padding: 50px 17.5px;
}

.toggle__bottom__close {
  position: relative;
  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;
  width: 100%;
  height: 54px;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  font-size: 1.9em;
  letter-spacing: 0.11em;
  margin-top: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.toggle__bottom__close::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 23px;
  width: 17px;
  height: 17px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/common/icon_close-white.svg) no-repeat;
}

.toggle__bottom .nav__list--top {
  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%;
}

.toggle__bottom .nav__list--top .nav__item {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
  height: 60px;
  border: 2px solid #FFFFFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: left top/auto 100% url(../images/common/sp-menu_bg02.png) repeat-x;
  -webkit-transition: all .4s;
  transition: all .4s;
  overflow: hidden;
}

.toggle__bottom .nav__list--top .nav__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.toggle__bottom .nav__list--top .nav__item__icon {
  position: relative;
  margin: 0 10px;
  width: 55px;
  height: 45px;
  background: #FFFFFF;
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.toggle__bottom .nav__list--top .nav__item__icon--01 {
  width: 20px;
  height: 22px;
}

.toggle__bottom .nav__list--top .nav__item__icon--02 {
  width: 22px;
  height: 20px;
}

.toggle__bottom .nav__list--top .nav__item__icon--03 {
  width: 13px;
  height: 18px;
}

.toggle__bottom .nav__list--top .nav__item__icon--04 {
  width: 4px;
  height: 19px;
}

.toggle__bottom .nav__list--top .nav__item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  fill: #00AA7D;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.toggle__bottom .nav__list--top .nav__item__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-top-left-radius: 120px;
  border-bottom-left-radius: 120px;
  color: #000000;
  font-size: 1.6em;
  letter-spacing: .11em;
}

.toggle__bottom .nav__list--top .nav__item__text::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #5A5A5A;
  border-right: 2px solid #5A5A5A;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.toggle__bottom .nav__list--bottom .nav__item {
  border-bottom: 1px solid #FFFFFF;
}

.toggle__bottom .nav__list--bottom .nav__item a {
  position: relative;
  display: block;
  color: #FFFFFF;
  font-size: 1.6em;
  letter-spacing: 0.11em;
  padding: 20px 0;
}

.toggle__bottom .nav__list--bottom .nav__item a::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.toggle__bottom .nav__list--bottom .nav__item--external a::before {
  width: 12px;
  height: 12px;
  background: center/100% url(../images/common/icon_externallink-white.svg) no-repeat;
  -webkit-transform: none;
  transform: none;
  border: none;
}

.toggle__bottom .bnr__list--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px auto 0;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.toggle__bottom .bnr__list--top .bnr__item {
  position: relative;
  width: 44vw;
  height: 80px;
  background: left top/auto 100% url(../images/common/menu_bg01.png) repeat-x;
  -webkit-transition: all .4s;
  transition: all .4s;
  overflow: hidden;
}

.toggle__bottom .bnr__list--top .bnr__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
}

.toggle__bottom .bnr__list--top .bnr__item__icon {
  position: relative;
  margin: 0 22px 0 26px;
  width: 73px;
  height: 60px;
  background: #FFFFFF;
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

@media screen and (max-width: 768px) {
  .toggle__bottom .bnr__list--top .bnr__item__icon {
    margin: 0 5px;
    width: 44px;
    height: 36px;
  }
}

.toggle__bottom .bnr__list--top .bnr__item__icon--01 {
  width: 37px;
  height: 37px;
}

@media screen and (max-width: 768px) {
  .toggle__bottom .bnr__list--top .bnr__item__icon--01 {
    width: 22px;
    height: 22px;
  }
}

.toggle__bottom .bnr__list--top .bnr__item__icon--02 {
  width: 34px;
  height: 25px;
}

@media screen and (max-width: 768px) {
  .toggle__bottom .bnr__list--top .bnr__item__icon--02 {
    width: 25px;
    height: 19px;
  }
}

.toggle__bottom .bnr__list--top .bnr__item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  fill: #61CBF9;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.toggle__bottom .bnr__list--top .bnr__item__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  color: #000000;
  font-size: 1.4em;
  letter-spacing: .11em;
}

.toggle__bottom .bnr__list--top .bnr__item__text::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #5A5A5A;
  border-right: 2px solid #5A5A5A;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.toggle__bottom .bnr__list--bottom .bnr__item {
  margin-top: 20px;
}

.toggle__bottom .sns {
  margin-top: 44px;
}

.toggle__bottom .sns__ttl {
  color: #FFFFFF;
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  font-size: 1.3em;
  letter-spacing: 0.16em;
}

.toggle__bottom .sns__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.toggle__bottom .sns__item {
  width: 44px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  margin: 0 10px;
}

/* =========================================================
contents
========================================================= */
.breadcrumb {
  padding: 15px 80px;
  background: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 15px 13px;
  }
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.breadcrumb__item {
  position: relative;
  font-size: 1.4em;
  line-height: 1.2;
  letter-spacing: .11em;
}

.breadcrumb__item:first-child {
  font-size: 1.5em;
  font-weight: bold;
}

.breadcrumb__item__link {
  color: #000000;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (min-width: 769px) {
  .breadcrumb__item__link:hover {
    color: #00aa7d;
  }
}

.breadcrumb__item::after {
  content: ">";
  font-size: 14px;
  letter-spacing: .11em;
  color: #000000;
  margin: 0 3px;
}

.breadcrumb__item:last-child::after {
  content: "";
}

.main-contents {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .main-contents {
    padding-top: 80px;
  }
}

.main-contents .main-contents__inner {
  position: relative;
}

.main-contents .side-left {
  top: 0;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.container {
  padding: 65px 20px 100px;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 50px 4.8vw 70px;
  }
}

.section .section__inner {
  position: relative;
  margin: 0 auto;
}

.page__ttl {
  padding-top: 87px;
  font-family: 'Hind', sans-serif;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page__ttl {
    padding-top: 63px;
  }
}

.page__ttl .ttl {
  font-size: 3.3em;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.page__ttl .ttl span {
  display: inline-block;
  -webkit-transform: translate3d(30px, 0, 0) rotate(30deg);
  transform: translate3d(30px, 0, 0) rotate(30deg);
  -webkit-transition: opacity .6s linear, -webkit-transform .4s linear;
  transition: opacity .6s linear, -webkit-transform .4s linear;
  transition: transform .4s linear, opacity .6s linear;
  transition: transform .4s linear, opacity .6s linear, -webkit-transform .4s linear;
  opacity: 0;
}

.page__ttl .ttl span.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.page__ttl .ttl span:nth-child(1) {
  -webkit-transition-delay: .02s;
  transition-delay: .02s;
}

.page__ttl .ttl span:nth-child(2) {
  -webkit-transition-delay: .04s;
  transition-delay: .04s;
}

.page__ttl .ttl span:nth-child(3) {
  -webkit-transition-delay: .06s;
  transition-delay: .06s;
}

.page__ttl .ttl span:nth-child(4) {
  -webkit-transition-delay: .08s;
  transition-delay: .08s;
}

.page__ttl .ttl span:nth-child(5) {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

.page__ttl .ttl span:nth-child(6) {
  -webkit-transition-delay: .12s;
  transition-delay: .12s;
}

.page__ttl .ttl span:nth-child(7) {
  -webkit-transition-delay: .14s;
  transition-delay: .14s;
}

.page__ttl .sttl {
  margin-top: 13px;
  font-size: 1.2em;
  letter-spacing: 0.11em;
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.page__ttl .sttl.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/* =========================================================
btn
========================================================= */
.btn--type01 {
  position: relative;
}

.btn--type01::before {
  position: absolute;
  display: block;
  content: "";
  top: 6px;
  left: 50%;
  width: 254px;
  height: 40px;
  background: #007657;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

@media all and (-ms-high-contrast: none) {
  .btn--type01::before {
    -webkit-clip-path: none;
    clip-path: none;
    background: center/100% url(../images/common/ie-hexagon-darkgreen.svg) no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .btn--type01::before {
    width: 78.93333vw;
    height: 46px;
  }
}

.btn--type01 a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  width: 254px;
  height: 40px;
  background: #00AA7D;
  -webkit-clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  color: #FFFFFF;
  font-size: 1.4em;
  letter-spacing: 0.11em;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media all and (-ms-high-contrast: none) {
  .btn--type01 a {
    -webkit-clip-path: none;
    clip-path: none;
    background: center/100% url(../images/common/ie-hexagon-green.svg) no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .btn--type01 a {
    width: 78.93333vw;
    height: 46px;
    font-size: 1.5em;
  }
}

.btn--type01 a:hover {
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
}

.btn--type01 a::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.btn--type01-back a::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.btn--type02 {
  width: 176px;
  padding: 11px 0;
  border: 2px solid #5A5A5A;
  font-size: 1.4em;
  letter-spacing: 0.11em;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (min-width: 769px) {
  .btn--type02:hover {
    opacity: 0.7;
  }
}

.btn--type03 {
  position: relative;
}

.btn--type03::before {
  position: absolute;
  display: block;
  content: "";
  top: 8px;
  left: 50%;
  width: 236px;
  height: 97px;
  background: #007657;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 768px) {
  .btn--type03::before {
    width: 76.8vw;
    height: 64px;
  }
}

.btn--type03 a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  width: 236px;
  height: 97px;
  background: #00AA7D;
  color: #FFFFFF;
  font-size: 2.1em;
  font-weight: bold;
  letter-spacing: 0.11em;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 768px) {
  .btn--type03 a {
    width: 76.8vw;
    height: 64px;
  }
}

.btn--type03--big::before {
  width: 570px;
}

@media screen and (max-width: 768px) {
  .btn--type03--big::before {
    width: 100%;
    height: 93px;
  }
}

.btn--type03--big a {
  width: 570px;
}

@media screen and (max-width: 768px) {
  .btn--type03--big a {
    width: 100%;
    height: 93px;
    text-align: center;
    font-size: 2.0em;
    line-height: 1.35;
  }
}

.btn--type03--big a::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .btn--type03--big a::after {
    right: 12px;
  }
}

.btn--type03--app::before {
  width: 315px;
  height: 67px;
  left: 0;
  -webkit-transform: none;
  transform: none;
}

@media screen and (max-width: 768px) {
  .btn--type03--app::before {
    width: 90.66667vw;
    height: 64px;
  }
}

.btn--type03--app a {
  margin: 36px 0 0;
  width: 315px;
  height: 67px;
  font-size: 1.7em;
}

@media screen and (max-width: 768px) {
  .btn--type03--app a {
    width: 90.66667vw;
    height: 64px;
    text-align: center;
    font-size: 2.1em;
  }
}

.btn--type03:hover::before {
  top: 0;
}

.btn--type03:hover a {
  background: #85D6C1;
}

.btn--type04 {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .btn--type04 {
    text-align: center;
  }
}

.btn--type04 a {
  position: relative;
  display: inline-block;
  padding: 10px 20px 12px 16px;
  border: 2px solid #5A5A5A;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #5A5A5A;
  font-size: 1.4em;
  letter-spacing: 0.11em;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.btn--type04 a::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 12px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #5A5A5A;
  border-right: 1px solid #5A5A5A;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.btn--type04 a:hover {
  color: #00AA7D;
  border: 2px solid #00AA7D;
}

.btn--type04 a:hover::before {
  border-top: 1px solid #00AA7D;
  border-right: 1px solid #00AA7D;
}

.btn--type04-fix a {
  padding: 10px 18px 12px 18px;
}

.btn--type04-fix a::before {
  display: none;
}

/* =========================================================
card
========================================================= */
.new__icon::before {
  position: absolute;
  display: block;
  content: "NEW";
  top: -22px;
  right: -19px;
  width: 72px;
  height: 63px;
  background: center/cover url(../images/common/icon_new.png) no-repeat;
  font-family: 'Hind', sans-serif;
  font-size: 1.6em;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.15em;
  line-height: 67px;
  text-align: center;
  z-index: 300;
}

@media screen and (max-width: 768px) {
  .new__icon::before {
    top: -7px;
    left: -17px;
    right: inherit;
    width: 56px;
    height: 48px;
    font-size: 1.1em;
    line-height: 50px;
    text-indent: 2px;
  }
}

.card__list--type01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.card__list--type01 .card__item {
  position: relative;
  width: calc(100% / 3 - 30px);
  margin-right: 44px;
  background: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .card__list--type01 .card__item {
    width: 100%;
    margin-right: 0;
  }
}

.card__list--type01 .card__item .card__link::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: center/cover url(../images/common/card_decoration01.png) no-repeat;
}

.card__list--type01 .card__item:nth-child(2n) .card__link::before {
  background: center/cover url(../images/common/card_decoration02.png) no-repeat;
}

@media screen and (min-width: 769px) {
  .card__list--type01 .card__item:nth-child(3n) {
    margin-right: 0;
  }
  .card__list--type01 .card__item:nth-child(n+4) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .card__list--type01 {
    margin-right: 0;
  }
  .card__list--type01 .card__item:not(:first-child) {
    margin-top: 20px;
  }
}

.card__list--type01 .card__link {
  position: relative;
  display: block;
  outline: none;
  color: #000000;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (min-width: 769px) {
  .card__list--type01 .card__link:hover .card__img::before {
    opacity: 0.5;
  }
  .card__list--type01 .card__link:hover .card__img::after {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .card__list--type01 .card__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: 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;
    padding: 10px 10px 24px;
  }
}

.card__list--type01 .card__img {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  padding-bottom: 100%;
  overflow: hidden;
  background: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .card__list--type01 .card__img {
    width: 40vw;
    height: 40vw;
    padding-bottom: 0;
  }
}

.card__list--type01 .card__img::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00aa7d;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 100;
}

.card__list--type01 .card__img::after {
  position: absolute;
  display: block;
  content: "READ MORE";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 7px 10px 5px;
  border: solid 2px #FFFFFF;
  text-align: center;
  color: #FFFFFF;
  font-family: 'Hind', sans-serif;
  font-size: 2.4em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.11em;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 200;
}

.card__list--type01 .card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.card__list--type01 .card__img__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-size: cover;
  background-position: center center;
  opacity: 0.6;
  overflow: hidden;
}

.card__list--type01 .card__description {
  padding: 20px 34px 0;
}

@media screen and (max-width: 1000px) {
  .card__list--type01 .card__description {
    padding: 20px 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .card__list--type01 .card__description {
    padding: 0;
    width: 40vw;
  }
}

@media screen and (min-width: 769px) {
  .card__list--type01 .card__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.card__list--type01 .card__status {
  min-width: 98px;
  height: 24px;
  text-align: center;
  font-size: 1.4em;
  line-height: 24px;
  letter-spacing: 0.11em;
  background: #BFEA80;
  margin-right: 14px;
}

@media screen and (max-width: 768px) {
  .card__list--type01 .card__status {
    min-width: none;
    width: 40vw;
    margin-right: 0;
  }
}

.card__list--type01 .card__date {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: 'Hind', sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .card__list--type01 .card__date {
    font-size: 1.2em;
  }
}

.card__list--type01 .card__ttl {
  margin-top: 20px;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.11em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .card__list--type01 .card__ttl {
    margin-top: 10px;
    -webkit-line-clamp: 3;
    font-size: 1.4em;
  }
}

.card__list--type01 .card__place {
  margin-top: 18px;
  font-size: 1.4em;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .card__list--type01 .card__place {
    margin-top: 8px;
    -webkit-line-clamp: 2;
    font-size: 1.2em;
  }
}

.card__list--type01 .card__category__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 34px 32px;
}

@media screen and (max-width: 1000px) {
  .card__list--type01 .card__category__wrap {
    padding: 0 20px 32px;
  }
}

@media screen and (max-width: 768px) {
  .card__list--type01 .card__category__wrap {
    width: 100%;
    margin-top: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
  }
}

.card__list--type01 .card__category {
  margin-top: 15px;
  width: 86px;
  height: 24px;
  color: #FFFFFF;
  font-family: 'Hind', sans-serif;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.card__list--type01 .card__category.event-tag {
  background: #61CBF9;
}

.card__list--type01 .card__category.news-tag {
  background: #00AA7D;
}

.card__list--type01 .card__category.status-tag {
  width: 103px;
  font-family: 'Noto Sans JP', 'Hind', sans-serif;
  color: #000000;
  background: #FFB7B4;
}

@media screen and (max-width: 768px) {
  .card__list--type01 .card__category {
    width: 40vw;
    margin-top: 0;
  }
}

.card__list--type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .card__list--type02 {
    max-width: inherit;
    width: 90.66667vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 768px) {
  .card__list--type02 .new__icon::before {
    top: -17px;
    left: inherit;
    right: -4px;
  }
}

.card__list--type02 .card__item {
  position: relative;
  width: calc(100% / 4 - 25px);
  margin-right: 32px;
  background: #FFFFFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .card__list--type02 .card__item {
    width: 43.46667vw;
    margin-right: 0;
  }
}

.card__list--type02 .card__item::after {
  position: absolute;
  display: block;
  content: "";
  top: -10px;
  left: -12px;
  width: 195px;
  height: 195px;
  z-index: -100;
}

@media screen and (max-width: 768px) {
  .card__list--type02 .card__item::after {
    top: -7px;
    left: -7px;
    width: 115px;
    height: 115px;
  }
}

.card__list--type02 .card__item:nth-child(4n-3)::after {
  background: center/100% url(../images/common/card_bg01.png) no-repeat;
}

.card__list--type02 .card__item:nth-child(4n-2)::after {
  background: center/100% url(../images/common/card_bg02.png) no-repeat;
}

.card__list--type02 .card__item:nth-child(4n-1)::after {
  background: center/100% url(../images/common/card_bg03.png) no-repeat;
}

.card__list--type02 .card__item:nth-child(4n)::after {
  background: center/100% url(../images/common/card_bg04.png) no-repeat;
}

@media screen and (min-width: 769px) {
  .card__list--type02 .card__item:nth-child(4n) {
    margin-right: 0;
  }
  .card__list--type02 .card__item:nth-child(n+5) {
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .card__list--type02 .card__item:nth-child(2n) {
    margin-right: 0;
  }
  .card__list--type02 .card__item:nth-child(n+3) {
    margin-top: 27px;
  }
}

.card__list--type02 .card__link {
  display: block;
  outline: none;
  color: #000000;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (min-width: 769px) {
  .card__list--type02 .card__link:hover .card__img::before {
    opacity: 0.5;
  }
  .card__list--type02 .card__link:hover .card__img::after {
    opacity: 1;
  }
}

.card__list--type02 .card__img {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  padding-bottom: 100%;
  overflow: hidden;
  background: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .card__list--type02 .card__img {
    height: 43.46667vw;
    padding-bottom: 0;
  }
}

.card__list--type02 .card__img::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00aa7d;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 100;
}

.card__list--type02 .card__img::after {
  position: absolute;
  display: block;
  content: "READ MORE";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 5px 8px 3px;
  border: solid 2px #FFFFFF;
  text-align: center;
  color: #FFFFFF;
  font-family: 'Hind', sans-serif;
  font-size: 2.0em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.11em;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 200;
}

.card__list--type02 .card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.card__list--type02 .card__img__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-size: cover;
  background-position: center center;
  opacity: 0.6;
  overflow: hidden;
}

.card__list--type02 .card__description {
  padding: 23px 27px 29px;
}

@media screen and (max-width: 1000px) {
  .card__list--type02 .card__description {
    padding: 20px 20px 25px;
  }
}

@media screen and (max-width: 768px) {
  .card__list--type02 .card__description {
    padding: 20px 12px 25px;
  }
}

.card__list--type02 .card__name {
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .11em;
}

@media screen and (max-width: 768px) {
  .card__list--type02 .card__name {
    font-size: 1.4em;
    line-height: 1.7;
  }
}

.card__list--type02 .card__date {
  margin-top: 11px;
  color: #5A5A5A;
  font-family: 'Hind', sans-serif;
  font-size: 1.5em;
  letter-spacing: .11em;
}

.card__list--type02 .card__ttl {
  margin-top: 5px;
  color: #5A5A5A;
  font-size: 1.4em;
  line-height: 1.6;
  letter-spacing: .11em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .card__list--type02 .card__ttl {
    margin-top: 15px;
    font-size: 1.4em;
  }
}

.card__list--type03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .card__list--type03 {
    max-width: inherit;
    width: 90.66667vw;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.card__list--type03 .card__item {
  position: relative;
  width: calc(100% / 4 - 24px);
  margin-right: 32px;
  background: #FFFFFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .card__list--type03 .card__item {
    width: 44vw;
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) {
  .card__list--type03 .card__item:nth-child(4n) {
    margin-right: 0;
  }
  .card__list--type03 .card__item:nth-child(n+5) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .card__list--type03 .card__item:nth-child(2n) {
    margin-right: 0;
  }
  .card__list--type03 .card__item:nth-child(n+3) {
    margin-top: 20px;
  }
}

.card__list--type03 .card__link {
  display: block;
  outline: none;
  color: #000000;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (min-width: 769px) {
  .card__list--type03 .card__link:hover .card__img::before {
    opacity: 0.5;
  }
  .card__list--type03 .card__link:hover .card__img::after {
    opacity: 1;
  }
}

.card__list--type03 .card__img {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  padding-bottom: 75%;
  overflow: hidden;
  background: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .card__list--type03 .card__img {
    padding-bottom: 0;
    height: 32.8vw;
  }
}

.card__list--type03 .card__img::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00aa7d;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 100;
}

.card__list--type03 .card__img::after {
  position: absolute;
  display: block;
  content: "READ MORE";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 5px 8px 3px;
  border: solid 2px #FFFFFF;
  text-align: center;
  color: #FFFFFF;
  font-family: 'Hind', sans-serif;
  font-size: 2.0em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.11em;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 200;
}

.card__list--type03 .card__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.card__list--type03 .card__img__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-size: cover;
  background-position: center center;
  opacity: 0.6;
  overflow: hidden;
}

.card__list--type03 .card__num {
  color: #5A5A5A;
  font-family: 'Hind', sans-serif;
  font-size: 1.8em;
  margin-left: 4px;
  font-weight: bold;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .card__list--type03 .card__num {
    font-size: 1.2em;
  }
}

.card__list--type03 .card__description {
  padding: 16px 28px 15px;
}

@media screen and (max-width: 768px) {
  .card__list--type03 .card__description {
    padding: 15px 12px 14px;
  }
}

.card__list--type03 .card__name {
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.3125;
  letter-spacing: .11em;
  min-height: 42px;
}

@media screen and (max-width: 768px) {
  .card__list--type03 .card__name {
    font-size: 1.4em;
    line-height: 1.5;
  }
}

.card__list--type03 .card__shop-item {
  margin-top: 10px;
  color: #5A5A5A;
  font-size: 1.4em;
  line-height: 1.6;
  letter-spacing: .11em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 45px;
}

@media screen and (max-width: 768px) {
  .card__list--type03 .card__shop-item {
    margin-top: 10px;
    font-size: 1.4em;
  }
}

.card__list--type03 .card__flex {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .card__list--type03 .card__flex {
    margin-top: 10px;
  }
}

.card__list--type03 .card__floor {
  color: #5A5A5A;
  font-family: 'Hind', sans-serif;
  font-size: 2.0em;
  font-weight: bold;
  letter-spacing: .17em;
}

@media screen and (max-width: 768px) {
  .card__list--type03 .card__floor {
    font-size: 1.4em;
  }
}

.card__list--type03 .card__place {
  margin-left: 4px;
  text-align: center;
  color: #FFFFFF;
  background: #00AA7D;
  font-size: 1.4em;
  font-weight: bold;
  padding: 4px 5px 6px;
}

@media screen and (max-width: 768px) {
  .card__list--type03 .card__place {
    font-size: 1em;
    padding: 2px 2px 4px;
  }
}

.no-item {
  text-align: center;
  color: #202020;
  font-size: 1.6em;
  font-weight: bold;
  letter-spacing: .05em;
  padding: 60px 20px;
}

@media screen and (max-width: 768px) {
  .no-item {
    font-size: 3.73333vw;
  }
}

.no-link {
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/* =========================================================
pagination
========================================================= */
.pagination {
  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-top: 40px;
}

.pagination__number {
  position: relative;
  display: block;
  width: 40px;
  height: 34px;
  margin: 0 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #EBEBEB;
  color: #000000;
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  font-size: 1.5em;
  line-height: 33px;
  letter-spacing: 0.11em;
  text-align: center;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media all and (-ms-high-contrast: none) {
  .pagination__number {
    -webkit-clip-path: none;
    clip-path: none;
    background: center/100% url(../images/common/ie-hexagon-white2.svg) no-repeat;
  }
}

.pagination__number::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  width: 36px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  z-index: -1;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media all and (-ms-high-contrast: none) {
  .pagination__number::before {
    background: none;
    -webkit-clip-path: none;
    clip-path: none;
  }
}

.pagination__number.current {
  background: #5A5A5A;
  color: #000000;
  pointer-events: none;
}

@media all and (-ms-high-contrast: none) {
  .pagination__number.current {
    background: center/100% url(../images/common/ie-hexagon-grey2.svg) no-repeat;
  }
}

.pagination__number.current::before {
  background: #EBEBEB;
}

@media all and (-ms-high-contrast: none) {
  .pagination__number.current::before {
    background: none;
  }
}

@media all and (-ms-high-contrast: none) {
  .pagination__number.prev {
    background: center/100% url(../images/common/ie-hexagon-black.svg) no-repeat;
  }
}

.pagination__number.prev::before {
  background: #5A5A5A;
}

@media all and (-ms-high-contrast: none) {
  .pagination__number.prev::before {
    background: none;
  }
}

.pagination__number.prev::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 54%;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

@media all and (-ms-high-contrast: none) {
  .pagination__number.next {
    background: center/100% url(../images/common/ie-hexagon-black.svg) no-repeat;
  }
}

.pagination__number.next::before {
  background: #5A5A5A;
}

@media all and (-ms-high-contrast: none) {
  .pagination__number.next::before {
    background: none;
  }
}

.pagination__number.next::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 46%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.pagination__number:hover {
  background: #5A5A5A;
}

@media all and (-ms-high-contrast: none) {
  .pagination__number:hover {
    background: none;
    background: center/100% url(../images/common/ie-hexagon-grey2.svg) no-repeat;
  }
}

.pagination__number:hover::before {
  background: #EBEBEB;
}

@media all and (-ms-high-contrast: none) {
  .pagination__number:hover::before {
    background: none;
  }
}

.pagination .ellipsis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 3px 0 10px;
}

@media screen and (max-width: 768px) {
  .pagination .ellipsis {
    margin: 0 3px;
  }
}

.pagination .ellipsis span {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5A5A5A;
  margin: 0 1.5px;
}

/* =========================================================
rent
========================================================= */
.rent {
  position: relative;
  text-align: center;
  background: #FFFCEF url(../images/common/rent_bg.png);
}

.rent::before, .rent::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  width: 406px;
  height: 168px;
}

@media screen and (max-width: 768px) {
  .rent::before, .rent::after {
    width: 147px;
    height: 96px;
  }
}

.rent::before {
  left: 0;
  background: url(../images/common/frag.svg) no-repeat;
}

@media screen and (max-width: 768px) {
  .rent::before {
    background: url(../images/common/sp-frag.svg) no-repeat;
  }
}

.rent::after {
  right: 0;
  background: url(../images/common/frag.svg) no-repeat;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

@media screen and (max-width: 768px) {
  .rent::after {
    background: url(../images/common/sp-frag.svg) no-repeat;
  }
}

.rent__inner {
  position: relative;
  max-width: 1200px;
  padding: 77px 17px 54px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .rent__inner {
    padding: 42px 17px 28px;
  }
}

.rent__ttl {
  text-align: center;
}

.rent__ttl .ttl {
  font-size: 3.3em;
  font-weight: 600;
  letter-spacing: 0.11em;
}

@media screen and (max-width: 768px) {
  .rent__ttl .ttl {
    font-size: 2.9em;
    font-weight: bold;
  }
}

.rent__ttl .ttl span {
  display: inline-block;
  -webkit-transform: translate3d(30px, 0, 0) rotate(30deg);
  transform: translate3d(30px, 0, 0) rotate(30deg);
  -webkit-transition: opacity .6s linear, -webkit-transform .4s linear;
  transition: opacity .6s linear, -webkit-transform .4s linear;
  transition: transform .4s linear, opacity .6s linear;
  transition: transform .4s linear, opacity .6s linear, -webkit-transform .4s linear;
  opacity: 0;
}

.rent__ttl .ttl span.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.rent__ttl .ttl span:nth-child(1) {
  -webkit-transition-delay: .02s;
  transition-delay: .02s;
}

.rent__ttl .ttl span:nth-child(2) {
  -webkit-transition-delay: .04s;
  transition-delay: .04s;
}

.rent__ttl .ttl span:nth-child(3) {
  -webkit-transition-delay: .06s;
  transition-delay: .06s;
}

.rent__ttl .ttl span:nth-child(4) {
  -webkit-transition-delay: .08s;
  transition-delay: .08s;
}

.rent__ttl .ttl span:nth-child(5) {
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
}

.rent__ttl .ttl span:nth-child(6) {
  -webkit-transition-delay: .12s;
  transition-delay: .12s;
}

.rent__ttl .ttl span:nth-child(7) {
  -webkit-transition-delay: .14s;
  transition-delay: .14s;
}

.rent__ttl .sttl {
  margin-top: 8px;
  font-size: 1.2em;
  letter-spacing: 0.11em;
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.rent__ttl .sttl.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.rent__text {
  margin-top: 26px;
  font-size: 1.4em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .rent__text {
    width: 78.93333vw;
    margin: 20px auto 0;
    text-align: left;
  }
}

.rent__kame {
  position: absolute;
  bottom: 33px;
  left: -15px;
  width: 168px;
}

.rent__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 860px;
  margin: 24px auto 0;
}

@media screen and (max-width: 768px) {
  .rent__list {
    max-width: 340px;
    margin: 15px auto 0;
  }
}

.rent .list__item {
  width: calc(50% - 5.5px);
  position: relative;
}

.rent .list__item svg {
  width: 100%;
  height: 203px;
  fill: #EFE9D3;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 768px) {
  .rent .list__item svg {
    height: 148px;
  }
}

@media screen and (min-width: 769px) {
  .rent .list__item:hover svg {
    fill: #ffe452;
  }
}

@media screen and (max-width: 768px) {
  .rent .list__item:last-child .list__text {
    text-align: left;
    font-size: 1.0em;
  }
}

.rent .list__link {
  color: #000000;
}

.rent .list__description {
  position: absolute;
  top: 28.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .rent .list__description {
    top: 26%;
  }
}

.rent .list__ttl {
  font-family: 'Hind', sans-serif;
  font-size: 3.5em;
  font-weight: 600;
  letter-spacing: 0.11em;
}

@media screen and (max-width: 768px) {
  .rent .list__ttl {
    font-size: 2.2em;
  }
}

.rent .list__text {
  margin-top: 13px;
  font-size: 1.4em;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .rent .list__text {
    margin-top: 6px;
    font-size: 1.2em;
    line-height: 1.3;
  }
}

/* =========================================================
splash
========================================================= */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 600;
  display: none;
}

.splash__text {
  text-align: center;
}

.splash__text .splash__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: fadeIn 1.5s linear both;
  animation: fadeIn 1.5s linear both;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  opacity: 0;
  width: 370px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .splash__text .splash__logo {
    top: calc(48% + 10px);
    max-width: 288px;
  }
}

.splash__text .splash__copyright {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  -webkit-animation: fadeInOut 1.8s ease-out 1 both;
  animation: fadeInOut 1.8s ease-out 1 both;
  opacity: 0;
  display: block;
  width: 294px;
}

@media screen and (max-width: 768px) {
  .splash__text .splash__copyright {
    top: calc(48% + 10px);
  }
}

@media screen and (max-width: 768px) {
  _:lang(x) + _:-internal-autofill-previewed,
  .splash__text .splash__logo,
  .splash__text .splash__copyright {
    top: 45%;
  }
}

.side-right,
.side-left {
  position: absolute;
  border-collapse: collapse;
  border: none;
  max-width: 720px;
  width: 100%;
}

@media all and (-ms-high-contrast: none) {
  .side-right,
  .side-left {
    width: 720px;
    height: 394px;
    background: center/100% url(../images/common/ie-hexagon-bg.svg) no-repeat;
  }
}

@media screen and (max-width: 1100px) {
  .side-right,
  .side-left {
    max-width: 540px;
  }
}

@media (max-width: 768px) {
  .side-right,
  .side-left {
    max-width: 270px;
  }
}

.side-right tr td:nth-child(2n + 1),
.side-left tr td:nth-child(2n + 1) {
  -webkit-transform: translateY(-45px);
  transform: translateY(-45px);
}

@media screen and (max-width: 1100px) {
  .side-right tr td:nth-child(2n + 1),
  .side-left tr td:nth-child(2n + 1) {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@media (max-width: 768px) {
  .side-right tr td:nth-child(2n + 1),
  .side-left tr td:nth-child(2n + 1) {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.side-right tr:nth-child(2n) td:nth-child(2n),
.side-left tr:nth-child(2n) td:nth-child(2n) {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.side-right tr:nth-child(2n + 1) td:nth-child(2n),
.side-left tr:nth-child(2n + 1) td:nth-child(2n) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.side-right tr:nth-child(2n + 1) td:nth-child(2n + 1) span,
.side-left tr:nth-child(2n + 1) td:nth-child(2n + 1) span {
  opacity: 0.3;
}

.side-right td,
.side-left td {
  width: calc(100% / 9);
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-animation: fadeRe01 8s linear infinite;
  animation: fadeRe01 8s linear infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.side-right td span,
.side-left td span {
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: block;
  background: #fff;
  height: 90px;
  width: 100%;
  margin: 0 auto;
  opacity: 0.6;
}

@media all and (-ms-high-contrast: none) {
  .side-right td span,
  .side-left td span {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .side-right td span,
  .side-left td span {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .side-right td span,
  .side-left td span {
    height: 30px;
  }
}

.effect.active .side-left td,
.effect.active .side-right td {
  opacity: 1;
}

.side-left tr:nth-child(1) td:nth-child(1),
.side-right tr:nth-child(1) td:nth-child(1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.side-left tr:nth-child(1) td:nth-child(2),
.side-right tr:nth-child(1) td:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.side-left tr:nth-child(1) td:nth-child(3),
.side-right tr:nth-child(1) td:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.side-left tr:nth-child(1) td:nth-child(4),
.side-right tr:nth-child(1) td:nth-child(4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.side-left tr:nth-child(1) td:nth-child(5),
.side-right tr:nth-child(1) td:nth-child(5) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.side-left tr:nth-child(1) td:nth-child(6),
.side-right tr:nth-child(1) td:nth-child(6) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.side-left tr:nth-child(1) td:nth-child(7),
.side-right tr:nth-child(1) td:nth-child(7) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.side-left tr:nth-child(1) td:nth-child(8),
.side-right tr:nth-child(1) td:nth-child(8) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.side-left tr:nth-child(1) td:nth-child(9),
.side-right tr:nth-child(1) td:nth-child(9) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.side-left tr:nth-child(2) td:nth-child(1),
.side-right tr:nth-child(2) td:nth-child(1) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.side-left tr:nth-child(2) td:nth-child(2),
.side-right tr:nth-child(2) td:nth-child(2) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.side-left tr:nth-child(2) td:nth-child(3),
.side-right tr:nth-child(2) td:nth-child(3) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.side-left tr:nth-child(2) td:nth-child(4),
.side-right tr:nth-child(2) td:nth-child(4) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

.side-left tr:nth-child(2) td:nth-child(5),
.side-right tr:nth-child(2) td:nth-child(5) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.side-left tr:nth-child(2) td:nth-child(6),
.side-right tr:nth-child(2) td:nth-child(6) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

.side-left tr:nth-child(2) td:nth-child(7),
.side-right tr:nth-child(2) td:nth-child(7) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

.side-left tr:nth-child(3) td:nth-child(1),
.side-right tr:nth-child(3) td:nth-child(1) {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}

.side-left tr:nth-child(3) td:nth-child(2),
.side-right tr:nth-child(3) td:nth-child(2) {
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.side-left tr:nth-child(3) td:nth-child(3),
.side-right tr:nth-child(3) td:nth-child(3) {
  -webkit-transition-delay: 1.9s;
  transition-delay: 1.9s;
}

.side-left tr:nth-child(3) td:nth-child(4),
.side-right tr:nth-child(3) td:nth-child(4) {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}

.side-left tr:nth-child(3) td:nth-child(5),
.side-right tr:nth-child(3) td:nth-child(5) {
  -webkit-transition-delay: 2.1s;
  transition-delay: 2.1s;
}

.side-left tr:nth-child(4) td:nth-child(1),
.side-right tr:nth-child(4) td:nth-child(1) {
  -webkit-transition-delay: 2.2s;
  transition-delay: 2.2s;
}

.side-left tr:nth-child(4) td:nth-child(2),
.side-right tr:nth-child(4) td:nth-child(2) {
  -webkit-transition-delay: 2.3s;
  transition-delay: 2.3s;
}

.side-left tr:nth-child(4) td:nth-child(3),
.side-right tr:nth-child(4) td:nth-child(3) {
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s;
}

.side-left tr:nth-child(5) td:nth-child(1),
.side-right tr:nth-child(5) td:nth-child(1) {
  -webkit-transition-delay: 2.5s;
  transition-delay: 2.5s;
}

.kamelabo__ttlarea {
  padding-bottom: 49px;
  background: center/auto 100% url(../images/common/kamelab_bg.png) repeat-x;
}

@media screen and (max-width: 768px) {
  .kamelabo__ttlarea {
    padding-bottom: 0;
    background: center/auto 100% url(../images/common/sp-kamelab_bg.png) repeat-x;
  }
}

.kamelabo__ttlarea .page__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 63px 0 60px;
}

@media screen and (max-width: 768px) {
  .kamelabo__ttlarea .page__ttl {
    padding: 33px 0;
  }
}

.kamelabo__ttlarea .icon {
  color: #FFFFFF;
  width: 77px;
  margin-right: 25px;
}

@media screen and (max-width: 768px) {
  .kamelabo__ttlarea .icon {
    width: 64px;
    margin-right: 11px;
  }
}

.kamelabo__ttlarea .wrap {
  color: #FFFFFF;
}

.kamelabo__ttlarea .wrap .ttl {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 4.0em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .kamelabo__ttlarea .wrap .ttl {
    font-size: 3.7em;
  }
}

.kamelabo__nav {
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .kamelabo__nav {
    padding: 0;
  }
}

.kamelabo__nav .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.kamelabo__nav .nav__item {
  position: relative;
  width: calc(100% / 3 - 14px);
}

@media screen and (max-width: 768px) {
  .kamelabo__nav .nav__item {
    width: calc(100% / 3);
  }
}

.kamelabo__nav .nav__item::before {
  position: absolute;
  display: block;
  content: "";
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #BA5C14;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 768px) {
  .kamelabo__nav .nav__item::before {
    border-radius: 0;
  }
}

.kamelabo__nav .nav__item.current::before {
  top: 0;
}

.kamelabo__nav .nav__item.current .nav__link {
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  background: #BA5C14;
}

@media screen and (min-width: 769px) {
  .kamelabo__nav .nav__item:hover::before {
    top: 0;
  }
  .kamelabo__nav .nav__item:hover .nav__link {
    color: #FFFFFF;
    border: 3px solid #FFFFFF;
    background: #BA5C14;
  }
}

.kamelabo__nav .nav__link {
  position: relative;
  display: block;
  color: #000000;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.375;
  letter-spacing: 0.11em;
  padding: 21px 0;
  border-radius: 12px;
  border: 3px solid #BA5C14;
  background: #FFFFFF;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 768px) {
  .kamelabo__nav .nav__link {
    padding: 9px 0 38px;
    border-radius: 0;
  }
}

.kamelabo__nav .nav__link::before, .kamelabo__nav .nav__link::after {
  position: absolute;
  display: block;
  content: "";
}

.kamelabo__nav .nav__link::before {
  top: 50%;
  right: 7.5%;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #BA5C14;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .kamelabo__nav .nav__link::before {
    top: 59px;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}

.kamelabo__nav .nav__link::after {
  top: 47%;
  right: 9.5%;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .kamelabo__nav .nav__link::after {
    top: 65px;
    right: 50%;
    -webkit-transform: translateX(50%) rotate(45deg);
    transform: translateX(50%) rotate(45deg);
  }
}

.c-red {
  color: #f00;
}

.fw-b {
  font-weight: bold;
}

/*# sourceMappingURL=map/common.css.map */
