@charset "UTF-8";
html {
  font-size: 62.5%;
  background-color: #EFEFEF;
}

body {
  font-size: 2rem;
  line-height: 4rem;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: bold;
}

.anton {
  font-family: "Anton", sans-serif;
}

section {
  border-bottom: 2px solid #707070;
}
section .section_container {
  position: relative;
  margin: 0 60px;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}

.container_s {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

.wrapper {
  max-width: 1245px;
  margin: 0 auto;
  width: 100%;
}

a {
  color: #000;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

header .header_navi {
  background-color: #EFEFEF;
  display: flex;
  padding-left: 60px;
  justify-content: space-between;
  border-bottom: 2px solid #707070;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
header .header_navi .logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
header .header_navi nav ul {
  display: flex;
  align-items: center;
}
header .header_navi nav ul li {
  margin-right: 20px;
}
header .header_navi nav ul li a {
  text-decoration: none;
  font-size: 18px;
}
header .header_navi nav ul li a:hover {
  text-decoration: none;
}
header .header_navi nav ul li a span {
  position: relative;
}
header .header_navi nav ul li a span::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: -5px;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}
header .header_navi nav ul li a span:hover::before {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}
header .header_navi nav ul li.contact {
  margin-right: 0;
}
header .header_navi nav ul li.contact a {
  width: 160px;
  height: 80px;
  background: linear-gradient(125deg, #77fff8 0%, #f3ffd9 49.26%, #fc9dc9 100%);
  display: flex;
  position: relative;
  z-index: 1;
}
header .header_navi nav ul li.contact a .text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 20;
}
header .header_navi nav ul li.contact a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: all 0.3s;
}
header .header_navi nav ul li.contact a svg {
  margin-right: 10px;
  transition: all 0.3s;
}
header .header_navi nav ul li.contact a:hover {
  color: white;
  text-decoration: none;
}
header .header_navi nav ul li.contact a:hover svg {
  fill: #f3ffd9;
}
header .header_navi nav ul li.contact a:hover::after {
  background: rgba(0, 0, 0, 0.5);
}

.c-scrolldown {
  width: 2px;
  height: 60px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 10px;
}
.c-scrolldown .c-line {
  width: 100%;
  height: 100%;
  display: block;
  background-position: 0 -60px;
  animation: scrolldown 2.5s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
  background: linear-gradient(to bottom, rgb(112, 112, 112) 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 100% 200%;
}

@keyframes scrolldown {
  0% {
    background-position: 0 -60px;
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 60px;
  }
}
.verticle {
  transform: rotate(90deg);
  display: inline-block;
  transform-origin: left;
}
.verticle span {
  font-size: 1.8rem;
  line-height: 4rem;
  margin-right: 10px;
}

.right_bottom {
  position: absolute;
  right: -40px;
  bottom: 0;
  line-height: 1;
}
.right_bottom .verticle {
  transform-origin: center;
}

.left_top {
  position: absolute;
  left: -37px;
  top: 140px;
  line-height: 1;
}

section.kv .kv_wrap {
  margin-top: 82px;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
section.kv .kv_wrap #gi1 {
  grid-column: 1/5;
  grid-row: 1/7;
  transition-delay: 0.5s;
}
section.kv .kv_wrap #gi2 {
  grid-column: 5/7;
  grid-row: 1/4;
  transition-delay: 1.1s;
}
section.kv .kv_wrap #gi3 {
  grid-column: 5/7;
  grid-row: 4/8;
  transition-delay: 1.7s;
}
section.kv .kv_wrap #gi4 {
  grid-column: 7/9;
  grid-row: 1/3;
  transition-delay: 0.6s;
}
section.kv .kv_wrap #gi5 {
  grid-column: 7/8;
  grid-row: 3/5;
  transition-delay: 0.8s;
}
section.kv .kv_wrap #gi6 {
  grid-column: 8/9;
  grid-row: 3/5;
  transition-delay: 1.4s;
}
section.kv .kv_wrap #gi7 {
  grid-column: 7/9;
  grid-row: 5/7;
  transition-delay: 2s;
}
section.kv .kv_wrap .grid_item {
  position: relative;
  transition: all 1s;
  opacity: 0;
}
section.kv .kv_wrap .grid_item .kv_text {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(0, -50%);
  max-width: calc(100% - 90px);
}
section.kv .kv_wrap .grid_item .kv_text img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
section.kv.active .grid_item {
  opacity: 1;
}

@keyframes kv_anime {}
section.kv .kv_wrap {
  height: calc(100vh - 82px);
}
section.kv .kv_wrap .grid_item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.kv .mosaic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section.nomargin {
  margin: 0;
  border-left: none;
  border-right: none;
}

