@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Jost', 'Zen Kaku Gothic New', 'BIZ UDGothic', "BIZ UDPGothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Hiragino Sans, Arial, Helvetica, "Helvetica Neue", Verdana, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  height: 100%;
  color: #000000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
  margin: auto;
  overflow: hidden;
}

img {
  text-decoration: none;
  vertical-align: top;
  font-size: 0px;
  border: 0px;
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

article, aside, main, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  color: #3C60EC;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1160px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* ローディング */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  text-align: center;
}

#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translateX(-50%, -50%);
  -ms-transform: translateX(-50%, -50%);
  max-width: 200px;
}

#loading .loadingArea {
  width: 100%;
}

#loading .loadingArea figure {
  text-align: center;
}

#loading .loadingArea figure img {
  max-width: 100%;
  height: auto;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

/* -----------------------------
 基本レイアウト
------------------------------*/
/* =====headerarea===== */

#header {
  width: 100%;
  z-index: 500;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  position: relative;
  margin-top: 20px;
}

#header a {
  color: #ffffff;
}

#header .nav_p {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#header .logo {
  width: 100%;
  max-width: 120px;
}

#header .nav_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#header .nav_main li {
  line-height: 1;
  overflow: hidden;
}

#header .nav_main li a {
  padding: 1em 0.8em;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 2.0rem;
  font-weight: 600;
}

#header .nav_main li a::after {
  background: #3C60EC;
  position: absolute;
  bottom: -100%;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: -1;
}

#header .nav_main li a:hover {
  opacity: 1;
  color: #fff;
}

#header .nav_main li a:hover::after {
  bottom: 0;
  color: #fff;
}

/*150スクロール後*/
#header.nav_fixed {
  position: fixed;
  top: 0;
  background-color: #000000;
  margin-top: 0px;
}

#header.nav_fixed .logo {
  margin-top: 0px;
}

#menu_btn_check, #header .sp_logo, #header .logo {
  display: none;
}


@media screen and (max-width: 840px) {
  #header {
    margin-top: 0px;
  }

  #header.nav_fixed {
    height: 70px;
    background-color: rgb(255, 255, 255, .95);
  }

  #header.nav_fixed .sp_logo {
    display: block;
    position: fixed;
    top: 10px;
    left: 20px;
    width: 110px;
    line-height: 1.4;
  }

  /* 767以上非表示 ドロワーメニュー css */
  #header .menu_btn {
    position: fixed;
    top: 0px;
    right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    width: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 502;
    cursor: pointer;
  }

  #header .menu_btn span,
  #header .menu_btn span:before,
  #header .menu_btn span:after {
    content: '';
    display: block;
    width: 34px;
    color: #000000;
    position: absolute;
    text-align: center;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }

  #header .menu_btn span:nth-of-type(1)::before,
  #header .menu_btn span:nth-of-type(1)::after {
    height: 2px;
    border-radius: 2px;
    background-color: #000000;
  }

  #header .menu_btn span:nth-of-type(1)::before {
    bottom: 6px;
  }

  #header .menu_btn span:nth-of-type(1)::after {
    top: 0px;
    width: 25px;
  }

  #header .menu_btn span:nth-of-type(2)::after {
    content: "Menu";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 8px;
    text-transform: uppercase;
  }

  #header #menu_btn_check:checked~.menu_btn span:nth-of-type(1)::before {
    bottom: 2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #header #menu_btn_check:checked~.menu_btn span:nth-of-type(1)::after {
    top: -5px;
    width: 34px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  #header #menu_btn_check:checked~.menu_btn span:nth-of-type(2)::after {
    content: "Close";
  }

  #menu_btn_check:checked~.nav_p {
    left: 0;
    /*メニューを画面内へ*/
  }

  #header .nav_p {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;
    /*メニューを画面外へ*/
    z-index: 501;
    background-color: rgb(254, 254, 248, .95);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  #header .nav_p a {
    color: #000;
  }

  /* SP時メニュー */
  #header .logo {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 60%;
    margin-top: 30px;
  }

  #header .nav_p .logo {
    margin-top: 50px;
  }

  #header .nav_main {
    display: block;
    margin-top: 30px;
    margin-bottom: 50px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

}




