@charset "UTF-8";
/*---------- 共通設定 ----------*/
body {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-image: url("/img/the-apollo/bg.jpg");
  background-repeat: repeat;
  background-attachment: fixed;
}

@media (max-width: 799px) {
  body {
    font-size: 3.2vw;
  }
}

h1, h2, h3, h4, div, p, ul, li, a {
  /* word-break: break-all; */
  /* word-wrap: break-word; */
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-weight: 400;
}

ul, li {
  list-style: none;
}

img {
  vertical-align: bottom;
}
img.pc {display: block;}
img.sp {display: none;}

@media (max-width: 799px) {
  img.pc {display: none;}
  img.sp {display: block !important;}
}
header.mainHeader {
  display: none;
}
div.wrap {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
footer.mainFooter {
  display: none;
}

/*---------- コンテンツ設定 ----------*/
.tpl__content {
  padding-bottom: 20px;
}
@media (max-width: 799px) {
  .tpl__content {
    padding-bottom: 2.08333vw;
  }
}

/*---------- ヘッダー要素 ----------*/
.tpl__content_header {
  box-sizing: border-box;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 2;
  width: 960px;
  font-size: 0;
  background-image: url("/img/the-apollo/bg.jpg");
  background-repeat: repeat;
  padding: 30px 0;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_header-logo,
.tpl__content_header-hamburger {
  display: inline-block;
  vertical-align: middle;
}
.tpl__content_header-logo {
  width: 100%;
  text-align: left;
}
.tpl__content_header-logo img {
  width: 200px;
}
.tpl__content_header-hamburger {
  cursor: pointer;
  position: absolute;
  top: 17px;
  right: calc((100% - 930px) / 2);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: calc(50px / 2);
  background-color: #ff3800;
  transition: background-color .4s;
}
.tpl__content_header-hamburger:hover,
.tpl__content_header-hamburger.open {
  background-color: #fff;
}
.tpl__content_header-hamburger span {
  position: absolute;
  right: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: background-color .4s, opacity .4s, transform .4s;
  margin: auto;
}
.tpl__content_header-hamburger span:nth-of-type(1) {
  top: 13px;
}
.tpl__content_header-hamburger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  opacity: 1;
}
.tpl__content_header-hamburger span:nth-of-type(3) {
  bottom: 13px;
}
.tpl__content_header-hamburger:hover span,
.tpl__content_header-hamburger.open span {
  background-color: #ff3800;
}
.tpl__content_header-hamburger.open span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg)
}
.tpl__content_header-hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.tpl__content_header-hamburger.open span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg)
}
@media (max-width: 799px) {
  .tpl__content_header {
    width: 100%;
    padding: 25px 0;
  }
  .tpl__content_header-logo img {
    width: 140px;
    margin-left: 4.16667vw;
  }
  .tpl__content_header-hamburger {
    top: 8px;
    right: 2.60417vw;
  }
  .tpl__content_header-hamburger:hover {
    background-color: #202f32;
  }
}