section.loop {
  border-bottom: 2px solid #707070;
}
section.loop .d-loop__wrap {
  display: flex;
  overflow: hidden;
  padding: 20px 0;
}
section.loop .d-loop__list {
  display: flex;
  list-style: none;
}
section.loop .d-loop__list--left {
  animation: infinity-scroll-left 55s infinite linear 0.5s both;
}
section.loop .d-loop__item {
  width: 1568px;
  margin-right: 100px;
}
section.loop .d-loop__item > img {
  width: 100%;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
section.about .section_container {
  padding: 140px 0;
}
section.about .section_container p {
  font-size: 24px;
  line-height: 54px;
  margin-top: 40px;
}
section.about .section_container p:first-child {
  margin-top: 50px;
}

h2 {
  font-size: 40px;
  line-height: 80px;
  text-align: center;
}

div.slash {
  margin-top: 40px;
}
div.slash img {
  margin: 0 auto;
}

section.voice .section_container {
  padding: 140px 0 0;
}
section.voice .section_container .voice_cards {
  margin-top: 50px;
  display: flex;
  border-top: 1px solid #707070;
}
section.voice .section_container .voice_cards:nth-child(2) {
  margin-top: 0;
}
section.voice .section_container .voice_cards .voice_img {
  width: 50%;
}
section.voice .section_container .voice_cards .voice_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.voice .section_container .voice_cards .voice_text_wrap {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 146.5px 0;
  max-width: 538px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
section.voice .section_container .voice_cards .voice_text_wrap h3 {
  font-size: 24px;
  line-height: 44px;
}
section.voice .section_container .voice_cards .voice_text_wrap h3 span {
  display: block;
  font-weight: normal;
  font-size: 40px;
  text-align: left;
  color: #000;
}
section.voice .section_container .voice_cards .voice_text_wrap p {
  margin-top: 24px;
}

section.title .section_container {
  padding: 140px 0;
}
section.title .section_container .title_wrap {
  margin-top: 50px;
  border-top: 1px solid #707070;
}
section.title .section_container .title_box {
  max-width: 1184px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
section.title .section_container .title_box h3 {
  text-align: center;
  margin-top: 50px;
  font-size: 30px;
  line-height: 44px;
}
section.title .section_container .title_box .title_cards {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
section.title .section_container .title_box .title_cards .title_card {
  max-width: 547.5px;
  width: 100%;
}
section.title .section_container .title_box .title_cards .title_card:first-child {
  margin-right: 20px;
}
section.title .section_container .title_box .title_cards .title_card:last-child {
  margin-left: 20px;
}
section.title .section_container .title_box .title_cards .title_card a.modal_open {
  height: 200px;
  background: #fff;
  text-decoration: none;
  display: flex;
  border-left: 8px solid #000;
  transition: all 0.3s;
  position: relative;
  background: linear-gradient(125deg, #77fff8 0%, #f3ffd9 49.26%, #fc9dc9 100%);
  cursor: pointer;
}
section.title .section_container .title_box .title_cards .title_card a.modal_open::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s;
}
section.title .section_container .title_box .title_cards .title_card a.modal_open img {
  transition: all 0.3s;
}
section.title .section_container .title_box .title_cards .title_card a.modal_open .flex {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 10;
}
section.title .section_container .title_box .title_cards .title_card a.modal_open .flex span {
  margin-right: 10px;
  font-weight: normal;
  font-size: 36px;
  position: relative;
}
section.title .section_container .title_box .title_cards .title_card a.modal_open .flex span::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000000;
  bottom: -5px;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}
section.title .section_container .title_box .title_cards .title_card a.modal_open .flex span.ja {
  font-weight: bold;
  display: flex;
  align-items: center;
}
section.title .section_container .title_box .title_cards .title_card a.modal_open .flex.center img {
  position: relative;
  top: 3px;
}
section.title .section_container .title_box .title_cards .title_card a.modal_open:hover {
  background: linear-gradient(90deg, #77fff8 0%, #CCE2FF 49.26%, #FF8BC1 100%);
}
section.title .section_container .title_box .title_cards .title_card a.modal_open:hover::after {
  opacity: 0;
}
section.title .section_container .title_box .title_cards .title_card a.modal_open:hover img {
  transform: rotate(360deg);
}
section.title .section_container .title_box .title_cards .title_card a.modal_open:hover span::before {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}
section.title .section_container .title_box .title_cards.one_card {
  justify-content: center;
}
section.title .modal_content {
  position: fixed;
  transition: all 0.05s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  top: 0;
  left: 0;
  z-index: 150;
  padding: 20px;
  overflow-y: scroll;
}
section.title .modal_content .modal_wrap {
  padding-bottom: 80px;
}
section.title .modal_content .game_content {
  display: flex;
  flex-direction: column;
}
section.title .modal_content h3.modal_title {
  font-weight: normal;
  font-size: 40px;
  text-align: center;
  color: #fff;
  margin-top: 0;
}
section.title .modal_content p {
  font-size: 24px;
  line-height: 54px;
  text-align: left;
  color: #fff;
  max-width: 750px;
  margin: 0 auto;
  margin-top: 50px;
}
section.title .modal_content.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.05s;
  pointer-events: all;
}
section.title .modal_content .close_btn img {
  margin-left: auto;
  cursor: pointer;
}
section.title .modal_content .application {
  margin-top: 100px;
}
section.title .modal_content .application a {
  margin: 0 auto;
  width: 200px;
  height: 80px;
  background: linear-gradient(125deg, #77fff8 0%, #f3ffd9 49.26%, #fc9dc9 100%);
  display: flex;
  position: relative;
  z-index: 1;
  border-radius: 38px;
  border: 2px solid #707070;
  text-decoration: none;
  transition: all 0.3s;
}
section.title .modal_content .application a::after {
  position: absolute;
  top: 0;
  left: -2px;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 38px;
  width: calc(100% + 4px);
  height: 100%;
  content: "";
  border: 2px solid transparent;
}
section.title .modal_content .application a:hover {
  color: white;
}
section.title .modal_content .application a:hover::after {
  opacity: 1;
}
section.title .modal_content .application a:hover svg {
  fill: #fff;
}
section.title .modal_content .application a .text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 10;
}
section.title .modal_content .application a .text svg {
  width: 22px;
  margin-right: 10px;
  transition: all 0.3s;
  position: relative;
  z-index: 10;
}

section.message .section_container {
  background-image: url(../images/greeting.png);
  background-size: cover;
  background-position: center;
  padding: 140px 0;
}
section.message .section_container .message_cards {
  margin-top: 50px;
  display: flex;
}
section.message .section_container .message_cards .message_card {
  width: 50%;
}
section.message .section_container .message_cards .message_card p {
  max-width: 600px;
  padding-left: 40px;
  padding-right: 0;
  margin: 0 auto;
  margin-top: 24px;
}

section.price {
  margin-bottom: 140px;
}
section.price .section_container {
  padding: 140px 0;
}
section.price .section_container table {
  margin-top: 50px;
  border-collapse: collapse;
  width: 100%;
}
section.price .section_container table tr td {
  border: 1px solid #707070;
  padding: 40px 100px;
  font-size: 30px;
  line-height: 1.6;
  text-align: left;
  border-left: none;
  font-weight: bold;
}
section.price .section_container table tr td:nth-child(2) {
  text-align: right;
  border-right: none;
}
section.price .section_container table tr td[colspan="2"] {
  border-right: none;
}
section.price .section_container h3 {
  font-size: 30px;
  line-height: 1.6;
}
section.price .section_container p {
  font-size: 20px;
  line-height: 40px;
  font-weight: bold;
}

footer {
  background-color: #000000;
}
footer .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .flex .logo {
  width: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}
footer .flex .logo img {
  margin: 0 auto;
}
footer .flex .info {
  width: 50%;
  color: white;
  padding: 180px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .flex .info table th {
  vertical-align: top;
  font-size: 20px;
  line-height: 40px;
  text-align: left;
  color: #9d9d9d;
  padding: 0 25px 20px 0;
}
footer .flex .info table td {
  padding: 0 25px 20px 0;
  font-size: 18px;
  line-height: 40px;
  color: #fff;
}
footer .flex .info table td a {
  font-size: 18px;
  line-height: 40px;
  color: #fff;
  text-decoration: none;
  position: relative;
}
footer .flex .info table td a::after {
  content: "";
  background-image: url(../images/open_in_new_b.svg);
  width: 14px;
  height: 14px;
  background-size: cover;
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
}
footer .flex .info table td a.small {
  font-size: 12px;
}
footer .flex .info table td a span {
  position: relative;
}
footer .flex .info table td a span::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -5px;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}
footer .flex .info table td a span:hover::before {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.title_sp {
  display: none;
}

.sp_form {
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.sp_form img {
  width: 82px;
}

div.loader {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
div.loader.disable {
  opacity: 0;
  visibility: hidden;
}
div.loader .loading-page {
  background: #efefef;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.loader .loading-page .counter {
  text-align: center;
}
div.loader .loading-page .counter p {
  font-size: 40px;
  font-weight: 100;
  color: #000000;
  font-family: "Anton", sans-serif;
}
div.loader .loading-page .counter h1 {
  color: 0;
  font-size: 60px;
  font-family: "Anton", sans-serif;
  margin-top: 10px;
}
div.loader .loading-page .counter hr {
  background: #000;
  border: none;
  height: 1px;
  margin-top: 20px;
}
div.loader .loading-page .counter {
  position: relative;
  width: 200px;
}
div.loader .loading-page .counter h1.abs {
  position: absolute;
  top: 0;
  width: 100%;
}
div.loader .loading-page .counter .color {
  width: 0px;
  overflow: hidden;
  color: #f60d54;
}

@media screen and (min-width: 1180px) and (max-width: 1320px) {
  section.message .section_container {
    background-image: url(../images/greeting_tab.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1200px) {
  header .header_navi nav ul li a {
    text-decoration: none;
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */