@charset "UTF-8";
/*******************************************************************/
/*******************************************************************/
@import url("https://fonts.googleapis.com/css2?family=DotGothic16&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100;400;900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Rowdies:wght@300;400;700&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
html {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
}

body {
  color: #333333;
  font-size: 1.4rem;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

main {
  width: 100%;
  background-image: url("../img/bg_main.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: left 0 bottom 0;
  padding-bottom: 120px;
  margin-bottom: 0;
}
@media only screen and (max-width:767px) {
  main {
    background-image: url("../img/bg_main_sp.png");
    background-size: 100% auto;
    background-position: left 0 bottom 0;
  }
}

/***********************************************************************/
/***********************************************************************/
header {
  width: 100%;
  aspect-ratio: 683/300;
  max-height: 600px;
  overflow: hidden;
  background-image: url("../img/bg_title.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top 0;
  position: relative;
}
@media only screen and (max-width:767px) {
  header {
    aspect-ratio: 37/60;
    max-height: 100svh;
    background-image: url("../img/bg_title_sp.png");
  }
}

.box_title_main {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box_title_main img {
  width: 40%;
  max-width: 500px;
}
@media only screen and (max-width:767px) {
  .box_title_main img {
    position: absolute;
    top: 10%;
    width: 80%;
  }
}

.box_main_img {
  position: absolute;
  right: 10%;
  top: 16%;
  width: 20%;
  aspect-ratio: 64/85;
  background-image: url("../img/main_img.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width:1199px) {
  .box_main_img {
    right: 5%;
  }
}
@media only screen and (max-width:767px) {
  .box_main_img {
    width: 40%;
    top: 40%;
    left: 50%;
    margin-left: -13%;
  }
}

.title_flash {
  position: absolute;
  width: 20%;
  aspect-ratio: 61/36;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
@media only screen and (max-width:1199px) {
  .title_flash {
    width: 40%;
  }
}

.icon_flash_1 {
  top: 64px;
  background-image: url("../img/fish1.png");
  animation: slide-across1 5s ease-in-out infinite, wave-motion 1s ease-in-out infinite;
}

.icon_flash_2 {
  top: 164px;
  background-image: url("../img/fish18.png");
  animation: slide-across2 5s ease-in-out infinite, wave-motion 1s ease-in-out infinite;
}

.icon_flash_3 {
  top: 210px;
  background-image: url("../img/fish17.png");
  animation: slide-across3 5s ease-in-out infinite, wave-motion 1s ease-in-out infinite;
}

.icon_flash_4 {
  top: 324px;
  background-image: url("../img/fish5.png");
  animation: slide-across4 5s ease-in-out infinite, wave-motion 1s ease-in-out infinite;
}

.icon_flash_5 {
  top: 400px;
  background-image: url("../img/fish25.png");
  animation: slide-across5 5s ease-in-out infinite, wave-motion 1s ease-in-out infinite;
}

@keyframes slide-across1 {
  0% {
    left: -25%;
  }
  100% {
    left: 100vw;
  }
}
@keyframes slide-across2 {
  0% {
    left: -50%;
  }
  100% {
    left: 100vw;
  }
}
@keyframes slide-across3 {
  0% {
    left: -60%;
  }
  100% {
    left: 180vw;
  }
}
@keyframes slide-across4 {
  0% {
    left: -80%;
  }
  100% {
    left: 240vw;
  }
}
@keyframes slide-across5 {
  0% {
    left: -100%;
  }
  100% {
    left: 140vw;
  }
}
@keyframes wave-motion {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.btn_header_inquiry {
  position: relative;
  width: 400px;
  height: 64px;
  box-sizing: border-box;
  border: 2px solid #f40829;
  background-color: #f40829;
  border-radius: 32px;
  position: absolute;
  bottom: 10%;
  left: 50%;
  margin-left: -200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: bold;
  cursor: pointer;
}
.btn_header_inquiry:hover {
  background-color: #ffffff;
  color: #f40829;
}
@media only screen and (max-width:767px) {
  .btn_header_inquiry {
    width: 80%;
    margin-left: -40%;
    font-size: 2rem;
  }
}
.btn_header_inquiry a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/***********************************************************************/
/***********************************************************************/
.area_section {
  position: relative;
  padding-top: 120px;
}
.area_section h1 {
  width: 100%;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
}
@media only screen and (max-width:767px) {
  .area_section h1 {
    width: 80%;
    font-size: 2.4rem;
    margin: 0 auto;
  }
}

.img_center {
  width: 150px;
  height: 250px;
  margin-inline: auto;
  max-inline-size: max-content;
  margin-top: 140px;
}
.img_center img {
  width: 100%;
}

.fukidasi_left {
  width: 16%;
  aspect-ratio: 4/3;
  background-image: url("../img/fukidashi_left.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 1.4vw, 20px);
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width:1199px) {
  .fukidasi_left {
    width: 24%;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width:767px) {
  .fukidasi_left {
    width: 40%;
    font-size: 1.8rem;
  }
}

.fukidasi_right {
  width: 16%;
  aspect-ratio: 4/3;
  background-image: url("../img/fukidashi_right.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 1.4vw, 20px);
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width:1199px) {
  .fukidasi_right {
    width: 24%;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width:767px) {
  .fukidasi_right {
    width: 40%;
    font-size: 1.8rem;
  }
}

#fukidashi_1 {
  top: 360px;
  left: 16%;
}
@media only screen and (max-width:1199px) {
  #fukidashi_1 {
    top: 400px;
    left: 4%;
  }
}
@media only screen and (max-width:767px) {
  #fukidashi_1 {
    left: 2%;
  }
}

#fukidashi_2 {
  top: 200px;
  left: 26%;
}
@media only screen and (max-width:1199px) {
  #fukidashi_2 {
    top: 240px;
    left: 18%;
  }
}
@media only screen and (max-width:767px) {
  #fukidashi_2 {
    left: 8%;
  }
}

#fukidashi_3 {
  top: 200px;
  right: 26%;
}
@media only screen and (max-width:1199px) {
  #fukidashi_3 {
    top: 240px;
    right: 18%;
  }
}
@media only screen and (max-width:767px) {
  #fukidashi_3 {
    right: 8%;
  }
}

#fukidashi_4 {
  top: 360px;
  right: 16%;
}
@media only screen and (max-width:1199px) {
  #fukidashi_4 {
    top: 400px;
    right: 4%;
  }
}
@media only screen and (max-width:767px) {
  #fukidashi_4 {
    right: 2%;
  }
}