/* mainエリア共通 */
#main {
  position: relative;
}

#main h2 {
  padding-top: 100px;
  font-size: 4.5rem;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 840px) {
  #main h2 {
    padding-top: 50px;
    font-size: 3.5rem;
  }
}

#main h2 span {
  display: block;
  color: #3C60EC;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}


#main h2, .container h3, .container h4, .container h5, .container h6 {
  font-weight: 600;
}

.container h3 span, .container h4 span, .container h5 span, .container h6 span {
  display: block;
}






/* visual */
#visual {
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/bg_mv_2023.webp);
  z-index: 0;
}

@media (max-width: 840px) {
  #visual {
    padding-bottom: 30px;
  }
}

#visual .visual_container {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  max-height: 600px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-bottom-left-radius: 600px;
  border-bottom-right-radius: 600px;
  border: 7px solid #3C60EC;
  border-top: none;
  isolation: isolate;
  z-index: 0;
}

@media (max-width: 940px) {
  #visual .visual_container {
    min-height: 400px;
    max-height: 400px;
    max-width: 800px;
  }
}

@media screen and (max-width: 640px) {
  #visual .visual_container {
    min-height: 300px;
    max-width: 600px;
  }

}

#visual .ttl {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 100%;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 100;
  max-width: 400px;
}

#visual .ttl h2 {
  font-size: 1.5rem;
  color: #3C60EC;
  font-weight: 600;
  margin-top: 40%;
  margin-bottom: auto;
  margin-top: auto;
  text-align: center;
}

#visual .ttl img {
  padding-top: 25px;
  width: 100%;
}

#visual .slider_mv .slick-slide figure {
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 940px) {
  #visual .slider_mv .slick-slide figure {
    min-height: 400px;
  }
}

@media screen and (max-width: 640px) {
  #visual .slider_mv .slick-slide figure {
    min-height: 300px;
  }
}

#visual .slider_mv .slick-slide figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-width: initial;
  overflow: hidden;
}


@media screen and (max-width: 940px) {

  #visual .ttl {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }

  #visual .ttl img {
    padding-top: 15px;
    max-width: 200px;
  }
}

@media screen and (max-width: 640px) {
  #visual .ttl {
    margin-left: 0;
    text-align: center;
  }

  #visual .ttl img {
    padding-top: 15px;
    max-width: 150px;
  }

}

@media screen and (max-width: 540px) {
  #visual .ttl {
    width: 35%;
  }

}

#visual .ttl .scroll {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  position: relative;
  padding-bottom: 80px;
  position: relative;
  -webkit-transition: 1.0s;
  -o-transition: 1.0s;
  transition: 1.0s;
  color: #fff;
}

#visual .ttl .scroll:hover {
  color: #3C60EC;
}

#visual .ttl .scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 120px;
  background-color: #e3e3e3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 20px;
}

#visual .ttl .scroll::after {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  background-color: #3C60EC;
  border-radius: 50%;
  left: calc(50% - 2px);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 20px;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-name: top-to-bottom;
  animation-name: top-to-bottom;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes top-to-bottom {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    opacity: .1;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
  }
}

@keyframes top-to-bottom {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    opacity: .1;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
  }
}





/* コンタクトリンク */
.right_contact .contact {
  position: absolute;
  top: -40px;
  right: 10px;
  color: #000;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 10;
  height: 110px;
  width: 110px;
  padding-top: 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  background: -o-linear-gradient(135deg, #3C60EC 0%, #3C60EC 50%, #000000 50%, #000000 100%);
  background: linear-gradient(-45deg, #3C60EC 0%, #3C60EC 50%, #000000 50%, #000000 100%);
  border-radius: 300px;
}

@media (max-width: 940px) {
  .right_contact .contact {
    position: absolute;
    top: 300px;
    padding-top: 0px;
  }
}

@media screen and (max-width: 640px) {
  .right_contact .contact {
    top: 250px;
  }
}

.right_contact.right_contact_fixed .contact {
  position: fixed;
  top: auto;
  bottom: 80px;
  right: 5px;
  z-index: 600;
  width: 80px;
  height: 80px;
  padding-top: 5px;
  -webkit-animation-duration: 3.0s;
  animation-duration: 3.0s;
  -webkit-animation-name: to-right;
  animation-name: to-right;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@-webkit-keyframes to-right {
  0% {
    opacity: .1;
    -webkit-transform: translateX(120px);
    transform: translateX(120px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes to-right {
  0% {
    opacity: .1;
    -webkit-transform: translateX(120px);
    transform: translateX(120px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}


.right_contact .contact:hover {
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#3C60EC), color-stop(50%, #3C60EC), color-stop(50%, #000000), to(#000000));
  background: -o-linear-gradient(right, #3C60EC 0%, #3C60EC 50%, #000000 50%, #000000 100%);
  background: linear-gradient(-90deg, #3C60EC 0%, #3C60EC 50%, #000000 50%, #000000 100%);
}

.right_contact .contact::after {
  content: "";
  position: absolute;
  border-radius: 300px;
  top: 10px;
  left: 10px;
  z-index: -1;
  height: 90px;
  width: 90px;
  background-color: #fff;
}

.right_contact.right_contact_fixed .contact::after {
  width: 60px;
  height: 60px;
}

.right_contact .contact:hover::after {
  background-color: #3C60EC;
}

@media screen and (max-width: 640px) {
  .right_contact .contact {
    font-size: 1.1rem;
    height: 90px;
    width: 90px;
  }

  .right_contact .contact::after {
    height: 70px;
    width: 70px;
  }
}






/* services */
#services {
  background-color: #000;
}

#main #services h2 {
  padding-top: 50px;
  color: #fff;
}

.services_list li#services01 {
  margin-top: 50px;
  background-color: #EBEFFF;
}

.services_list li#services02 {
  background-color: #F2FAED;
}



/* ページナビ */
#services .nav_services_list ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow: hidden;
  width: 100%;
}

#services .nav_services_list h6 {
  display: none;
  text-align: center;
  font-weight: 600;
  font-size: 10px;
}

#services .nav_services_list a {
  font-size: 1.4rem;
  padding: 0.55em 1.5em;
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #fff;
}

#services .nav_services_list .hidd a {
  display: none;
}


#services .nav_services_list a span span {
  display: block;
  font-size: 1.0rem;
  color: #3C60EC;
}

#services .nav_services_list a::after {
  background: #3C60EC;
  position: absolute;
  top: 0;
  left: -100%;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: -1;
}

#services .nav_services_list a:hover,
#services .nav_services_list a:hover span,
#services .nav_services_list.nav_page_fixed a.current,
#services .nav_services_list.nav_page_fixed a.current span {
  opacity: 1;
  color: #fff;
}

#services .nav_services_list a:hover::after,
#services .nav_services_list.nav_page_fixed a.current::after {
  left: 0;
  color: #fff;
}

@media screen and (max-width: 840px) {
  #services .nav_services_list {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }

}

@media screen and (max-width: 839px) {
  #services .nav_services_list.nav_page_fixed h6 {
    display: block;
    padding-top: 5px;
    color: #fff;
  }

  #services .nav_services_list a {
    font-size: 20px;
    padding: 0.5em 1.5em 1em;
  }

  #services .nav_services_list a span {
    display: none;
  }

  #services .nav_services_list {
    counter-reset: count 0;
  }

  #services .nav_services_list a:before {
    content: "0"counter(count);
    counter-increment: count 1;
    display: inline-block;
    width: 100%;
    line-height: 0.8;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    z-index: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

  #services .nav_services_list a:hover:before {
    color: #fff;
  }

}


/*450スクロール後*/
#services .nav_services_list.nav_page_fixed {
  width: 100%;
  position: fixed;
  top: 60px;
  left: 0;
  background-color: rgba(0, 0, 0, .85);
  z-index: 400;
}

@media screen and (max-width: 839px) {
  #services .nav_services_list.nav_page_fixed {
    top: 50px;
    background-color: rgba(0, 0, 0, .95);
  }
}



