@charset "UTF-8";
/* フォント読込 */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 18px;
  width: 100%;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  position: relative;
  line-height: 1.8;
  letter-spacing: 0;
  color: #fff;
  background: url(../img/space_voyage/star_back.jpg);
  background-repeat: repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }
}
body div, body h1, body h2, body h3, body h4, body h5, body p, body ol, body ul {
  margin: 0;
  padding: 0;
}
body li {
  list-style: none;
}
body a {
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  color: #fff;
}
body img {
  vertical-align: bottom;
}
@media screen and (max-width: 480px) {
  body img.img_pc {
    display: none;
  }
}
body img.img_sp {
  display: none;
}
@media screen and (max-width: 480px) {
  body img.img_sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body br.br_pc {
    display: none;
  }
}
body img.img_zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease; /* ゆっくり変化させる */
}
body img.img_zoom:hover {
  transform: scale(1.1); /* 拡大 */
  cursor: pointer;
}
body .grid_ctn {
  display: grid;
}
body .flex_ctn {
  display: flex;
  align-items: center;
}
body section {
  width: 100%;
}
body .base_width {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto;
}
body .il_block {
  display: inline-block;
}
body .js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s;
}
body .js-animation.slide-from-top {
  transform: translateY(-30px);
}
body .js-animation.slide-from-right {
  transform: translateX(20px);
}
body .js-animation.slide-from-bottom {
  transform: translateY(30px);
}
body .js-animation.slide-from-left {
  transform: translateX(-20px);
}
body .js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  transform: translateY(0px);
}
body #top_button_icon {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 20;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  /*このクラスが付与されると表示する*/
}
@media screen and (max-width: 768px) {
  body #top_button_icon {
    bottom: 80px;
  }
}
body #top_button_icon:hover {
  cursor: pointer;
}
body #top_button_icon.active {
  opacity: 1;
  visibility: visible;
}
body header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.5s ease;
}
body header.active {
  background: rgba(0, 0, 0, 0.4);
}
body header .base_width {
  max-width: none;
}
@media screen and (max-width: 768px) {
  body header .base_width {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
body header .base_width nav ul {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  body header .base_width nav ul {
    height: 60px;
    margin-left: 0;
  }
}
body header .base_width nav ul li img.h_logo {
  width: 160px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  body header .base_width nav ul li img.h_logo {
    width: 150px;
  }
}
body header .base_width nav ul li.pc_nav a {
  padding: 20px 5px;
}
@media screen and (max-width: 768px) {
  body header .base_width nav ul li.pc_nav {
    display: none;
  }
}
body header .base_width #hb_btn {
  display: none;
  width: 350px;
  height: 40px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  body header .base_width #hb_btn {
    display: flex;
    width: 35px;
    height: 40px;
  }
}
body header .base_width #hb_btn span,
body header .base_width #hb_btn span:before,
body header .base_width #hb_btn span:after {
  content: "";
  display: block;
  height: 2px;
  width: 35px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.5s; /*アニメーション設定*/
}
body header .base_width #hb_btn span:before {
  bottom: 13px;
}
body header .base_width #hb_btn span:after {
  top: 13px;
}
body header .base_width #hb_btn.open span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
body header .base_width #hb_btn.open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
body header .base_width #hb_btn.open span::after {
  top: 0;
  transform: rotate(-45deg);
}
body #menu_content {
  background: rgba(17, 176, 215, 0.9);
  width: 100%;
  position: fixed;
  z-index: 30;
  top: -500px;
  left: 0;
  padding-top: 60px;
  user-select: none;
  pointer-events: none;
  transition: all 0.5s; /*アニメーション設定*/
  display: none;
}
@media screen and (max-width: 768px) {
  body #menu_content {
    display: block;
  }
}
body #menu_content.open {
  top: 0;
  user-select: auto;
  pointer-events: auto;
}
body #menu_content nav {
  padding: 30px 0;
}
body #menu_content nav ul li {
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}
body #menu_content nav ul li a {
  color: #fff;
  width: 100%;
  display: inline-block;
  padding: 10px 0;
  transition: all 0.2s; /*アニメーション設定*/
}
body #menu_content nav ul li a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #11B0D7;
}
body main .s_title {
  display: flex;
}
body main .s_title div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  body main .s_title div {
    display: block;
  }
}
body main .s_title div h1 {
  letter-spacing: 2px;
  margin-right: 20px;
  line-height: 1.1;
  font-family: Arial, sans-serif;
  font-size: 35px;
  text-shadow: 0px 0px 10px #333;
}
body main .s_title div h1::after {
  content: "/";
  color: #23a9ac;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  body main .s_title div h1::after {
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  body main .s_title div h1 {
    font-size: 30px;
    margin-right: 15px;
  }
}
body main .s_title div p {
  font-size: 16px;
  text-shadow: 0px 0px 10px #333;
}
@media screen and (max-width: 480px) {
  body main .s_title div p {
    padding-top: 5px;
  }
}
body main .btn {
  font-weight: bold;
  width: 250px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
}
body main .btn.ctc_btn {
  font-size: 18px;
  background: #11B0D7;
  color: #fff;
  padding-left: 40px;
}
body main .btn.ctc_btn::after {
  content: "";
  background: url(../img/space_voyage/ctc_icon.png);
  display: block;
  width: 32px;
  height: 32px;
  background-size: cover;
  margin-left: 20px;
}
body main .btn.tel_btn {
  background: #fff;
  color: #11B0D7;
}
body main .btn.tel_btn div p {
  text-align: center;
  line-height: 1.1;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .btn.tel_btn div p:first-of-type {
  font-size: 22px;
  margin-right: 10px;
  font-family: "century-gothic", sans-serif;
}
body main .btn.tel_btn div p:first-of-type::before {
  content: "";
  background: url(../img/space_voyage/tel_icon.png);
  display: block;
  width: 20px;
  height: 20px;
  background-size: cover;
  margin-right: 5px;
}
body main .btn.tel_btn div p:nth-of-type(2) {
  font-size: 10px;
  padding-top: 3px;
}
body main #concept_sct,
body main #service_sct,
body main #schedule_sct,
body main #qa_sct,
body main #rsv_sct {
  padding-top: 80px;
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  body main #concept_sct,
  body main #service_sct,
  body main #schedule_sct,
  body main #qa_sct,
  body main #rsv_sct {
    padding-top: 60px;
    margin-top: -60px;
  }
}
body main #top_sct {
  background: url(../img/space_voyage/mainview.jpg);
  width: 100%;
  background-size: cover;
  background-position: center center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  body main #top_sct {
    padding-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  body main #top_sct {
    background-position: -400px center;
  }
}
body main #top_sct .moon {
  position: absolute;
  z-index: 1;
  top: -20vw;
  left: -16vw;
  width: 50vw;
}
@media screen and (max-width: 768px) {
  body main #top_sct .moon {
    top: -15vw;
    width: 60vw;
  }
}
body main #top_sct .rocket {
  position: absolute;
  z-index: 1;
  top: -14vw;
  right: -22vw;
  width: 70vw;
}
@media screen and (max-width: 768px) {
  body main #top_sct .rocket {
    top: 3vw;
    right: -27vw;
  }
}
body main #top_sct .btn {
  margin-left: auto;
  margin-right: 30px;
  position: relative;
  z-index: 2;
}
body main #top_sct .btn.ctc_btn {
  margin-top: 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  body main #top_sct .btn {
    display: none;
  }
}
body main #top_sct .main_stc {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  body main #top_sct .main_stc {
    padding-top: 130px;
  }
}
@media screen and (max-width: 480px) {
  body main #top_sct .main_stc {
    padding-top: 130px;
  }
}
body main #top_sct .main_stc p {
  text-align: center;
  font-size: 26px;
  padding-bottom: 60px;
  letter-spacing: 2px;
  line-height: 2;
  font-family: "yu-mincho-pr6n", sans-serif;
}
@media screen and (max-width: 768px) {
  body main #top_sct .main_stc p {
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  body main #top_sct .main_stc p {
    font-size: 4.8vw;
  }
}
body main #top_sct .main_stc p.logo_sub {
  font-size: 25px;
  font-family: "yu-gothic-pr6n", sans-serif;
}
@media screen and (max-width: 480px) {
  body main #top_sct .main_stc p.logo_sub {
    font-size: 5.5vw;
  }
}
body main #top_sct .main_stc p.company {
  font-size: 17px;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  body main #top_sct .main_stc p.company {
    font-size: 4.2vw;
  }
}
body main #top_sct .main_stc p.company .sp_only {
  display: none;
}
@media screen and (max-width: 480px) {
  body main #top_sct .main_stc p.company .sp_only {
    display: block;
  }
}
body main #top_sct .main_stc img {
  display: block;
  margin: 0 auto 18px;
  width: 95%;
  max-width: 700px;
}
body main #concept_sct {
  margin-top: 120px;
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  body main #concept_sct {
    width: 100%;
    margin-left: initial;
    margin-top: 160px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 480px) {
  body main #concept_sct {
    margin-top: 100px;
    margin-bottom: 90px;
  }
}
body main #concept_sct .s_title {
  justify-content: center;
}
body main #concept_sct h2 {
  padding: 80px 0 20px;
  font-size: 22px;
  line-height: 1.8;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
}
@media screen and (max-width: 480px) {
  body main #concept_sct h2 {
    padding-top: 40px;
    font-size: 20px;
  }
}
body main #concept_sct h2 .sp_only {
  display: none;
}
@media screen and (max-width: 480px) {
  body main #concept_sct h2 .sp_only {
    display: block;
  }
}
body main #concept_sct p {
  line-height: 2;
}
@media screen and (max-width: 480px) {
  body main #concept_sct p .pc_tab_only {
    display: none;
  }
}
body main #concept_sct .banner img {
  display: block;
  margin: 40px auto 0;
  width: 100%;
  max-width: 600px;
}
body main #service_sct .s_title {
  padding-top: 130px;
  padding-bottom: 70px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  body main #service_sct .s_title {
    padding-top: 70px;
  }
}
@media screen and (max-width: 480px) {
  body main #service_sct .s_title {
    padding-bottom: 50px;
  }
}
body main #service_sct .stc {
  margin-bottom: 120px;
}
body main #service_sct .service_itm {
  margin-bottom: 140px;
  display: grid;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  body main #service_sct .service_itm {
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm {
    display: flex;
    flex-direction: column;
    margin-bottom: 120px;
    gap: 0;
  }
}
body main #service_sct .service_itm .stc_side {
  position: relative;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm .stc_side {
    display: grid;
    grid-template-columns: 80px 6fr;
    gap: 30px;
    width: 100%;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  body main #service_sct .service_itm .stc_side {
    grid-template-columns: 50px 6fr;
    gap: 15px;
  }
}
body main #service_sct .service_itm .stc_side .text_top {
  position: absolute;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm .stc_side .text_top {
    position: static;
  }
}
body main #service_sct .service_itm .stc_side .text_ctn {
  width: 65%;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm .stc_side .text_ctn {
    width: 100%;
    margin-bottom: 25px;
  }
}
body main #service_sct .service_itm .stc_side .text_ctn .text_bottom {
  position: absolute;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm .stc_side .text_ctn .text_bottom {
    position: static;
  }
}
body main #service_sct .service_itm:nth-of-type(even) {
  grid-template-columns: 2fr 1fr;
}
body main #service_sct .service_itm:nth-of-type(even) .stc_side .text_top {
  top: -8px;
  left: 200px;
}
@media screen and (max-width: 1080px) {
  body main #service_sct .service_itm:nth-of-type(even) .stc_side .text_top {
    top: -3.5vw;
    left: 18vw;
  }
}
body main #service_sct .service_itm:nth-of-type(even) .stc_side .text_bottom {
  top: 85px;
  left: 200px;
}
@media screen and (max-width: 1080px) {
  body main #service_sct .service_itm:nth-of-type(even) .stc_side .text_bottom {
    top: 8vw;
    left: 18vw;
  }
}
body main #service_sct .service_itm:nth-of-type(odd) {
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}
body main #service_sct .service_itm:nth-of-type(odd) .stc_side .text_top {
  top: -8px;
  left: 70px;
}
@media screen and (max-width: 1080px) {
  body main #service_sct .service_itm:nth-of-type(odd) .stc_side .text_top {
    top: -3.5vw;
    left: 7vw;
  }
}
body main #service_sct .service_itm:nth-of-type(odd) .stc_side .text_bottom {
  top: 85px;
  left: 70px;
}
@media screen and (max-width: 1080px) {
  body main #service_sct .service_itm:nth-of-type(odd) .stc_side .text_bottom {
    top: 8vw;
    left: 7vw;
  }
}
body main #service_sct .service_itm#service01 .text_top {
  top: -36px;
}
@media screen and (max-width: 1080px) {
  body main #service_sct .service_itm#service01 .text_top {
    top: -7vw;
  }
}
body main #service_sct .service_itm#service03, body main #service_sct .service_itm#service04 {
  margin-bottom: 220px;
}
@media screen and (max-width: 1080px) {
  body main #service_sct .service_itm#service03, body main #service_sct .service_itm#service04 {
    margin-bottom: 250px;
  }
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm#service03, body main #service_sct .service_itm#service04 {
    margin-bottom: 120px;
  }
}
body main #service_sct .service_itm img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm img {
    max-width: 500px;
  }
}
body main #service_sct .service_itm img.pc_only {
  display: block;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm img.pc_only {
    display: none;
  }
}
body main #service_sct .service_itm img.tab_only {
  display: none;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm img.tab_only {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  body main #service_sct .service_itm img.tab_only {
    display: none;
  }
}
body main #service_sct .service_itm img.sp_only {
  display: none;
}
@media screen and (max-width: 480px) {
  body main #service_sct .service_itm img.sp_only {
    display: block;
  }
}
body main #service_sct .service_itm .service_catch {
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
body main #service_sct .service_itm .service_catch .pc_only {
  display: block;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm .service_catch .pc_only {
    display: none;
  }
}
body main #service_sct .service_itm .service_name {
  font-size: 28px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm .service_name {
    font-size: 23px;
  }
}
body main #service_sct .service_itm .text_bottom {
  width: 65%;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm .text_bottom {
    width: auto;
  }
}
body main #service_sct .service_itm .text_bottom .service_price {
  font-family: "century-gothic", sans-serif;
  font-size: 22px;
  margin-bottom: 8px;
}
body main #service_sct .service_itm .text_bottom .service_price span {
  font-size: 0.7em;
}
body main #service_sct .service_itm .text_bottom .service_stc {
  line-height: 1.6;
}
body main #service_sct .service_itm .text_bottom .service_stc .pc_only {
  display: block;
}
@media screen and (max-width: 768px) {
  body main #service_sct .service_itm .text_bottom .service_stc .pc_only {
    display: none;
  }
}
body main #service_sct .btn_ctn {
  padding: 0 0 180px;
}
@media screen and (max-width: 768px) {
  body main #service_sct .btn_ctn {
    padding: 0 0 160px;
  }
}
body main #service_sct .btn_ctn .base_width {
  display: flex;
  justify-content: center;
  gap: 20px 30px;
}
@media screen and (max-width: 500px) {
  body main #service_sct .btn_ctn .base_width {
    flex-direction: column;
    align-items: center;
  }
}
body main #schedule_sct {
  padding-bottom: 150px;
}
body main #schedule_sct .s_title {
  margin-bottom: 70px;
  justify-content: center;
}
body main #schedule_sct .table_ctn table {
  width: 100%;
  border-collapse: collapse;
  border: solid #fff 1px;
  color: #000;
}
body main #schedule_sct .table_ctn table th {
  background: #108f78;
  color: #fff;
}
@media screen and (max-width: 480px) {
  body main #schedule_sct .table_ctn table th {
    font-size: 14px;
  }
}
body main #schedule_sct .table_ctn table td {
  padding: 20px 12px;
}
body main #schedule_sct .table_ctn table td .ctc_btn {
  width: 230px;
  padding-left: 8px;
}
body main #schedule_sct .table_ctn table td .ctc_btn::after {
  width: 25px;
  height: 25px;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  body main #schedule_sct .table_ctn table.pc_only {
    display: none;
  }
}
body main #schedule_sct .table_ctn table.pc_only tr:nth-of-type(odd) {
  background: #f0f0f0;
}
body main #schedule_sct .table_ctn table.pc_only tr:nth-of-type(even) {
  background: #fff;
}
body main #schedule_sct .table_ctn table.pc_only tr th {
  padding: 12px 12px;
  font-size: 18px;
}
body main #schedule_sct .table_ctn table.pc_only tr th:nth-of-type(2) {
  border-left: solid #000 1px;
  border-right: solid #000 1px;
}
body main #schedule_sct .table_ctn table.pc_only tr td:nth-of-type(1) {
  text-align: center;
  white-space: nowrap;
}
body main #schedule_sct .table_ctn table.pc_only tr td:nth-of-type(2) {
  text-align: center;
  border-left: solid #000 1px;
  border-right: solid #000 1px;
  white-space: nowrap;
}
body main #schedule_sct .table_ctn table.pc_only tr .blue {
  color: #11B0D7;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