.box_next {
  width: 40%;
  max-width: 540px;
  aspect-ratio: 17/5;
  background-image: url("../img/bg_next.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 42px auto 0 auto;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
  padding-top: 24px;
}
@media only screen and (max-width:767px) {
  .box_next {
    width: 80%;
  }
}

.title_about {
  margin-top: -60px;
  margin-bottom: 80px;
}

.area_column-2 {
  display: flex;
}
@media only screen and (max-width:767px) {
  .area_column-2 {
    display: block;
  }
}

.box_column-2_left {
  width: 50%;
}
@media only screen and (max-width:767px) {
  .box_column-2_left {
    width: 80%;
    margin: 48px auto;
  }
}

.box_column-2_right {
  width: 50%;
}
@media only screen and (max-width:767px) {
  .box_column-2_right {
    width: 80%;
    margin: 48px auto;
  }
}

.img_game {
  width: 50%;
}
@media only screen and (max-width:1199px) {
  .img_game {
    width: 80%;
    text-align: center;
  }
}
@media only screen and (max-width:767px) {
  .img_game {
    width: 80%;
    text-align: center;
  }
}
.img_game img {
  width: 100%;
}

.box_column-2_left {
  display: flex;
  justify-content: right;
  text-align: right;
  position: relative;
  padding-right: 48px;
}

.box_column-2_right {
  box-sizing: border-box;
  padding-left: 48px;
}
.box_column-2_right p {
  width: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media only screen and (max-width:1199px) {
  .box_column-2_right p {
    width: 90%;
  }
}
@media only screen and (max-width:767px) {
  .box_column-2_right p {
    width: 90%;
  }
}
.box_column-2_right img {
  margin-top: 12px;
  width: 50%;
}
@media only screen and (max-width:767px) {
  .box_column-2_right img {
    width: 90%;
  }
}

.text_1 {
  width: 60%;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (max-width:1199px) {
  .text_1 {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width:767px) {
  .text_1 {
    width: 100%;
    text-align: center;
  }
}
.text_1 img {
  width: 100%;
}

.text_2 {
  width: 60%;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width:1199px) {
  .text_2 {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width:767px) {
  .text_2 {
    width: 100%;
    text-align: center;
  }
}
.text_2 img {
  width: 100%;
}

.area_contens {
  margin-top: 64px;
  padding-top: 72px;
  box-sizing: border-box;
}
@media only screen and (max-width:767px) {
  .area_contens {
    margin-top: 0px;
  }
}

.area_column-3 {
  width: 98%;
  max-width: 1024px;
  margin: 24px auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:767px) {
  .area_column-3 {
    display: block;
  }
}

.box_column-3 {
  width: 30%;
  box-sizing: border-box;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 12px;
  align-items: stretch;
}
@media only screen and (max-width:767px) {
  .box_column-3 {
    width: 90%;
    margin: 64px auto;
  }
}
.box_column-3 h2 {
  background-color: #00a8ff;
  color: #ffffff;
  text-align: center;
  width: 98%;
  margin: 0 auto 12px auto;
  padding: 12px 0;
  border-radius: 12px;
  font-size: 2rem;
}
.box_column-3 ul {
  padding-left: 0;
  width: 98%;
  margin: 0 auto;
  list-style-type: none;
}
.box_column-3 p {
  padding-left: 1em;
}

.img_column-3 {
  display: block;
  margin: 0 auto;
  width: 80%;
}

.text_center {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width:767px) {
  .text_center {
    width: 80%;
    margin: 32px auto;
    font-size: 1.6rem;
  }
}

.area_column-4 {
  width: 98%;
  max-width: 1024px;
  margin: 24px auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:767px) {
  .area_column-4 {
    display: block;
  }
}

.box_column-4 {
  width: 22%;
  box-sizing: border-box;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 12px;
  align-items: stretch;
}
@media only screen and (max-width:767px) {
  .box_column-4 {
    width: 90%;
    margin: 64px auto;
    border: 1px solid #666;
    box-shadow: 0px 0 8px 0px rgba(0, 0, 0, 0.4);
  }
}
.box_column-4 h2 {
  text-align: center;
  font-size: 1.8rem;
}
.box_column-4 img {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.box_circle {
  border-radius: 9999px;
  background-color: #00b3ff;
  border: 4px solid #ffffff;
  aspect-ratio: 1/1;
  position: relative;
}
.box_circle img {
  width: 70%;
  margin: 4% auto;
  display: block;
  text-align: center;
  border-radius: 8px;
}
@media only screen and (max-width:767px) {
  .box_circle img {
    margin-top: 8%;
  }
}

.text_scene {
  text-align: center;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  position: absolute;
  top: 60%;
  width: 80%;
  left: 10%;
}
@media only screen and (max-width:1199px) {
  .text_scene {
    font-size: clamp(12px, 1.4vw, 20px);
  }
}
@media only screen and (max-width:767px) {
  .text_scene {
    margin-top: 8%;
  }
}

.area_guide {
  display: flex;
  position: relative;
  width: 90%;
  margin: 0 auto 200px auto;
}
@media only screen and (max-width:767px) {
  .area_guide {
    display: block;
  }
}

.box_guide_circle {
  width: 30%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #00b3ff;
  box-shadow: 0px 12px 0 0 #0992cc;
  position: relative;
}
@media only screen and (max-width:767px) {
  .box_guide_circle {
    width: 80%;
    margin-bottom: 48px;
  }
}

#guide_1 {
  transform: translateY(0px);
}

#guide_2 {
  transform: translateY(80%) translateX(-20%);
}
@media only screen and (max-width:767px) {
  #guide_2 {
    transform: translateY(24px) translateX(10%);
  }
}

#guide_3 {
  transform: translateY(10%) translateX(-30%);
}
@media only screen and (max-width:767px) {
  #guide_3 {
    transform: translateY(24px) translateX(20%);
  }
}

#guide_4 {
  transform: translateY(40%) translateX(-20%);
}
@media only screen and (max-width:767px) {
  #guide_4 {
    transform: translateY(24px) translateX(2%);
  }
}