.services_list {
  counter-reset: count 0;
}

.services_list>li {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.services_list>li::before, .services_list>li::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 600px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.services_list>li::before {
  left: calc(50% - 970px);
  height: 600px;
  width: 600px;
  background: -webkit-gradient(linear, left bottom, left top, from(#3C60EC), color-stop(50%, #3C60EC), color-stop(50%, #000000), to(#000000));
  background: -o-linear-gradient(bottom, #3C60EC 0%, #3C60EC 50%, #000000 50%, #000000 100%);
  background: linear-gradient(-0deg, #3C60EC 0%, #3C60EC 50%, #000000 50%, #000000 100%);
}

.services_list>li#services02::before {
  left: auto;
  right: calc(50% - 970px);
}

.services_list>li::after {
  left: calc(50% - 965px);
  height: 590px;
  width: 590px;
  background: #EBEFFF;
}

.services_list>li#services02::after {
  left: auto;
  right: calc(50% - 965px);
  background: #F2FAED;
}

@media screen and (max-width: 1050px) {

  .services_list>li::before {
    left: -610px;
    height: 800px;
    width: 800px;
  }

  .services_list>li::after {
    left: -605px;
    height: 790px;
    width: 790px;
  }

  .services_list>li#services02::before {
    right: -580px;
  }

  .services_list>li#services02::after {
    right: -575px;
  }
}


@media screen and (max-width: 767px) {

  .services_list>li::before {
    left: 50%;
    top: -370px;
    height: 500px;
    width: 500px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .services_list>li::after {
    left: 50%;
    top: -365px;
    height: 490px;
    width: 490px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .services_list>li#services02 .only_pc {
    display: none;
  }

  .services_list>li#services02::before,
  .services_list>li#services02::after {
    right: auto;
    left: 50%;
  }
}




.services_list>li>section {
  position: relative;
}

.services_list li>section:before {
  content: "0"counter(count);
  counter-increment: count 1;
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 1;
  text-align: center;
  color: #000;
  font-weight: 600;
  font-size: 120px;
  z-index: 4;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.services_list>li#services02>section:before {
  left: auto;
  right: 30px;
}


@media screen and (max-width: 767px) {

  .services_list>li>section {
    padding-top: 80px;
  }

  .services_list>li#services02>section:before, .services_list li>section:before {
    width: 70px;
    height: 70px;
    font-size: 65px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

}


.services_list>li h3 {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}


.services_list>li h3 span {
  font-size: 1.6rem;
  color: #3C60EC;
  font-weight: 600;
}

@media screen and (max-width: 840px) {

  .services_list>li h3 {
    height: 90px;
  }

}

@media screen and (max-width: 540px) {

  .services_list>li h3 {
    height: 70px;
    padding-left: 60px;
    font-size: 2.0rem;
  }

  .services_list>li h3 span {
    font-size: 1.6rem;
  }

}


.services_list>li h4 {
  margin-top: 1em;
  font-size: 2.6rem;
  font-weight: 500;
  padding-left: 200px;
}

@media screen and (max-width: 767px) {
  .services_list>li h4 {
    padding-left: 0px;
  }

}

@media screen and (max-width: 540px) {
  .services_list>li h4 {
    font-size: 2.0rem;
  }

}

.services_list>li ul {
  position: relative;
  padding-left: 200px;
}

.services_list>li#services02 ul {
  padding-left: 0px;
  padding-right: 200px;
}


.services_list>li li {
  position: relative;
  padding: 40px 0 40px 40px;
}

@media screen and (max-width: 840px) {
  .services_list>li#services02 ul {
    padding-left: 40px;
  }

  .services_list>li li {
    padding: 40px 0;
  }

  .services_list>li li .ttl {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .services_list>li li .ttl {
    position: relative;
  }

  .services_list>li ul {
    padding-left: 40px;
  }

  .services_list>li#services02 ul {
    padding-left: 40px;
    padding-right: 40px;
  }
}



