@charset "UTF-8";
/*------------------------------------------------------------------------
 reset
-------------------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul li,
ol li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table, tbody, tfoot, thead, tr, th, td {
  vertical-align: top;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*------------------------------------------------------------------------
 default
-------------------------------------------------------------------------*/
html {
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -ms-overflow-style: scrollbar;
}

body {
  background-color: #fff;
  color: #333;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  word-break: break-word;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

a, img, button {
  transition: ease 0.3s;
}

img {
  display: block;
  max-width: 100%;
}

@media screen and (max-width: 999px) {
  img {
    width: 100%;
  }
}
button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
}

input, select, textarea {
  background-color: #fff;
  border: none;
  box-sizing: border-box;
  color: #333;
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=radio],
input[type=file] {
  display: none;
}

input[type=checkbox] {
  border: none;
  margin: 0;
  opacity: 0;
}

input::placeholder {
  color: #707070;
}

input::-ms-reveal {
  visibility: hidden;
}

input::-ms-clear {
  visibility: hidden;
}

input::-webkit-calendar-picker-indicator {
  display: none;
}

textarea {
  resize: vertical;
}

/*------------------------------------------------------------------------
 PC/SP 切り替え
 -------------------------------------------------------------------------*/
@media screen and (min-width: 1000px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 999px) {
  .pc-only {
    display: none !important;
  }
}
/*------------------------------------------------------------------------
 header
-------------------------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 17px 0 25px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

@media screen and (max-width: 999px) {
  .header {
    padding: 13px 13px 0 6px;
  }
}
.logo {
  display: inline-block;
  height: 60px;
}
.logo img {
  height: 100%;
}

@media screen and (max-width: 999px) {
  .logo {
    position: relative;
    height: auto;
    width: 85px;
  }
  .header.active .logo {
    z-index: 10;
  }
}
.menu-wrap {
  background-color: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.16);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  padding: 13px 10px;
  max-width: 1026px;
  width: 85%;
}

@media screen and (max-width: 999px) {
  .menu-wrap {
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
    display: block;
    padding: 85px 20px 50px;
    width: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
  }
  .menu-wrap.show {
    top: 0;
  }
}
@media screen and (max-height:500px) {
  .menu-wrap {
    height: 100vh;
    border-radius: 0;
    padding-top: 55px;
  }

}
.nav-wrap {
  flex-grow: 1;
}

.nav-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media screen and (max-width: 999px) {
  .nav-box {
    display: block;
  }
  .nav-list {
    margin-bottom: 44px;
  }
}
.nav-title {
  color: #333;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  padding-left: 20px;
  position: relative;
  transition: all 0.2s ease;
}
.nav-title span {
  color: #333;
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}
.nav-title::before {
  content: "";
  background-color: #00A5E2;
  border-radius: 50%;
  display: block;
  height: 6px;
  width: 6px;
  position: absolute;
  left: 0;
  bottom: 6px;
  z-index: 2;
}
.nav-title::after {
  content: "";
  background-color: rgba(0, 165, 226, 0.2);
  border-radius: 50%;
  display: block;
  opacity: 0;
  height: 10px;
  width: 10px;
  transition: ease 0.3s;
  position: absolute;
  left: -2px;
  bottom: 4px;
}
.nav-title.current {
  color: #00A5E2;
}
.nav-title.current span {
  color: #333;
}
.nav-title.current::after {
  opacity: 1;
}

@media (hover: hover) {
  .nav-title:hover {
    color: #00A5E2;
  }
  .nav-title:hover span {
    color: #333;
  }
  .nav-title:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 999px) {
  .nav-title {
    font-size: 2.6rem;
  }
  .nav-title::before {
    height: 9px;
    width: 9px;
    bottom: 9px;
  }
  .nav-title::after {
    height: 13px;
    width: 13px;
    bottom: 7px;
  }
  .nav-title span {
    font-size: 1.4rem;
  }
}
@media screen and (max-height:500px) {
  .nav-list {
    margin-bottom: 20px;
  }
  .nav-title {
    font-size: 2rem;
  }
  .nav-title span {
    font-size: 1.2rem;
  }
}
/*------------------------------------------------------------------------
 hamburger
-------------------------------------------------------------------------*/
@media screen and (max-width: 999px) {
  .menu-icon-box {
    cursor: pointer;
    position: relative;
  }
  .menu-icon-box .menu-icon {
    width: 22px;
    height: 10px;
    position: relative;
  }
  .menu-icon-box .menu-icon::before, .menu-icon-box .menu-icon::after {
    content: "";
    background-color: #00A5E2;
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease;
  }
  .menu-icon-box .menu-icon::before {
    top: 0;
  }
  .menu-icon-box .menu-icon::after {
    bottom: 0;
  }
  .menu-icon-box.active {
    z-index: 10;
  }
  .menu-icon-box.active .menu-icon {
    height: 22px;
  }
  .menu-icon-box.active .menu-icon::before {
    margin: auto;
    bottom: 0;
    transform: rotate(45deg);
  }
  .menu-icon-box.active .menu-icon::after {
    margin: auto;
    top: 0;
    transform: rotate(-45deg);
  }
}
/*------------------------------------------------------------------------
 footer
-------------------------------------------------------------------------*/
.footer {
  background-color: #28373C;
  color: #fff;
  padding: 60px 0 40px;
}
.footer-logo {
  width: 240px;
}

