/* modal
-----------------------------------------*/
#c-modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  -webkit-animation: bgAnimodal 0.3s ease 3s forwards;
  animation: bgAnimodal 0.3s ease 3s forwards;
  opacity: 0;
  visibility: hidden;
}
#c-modal {
  position: fixed;
  z-index: 999999;
  width: 70%;
  top: 50%;
  left: 50%;
  max-width: 32rem;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  max-height: 90vh;
  text-align: center;
  -webkit-animation: bgAnimodal 0.3s ease 3s forwards;
  animation: bgAnimodal 0.3s ease 3s forwards;
  opacity: 0;
  visibility: hidden;
}
#c-modal_close {
  width: 46px;
  height: 46px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  top: -16px;
  right: -16px;
  position: absolute;
  line-height: 46px;
  font-size: 20px;
  padding: 1px;
  -webkit-animation: bgAnimodal 0.3s ease 3s forwards;
  animation: bgAnimodal 0.3s ease 3s forwards;
  opacity: 0;
  visibility: hidden;
}
#c-modal img {
  max-width: 100%;
  max-height: 90vh;
  height: auto;
}
@-webkit-keyframes bgAnimodal {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes bgAnimodal {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
/* フロートサイドメニュー
--------------------------- */
/* SIDE LINK */
.c-side-link {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-side-link {
    display: block;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
  }
  .c-side-contact001 {
    background-color: #333;
    color: #fff;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    text-align: center;
    font-size: 20px;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    /*  text-orientation: upright;*/
    height: 100px;
    width: 130px;
    display: block;
    margin-bottom: 16px;
  }
  .c-side-link_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .c-side-link_img01 {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    margin: 8px auto;
    position: relative;
  }
  .c-side-link_img01::before {
    content: "";
    display: block;
    width: 60%;
    height: 60%;
    background-image: url("../images/side_img2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .c-side-link_img01.csli-estate::before {
    background-image: url("../images/side_img3.svg");
  }
  .c-side-link_txt {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1;
  }
  .c-side-link_txt span {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .c-side-contact002 {
    background-color: #0e3033;
    color: #fff;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    text-align: center;
    font-size: 20px;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    /*  text-orientation: upright;*/
    height: 100px;
    width: 130px;
    display: block;
    margin-bottom: 16px;
  }
  .c-side-link-model .c-side-contact002 {
    width: 160px;
  }
  .c-side-link_img02 {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    margin: 8px auto;
    position: relative;
  }
  .c-side-link_img02::before {
    content: "";
    display: block;
    width: 60%;
    height: 60%;
    background-image: url("../images/side_mail.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .c-side-link a:hover {
    opacity: 0.8;
  }
  /*  .c-side-link.show02 a {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }*/
}
/*SIDE LINK-END*/
/* サイトの一番上に戻る */
.pageup {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 10.5%;
  right: 4.8%;
  z-index: 99;
  line-height: 40px;
  font-size: 1.071rem;
  letter-spacing: 0.06em;
  color: #808080;
  padding-right: 10px;
}
.pageup:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  color: #808080;
}
.pageup::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-top: 1px solid rgba(128, 128, 128, 0.75);
  border-left: 1px solid rgba(128, 128, 128, 0.75);
  width: 4px;
  height: 14px;
  -webkit-transform: skewY(36deg) translateY(-50%);
  -ms-transform: skewY(36deg) translateY(-50%);
  transform: skewY(36deg) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .pageup {
    display: none !important; /*非表示 */
  }
}
/* fotter 固定メニュー
----------------------------------------------------------------------------------------------------*/
.footer_menu {
  display: none;
}
@media screen and (max-width: 749px) {
  .footer_menu {
    width: 100%;
    height: 60px;
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 900;
    background-color: #0e3033;
  }
  .footer_menu a {
    width: 33.3333333%;
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .footer_menu a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }
  .footer_menu span {
    display: block;
    font-size: 0.857rem;
    margin-bottom: -2px;
  }
  .footer_menu.footer_menu_model a {
    width: 100%;
  }
}
/*||イベント詳細ページ-SP||*/
.footer_menu_event a {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  border-top: none;
}
.footer_menu_event_img {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  filter: invert(100%);
}
.footer_menu_event_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/************************
イベント詳細ページ-PC
*************************/
.footer_menu_event_pc {
  display: none;
}
@media screen and (min-width: 750px) {
  .footer_menu_event_pc {
    display: block;
    position: fixed;
    bottom: 5%;
    right: 2.5%;
    z-index: 999;
  }
  .footer_menu_event_pc a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0e3033;
    color: #fff;
    padding: 1rem 1.5rem 1rem 2rem;
    font-size: 1.1rem;
    position: relative;
  }
  .footer_menu_event_pc a::after {
    content: "";
    display: inline-block;
    border-top: 4px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    border-left-color: rgb(255, 255, 255);
    margin-left: 1.5rem;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  .footer_menu_event_pc a:hover::after {
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
  .footer_menu_event_pcimg {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 13px;
    filter: invert(100%);
  }
  .footer_menu_event_pc img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
/* Footer
----------------------------------------------------------------------------------------------------*/
footer {
  width: 100%;
  padding: 130px 5% 158px;
  color: #fff;
  background-color: #333333;
  margin-top: 84px;
}
.footer__inner {
  max-width: 1168px;
  width: 100%;
}
.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__col:nth-child(1) {
  margin-bottom: 16px;
}
.footer__col:nth-child(2) {
  margin-bottom: 32px;
}
.footer__left {
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 30px;
}
.footer__left_instagram_box {
  justify-content: space-around;
  margin-right: 0;
}
.footer__right {
  flex: 0 1 auto;
  width: 100%;
  max-width: 750px;
}
.footer__logo {
  width: 200px;
}
.footer_instagram_spbox {
  display: flex;
  justify-content: space-around;
  width: 75%;
  margin: 1rem auto;
  max-width: 310px;
}
.footer_instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
}
.footer_instagram i {
  font-size: 1.6rem;
  margin-right: 10px;
}
footer .c-nav1 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  margin: 0 -14px;
}
.footer__info {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 30px;
}
footer .c-nav2 a {
  margin-right: 15px;
  color: #ccc;
}
footer .c-nav2 a:last-child {
  margin-right: 0;
}
footer .c-nav2 a::after {
  background-color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 991px) {
  footer {
    padding: 80px 5% 110px;
  }
  .footer__sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .footer__logo {
    margin-bottom: 15px;
  }
  .footer__info {
    margin-bottom: 20px;
  }
  footer .c-nav1 {
    margin: 0 0 30px;
    justify-content: center;
  }
  footer .c-nav2 {
    margin-bottom: 10px;
  }
  footer .c-nav2 a {
    font-size: 0.9rem;
  }
  .footer_instagram {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  footer {
    margin-top: 40px;
    padding: 60px 5% 90px;
  }
  .footer__info {
    font-size: 0.9rem;
    line-height: 25px;
  }
  footer .c-nav1 li {
    margin: 0 8px;
  }
  footer .c-nav1 a {
    padding: 5px 0;
  }
  footer .c-nav2 {
    margin-bottom: 20px;
  }
  .footer_instagram {
    margin-bottom: 30px;
  }
}
/* fotter 資料請求バナー
----------------------------------------------------------------------------------------------------*/
.footer__banner_item {
  display: block;
  width: 90%;
  margin: 1rem auto 4rem;
  max-width: 1110px;
}
.footer__banner_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/************************
line_bnr
*************************/
.line_bnr {
  position: fixed;
  bottom: 2%;
  left: 3.5%;
  z-index: 999;
}
.line_bnr a {
  display: block;
  width: 240px;
}
.line_bnr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 575px) {
  .line_bnr {
    bottom: 75px;
    left: 5%;
  }
  .line_bnr a {
    width: 140px;
  }
}
/************************
イベントページ-フッター非表示
*************************/
footer.event_hidden_footer {
  padding: 0;
  background-color: inherit;
}