.services_list>li li h5 {
  color: #3C60EC;
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.services_list>li#services02 li h5 {
  color: #000;
}

.services_list>li li h5::before,
.services_list>li li h5::after {
  content: "";
  position: absolute;
  border-radius: 300px;
}

.services_list>li li h5::before {
  top: 3px;
  left: -40px;
  z-index: -2;
  height: 30px;
  width: 30px;
  background: -o-linear-gradient(135deg, #3C60EC 0%, #3C60EC 50%, #000000 50%, #000000 100%);
  background: linear-gradient(-45deg, #3C60EC 0%, #3C60EC 50%, #000000 50%, #000000 100%);
}

.services_list>li li h5::after {
  top: 9px;
  left: -34px;
  z-index: -1;
  height: 18px;
  width: 18px;
}

@media screen and (max-width: 540px) {

  .services_list>li li h5 {
    font-size: 1.8rem;
  }
}

.services_list>li li h5::after {
  background-color: #fff;
}

.services_list>li li .conts {
  line-height: 2.2;
}

@media screen and (max-width: 840px) {
  .services_list>li li .conts {
    width: 100%;
    margin-top: 1em;
    line-height: 1.8;
  }
}



/* メッセージ */
#message {
  padding: 0px 0px 100px;
  background-image: url(../images/bg_message.webp);
  background-size: cover;
  background-position: center bottom;
}

#message h3 {
  text-align: center;
  font-style: italic;
  margin-top: 1.5em;
  font-size: 30px;
}

#message h3 span {
  font-style: normal;
  font-size: 20px;
}

#message .emphasis {
  text-align: center;
  color: #A80054;
  font-size: 30px;
  margin-top: 1.5em;
  font-weight: 700;
}

#message ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#message ul li figure {
  width: 50%;
  height: 300px;
  margin-left: -20%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

#message ul li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translateX(-50%, -50%);
  -ms-transform: translateX(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#message ul li dl {
  width: calc(100% - 35%);
}

#message ul li:nth-of-type(even) figure {
  margin-left: auto;
  margin-right: -20%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

#message ul li:nth-of-type(even) dl {
  width: calc(100% - 35%);
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

#message ul li dl h4 {
  color: #3C60EC;
  font-size: 2.4rem;
}




@media screen and (max-width: 640px) {

  #message ul li {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #message ul li figure {
    width: 100%;
    height: 250px;
    margin-left: auto;
    margin-bottom: 20px;
  }

  #message ul li dl {
    width: 100%;
  }

  #message ul li:nth-of-type(even) figure {
    margin-left: auto;
    margin-right: auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  #message ul li:nth-of-type(even) dl {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

}











/* 実績 */
#performance {
  background-color: #3C60EC;
  color: #fff;
  text-align: center;
  padding: 0px 0px 100px;
}

#performance h2 span {
  color: #fff;
}

#performance p {
  text-align: left;
  font-weight: 600;
  margin-top: 2em;
  line-height: 2;
}

#performance ol {
  margin-top: 80px;
  counter-reset: count 0;
  position: relative;
  background-image: url(../images/line.svg);
  background-repeat: no-repeat;
  background-position: 45% 100%;
  background-size: 630px;
}

@media screen and (max-width: 1000px) {
  #performance ol {
    background-size: 680px;
  }
}

@media screen and (max-width: 840px) {
  #performance ol {}
}

@media screen and (max-width: 767px) {
  #performance ol {
    background-image: none;
  }
}


#performance ol::before,
#performance ol::after {
  content: "";
  display: block;
  position: absolute;
  width: 25%;
  height: 250px;
}

#performance ol::before {
  right: 12%;
  top: 0;
  background-image: url(../images/illust01.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

#performance ol::after {
  left: 0;
  bottom: 0;
  width: 45%;
  background-image: url(../images/illust02.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}



#performance ol li:before {
  content: "0"counter(count);
  counter-increment: count 1;
  display: inline-block;
  width: 100%;
  line-height: 0.8;
  text-align: right;
  color: #fff;
  opacity: .5;
  font-weight: 600;
  font-size: 150px;
  z-index: 0;
  position: absolute;
  top: -50px;
  right: 0%;
  z-index: 3;
}