@media screen and (max-width: 999px) {
  .footer {
    padding: 60px 0;
  }
}
.footer-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media screen and (max-width: 999px) {
  .footer-wrap {
    display: block;
  }
}
.footer-company {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}

@media screen and (max-width: 999px) {
  .footer-company {
    display: block;
    text-align: center;
  }
  .footer-logo {
    margin: auto;
    width: 210px;
  }
}
.footer-text {
  margin-left: 16px;
}

@media screen and (max-width: 999px) {
  .footer-text {
    margin: 15px 0 0;
  }
}
.footer-name {
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .footer-name {
    font-size: 1.4rem;
  }
}
.footer-service {
  font-weight: bold;
  margin-left: 15px;
}

@media screen and (max-width: 999px) {
  .footer-service {
    margin: 0;
  }
}
.footer-service-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-service-link {
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 9px;
  display: block;
  text-align: center;
  padding: 4px 20px 10px;
  width: 160px;
}

.footer-nav {
  display: flex;
  gap: 20px 35px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media screen and (max-width: 999px) {
  .footer-nav {
    justify-content: flex-start;
    margin: 40px 0;
  }
  .footer-nav-item:nth-child(2n+1) {
    width: 170px;
  }
}
.footer-nav-link {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  padding-left: 20px;
  position: relative;
}
.footer-nav-link::before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  display: block;
  height: 6px;
  width: 6px;
  position: absolute;
  left: 0;
  bottom: 6px;
}
.footer-nav-link span {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

@media screen and (max-width: 999px) {
  .footer-nav-link {
    font-size: 2rem;
  }
  .footer-nav-link::before {
    bottom: 8px;
  }
  .footer-nav-link span {
    font-size: 1.1rem;
  }
}
.footer-btns {
  justify-content: flex-end;
  margin-bottom: 20px;
}
.footer-btns .sub-btn {
  background-color: #fff;
  color: #333;
}
.footer-btns .sub-btn::before {
  background-color: #333;
}
.footer-btns .sub-btn::after {
  border-color: #333;
}

@media screen and (max-width: 999px) {
  .footer-btns {
    justify-content: center;
  }
}
.footer-link {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

@media screen and (max-width: 999px) {
  .footer-link {
    justify-content: center;
    margin-bottom: 15px;
  }
}
.footer-copyright {
  font-size: 1rem;
  text-align: right;
}

@media screen and (max-width: 999px) {
  .footer-copyright {
    text-align: center;
  }
}
/* wrapper
---------------------------------------------------------- */
.wrap {
  overflow: hidden;
}

.content-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .content-wrap {
    padding: 0 6%;
  }
}
@media screen and (max-width: 999px) {
  .content-wrap {
    padding: 0 20px;
  }
}
/*------------------------------------------------------------------------
 ボタン
-------------------------------------------------------------------------*/
/* btn
---------------------------------------------------------- */
.btn {
  border-radius: 23px;
  color: #fff;
  display: block;
  padding: 15px 20px;
  border: none;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  width: 160px;
  position: relative;
}
.btn-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.btn .arrow {
  width: 16px;
}
.btn .arrow-before {
  transform: translate(-50%,-50%);
}
.btn:hover .arrow-before {
  opacity: 0;
  transform: translate( calc(-50% + 10px) ,-50%);
}
.btn .arrow-after {
  opacity: 0;
  transform: translate( calc(-50% - 10px) ,-50%);
}
.btn:hover .arrow-after{
  opacity: 1;
  transform: translate(-50%,-50%);
}
/* .btn::before {
  content: "";
  background: #fff;
  margin: auto;
  width: 12px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
}
.btn::after {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 8px;
  width: 8px;
  transform: rotate(45deg);
  margin: auto;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
} */

@media (hover: hover) {
  .btn:hover {
    opacity: 0.8;
  }
  .btn:hover::before, .btn:hover::after {
    animation: btn-arrow-move 0.2s forwards;
  }
}
@keyframes btn-arrow-move {
  0% {
    right: 6px;
    opacity: 0;
  }
  100% {
    right: 16px;
    opacity: 1;
  }
}
/* main btn
---------------------------------------------------------- */
.main-btn {
  background-color: #00A5E2;
}

/* sub btn
---------------------------------------------------------- */
.sub-btn {
  background-color: #333;
}

/* btn wrap
---------------------------------------------------------- */
.btn-wrap {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 999px) {
  .btn-wrap {
    justify-content: center;
  }
}
/*------------------------------------------------------------------------
 col
-------------------------------------------------------------------------*/
.col-wrap {
  display: flex;
}
.col-wrap .col {
  width: 100%;
}
.col-wrap .col-half {
  width: 50%;
}
.col-wrap .col-small {
  width: 40%;
}
.col-wrap .col-big {
  width: 60%;
}

@media screen and (max-width: 999px) {
  .col-wrap {
    display: block;
  }
  .col-wrap .col-half,
  .col-wrap .col-small,
  .col-wrap .col-big {
    width: 100%;
  }
}
.col-link {
  color: #fff;
  display: block;
  height: 520px;
  padding: 30px 40px;
  position: relative;
}
.col-link .bg-image {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.col-link .bg-image::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.col-link .bg-image img {
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
  transition: all 0.3s ease;
  height: 100%;
  width: 100%;
}
.col-link .sec-title {
  margin: 0;
  position: relative;
}
.col-link .sec-title span {
  color: #fff;
}
.col-link .text {
  font-size: 1.4rem;
  font-weight: bold;
}
.col-link .link-circle {
  margin: auto;
  transform: none;
  top: auto;
  left: 0;
  right: 0;
  bottom: 50px;
}

@media (hover: hover) {
  .col-link:hover .bg-image img {
    transform: scale(1.1);
  }
  .col-link:hover .link-circle {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    transform: translate(0, 7px);
  }
  .col-link:hover .arrow-before {
    opacity: 0;
    transform: translate(calc(-50% + 10px), -50%);
  }
  .col-link:hover .arrow-after {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 999px) {
  .col-link {
    aspect-ratio: 16/9;
    height: auto;
    padding: 20px;
  }
  .col-link .sec-title {
    margin: 0;
    position: absolute;
    left: 20px;
    bottom: 45px;
  }
  .col-link .text {
    position: absolute;
    left: 20px;
    bottom: 20px;
  }
}
/*------------------------------------------------------------------------
 title
-------------------------------------------------------------------------*/
.sec-title {
  display: flex;
  align-items: center;
  font-size: 7rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 36px;
}
.sec-title span {
  color: #00A5E2;
  font-size: 1.4rem;
  margin-left: 40px;
}

@media screen and (max-width: 999px) {
  .sec-title {
    align-items: flex-start;
    flex-direction: column-reverse;
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
  .sec-title span {
    margin: 0 0 5px;
  }
}
.sub-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.sub-title span {
  color: #00A5E2;
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 10px;
}

@media screen and (max-width: 999px) {
  .sub-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
/*------------------------------------------------------------------------
 text
-------------------------------------------------------------------------*/
.text-lead {
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .text-lead {
    font-size: 1.2rem;
  }
}
.page-text-lead {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 60px;
}

@media screen and (max-width: 999px) {
  .page-text-lead {
    font-size: 1.4rem;
    margin-bottom: 75px;
  }
}
.text-right {
  text-align: right;
}
.text-right .link-button {
  right: 66px;
}

@media screen and (max-width: 999px) {
  .text-right .link-button {
    right: 36px;
  }
}
/*------------------------------------------------------------------------
 link
-------------------------------------------------------------------------*/
.link-button {
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  padding-right: 30px;
  position: relative;
}
.link-button.back {
  padding: 0 0 0 85px;
}
.link-button.back .link-circle {
  left: 0;
}
.link-button.back .arrow-before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.link-button.back .arrow-after {
  transform: translate(calc(-50% + 10px), -50%) rotate(180deg);
}

@media screen and (max-width: 999px) {
  .link-button {
    font-size: 1.4rem;
    padding-right: 10px;
  }
  .link-button.back {
    padding: 0 0 0 50px;
  }
}
.link-circle {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(0, -50%);
  background: #00A5E2;
  width: 66px;
  height: 66px;
  border-radius: 33px;
  transition: all 0.2s;
}
.link-circle.white {
  background: #fff;
}
.link-circle::before, .link-circle::after {
  display: none;
}

@media screen and (max-width: 999px) {
  .link-circle {
    width: 36px;
    height: 36px;
  }
}
.arrow {
  width: 20px;
  height: 16px;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transition: all 0.2s;
}

.arrow-before {
  transform: translate(-50%, -50%);
}

.arrow-after {
  opacity: 0;
  transform: translate(calc(-50% - 10px), -50%);
}

@media screen and (max-width: 999px) {
  .arrow {
    width: 11px;
    height: 10px;
  }
}
@media (hover: hover) {
  .link-button:hover .link-circle {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    transform: translate(-7px, -50%);
  }
  .link-button:hover .arrow-before {
    opacity: 0;
    transform: translate(calc(-50% + 10px), -50%);
  }
  .link-button:hover .arrow-after {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  .link-button.back:hover .arrow-before {
    transform: translate(calc(-50% - 10px), -50%) rotate(180deg);
  }
  .link-button.back:hover .arrow-after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
.link-blank {
  padding-left: 20px;
}
.link-blank::before {
  content: "";
  background-image: url(../img/blank_icon.svg);
  background-size: contain;
  display: block;
  margin: auto;
  height: 13px;
  width: 13px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

/*------------------------------------------------------------------------
 animation
-------------------------------------------------------------------------*/
.animation-item {
  opacity: 0;
  transform: translateY(15%);
  transition: 0.5s all ease;
}
.animation-item.fade-in {
  animation: fadein 1s forwards;
}
.animation-item.delay2 {
  animation-delay: 0.4s;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(15%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
/*------------------------------------------------------------------------
 breadcrumb
-------------------------------------------------------------------------*/
.breadcrumb {
  display: flex;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.breadcrumb > li:not(:last-child) {
  padding-right: 45px;
  position: relative;
}
.breadcrumb > li:not(:last-child)::after {
  content: "";
  background-color: #00A5E2;
  border-radius: 50%;
  display: block;
  margin: auto;
  height: 4px;
  width: 4px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
}
.breadcrumb a {
  color: #707070;
}

/*------------------------------------------------------------------------
 top
-------------------------------------------------------------------------*/
/* MV */
.mv {
  background: #f8f8f8;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.ja,.en {
  opacity: 0;
  transition: 0.5s all ease;
  display: block;
}
.ja {
  transform: translateY(15%);
}

.loading.fade-in {
  animation: fadein 2s forwards;
}
.loading.delay2 {
  animation-delay: 1s;
}

@media screen and (max-width: 999px) {
  .mv {
    height: 81vh;
  }
}
.circle {
  width: 150vw;
  height: 150vw;
  border-radius: 50%;
  position: absolute;
  bottom: 40%;
  left: 20%;
}

@media screen and (max-width: 999px) {
  .circle {
    width: 200vw;
    height: 200vw;
    bottom: 48%;
    left: 20%;
    max-width: 1300px;
    max-height: 1300px;
  }

}
@media screen and (max-height: 500px) {
  .circle {
    width: 110vw;
    height: 110vw;
    bottom: 48%;
    left: 20%;
    max-width: 1300px;
    max-height: 1300px;
  }

}
.mv-common {
  width: 50%;
  height: 50%;
  position: absolute;
  animation: rotate_pc 15s linear infinite;
  left: 75%;
  top: 25%;
  transform-origin: -50% center;
}

.mv-02 {
  animation: rotate_pc 15s -5s linear infinite;
}
.mv-02 .mv-inner {
  animation: rotate_pc 15s -5s linear reverse infinite;
}
.mv-02 .mv-image {
  animation: fade_pc 15s -5s ease infinite;
}

.mv-03 {
  animation: rotate_pc 15s -10s linear infinite;
}
.mv-03 .mv-inner {
  animation: rotate_pc 15s -10s linear reverse infinite;
}
.mv-03 .mv-image {
  animation: fade_pc 15s -10s ease infinite;
}

.mv-inner {
  width: 100%;
  height: 100%;
  animation: rotate_pc 15s linear reverse infinite;
  word-wrap: break-word;
  position: relative;
}

.mv-image {
  width: 60%;
  height: 60%;
  border-radius: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  animation: fade_pc 15s ease infinite;
}
.mv-image::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: rgba(0, 165, 226, 0.15);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: bounce 6s ease infinite;
}
.mv-image::after {
  content: "";
  width: 102%;
  height: 102%;
  border-radius: 100%;
  background: rgba(0, 165, 226, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: bounce 9s ease reverse infinite;
}
.mv-image img {
  width: 100%;
  border-radius: 100%;
}

@media screen and (max-width: 999px) {
  .mv-image {
    width: 90%;
    height: 90%;
  }
  .mv-common,
  .mv-inner {
    animation-name: rotate_sp !important;
  }
  .mv-image {
    animation-name: fade_sp !important;
  }
}
@keyframes rotate_pc {
  0% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(190deg);
  }
}
@keyframes rotate_sp {
  0% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(240deg);
  }
}
@keyframes fade_pc {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9) rotate(80deg);
  }
  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(80deg);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(80deg);
  }
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.1) rotate(80deg);
  }
}
@keyframes fade_sp {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9) rotate(30deg);
  }
  18% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(30deg);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(30deg);
  }
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.1) rotate(30deg);
  }
}
@keyframes bounce {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  20% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  40% {
    transform: translate(-50%, -50%) scale(1.08);
  }
  60% {
    transform: translate(-50%, -50%) scale(1.14);
  }
  80% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
/* MV キャッチコピー */
.mv-copy {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 999px) {
  .mv-copy {
    top: auto;
    left: 20px;
    bottom: 70px;
    transform: none;
  }
}
.mv-title {
  font-size: 6vw;
  letter-spacing: 0.1em;
  line-height: 1.3em;
}
.mv-title .en {
  font-size: 3.2vw;
  font-weight: bold;
  color: #00A5E2;
  display: block;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-top: 1vw;
}

@media screen and (max-width: 999px) {
  .mv-title {
    font-size: 4.5rem;
    line-height: 1.25;
  }
  .mv-title .en {
    font-size: 2rem;
    padding-top: 10px;
  }
}
/* スクロールダウン */
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-text {
  font-size: 1.4rem;
  color: #00A5E2;
  text-align: center;
  font-weight: bold;
}

.scroll-base {
  background-color: #fff;
  width: 6px;
  height: 50px;
  border: solid 1px #fff;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  box-sizing: content-box;
}

.scroll-line {
  width: 4px;
  height: 13px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: #00A5E2;
  border-radius: 2px;
  animation-name: scrollDown;
  animation-duration: 4s;
  animation-timing-function: cubic-bezier(0.99, 0.02, 0.17, 0.71);
  animation-iteration-count: infinite;
  animation-delay: 0;
}

.scroll-second {
  animation-delay: -2s;
}

@keyframes scrollDown {
  0% {
    top: -15px;
  }
  100% {
    top: 110%;
  }
}
.about {
  padding: 80px 0 110px;
}

@media screen and (max-width: 999px) {
  .about {
    padding: 50px 0 120px;
  }
}
.about-content {
  position: relative;
}
.about-content::before {
  background-image: url(../img/about_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  transform: rotate(-24deg);
  height: 310px;
  width: 567px;
  position: absolute;
  top: 15px;
  left: -22%;
  z-index: -1;
}
.about-content .text {
  margin-bottom: 60px;
}

@media screen and (max-width: 999px) {
  .about-content {
    margin-bottom: 50px;
  }
  .about-content::before {
    height: 172px;
    width: 315px;
    top: 35%;
  }
  .about-content .text {
    margin-bottom: 30px;
  }
}
.about-images {
  display: flex;
  width: 720px;
  transform: translateX(75px);
  position: relative;
}
.about-images .image, .about-images img {
  border-radius: 30px;
}
.about-images .image.big {
  width: 55%;
}
.about-images .image.small {
  width: 45%;
  position: absolute;
  top: 120px;
  right: -20px;
}

@media screen and (max-width: 999px) {
  .about-images {
    width: 100vw;
    transform: none;
  }
  .about-images .image, .about-images img {
    border-radius: 15px;
  }
  .about-images .image.big {
    width: 52%;
  }
  .about-images .image.small {
    width: 44%;
    top: 60px;
    right: -12px;
  }
}
.guys {
  margin-bottom: 115px;
}

@media screen and (max-width: 999px) {
  .guys {
    margin-bottom: 60px;
  }
}
.guys-link {
  display: block;
  position: relative;
}
.guys-link .link-circle {
  margin: auto;
  transform: none;
  top: auto;
  left: 0;
  right: 0;
  bottom: 30px;
}

@media (hover: hover) {
  .guys-link:hover .guys-image img {
    transform: scale(1.1);
  }
  .guys-link:hover .link-circle {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    transform: translate(0, 7px);
  }
  .guys-link:hover .arrow-before {
    opacity: 0;
    transform: translate(calc(-50% + 10px), -50%);
  }
  .guys-link:hover .arrow-after {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 999px) {
  .guys-link .link-circle {
    margin: 0;
    left: auto;
    right: 12px;
    bottom: 10px;
  }
}
.guys-image {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.guys-image::after {
  content: "";
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.16);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.guys-image img {
  border-radius: 30px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .guys-image {
    aspect-ratio: 2/1;
    border-radius: 15px;
  }
  .guys-image::after {
    border-radius: 15px;
  }
  .guys-image img {
    border-radius: 15px;
    object-fit: cover;
    font-family: "object-fit: cover;", sans-serif;
    height: 100%;
    width: 100%;
  }
}
.guys-text {
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  bottom: 126px;
  left: 0;
  right: 0;
}

@media screen and (max-width: 999px) {
  .guys-text {
    font-size: 1.2rem;
    text-align: left;
    left: 10px;
    bottom: 18px;
  }
}
.service {
  margin-bottom: 100px;
}
.service .col-wrap {
  gap: 45px;
}

@media screen and (max-width: 999px) {
  .service {
    margin: 0 -20px 50px;
    width: 100vw;
  }
  .service .sec-title {
    margin-bottom: 20px;
  }
}
.service-movie {
  border-radius: 30px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.service-movie video {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: translate(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
}

@media screen and (max-width: 999px) {
  .service-movie {
    border-radius: 15px;
    aspect-ratio: 1/1.4;
    height: auto;
    margin: 30px 0;
  }
}
.service-content {
  background-color: #0780CC;
  border-radius: 30px;
  color: #fff;
  padding: 60px 30px;
}
.service-content span {
  color: #fff;
}
.service-content .link-button {
  color: #fff;
}

@media screen and (max-width: 999px) {
  .service-content {
    border-radius: 0;
    padding: 50px 20px;
  }
}
.service-list {
  margin: 40px 0 60px;
}

@media screen and (max-width: 999px) {
  .service-list {
    margin: 30px 15px;
  }
}
.service-item {
  background-color: #fff;
  border-radius: 30px;
  color: #333;
  text-align: center;
  padding: 40px;
}

@media screen and (max-width: 999px) {
  .service-item {
    border-radius: 15px;
    padding: 24px;
  }
}
.service-logo {
  margin: auto;
  max-width: 240px;
}
.service-logo img {
  width: auto;
}

@media screen and (max-width: 999px) {
  .service-logo {
    max-width: 130px;
  }
}
.service-title {
  font-size: 3.2rem;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .service-title {
    font-size: 1.7rem;
  }
}
.service-text {
  font-size: 1.2rem;
}

.news {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  margin: 90px 0 115px;
}
.news .sec-title {
  flex-shrink: 0;
}

@media screen and (max-width: 999px) {
  .news {
    display: block;
    margin: 64px 0 50px;
  }
}
.news-content {
  width: 100%;
}

.news-item {
  margin-bottom: 30px;
}

.news-link {
  display: flex;
}

@media (hover: hover) {
  .news-link:hover img {
    transform: scale(1.1);
  }
  .news-link:hover .news-title {
    color: #00A5E2;
  }
}
.news-image {
  aspect-ratio: 3/2;
  border-radius: 15px;
  flex-shrink: 0;
  overflow: hidden;
  width: 210px;
}
.news-image img {
  border-radius: 15px;
  object-fit: cover;
  font-family: "object-fit: cover;", sans-serif;
  transition: all 0.3s ease;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 999px) {
  .news-image {
    border-radius: 10px;
    width: 140px;
  }
  .news-image img {
    border-radius: 10px;
  }
}
.news-box {
  padding: 10px 0 0;
  margin-left: 16px;
}

@media screen and (max-width: 999px) {
  .news-box {
    padding: 0;
    margin-left: 12px;
  }
}
.news-category {
  background-color: #333;
  border-radius: 21px;
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  margin-left: 20px;
  padding: 9px 15px;
}

@media screen and (max-width: 999px) {
  .news-category {
    border-radius: 10px;
    font-size: 1rem;
    margin-left: 15px;
    padding: 4px 10px;
  }
  .news-date {
    font-size: 1rem;
  }
}
.news-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 999px) {
  .news-title {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 5px;
  }
}
/*------------------------------------------------------------------------
 下層ページ
-------------------------------------------------------------------------*/
.page-wrap {
  padding: 136px 0 0;
}

@media screen and (max-width: 999px) {
  .page-wrap {
    padding: 60px 0 0;
  }
}
.page-section {
  padding-bottom: 100px;
}

@media screen and (max-width: 999px) {
  .page-section {
    padding-bottom: 50px;
  }
}
.bg-gray {
  background-color: #f8f8f8;
}

/*------------------------------------------------------------------------
 サービス
-------------------------------------------------------------------------*/
.service-section {
  padding-bottom: 60px;
}

@media screen and (max-width: 999px) {
  .service-section {
    padding-bottom: 100px;
  }
}
.service-course .title {
  font-size: 2.4rem;
}
.service-course .col-wrap {
  margin: 30px 0 60px;
}

@media screen and (max-width: 999px) {
  .service-course .title .title {
    font-size: 2rem;
  }
  .service-course .title .col-wrap {
    margin: 25px 0;
  }
}
/*------------------------------------------------------------------------
 サイクループガイズ
-------------------------------------------------------------------------*/
.guys-detail {
  margin: 10px 0 60px;
}

.guys-modal {
  z-index: 10;
}

.page-section .guys-content {
  justify-content: flex-start;
  gap: 20px 15px;
}

@media screen and (max-width: 999px) {
  .page-section .guys-content {
    gap: 10px;
  }
}
/*------------------------------------------------------------------------
 プライバシーポリシー
-------------------------------------------------------------------------*/
.privacy-content h2 {
  font-size: 2.4rem;
  margin: 30px 0;
}
.privacy-content p {
  margin: 20px 0;
}
.privacy-content ol li {
  counter-increment: number;
  padding-left: 1em;
  text-indent: -1em;
}
.privacy-content ol li::before {
  content: counter(number) ".";
}
.privacy-content li {
  margin: 10px 0;
}
.privacy-content a {
  color: #00A5E2;
  text-decoration: underline;
}

@media screen and (max-width: 999px) {
  .privacy-content h2 {
    font-size: 1.8rem;
  }
}
/*------------------------------------------------------------------------
 お知らせ
-------------------------------------------------------------------------*/
.news-wrap {
  display: flex;
  gap: 0 160px;
  margin: 64px 0 50px;
}

@media screen and (max-width: 999px) {
  .news-wrap {
    display: block;
    margin: 50px 0;
  }
}
.category-list {
  flex-shrink: 0;
  width: 212px;
}
.category-list > li {
  margin-bottom: 20px;
}
.category-list a {
  border-radius: 28px;
  border: 1px solid #00A5E2;
  color: #00A5E2;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 9px 33px;
  width: 100%;
}
.category-list a.current {
  background-color: #00A5E2;
  color: #fff;
}

@media (hover: hover) {
  .category-list a:hover {
    background-color: #00A5E2;
    color: #fff;
  }
}
@media screen and (max-width: 999px) {
  .category-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    width: 100%;
  }
  .category-list > li {
    margin: 0;
  }
  .category-list a {
    border-radius: 20px;
    font-size: 1.2rem;
    padding: 4px 20px;
    width: auto;
  }
}
.news-article {
  margin: auto;
  max-width: 969px;
}
.news-article .news-inner {
  border-bottom: 1px solid #707070;
  padding: 0;
  margin-bottom: 50px;
}
.news-article .news-category {
  background-color: #00A5E2;
}
.news-article .news-title {
  font-size: 2.4rem;
  margin-top: 16px;
}

.news-detail {
  padding-top:  35px ;
}
.news-detail a {
  color: #00A5E2;
  text-decoration: underline;
}
.news-detail p {
  margin-bottom: 40px;
}
.news-detail figure {
  margin-bottom: 10px;
}
.news-detail .btn {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 999px) {
  .news-article .news-inner {
    padding: 0 0px;
    margin-bottom: 30px;
  }
  .news-article .news-title {
    font-size: 1.8rem;
    margin-top: 8px;
  }
  .news-detail {
    padding: 20px 0 0;
  }
}
/*------------------------------------------------------------------------
 フォーム
-------------------------------------------------------------------------*/
.form-area {
  margin: auto;
  max-width: 720px;
}
.form-area .btn-wrap {
  align-items: center;
  justify-content: space-between;
}
.form-area .link-circle {
  pointer-events: none;
}
.form-area .link-button.back {
  padding: 0;
}

@media screen and (max-width: 999px) {
  .form-area .btn-wrap {
    padding-right: 36px;
  }
}
.form-text {
  color: #00A5E2;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.required {
  color: #00A5E2;
  margin: 0 6px;
}

.form-item {
  display: flex;
  align-items: center;
  gap: 0 40px;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.form-item:last-of-type {
  margin-bottom: 50px;
}
.form-item.top {
  align-items: flex-start;
}
.form-item dt {
  flex-shrink: 0;
  font-weight: bold;
  width: 150px;
}
.form-item dd {
  display: flex;
  gap: 0 27px;
  width: 100%;
}
.form-item dd.file-item {
  align-items: center;
}
.form-item dd.file-item > p {
  width: auto;
}
.form-item dd.file-item > p.file-name {
  display: block;
  width: calc(100% - 220px);
}

@media screen and (max-width: 999px) {
  .form-item {
    display: block;
  }
  .form-item dt {
    margin-bottom: 10px;
  }
  .form-item dd {
    gap: 0 10px;
  }
  .form-item dd.file-item > p.file-name {
    width: 100%;
  }
  .form-item .birthdate > p {
    gap: 0 5px;
  }
  .form-item .birthdate select {
    padding: 15px 10px;
  }
}
input, textarea, select {
  border-radius: 27px;
  font-size: 1.6rem;
  padding: 19px 25px;
  width: 100%;
}

@media screen and (max-width: 999px) {
  input, textarea, select {
    border-radius: 20px;
    padding: 15px 20px;
  }
}
select {
  max-width: 200px;
}

input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 16px;
  padding-left: 26px;
  position: relative;
}
input[type=radio] + span::before {
  border: 1px solid #707070;
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  transition: 0.3s;
  margin: auto;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
input[type=radio] + span::after {
  background-color: #707070;
  border-radius: 50%;
  content: "";
  display: block;
  transition: 0.3s;
  margin: auto;
  opacity: 0;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 6px;
  bottom: 0;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

.file {
  background-color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 6px 24px 6px 16px;
}

.file-item {
  display: flex;
  gap: 20px;
}
.file-item .wpcf7-not-valid-tip {
  top: 27px;
  left: -12px;
}

.file-name {
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 999px) {
  .file-name {
    margin: 5px 0 0;
  }
}
input[type=submit] {
  background-color: transparent;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 19px 100px 19px 0;
  position: relative;
  left: 96px;
}

@media screen and (max-width: 999px) {
  input[type=submit] {
    font-size: 1.6rem;
    padding: 4px 50px 4px 0;
    left: 46px;
  }
}
input[type=button] {
  background-color: transparent;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 19px 0 19px 100px;
}

@media screen and (max-width: 999px) {
  input[type=button] {
    padding: 19px 0 19px 50px;
  }
}
/*------------------------------------------------------------------------
 エントリーフォーム
-------------------------------------------------------------------------*/
.entry-form dd {
  display: flex;
  gap: 0 27px;
}
.entry-form dd.birthdate {
  align-items: flex-end;
  gap: 0 16px;
}
.entry-form .select {
  max-width: 200px;
  position: relative;
}
.entry-form .select::after {
  content: "";
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #707070 transparent transparent transparent;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
}
.entry-form select {
  min-width: 120px;
}
.entry-form .file-name {
  display: block;
}

@media screen and (max-width: 999px) {
  .entry-form dd {
    gap: 0 10px;
  }
  .entry-form dd.birthdate {
    gap: 0 5px;
  }
  .entry-form .select {
    width: 100%;
  }
  .entry-form .select::after {
    right: 10px;
  }
  .entry-form select {
    min-width: auto;
  }
  .entry-form .file-item {
    display: block;
  }
}
.mw_wp_form_input dd {
  position: relative;
}
.mw_wp_form_input .btn-wrap {
  justify-content: flex-end;
}
.mw_wp_form_input .link-button.back {
  display: none;
}

.mw_wp_form_confirm dd.birthdate {
  align-items: flex-start;
  gap: 0;
}
.mw_wp_form_confirm dd.birthdate > p {
  width: auto;
}
.mw_wp_form_confirm .select::after {
  display: none;
}
.mw_wp_form_confirm .file {
  background-color: transparent;
  padding: 0;
}
.mw_wp_form_confirm .file-item span {
  display: none;
}

.mw_wp_form_complete {
  font-size: 1.8rem;
  text-align: center;
}
.mw_wp_form_complete .form-text {
  display: none;
}
.mw_wp_form_complete .link-button.back {
  padding: 0 0 0 85px;
  margin-top: 40px;
}

@media screen and (max-width: 999px) {
  .mw_wp_form_complete .link-button.back {
    padding: 0 0 0 50px;
  }
}
.mw_wp_form .error {
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  bottom: -25px;
}

.mw_wp_form input[type=file] {
  display: none !important;
}