.title_guide {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80%;
  color: #ffffff;
}
@media only screen and (max-width:1199px) {
  .title_guide {
    font-size: clamp(12px, 1.8vw, 24px);
  }
}
@media only screen and (max-width:767px) {
  .title_guide {
    font-size: clamp(12px, 8vw, 24px);
  }
}

.text_guide {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  color: #ffffff;
}
@media only screen and (max-width:1199px) {
  .text_guide {
    font-size: clamp(12px, 1.2vw, 20px);
  }
}
@media only screen and (max-width:767px) {
  .text_guide {
    font-size: clamp(12px, 4vw, 24px);
  }
}

/***********************************************************************/
/***********************************************************************/
.box_faq {
  width: 90%;
  max-width: 994px;
  padding: 24px;
  box-sizing: border-box;
  background-color: #0c469f;
  margin: 24px auto;
  border-radius: 12px;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width:767px) {
  .box_faq {
    font-size: 1.6rem;
  }
}

.box_questions {
  color: #ffffff;
}
@media only screen and (max-width:767px) {
  .box_questions {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
}

.box_answer {
  display: block;
  padding: 18px;
  width: calc(100% - 48px);
  background-color: #ffffff;
  border-radius: 12px;
}

/***********************************************************************/
/***********************************************************************/
#area_inquiry_bottom {
  width: 100%;
  box-sizing: border-box;
  padding: 64px 0;
  background-color: #0c469f;
  color: #ffffff;
}
#area_inquiry_bottom p {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width:767px) {
  #area_inquiry_bottom p {
    font-size: 2rem;
  }
}
#area_inquiry_bottom p span {
  font-size: 1.6rem;
  display: block;
  margin-top: 1.5em;
}

.btn_link_inquiry {
  position: relative;
  width: 80%;
  max-width: 840px;
  height: 64px;
  box-sizing: border-box;
  background-color: #f40829;
  border: 2px solid #f40829;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 36px auto;
  border-radius: 32px;
  font-size: 2.4rem;
  font-weight: bold;
  cursor: pointer;
}
@media only screen and (max-width:767px) {
  .btn_link_inquiry {
    font-size: 1.8rem;
  }
}
.btn_link_inquiry:hover {
  background-color: #ffffff;
  color: #f40829;
}
.btn_link_inquiry a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/***********************************************************************/
/***********************************************************************/
.box_link {
  display: flex;
  margin-bottom: 24px;
  position: relative;
}
.box_link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.box_service_banner {
  display: flex;
  align-items: center;
  justify-content: right;
  width: 50%;
}
@media only screen and (max-width:767px) {
  .box_service_banner {
    width: 40%;
  }
}
.box_service_banner img {
  width: 50%;
}
@media only screen and (max-width:767px) {
  .box_service_banner img {
    width: 90%;
  }
}

.box_service_text {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: left;
}
.box_service_text p {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width:767px) {
  .box_service_text p {
    font-size: 1.4rem;
  }
}

/**************************************************************************/
/**************************************************************************/
footer {
  margin-top: 180px;
  box-sizing: border-box;
  border-top: 1px solid #d8161f;
}

.footer_copyright {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  margin-top: 64px;
  margin-bottom: 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
}

.area_menu_footer {
  display: flex;
  width: 90%;
  max-width: 1024px;
  margin: 42px auto;
  align-items: stretch;
  justify-content: space-between;
}
@media only screen and (max-width:640px) {
  .area_menu_footer {
    display: none;
  }
}
.area_menu_footer div {
  box-sizing: border-box;
  width: 22%;
  position: relative;
  padding: 0 8px;
}
.area_menu_footer div img {
  width: 90%;
  display: block;
  top: 24px;
  left: 5%;
}
.area_menu_footer div p {
  font-size: 1.6rem;
  font-weight: 800;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
}
.area_menu_footer div ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: block;
}
.area_menu_footer div li {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  width: fit-content;
  display: block;
}

.logo_footer {
  display: flex;
  align-items: center;
}

.underline-hover {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #333;
}
.underline-hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: transform 0.4s ease;
}
.underline-hover:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.underline-hover a {
  color: #333;
}
.underline-hover a:hover, .underline-hover a:visited, .underline-hover a:active, .underline-hover a:link {
  color: #333;
}

/***********************************************************************/
/***********************************************************************/
.fadeUpTrigger, .fadeSideLeft, .fadeSideRight {
  opacity: 0;
}
@media only screen and (max-width:1199px) {
  .fadeUpTrigger, .fadeSideLeft, .fadeSideRight {
    opacity: 1;
  }
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeZoom {
  animation-name: fadeZoomAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeZoomAnime {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/***********************************************************************/
/***********************************************************************/
.mb_120 {
  margin-bottom: 120px;
}/*# sourceMappingURL=style.css.map */