#performance ol li {
  position: relative;
  width: 48%;
  text-align: left;
}

#performance ol li:nth-child(even) {
  margin-left: 52%;
}

#performance ol li:nth-child(n+2) {
  margin-top: -180px;
}

#performance ol li figure {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 320px;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
}

#performance ol li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: initial;
}


#performance ol li dl {
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

#performance ol li dl dt {
  height: 90px;
  width: 85%;
  border-top-right-radius: 25px;
  background-color: rgba(60, 96, 236, .7);
}

#performance ol li dl dt h4 {
  padding: 20px;
  font-size: 2.0rem;
}

#performance ol li dl dd {
  padding-left: 20px;
}

#performance h3 {
  margin-top: 4em;
  font-size: 2.4rem;
}



@media screen and (max-width: 640px) {

  #performance ol {
    padding-bottom: 200px;
    background-image: none;
  }

  #performance ol::before,
  #performance ol::after {
    content: "";
    display: block;
    position: absolute;
    width: 25%;
    height: 250px;
  }

  #performance ol::before {
    right: 5%;
    top: auto;
    bottom: 0;
    background-image: url(../images/illust01.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
  }

  #performance ol::after {
    left: 5%;
    bottom: 0;
    width: 55%;
    background-image: url(../images/illust02.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
  }

  #performance ol li:before {
    top: -30px;
    font-size: 80px;
  }

  #performance ol li {
    margin-top: 50px;
    width: 100%;
  }

  #performance ol li:nth-child(n+2) {
    margin-top: 70px;
  }

  #performance ol li:nth-child(even) {
    margin-left: auto;
  }

  #performance ol li figure {
    height: 300px;
  }

  #performance ol li dl dt {
    width: 95%;
  }

}

.slider_Performance {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
}

.slider_Performance .slick-slide .item {
  display: block;
  color: #fff;
  text-align: center;
  padding: 20px 40px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider_Performance .slick-slide.slick-center .item {
  padding: 0 0;
}

#performance .slider_Performance .slick-slide .item p,
.slider_Performance .slick-slide .item span {
  display: block;
  text-align: center;
  font-size: 14px;
}









/* event */

#event ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 200px;
}

#event ol li {
  width: 31%;
  margin-top: 20px;
  margin-left: 1%;
  margin-right: 1%;
  background-color: #F7F7F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#event ol li h4 {
  font-weight: 600;
  padding: 15px 20px;
  font-size: 2.0rem;
}

#event ol li h4 span {
  font-weight: 400;
  font-size: 1.6rem;
}

#event ol li figure {
  max-height: 200px;
  overflow: hidden;
  border: 1px solid #efefef;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#event ol li .btn {
  margin-top: auto;
}

#event ol li .data {
  text-align: right;
  margin-top: 1em;
  font-size: 1.2rem;
  padding: 0px 20px;
}

#event ol li .conts {
  font-size: 1.2rem;
  margin-bottom: 2em;
  padding: 0px 20px;
}

@media (max-width: 840px) {
  #event ol {
    padding-bottom: 80px;
  }

  #event ol li {
    width: 46%;
    margin-left: 2%;
    margin-right: 2%;
  }

}

@media (max-width: 580px) {
  #event ol li {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}









/* executives */
#executives {
  background-color: #F5F5F5;
  padding-bottom: 100px;
}

#executives ul {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#executives ul>li {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

@media (max-width: 580px) {
  #executives {
    padding-bottom: 80px;
  }

  #executives ul>li {
    width: 80%;
  }

  #executives ul>li:last-of-type {
    margin-top: 40px;
  }
}

#executives ul>li figure {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

#executives ul>li figure img {
  width: 100%;
  max-width: 150px;
}

#executives ul>li h5 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 22px;
  text-align: center;
}

#executives ul>li h5 span {
  display: block;
  font-size: 14px;
}

#executives ul>li ul {
  display: block;
  list-style: disc;
  margin-top: 20px;
}

#executives ul>li li {
  width: 100%;
  list-style: disc;
}