/*---------- メニュー要素 ----------*/
.tpl__content_menu {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: -250px;
  z-index: 2;
  width: 250px;
  height: 100vh;
  background-color: rgba(0,0,0,.6);
  transition: top .2s ease, right .4s;
  overflow-y: auto;
  padding: 20px;
}
.tpl__content_menu.open {
  right: 0;
}
.tpl__content_menu ul {
  margin-bottom: 40px;
}
.tpl__content_menu li {
  text-align: left;
  margin-bottom: 20px;
}
.tpl__content_menu li.btn {
  margin-bottom: 30px;
}
.tpl__content_menu li:last-child {
  margin-bottom: 0;
}
.tpl__content_menu a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", serif;
  letter-spacing: 2px;
  line-height: 1.2;
  transition: color .4s;
}
.tpl__content_menu li.btn a {
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
  border-radius: 5px;
  background-color: #ff3800;
  transition: color .4s, background-color .4s;
  overflow: hidden;
}
.tpl__content_menu li.btn a::before {
  display: inline-block;
  position: absolute;
  content: '';
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.tpl__content_menu a:hover {
  color: #ff3800;
}
.tpl__content_menu li.btn a::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  content: "";
  width: 16px;
  height: 13px;
  background-image: url("/img/the-apollo/icon_blank.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  transition: background-image .4s;
  margin: auto;
}
.tpl__content_menu li.btn a:hover {
  color: #ff3800;
  background-color: #fff;
}
.tpl__content_menu li.btn a:hover::after {
  background-image: url("/img/the-apollo/icon_blank_hover.svg");
}
.tpl__content_menu li.btn a span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_menu-close {
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", serif;
  letter-spacing: 2px;
  line-height: .72;
  transition: color .4s;
  padding-right: 15px;
}
.tpl__content_menu-close::before,
.tpl__content_menu-close::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
  transition: background-color .4s;
}
.tpl__content_menu-close::before {
  transform: translateY(4px) rotate(-45deg);
}
.tpl__content_menu-close::after {
  transform: translateY(4px) rotate(45deg);
}
.tpl__content_menu-close:hover {
  color: #ff3800;
}
.tpl__content_menu-close:hover::before,
.tpl__content_menu-close:hover::after {
  background-color: #ff3800;
}
@media (max-width: 799px) {
  .tpl__content_menu {
    right: -60vw;
    width: 60vw;
    padding: 3.125vw;
  }
  .tpl__content_menu ul {
    margin-bottom: 4.16667vw;
  }
  .tpl__content_menu li {
    margin-bottom: 2.03833vw;
  }
  .tpl__content_menu li.btn {
    margin-bottom: 3.125vw;
  }
  .tpl__content_menu a {
    font-size: 3.4vw;
    line-height: 1.2;
  }
  .tpl__content_menu li.btn a {
    height: 10vw;
    font-size: 3.8vw;
    border-radius: 1.04167vw;
  }
  .tpl__content_menu a:hover {
    color: #fff;
  }
  .tpl__content_menu li.btn a::after {
    right: 1.5vw;
    width: 4.2vw;
    height: 3.7vw;
  }
  .tpl__content_menu li.btn a:hover {
    color: #fff;
    background-color: #85d107;
  }
  .tpl__content_menu li.btn a:hover::after {
    background-image: url("/img/the-apollo/icon_blank.svg");
  }
  .tpl__content_menu li.btn a span {
    top: 56%;
  }
  .tpl__content_menu-close {
    font-size: 3.4vw;
    padding-right: 4vw;
  }
  .tpl__content_menu-close::before,
  .tpl__content_menu-close::after {
    width: 4vw;
    height: .20833vw;
  }
  .tpl__content_menu-close::before {
    transform: translateY(.5vw) rotate(-45deg);
  }
  .tpl__content_menu-close::after {
    transform: translateY(.5vw) rotate(45deg);
  }
  .tpl__content_menu-close:hover {
    color: #fff;
  }
  .tpl__content_menu-close:hover::before,
  .tpl__content_menu-close:hover::after {
    background-color: #fff;
  }
}