body main #schedule_sct .table_ctn table.tab_sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  body main #schedule_sct .table_ctn table.tab_sp_only {
    display: block;
  }
}
body main #schedule_sct .table_ctn table.tab_sp_only tr {
  background: #fff;
}
body main #schedule_sct .table_ctn table.tab_sp_only th {
  padding: 6px 12px;
  font-size: 18px;
}
body main #schedule_sct .table_ctn table.tab_sp_only td .date {
  margin-bottom: 16px;
}
body main #schedule_sct .table_ctn table.tab_sp_only td .date::before {
  content: "日程";
  display: inline-block;
  color: #fff;
  background: #23a9ac;
  padding: 0 8px;
  border-radius: 3px;
  margin-right: 10px;
  font-size: 14px;
}
body main #schedule_sct .table_ctn table.tab_sp_only td .blue {
  color: #11B0D7;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
body main .pc_back_ctn {
  padding-bottom: 70px;
}
body main .pc_back_ctn .space_back {
  background: url(../img/space_voyage/space.jpg);
  width: 100%;
  height: 20vw;
  min-height: 120px;
  max-height: 220px;
  background-position: center center;
  background-attachment: fixed;
}
body main #qa_sct .s_title {
  padding-top: 70px;
  padding-bottom: 70px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  body main #qa_sct .s_title {
    padding-top: 30px;
  }
}
body main #qa_sct ul.qa_list {
  margin-bottom: 150px;
}
body main #qa_sct ul.qa_list li.qa_itm {
  background: rgba(255, 255, 255, 0.25);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  body main #qa_sct ul.qa_list li.qa_itm {
    padding: 15px 10px;
    margin-bottom: 15px;
  }
}
body main #qa_sct ul.qa_list li.qa_itm .q {
  display: flex;
  align-items: center;
}
body main #qa_sct ul.qa_list li.qa_itm .q::before {
  content: "Q";
  font-family: Arial, sans-serif;
  font-size: 35px;
  padding-right: 20px;
  line-height: 1;
  color: #23a9ac;
}
@media screen and (max-width: 768px) {
  body main #qa_sct ul.qa_list li.qa_itm .q::before {
    font-size: 28px;
    padding-right: 10px;
  }
}
body main #qa_sct ul.qa_list li.qa_itm .q .open_btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #23a9ac;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main #qa_sct ul.qa_list li.qa_itm .q .open_btn::before, body main #qa_sct ul.qa_list li.qa_itm .q .open_btn::after {
  content: "";
  position: absolute;
  background-color: #fff;
}
body main #qa_sct ul.qa_list li.qa_itm .q .open_btn::before {
  width: 12px;
  height: 2px;
}
body main #qa_sct ul.qa_list li.qa_itm .q .open_btn::after {
  width: 2px;
  height: 12px;
  transition: 0.5s;
}
body main #qa_sct ul.qa_list li.qa_itm .q .open_btn.close::after {
  transform: rotate(90deg);
}
body main #qa_sct ul.qa_list li.qa_itm .q p {
  flex: 1;
}
body main #qa_sct ul.qa_list li.qa_itm .a {
  align-items: center;
  display: flex;
  height: 0px;
  overflow: hidden;
  transition: 0.5s;
}
body main #qa_sct ul.qa_list li.qa_itm .a.open {
  margin-top: 20px;
  border-top: 1px solid #fff;
  padding-top: 20px;
}
@media screen and (max-width: 480px) {
  body main #qa_sct ul.qa_list li.qa_itm .a.open {
    margin-top: 10px;
    padding-top: 10px;
  }
}
body main #rsv_sct .s_title {
  padding-top: 70px;
  padding-bottom: 30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  body main #rsv_sct .s_title {
    padding-top: 30px;
  }
}
body main #rsv_sct .stc {
  padding: 40px 0 20px;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body main #rsv_sct .stc {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  body main #rsv_sct .stc {
    line-height: 2.3;
  }
}
body main #rsv_sct .form_ctn {
  width: 100%;
  max-width: 700px;
  background: #fff;
  color: #000;
  margin: 0 auto 80px;
  padding: 60px 0;
}
body main #rsv_sct .form_ctn form {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
body main #rsv_sct .form_ctn form .form_pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5%;
}
@media screen and (max-width: 480px) {
  body main #rsv_sct .form_ctn form .form_pair {
    grid-template-columns: 1fr;
  }
}
body main #rsv_sct .form_ctn form .form_block {
  margin: 0 0 30px;
  padding: 0;
}
body main #rsv_sct .form_ctn form .form_block h3 {
  margin: 0 0 10px;
  font-weight: normal;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  body main #rsv_sct .form_ctn form .form_block h3 {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  body main #rsv_sct .form_ctn form .form_block h3 {
    font-size: 16px;
  }
}
body main #rsv_sct .form_ctn form .form_block input[type=text],
body main #rsv_sct .form_ctn form .form_block input[type=tel],
body main #rsv_sct .form_ctn form .form_block input[type=email] {
  margin: 0;
  padding: 10px;
  width: 100%;
  height: 50px;
  border: 1px solid #707070;
  border-radius: 5px;
  letter-spacing: 1px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  body main #rsv_sct .form_ctn form .form_block input[type=text],
  body main #rsv_sct .form_ctn form .form_block input[type=tel],
  body main #rsv_sct .form_ctn form .form_block input[type=email] {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  body main #rsv_sct .form_ctn form .form_block input[type=text],
  body main #rsv_sct .form_ctn form .form_block input[type=tel],
  body main #rsv_sct .form_ctn form .form_block input[type=email] {
    font-size: 16px;
  }
}
body main #rsv_sct .form_ctn form .form_block input[type=text] ::placeholder,
body main #rsv_sct .form_ctn form .form_block input[type=tel] ::placeholder,
body main #rsv_sct .form_ctn form .form_block input[type=email] ::placeholder {
  color: #333;
}
body main #rsv_sct .form_ctn form .form_block textarea {
  padding: 10px;
  width: 100%;
  height: 140px;
  border: 1px solid #707070;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  body main #rsv_sct .form_ctn form .form_block textarea {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  body main #rsv_sct .form_ctn form .form_block textarea {
    font-size: 16px;
  }
}
body main #rsv_sct .form_ctn form .form_block .input_pair {
  margin: 0 0 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 5%;
}
@media screen and (max-width: 480px) {
  body main #rsv_sct .form_ctn form .form_block .input_pair {
    grid-template-columns: 1fr;
  }
}
body main #rsv_sct .form_ctn form div.required h3 {
  display: flex;
  align-items: center;
}
body main #rsv_sct .form_ctn form div.required h3::after {
  content: "必須";
  margin: 0 0 0 8px;
  padding: 1px 6px;
  background: #AB3226;
  font-size: 12px;
  color: white;
  line-height: 1.6;
  border-radius: 3px;
}
body main #rsv_sct .form_ctn form p {
  text-align: center;
  padding: 30px 0;
  line-height: 1.8;
}
body main #rsv_sct .form_ctn form p a {
  color: #000E4B;
  text-decoration: underline;
  font-weight: bold;
}
body main #rsv_sct .form_ctn form .send_button {
  width: 200px;
  margin: 0 auto;
  background: #11B0D7;
}
body main #rsv_sct .form_ctn form .send_button p {
  text-align: center;
  padding: 16px 0;
  font-size: 22px;
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
}
body main #rsv_complete_sct .s_title {
  padding-top: 120px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  body main #rsv_complete_sct .s_title {
    padding-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  body main #rsv_complete_sct .s_title {
    justify-content: initial;
  }
}
body main #rsv_complete_sct .msg_ctn {
  width: 100%;
  max-width: 700px;
  background: #fff;
  color: #000;
  margin: 50px auto 120px;
  padding: 30px 30px 50px;
}
body main #rsv_complete_sct .msg_ctn .stc {
  padding: 0 0 30px;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  body main #rsv_complete_sct .msg_ctn .stc {
    line-height: 1.8;
    text-align: left;
  }
}
body main #rsv_complete_sct .msg_ctn .top_button {
  width: 200px;
  margin: 0 auto;
  background: #11B0D7;
}
body main #rsv_complete_sct .msg_ctn .top_button p {
  text-align: center;
  padding: 16px 0;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  body footer {
    padding-bottom: 70px;
  }
}
body footer img {
  display: block;
  margin: 0 auto;
  width: 120px;
}
body footer p {
  font-size: 10px;
  text-align: center;
  padding: 20px 0 5px;
}
body #fixed_footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  body #fixed_footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
body #fixed_footer .btn {
  font-weight: bold;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
}
body #fixed_footer .btn.ctc_btn {
  background: #11B0D7;
  color: #fff;
  font-size: 20px;
  padding-left: 5%;
}
@media screen and (max-width: 480px) {
  body #fixed_footer .btn.ctc_btn {
    font-size: 18px;
  }
}
body #fixed_footer .btn.ctc_btn::after {
  content: "";
  background: url(../img/space_voyage/ctc_icon.png);
  display: block;
  width: 30px;
  height: 30px;
  background-size: cover;
  margin-left: 5%;
}
@media screen and (max-width: 480px) {
  body #fixed_footer .btn.ctc_btn::after {
    width: 25px;
    height: 25px;
    margin-left: 2%;
  }
}
body #fixed_footer .btn.tel_btn {
  background: #fff;
  color: #11B0D7;
}
body #fixed_footer .btn.tel_btn div p {
  text-align: center;
  line-height: 1.1;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
body #fixed_footer .btn.tel_btn div p:first-of-type {
  font-size: 20px;
  margin-right: 10px;
  font-family: "century-gothic", sans-serif;
}
@media screen and (max-width: 480px) {
  body #fixed_footer .btn.tel_btn div p:first-of-type {
    font-size: 18px;
  }
}
body #fixed_footer .btn.tel_btn div p:first-of-type::before {
  content: "";
  background: url(../img/space_voyage/tel_icon.png);
  display: block;
  width: 20px;
  height: 20px;
  background-size: cover;
  margin-right: 5px;
}
@media screen and (max-width: 480px) {
  body #fixed_footer .btn.tel_btn div p:first-of-type::before {
    margin-right: 2px;
  }
}
body #fixed_footer .btn.tel_btn div p:nth-of-type(2) {
  font-size: 10px;
  padding-top: 3px;
}