/* profile */
#profile {
  background-color: #F5F5F5;
  padding-bottom: 100px;
}

#profile .container h2 {
  padding-top: 50px;
}

@media (max-width: 840px) {
  #profile .container h2 {
    padding-top: 25px;
  }
}

#profile dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

#profile dl dt {
  width: 35%;
  padding-top: 30px;
  padding-right: 5%;
  font-weight: 600;
  text-align: right;
}

#profile dl dd {
  width: 60%;
  padding-top: 30px;
}

@media (max-width: 840px) {
  #profile dl {
    display: block;
    width: 80%;
  }

  #profile dl dt {
    width: 100%;
    padding-top: 15px;
    padding-right: 0%;
    margin-right: 0%;
    text-align: left;
  }

  #profile dl dd {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

#profile dl dd h6 {
  font-size: 2.0rem;
}




/* 上へ戻る */
.gototop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 600;
}

.gototop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #000;
  position: relative;
  top: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.gototop a:hover {
  top: -3px;
  background-color: #3C60EC;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.gototop a span {
  display: block;
  width: 2px;
  height: 20px;
  background-color: #fff;
  position: relative;
}

/*矢印の設定*/
.gototop a::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 40.3%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}





#footer {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

#footer .privacy_link {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
}

#footer .language {
  display: inline-block;
  border: 1px solid #3C60EC;
  border-radius: 7px;
  padding: 5px 15px;
  margin-bottom: 2em;
  -webkit-transition: 1.0s;
  -o-transition: 1.0s;
  transition: 1.0s;
}

#footer .language:hover {
  border: 1px solid #fff;
  background-color: #fff;
}

#footer address {
  font-size: 12px;
}

@media (max-width: 840px) {
  #footer address {
    font-size: 8px;
  }
}

/* scrollbox */

.scrollbox {
  overflow-x: auto;
  /*  -webkit-overflow-scrolling: touch;*/
}

.scrollbox .timetableCont, .scrollbox .timetableCont {
  min-width: 960px;
}

.scrollbox::-webkit-scrollbar {
  height: 5px;
}

.scrollbox::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #eee;
}

.scrollbox::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666;
}

.scrollbox::-webkit-scrollbar-track-piece {
  background: #efefef;
}

.sec_images figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sec_images figure img {
  width: 33.333333333%;
}



.privacypolicy_link {
  text-align: center;
  padding-bottom: 10px;
}

.privacypolicy_link a {
  color: #fff;
  font-size: 14px;
}

/* page_under ページ */
.page_under #header h1.ud_logo {
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  padding-top: 20px;
}

.page_under #header h1.ud_logo .pc {
  display: block;
}

.page_under #header h1.ud_logo .sp {
  display: none;
}

@media (max-width: 840px) {
  .page_under #header h1.ud_logo {
    position: absolute;
    left: 30px;
    top: 0px;
  }

  .page_under #header.nav_fixed h1.ud_logo,
  .page_under #header h1.ud_logo .pc {
    display: none;
  }

  .page_under #header h1.ud_logo .sp {
    display: block;
  }
}

.privacypolicy {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}

.privacypolicy h2 {
  margin-top: 100px;
  margin-bottom: 50px;
  font-size: 2.6rem;
  font-weight: 700;
}

@media (max-width: 840px) {
  #main .privacypolicy h2 {
    margin-top: 50px;
  }
}


.privacypolicy h3 {
  font-weight: 700;
}

.privacypolicy section+section {
  margin-top: 50px;
}

.privacypolicy h4 {
  font-weight: bold;
  font-weight: 700;
  font-size: 1.8rem;
}

.privacypolicy section p+p {
  margin-top: 1em;
}

.privacypolicy section ul {
  border-left: 1px solid #000;
  padding-left: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  list-style: disc;
}

.privacypolicy section ul li {
  margin-left: 1em;
}

.privacypolicy section.browser {
  margin-top: 80px;
  padding: 20px;
  background: #efefef;
}

.privacypolicy section.browser h6 {
  font-size: 1.4rem;
  font-weight: bold;
}