/*---------- キービジュアル ----------*/
.tpl__content_kv {
  position: relative;
  width: 960px;
  overflow: hidden;
  padding-top: 80px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_kv-bg {
  width: 960px;
}
.tpl__content_kv-bg img {
  width: 100%;
}

@media (max-width: 799px) {
  .tpl__content_kv {
    width: 100%;
    padding-top: 65px;
    margin-bottom: 8vw;
  }
  .tpl__content_kv-bg {
    width: 100%;
  }
}

/*---------- ABOUT ----------*/
.tpl__content_about {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_about-txt {
  text-align: center;
  font-size: 21px;
  line-height: 2;
  margin-bottom: 40px;
}
.tpl__content_about-txt span {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
.tpl__content_about-txt:last-child {
  margin-bottom: 0;
}
@media (max-width: 799px) {
  .tpl__content_about {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_about-txt {
    text-align: center;
    font-size: 3.8vw;
    line-height: 1.5;
    margin-bottom: 6vw;
  }
  .tpl__content_about-txt span {
    font-size: 7vw;
  }
}

/*---------- SURVEY CAMPAING ---------*/
.tpl__content_campaing {
  width: 750px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_campaing h2 {
  color: #ff3800;
  font-size: 42px;
  font-weight: 500;
  font-family: "Montserrat", serif;
  letter-spacing: 3px;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.tpl__content_campaing--wrap {
  background-color: #fff;
  padding-bottom: 40px;
}
.tpl__content_campaing-photo img {
  width: 100%;
}
.tpl__content_campaing-text {
  box-sizing: border-box;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  font-family: "Montserrat", 'Noto Sans JP', serif;
  text-align: center;
  letter-spacing: .05em;
  line-height: 1.8;
  padding: 40px;
}
.tpl__content_campaing-btn {
  width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_campaing-btn a {
  display: block;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 60px;
  border-top: 1px solid #ff3800;
  border-right: 1px solid #ff3800;
  border-bottom: 5px solid #9e2300;
  border-left: 1px solid #ff3800;
  border-radius: calc(60px / 2);
  background-color: #ff3800;
  overflow: hidden;
  transition: border-bottom .4s, background-color .4s;
}
.tpl__content_campaing-btn a::before {
  display: inline-block;
  position: absolute;
  content: '';
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.tpl__content_campaing-btn p {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", 'Noto Sans JP', serif;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  transition: color .4s;
  margin-top: 5px;
  margin-left: 20px;
}
.tpl__content_campaing-btn span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_campaing-btn span::before,
.tpl__content_campaing-btn span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  margin: auto;
}
.tpl__content_campaing-btn span::before {
  left: 20px;
  width: 30px;
  height: 30px;
  background-image: url("/img/the-apollo/icon_page.png");
  transition: background-image .4s;
}
.tpl__content_campaing-btn span::after {
  right: 20px;
  width: 9px;
  height: 16px;
  background-image: url("/img/the-apollo/icon_arrow.svg");
  transition: background-image .4s;
}
.tpl__content_campaing-btn a:hover {
  border-bottom: 5px solid #ff3800;
  background-color: #fff;
}
.tpl__content_campaing-btn a:hover p {
  color: #ff3800;
}
.tpl__content_campaing-btn a:hover span::before {
  background-image: url("/img/the-apollo/icon_page_hover.png");
}
.tpl__content_campaing-btn a:hover span::after {
  background-image: url("/img/the-apollo/icon_arrow_hover.svg");
}
@media (max-width: 799px) {
  .tpl__content_campaing {
    width: calc(100% - 15vw);
  }
  .tpl__content_campaing h2 {
    font-size: 6vw;
    letter-spacing: 2px;
    margin-bottom: 3.125vw;
  }
  .tpl__content_campaing--wrap {
    padding-bottom: 4vw;
  }
  .tpl__content_campaing-text {
    font-size: 3vw;
    padding: 4vw;
  }
  .tpl__content_campaing-btn {
    width: 76vw;
  }
  .tpl__content_campaing-btn a {
    height: 14vw;
    border-top: .3vw solid #ff3800;
    border-right: .3vw solid #ff3800;
    border-bottom: 1vw solid #9e2300;
    border-left: .3vw solid #ff3800;
    border-radius: calc(14vw / 2);
  }
  .tpl__content_campaing-btn p {
    font-size: 4.6vw;
    line-height: 1;
    margin-top: 1vw;
    margin-left: 4vw;
  }
  .tpl__content_campaing-btn span::before {
    left: 4vw;
    width: 6vw;
    height: 6vw;
  }
  .tpl__content_campaing-btn span::after {
    right: 4vw;
    width: 2.5vw;
    height: 4.5vw;
  }
  .tpl__content_campaing-btn a:hover {
    border-bottom: 1vw solid #9e2300;
    background-color: #ff3800;
  }
  .tpl__content_campaing-btn a:hover p {
    color: #fff;
  }
  .tpl__content_campaing-btn a:hover span::before {
    background-image: url("/img/the-apollo/icon_page.png");
  }
  .tpl__content_campaing-btn a:hover span::after {
    background-image: url("/img/the-apollo/icon_arrow.svg");
  }
}

/*---------- COURSE ----------*/
.tpl__content_food {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_food h2 {
  color: #ff3800;
  font-size: 42px;
  font-weight: 500;
  font-family: "Montserrat", serif;
  letter-spacing: 3px;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.tpl__content_food-slide {
  position: relative;
  width: 750px;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_food-slide .slick-list {
  background-color: #fff;
}
.tpl__content_food-slide .slick-slide {
  background-color: #fff;
}
.tpl__content_food-slide .slick-arrow {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 215px;
  width: 30px;
  height: 50px;
  margin: auto;
}
.tpl__content_food-slide .prev-arrow {
  left: -70px;
  transform: scale(-1,1);
}
.tpl__content_food-slide .next-arrow {
  right: -70px;
}
.tpl__content_food-slide-photo {
  margin-bottom: 30px;
}
.tpl__content_food-slide img {
  width: 100%;
}
.tpl__content_food-slide--wrap {
  padding-bottom: 30px;
  margin: 0 24px;
}
.tpl__content_food-slide--wrap.course {
  padding-bottom: 0;
}
.tpl__content_food-slide--wrap.pie {
  width: 750px;
  background-color: #fff;
  padding-bottom: 0;
  margin: 0 auto;
}
.tpl__content_food-slide-name {
  position: relative;
  color: #ff3800;
  font-size: 28px;
  font-weight: 500;
  font-family: "Montserrat", 'Noto Sans JP', serif;
  line-height: 1.5;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 10px;
}
.tpl__content_food-slide-name.jp {
  font-size: 24px;
  letter-spacing: 1px;
}
.tpl__content_food-slide-text {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  font-family: "Montserrat", 'Noto Sans JP', serif;
  text-align: center;
  letter-spacing: .05em;
  line-height: 1.8;
}
.tpl__content_food--wrap {
  width: 750px;
  background-color: #fff;
  padding: 40px 0;
  margin: 0 auto;
}
.tpl__content_food-btn {
  width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_food-btn a {
  display: block;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 60px;
  border-top: 1px solid #ff3800;
  border-right: 1px solid #ff3800;
  border-bottom: 5px solid #9e2300;
  border-left: 1px solid #ff3800;
  border-radius: calc(60px / 2);
  background-color: #ff3800;
  overflow: hidden;
  transition: border-bottom .4s, background-color .4s;
}
.tpl__content_food-btn a::before {
  display: inline-block;
  position: absolute;
  content: '';
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.tpl__content_food-btn p {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", serif;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  transition: color .4s;
  margin-top: 5px;
  margin-left: 20px;
}
.tpl__content_food-btn span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_food-btn span::before,
.tpl__content_food-btn span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  margin: auto;
}
.tpl__content_food-btn span::before {
  left: 20px;
  width: 30px;
  height: 30px;
  background-image: url("/img/the-apollo/icon_page.png");
  transition: background-image .4s;
}
.tpl__content_food-btn span::after {
  right: 20px;
  width: 9px;
  height: 16px;
  background-image: url("/img/the-apollo/icon_arrow.svg");
  transition: background-image .4s;
}
.tpl__content_food-btn a:hover {
  border-bottom: 5px solid #ff3800;
  background-color: #fff;
}
.tpl__content_food-btn a:hover p {
  color: #ff3800;
}
.tpl__content_food-btn a:hover span::before {
  background-image: url("/img/the-apollo/icon_page_hover.png");
}
.tpl__content_food-btn a:hover span::after {
  background-image: url("/img/the-apollo/icon_arrow_hover.svg");
}
@media (max-width: 799px) {
  .tpl__content_food {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_food h2 {
    font-size: 6vw;
    letter-spacing: 2px;
    margin-bottom: 3.125vw;
  }
  .tpl__content_food-slide {
    width: calc(100% - 15vw);
  }
  .tpl__content_food-slide .slick-arrow {
    top: 22.3vw;
    width: 4.16666vw;
    height: 8.68421vw;
  }
  .tpl__content_food-slide .prev-arrow {
    left: -5vw;
    transform: scale(-1,1);
  }
  .tpl__content_food-slide .next-arrow {
    right: -5vw;
  }
  .tpl__content_food-slide-photo {
    margin-bottom: 3.125vw;
  }
  .tpl__content_food-slide--wrap {
    padding-bottom: 3.125vw;
    margin: 0 3.125vw;
  }
  .tpl__content_food-slide--wrap.pie {
    width: calc(100% - 15vw);
  }
  .tpl__content_food-slide-name {
    font-size: 4.7vw;
    margin-bottom: 1.04166vw;
  }
  .tpl__content_food-slide-name.sp-menu,
  .tpl__content_food-slide-name.pie {
    font-size: 3vw;
    margin-bottom: 1em;
  }
  .tpl__content_food-slide-name.jp {
    font-size: 4.2vw;
  }
  .tpl__content_food-slide-text {
    font-size: 3vw;
  }
  .tpl__content_food--wrap {
    width: calc(100% - 15vw);
    padding: 4vw 0;
  }
  .tpl__content_food-btn {
    width: 76vw;
  }
  .tpl__content_food-btn a {
    height: 14vw;
    border-top: .3vw solid #ff3800;
    border-right: .3vw solid #ff3800;
    border-bottom: 1vw solid #9e2300;
    border-left: .3vw solid #ff3800;
    border-radius: calc(14vw / 2);
  }
  .tpl__content_food-btn p {
    font-size: 4.6vw;
    line-height: 1;
    margin-top: 1vw;
    margin-left: 4vw;
  }
  .tpl__content_food-btn span::before {
    left: 4vw;
    width: 6vw;
    height: 6vw;
  }
  .tpl__content_food-btn span::after {
    right: 4vw;
    width: 2.5vw;
    height: 4.5vw;
  }
  .tpl__content_food-btn a:hover {
    border-bottom: 1vw solid #9e2300;
    background-color: #ff3800;
  }
  .tpl__content_food-btn a:hover p {
    color: #fff;
  }
  .tpl__content_food-btn a:hover span::before {
    background-image: url("/img/the-apollo/icon_page.png");
  }
  .tpl__content_food-btn a:hover span::after {
    background-image: url("/img/the-apollo/icon_arrow.svg");
  }
}

/*---------- SPACE ----------*/
.tpl__content_space {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_space h2 {
  color: #ff3800;
  font-size: 42px;
  font-weight: 500;
  font-family: "Montserrat", serif;
  letter-spacing: 3px;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.tpl__content_space-slide {
  position: relative;
  width: 750px;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_space-slide .slick-arrow {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 50px;
  margin: auto;
}
.tpl__content_space-slide .prev-arrow {
  left: -70px;
  transform: scale(-1,1);
}
.tpl__content_space-slide .next-arrow {
  right: -70px;
}
.tpl__content_space-slide img {
  width: 100%;
}
.tpl__content_space-slide--wrap {
  box-sizing: border-box;
  width: 750px;
  background-color: #fff;
  padding: 30px;
  margin: 0 auto;
}
.tpl__content_space-slide-text {
  color: #000;
  font-size: 15px;
  font-family: "Montserrat", 'Noto Sans JP', serif;
  text-align: center;
  letter-spacing: .05em;
  line-height: 1.8;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .tpl__content_space {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_space h2 {
    font-size: 6vw;
    letter-spacing: 2px;
    margin-bottom: 3.125vw;
  }
  .tpl__content_space-slide {
    width: calc(100% - 14.16666vw);
  }
  .tpl__content_space-slide .slick-arrow {
    width: 4.16666vw;
    height: 8.68421vw;
  }
  .tpl__content_space-slide .prev-arrow {
    left: -5.08333vw;
    transform: scale(-1,1);
  }
  .tpl__content_space-slide .next-arrow {
    right: -5.08333vw;
  }
  .tpl__content_space-slide--wrap {
    width: calc(100% - 14.16666vw);
    padding: 3.125vw;
    margin: 0 auto;
  }
  .tpl__content_space-slide-text {
    font-size: 3.2vw;
  }
}

/*---------- GALLERY ----------*/
.tpl__content_gallery {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_gallery h2 {
  color: #ff3800;
  font-size: 42px;
  font-weight: 500;
  font-family: "Montserrat", serif;
  letter-spacing: 3px;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.tpl__content_gallery-list {
  font-size: 0;
  margin-bottom: 40px;
}
.tpl__content_gallery-list div {
  display: inline-block;
  width: 320px;
}
.tpl__content_gallery-list a {
  display: block;
  width: 100%;
  height: 213px;
  overflow: hidden;
}
.tpl__content_gallery-list a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.tpl__content_gallery-list a:hover img {
  transform: scale(1.1);
}
.lum-lightbox {
  z-index: 10001;
}
.lum-lightbox-inner img.lum-img {
  max-width: 90%;
}
.tpl__content_gallery-btn {
  width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_gallery-btn a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 60px;
  border-bottom: 5px solid #9e2300;
  border-radius: calc(60px / 2);
  background-color: #ff3800;
  overflow: hidden;
  transition: border-bottom .4s, background-color .4s;
}
.tpl__content_gallery-btn a::before {
  display: inline-block;
  position: absolute;
  content: '';
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.tpl__content_gallery-btn p {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", serif;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  transition: color .4s;
  margin-top: 5px;
  margin-left: 20px;
}
.tpl__content_gallery-btn span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_gallery-btn span::before,
.tpl__content_gallery-btn span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  margin: auto;
}
.tpl__content_gallery-btn span::before {
  left: 20px;
  width: 30px;
  height: 30px;
  background-image: url("/img/the-apollo/icon_page.png");
  transition: background-image .4s;
}
.tpl__content_gallery-btn span::after {
  right: 20px;
  width: 9px;
  height: 16px;
  background-image: url("/img/the-apollo/icon_arrow.svg");
  transition: background-image .4s;
}
.tpl__content_gallery-btn a:hover {
  border-bottom: 5px solid #ff3800;
  background-color: #fff;
}
.tpl__content_gallery-btn a:hover p {
  color: #ff3800;
}
.tpl__content_gallery-btn a:hover span::before {
  background-image: url("/img/the-apollo/icon_page_hover.png");
}
.tpl__content_gallery-btn a:hover span::after {
  background-image: url("/img/the-apollo/icon_arrow_hover.svg");
}
@media (max-width: 799px) {
  .tpl__content_gallery {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_gallery h2 {
    font-size: 6vw;
    letter-spacing: 2px;
    margin-bottom: 3.125vw;
  }
  .tpl__content_gallery-list {
    margin-bottom: 8vw;
  }
  .tpl__content_gallery-list div {
    /* width: calc(100% / 2); */
    width: calc(100% / 3);
  }
  .tpl__content_gallery-list a {
    /* height: 50vw; */
    height: calc(100vw / 3);
  }
  .tpl__content_gallery-list a:hover img {
    transform: scale(1.0);
  }
  .lum-lightbox-inner img.lum-img {
    max-width: 100%;
  }
  .lum-gallery-button:after {
    width: 7vw !important;
    height: 7vw !important;
  }
  .tpl__content_gallery-btn {
    width: 76vw;
  }
  .tpl__content_gallery-btn a {
    height: 14vw;
    border-bottom: 1vw solid #9e2300;
    border-radius: calc(14vw / 2);
  }
  .tpl__content_gallery-btn p {
    font-size: 4.6vw;
    line-height: 1;
    margin-top: 1vw;
    margin-left: 4vw;
  }
  .tpl__content_gallery-btn span::before {
    left: 4vw;
    width: 6vw;
    height: 6vw;
  }
  .tpl__content_gallery-btn span::after {
    right: 4vw;
    width: 2.5vw;
    height: 4.5vw;
  }
  .tpl__content_gallery-btn a:hover {
    border-bottom: 1vw solid #9e2300;
    background-color: #ff3800;
  }
  .tpl__content_gallery-btn a:hover p {
    color: #fff;
  }
  .tpl__content_gallery-btn a:hover span::before {
    background-image: url("/img/the-apollo/icon_page.png");
  }
  .tpl__content_gallery-btn a:hover span::after {
    background-image: url("/img/the-apollo/icon_arrow.svg");
  }
}

/*---------- 住所関連 ----------*/
.tpl__content_access {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_access h2 {
  color: #ff3800;
  font-size: 42px;
  font-weight: 500;
  font-family: "Montserrat", serif;
  letter-spacing: 3px;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.tpl__content_access-map {
  margin-bottom: 20px;
}
.tpl__content_access-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(100%);
}
.tpl__content_access-text {
  width: 860px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", 'Noto Sans JP', serif;
  line-height: 1.5;
  text-align: left;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}
.tpl__content_access-text span {
  display: block;
  font-weight: 600;
  letter-spacing: 3px;
}
@media (max-width: 799px) {
  .tpl__content_access {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_access h2 {
    font-size: 6vw;
    letter-spacing: 2px;
    margin-bottom: 3.125vw;
  }
  .tpl__content_access-map {
    margin-bottom: 2.08333vw;
  }
  .tpl__content_access-map iframe {
    height: 62.5vw;
  }
  .tpl__content_access-text {
    width: calc(100% - 10vw);
    font-size: 3.6vw;
    margin-bottom: 3.125vw;
  }
  .tpl__content_access-text span {
    letter-spacing: 2px;
  }
}

/*---------- クロージングロゴ ----------*/
.tpl__content_closing {
  width: 960px;
  margin-right: auto;
  margin-bottom: 120px;
  margin-left: auto;
}
.tpl__content_closing div {
  width: 400px;
  margin: 0 auto;
}
.tpl__content_closing div img {
  width: 100%;
}
@media (max-width: 799px) {
  .tpl__content_closing {
    width: calc(100% - 10vw);
    margin-bottom: 12.5vw;
  }
  .tpl__content_closing div {
    width: 80%;
  }
}

/*---------- 最下部ボタン ----------*/
.tpl__content_foot {
  width: 960px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_foot-btn {
  width: 400px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
.tpl__content_foot-btn a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 60px;
  border-bottom: 5px solid #9e2300;
  border-radius: calc(60px / 2);
  background-color: #ff3800;
  overflow: hidden;
  transition: border-bottom .4s, background-color .4s;
}
.tpl__content_foot-btn a::before {
  display: inline-block;
  position: absolute;
  content: '';
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}
.tpl__content_foot-btn p {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: "Montserrat", serif;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  transition: color .4s;
  margin-top: 5px;
  margin-left: 20px;
}
.tpl__content_foot-btn span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
}
.tpl__content_foot-btn span::before,
.tpl__content_foot-btn span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  margin: auto;
}
.tpl__content_foot-btn span::before {
  left: 20px;
  width: 30px;
  height: 30px;
  background-image: url("/img/the-apollo/icon_page.png");
  transition: background-image .4s;
}
.tpl__content_foot-btn span::after {
  right: 20px;
  width: 9px;
  height: 16px;
  background-image: url("/img/the-apollo/icon_arrow.svg");
  transition: background-image .4s;
}
.tpl__content_foot-btn a:hover {
  border-bottom: 5px solid #ff3800;
  background-color: #fff;
}
.tpl__content_foot-btn a:hover p {
  color: #ff3800;
}
.tpl__content_foot-btn a:hover span::before {
  background-image: url("/img/the-apollo/icon_page_hover.png");
}
.tpl__content_foot-btn a:hover span::after {
  background-image: url("/img/the-apollo/icon_arrow_hover.svg");
}
.tpl__content_foot-sns {
  width: 270px;
  font-size: 0;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_foot-sns div {
  display: inline-block;
  width: 50px;
  vertical-align: top;
  margin-right: 20px;
  margin-left: 20px;
}
.tpl__content_foot-sns a {
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: calc(50px / 2);
  background-color: #ff3800;
  transition: background-color .4s;
}
.tpl__content_foot-sns a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 25px;
  background-size: 100%;
  background-repeat: no-repeat;
  transition: background-image .4s;
  margin: auto;
}
.tpl__content_foot-sns a.facebook::after {
  width: 13px;
  height: 25px;
}
.tpl__content_foot-sns a.facebook::after {
  background-image: url("/img/the-apollo/icon_facebook.svg");
}
.tpl__content_foot-sns a.instagram::after {
  background-image: url("/img/the-apollo/icon_instagram.svg");
}
.tpl__content_foot-sns a.home::after {
  background-image: url("/img/the-apollo/icon_home.svg");
}
.tpl__content_foot-sns a:hover {
  background-color: #fff;
}
.tpl__content_foot-sns a.facebook:hover::after {
  background-image: url("/img/the-apollo/icon_facebook_hover.svg");
}
.tpl__content_foot-sns a.instagram:hover::after {
  background-image: url("/img/the-apollo/icon_instagram_hover.svg");
}
.tpl__content_foot-sns a.home:hover::after {
  background-image: url("/img/the-apollo/icon_home_hover.svg");
}
@media (max-width: 799px) {
  .tpl__content_foot {
    width: 100%;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_foot-btn {
    width: 76vw;
    margin-bottom: 8.33333vw;
  }
  .tpl__content_foot-btn a {
    height: 14vw;
    border-bottom: 1vw solid #9e2300;
    border-radius: calc(14vw / 2);
  }
  .tpl__content_foot-btn p {
    font-size: 4.6vw;
    line-height: 1;
    margin-top: 1vw;
    margin-left: 4vw;
  }
  .tpl__content_foot-btn span::before {
    left: 4vw;
    width: 6vw;
    height: 6vw;
  }
  .tpl__content_foot-btn span::after {
    right: 4vw;
    width: 2.5vw;
    height: 4.5vw;
  }
  .tpl__content_foot-btn a:hover {
    border-bottom: 1vw solid #9e2300;
    background-color: #ff3800;
  }
  .tpl__content_foot-btn a:hover p {
    color: #fff;
  }
  .tpl__content_foot-btn a:hover span::before {
    background-image: url("/img/the-apollo/icon_page.png");
  }
  .tpl__content_foot-btn a:hover span::after {
    background-image: url("/img/the-apollo/icon_arrow.svg");
  }
  .tpl__content_foot-sns {
    width: 100%;
    text-align: center;
  }
  .tpl__content_foot-sns div {
    width: 12vw;
    margin-right: 2.08333vw;
    margin-left: 2.08333vw;
  }
  .tpl__content_foot-sns a {
    height: 12vw;
    border-radius: calc(12vw / 2);
  }
  .tpl__content_foot-sns a::after {
    width: 6vw;
    height: 6vw;
  }
  .tpl__content_foot-sns a.facebook::after {
    width: 3.5vw;
    height: 6vw;
  }
  .tpl__content_foot-sns a:hover {
    background-color: #85d107;
  }
  .tpl__content_foot-sns a.facebook:hover::after {
    background-image: url("/img/the-apollo/icon_facebook.svg");
  }
  .tpl__content_foot-sns a.instagram:hover::after {
    background-image: url("/img/the-apollo/icon_instagram.svg");
  }
  .tpl__content_foot-sns a.home:hover::after {
    background-image: url("/img/the-apollo/icon_home.svg");
  }
}

/*---------- ページTOPに戻る矢印 ----------*/
.tpl__content_totop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65px;
  height: 45px;
  opacity: 0;
  text-align: center;
  transition: top .7s, opacity .4s;
  margin: auto;
}
.tpl__content_totop a {
  pointer-events: none;
  display: block;
}
.tpl__content_totop.scroll {
  opacity: 1;
}
.tpl__content_totop.scroll a {
  pointer-events: painted;
}
.tpl__content_totop:hover {
  top: -40px;
}
.tpl__content_totop img {
  width: 7px;
  height: 45px;
}
@media (max-width: 799px) {
  .tpl__content_totop {
    width: 35px;
    height: 56px;
  }
  .tpl__content_totop:hover {
    top: 0;
  }
  .tpl__content_totop img {
    width: 8px;
    height: 56px;
  }
}

/*---------- フッター要素 ----------*/
.tpl__content_footer {
  width: calc(100% - 130px);
  padding-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
}
.tpl__content_footer-copyright,
.tpl__content_footer-link {
  float: right;
  width: 50%;
  font-size: 12px;
  font-family: "Montserrat", 'Noto Sans JP', serif;
}
.tpl__content_footer-copyright {
  color: #000;
  text-align: left;
}
.tpl__content_footer-link {
  text-align: right;
}
.tpl__content_footer-link a {
  color: #000;
  transition: opacity .4s;
}
.tpl__content_footer-link a:hover {
  opacity: .7;
}
@media (max-width: 799px) {
  .tpl__content_footer {
    width: 100%;
    padding-bottom: 2.08333vw;
  }
  .tpl__content_footer-copyright,
  .tpl__content_footer-link {
    float: none;
    width: 100%;
    font-size: 2.8vw;
  }
  .tpl__content_footer-copyright {
    text-align: center;
  }
  .tpl__content_footer-link {
    text-align: center;
    margin-bottom: .52088vw;
  }
  .tpl__content_footer-link a:hover {
    opacity: 1;
  }
}

/*---------- アニメーション詳細 ----------*/
@-webkit-keyframes shinyshiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
