@charset "UTF-8";
/*
Theme Name: torep
Theme URI: localhost/wordpress/
Description: torep　WordPress
Author: Honjo state
Author URI: localhost/wordpress/
Description: torep　WordPress
Version: 1.0.0
/*
*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 62.5%;
}
@media screen and (max-width: 959px) {
  html {
    font-size: 56%;
  }
}
@media screen and (max-width: 700px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 559px) {
  html {
    font-size: 47%;
  }
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 0;
}

* {
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

body {
  font-family: "Zen Maru Gothic", "normal", "Yu Gothic", "游ゴシック Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 1.6em;
  color: #565A5D;
  background-color: #FAFAFA;
}

@font-face {
  font-family: "";
  src: url() format("truetype");
}
li {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: inherit;
  text-decoration: none;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

a:visited {
  color: inherit;
}

/*br*/
.tb {
  display: none;
}
@media screen and (max-width: 700px) {
  .tb {
    display: block;
  }
}
@media screen and (max-width: 559px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 559px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 700px) {
  .pc {
    display: none;
  }
}

.imgpcsp .pc {
  display: block;
}
@media screen and (max-width: 559px) {
  .imgpcsp .pc {
    display: none;
  }
}
.imgpcsp .sp {
  display: none;
}
@media screen and (max-width: 559px) {
  .imgpcsp .sp {
    display: block;
  }
}

header {
  position: fixed;
  top: 10px;
  width: calc(100% - 20px);
  border-radius: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background-color: #fff;
  height: 60px;
}
header .logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  position: relative;
  left: 2rem;
  padding: 10px;
  z-index: 60;
}
@media screen and (max-width: 559px) {
  header .logo-wrap {
    left: 0rem;
  }
}
header .logo-wrap div {
  position: relative;
}
header .logo-wrap div:last-of-type img {
  width: 8rem;
}
header .logo-wrap img {
  width: 74px;
  height: 100%;
  margin: 0 4px;
}
@media screen and (max-width: 559px) {
  header .logo-wrap img {
    width: 8rem;
  }
}
header .logo-wrap img:first-of-type {
  width: 10rem;
}

.sm {
  display: none;
}

#large-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 959px) {
  #large-menu {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  #large-menu {
    display: grid;
    margin-left: 4rem;
    flex-direction: column;
    margin-top: 6rem;
  }
}
@media screen and (max-width: 559px) {
  #large-menu {
    margin-left: 2rem;
  }
}
#large-menu > li {
  position: relative;
  display: inline-block;
  margin: 0 14px;
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  #large-menu > li:last-of-type {
    position: absolute;
    left: 160px;
    top: 0;
  }
}
@media screen and (max-width: 559px) {
  #large-menu > li:last-of-type {
    left: 100px;
  }
}
@media screen and (max-width: 959px) {
  #large-menu > li {
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 18px;
  }
}
#large-menu > li:hover {
  transition: all 0.3s;
}
#large-menu .has-submenu {
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  #large-menu .has-submenu {
    cursor: default;
  }
}
#large-menu .has-submenu::before {
  position: absolute;
  content: "›";
  transform: rotate(90deg);
  transform-origin: center;
  top: -8px;
  right: -18px;
  font-size: 26px;
  color: #5db1df;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 959px) {
  #large-menu .has-submenu::before {
    display: none;
  }
}
#large-menu .has-submenu .submenu {
  display: none;
  position: absolute;
  left: -20px;
  top: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 18rem;
  background-color: #fff;
  padding: 10px;
  border-radius: 16px;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 959px) {
  #large-menu .has-submenu .submenu {
    display: block;
    left: -10px;
    top: 16px;
    background-color: transparent;
    color: #8b9295;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 559px) {
  #large-menu .has-submenu .submenu .sp-bottom {
    position: absolute;
    content: "";
    bottom: 0.5rem;
  }
}
#large-menu .has-submenu .submenu li {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 4px;
  font-size: 13px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 959px) {
  #large-menu .has-submenu .submenu li {
    color: #8b9295;
    font-size: 1.4rem;
  }
}
#large-menu .has-submenu .submenu li:hover {
  border-bottom: 1px solid #5db1df;
  color: #5db1df;
}
#large-menu .has-submenu.active .submenu {
  display: block;
}
#large-menu .has-submenu.active::before {
  content: "‹";
  transform: rotate(90deg);
}

.logo {
  padding-left: 28px;
  height: 24px;
}

@media screen and (max-width: 959px) {
  #gnav {
    display: none;
  }
  #hamburger {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    margin: 0 0 0 auto;
    height: 60px;
    width: 60px;
    z-index: 1000;
  }
  #hamburger .icon span {
    position: absolute;
    left: 15px;
    width: 24px;
    height: 2px;
    background-color: #565A5D;
    border-radius: 5px;
    z-index: 1000;
    transition: ease 0.5s;
  }
  #hamburger .icon span:nth-of-type(1) {
    top: 24px;
  }
  #hamburger .icon span:nth-of-type(2) {
    top: 30px;
  }
  #hamburger .icon span:nth-of-type(3) {
    bottom: 22px;
  }
  #hamburger .close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 28px;
  }
  #hamburger .close span:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger .close span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
  }
  .sm {
    text-align: left;
    top: 20px;
    right: 0px;
    position: absolute;
    z-index: 50;
    width: 100%;
    height: 30rem;
    background-color: #fff;
    border-radius: 20px;
  }
  #large-menu > li {
    margin-top: 60px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  #large-menu > li {
    margin-top: 10px;
  }
}
footer {
  position: relative;
  margin-top: 10rem;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}
@media screen and (max-width: 700px) {
  footer {
    padding: 2rem 2rem 4rem;
  }
}
footer .logo-wrap div {
  position: relative;
}
footer .logo-wrap div:last-of-type img {
  width: 8rem;
}
footer .logo-wrap img {
  width: 10rem;
  height: auto;
  mix-blend-mode: multiply;
}
footer .logo-wrap img:first-of-type {
  margin-bottom: 12px;
}
@media screen and (max-width: 559px) {
  footer .logo-wrap img {
    width: 8rem;
  }
}
footer .text-wrap {
  display: flex;
  flex-direction: column;
}
footer .text-wrap ul {
  display: flex;
}
@media screen and (max-width: 700px) {
  footer .text-wrap ul {
    display: block;
  }
}
footer .text-wrap ul li {
  position: relative;
  font-size: 14px;
  margin: 0 20px 0 0;
}
footer .text-wrap ul a {
  display: contents;
}
footer .text-wrap .copy-wrap {
  font-size: 10px;
  font-weight: 600;
  margin-top: auto;
  text-align: right;
}
@media screen and (max-width: 700px) {
  footer .text-wrap .copy-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.top {
  position: relative;
  z-index: 1;
}
.top::before {
  position: absolute;
  content: "";
  background-image: url(img/wave-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40rem;
  height: 100%;
  background-size: contain;
  z-index: -10;
  bottom: -100%;
  transform: translateY(-12%);
}
@media screen and (max-width: 700px) {
  .top::before {
    transform: translateY(-20%);
  }
}
.top .slider-top {
  position: relative;
}
.top .slider-top .swiper {
  border-radius: 0 0 70px 70px;
}
.top .slider-top .slick-img {
  position: relative;
  height: 54rem;
  width: 100%;
  overflow-y: hidden;
  display: flex;
  border-radius: 0 0 70px 70px;
}
.top .slider-top .slick-img li {
  position: relative;
}
.top .slider-top .slick-img img {
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  height: 54rem;
  width: 100%;
}
.top .slider-top .slick-next {
  right: 0;
}
.top .slider-top .slick-prev {
  left: 0;
  z-index: 10;
}
.top .news {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -45px;
  left: 40px;
  background-color: #fff;
  width: calc(100% - 10rem);
  padding: 20px 0;
  border-radius: 20px;
  z-index: 30;
  box-shadow: 0 4px 20px 0 rgba(192, 201, 206, 0.2);
}
@media screen and (max-width: 700px) {
  .top .news {
    display: block;
    padding: 10px 0;
    width: calc(100% - 6rem);
    left: 3rem;
  }
}
.top .news h2 {
  margin: 0 4rem 0 8rem;
  position: relative;
  border-bottom: none;
}
@media screen and (max-width: 959px) {
  .top .news h2 {
    margin: 0 4rem 0 4rem;
  }
}
@media screen and (max-width: 700px) {
  .top .news h2 {
    margin: 0 4rem 1rem 4rem;
  }
}
.top .news ul {
  height: 32px;
  position: relative;
  overflow-y: hidden;
}
@media screen and (max-width: 559px) {
  .top .news ul {
    height: 40px;
  }
}
@media screen and (max-width: 700px) {
  .top .news ul {
    margin: 0 4rem 0 3rem;
  }
}
.top .news ul li {
  display: flex;
  padding: 4px 0;
}
@media screen and (max-width: 559px) {
  .top .news ul li {
    display: block;
  }
}
.top .news ul li div {
  display: flex;
}
.top .news ul li p {
  margin: 0 0 0 10px;
}
@media screen and (max-width: 700px) {
  .top .news ul li p {
    margin: 0 0 0 6px;
  }
}
.top .news ul li .cat {
  background-color: #A2D5ED;
  border-radius: 40px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding: 0 10px;
}
@media screen and (max-width: 700px) {
  .top .news ul li .cat {
    font-size: 12px;
  }
}

.content {
  width: calc(100% - 20rem);
  padding-top: 18rem;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (max-width: 959px) {
  .content {
    width: calc(100% - 10rem);
  }
}
@media screen and (max-width: 559px) {
  .content {
    width: calc(100% - 4rem);
  }
}
.content h2 {
  font-size: 5.6rem;
  text-align: center;
}
.content h2 span {
  font-size: 5.6rem;
  color: #FA8B91;
}
.content h3 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 8rem;
}
.content > img {
  position: absolute;
}

.service {
  position: relative;
  z-index: 1;
}
.service > img {
  width: 20rem;
  height: auto;
  right: 0;
  top: 140px;
}
@media screen and (max-width: 559px) {
  .service > img {
    top: 40px;
    width: 18rem;
  }
}
.service ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .service ul {
    max-width: 1000px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
}
@media screen and (max-width: 559px) {
  .service ul {
    padding-bottom: 26rem;
  }
}
.service ul li {
  position: relative;
  width: calc(33.3333333333% - 4rem);
  margin: 0 2rem 10rem;
  height: 16rem;
}
@media screen and (max-width: 700px) {
  .service ul li {
    width: calc(33.3333333333% - 2rem);
    margin: 0 1rem 8rem;
  }
}
@media screen and (max-width: 559px) {
  .service ul li {
    width: calc(50% - 2rem);
    margin: 0 1rem 8rem;
  }
}
.service ul li:hover p::before, .service ul li:active p::before {
  right: -38px;
  transition: all 0.3s;
}
.service ul li p {
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
}
.service ul li p::before {
  position: absolute;
  content: "›";
  top: 0;
  font-size: 30px;
  font-weight: 700;
  color: #5db1df;
  line-height: 20px;
  right: -30px;
  transition: all 0.3s;
}
.service ul li img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.service ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 559px) {
  .service ul .sp-bottom {
    position: absolute;
    content: "";
    bottom: 2rem;
  }
}

.blog-new {
  position: relative;
  background-color: #ECF4F8;
  width: 100%;
  margin-top: 18rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
  z-index: 20;
}
.blog-new::before {
  position: absolute;
  content: "";
  background-image: url(img/wave-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: -180px;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .blog-new::before {
    top: -100px;
  }
}
@media screen and (min-width: 1000px) {
  .blog-new::before {
    background-size: cover;
  }
}
.blog-new::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 170px;
  border-radius: 50%;
  background-color: #ECF4F8;
  bottom: -85px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .blog-new::after {
    height: 100px;
    bottom: -50px;
  }
}
.blog-new ul {
  display: flex;
  justify-content: center;
  width: calc(100% - 20rem);
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (max-width: 959px) {
  .blog-new ul {
    width: calc(100% - 10rem);
  }
}
@media screen and (max-width: 700px) {
  .blog-new ul {
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 559px) {
  .blog-new ul {
    display: block;
  }
}
.blog-new ul li {
  position: relative;
  width: calc(33.3333333333% - 2.6rem);
  margin: 0 1.3rem 10rem;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 559px) {
  .blog-new ul li {
    display: flex;
    width: 100%;
    margin: 0 0 4rem;
  }
}
.blog-new ul li div {
  padding: 10px 14px;
  font-weight: 600;
  font-size: 16px;
}
.blog-new ul li div p {
  font-size: 1.6rem;
}
.blog-new ul li div .day {
  color: #C0C9CE;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.blog-new ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-new ul li img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 16rem;
  width: 100%;
}
@media screen and (max-width: 559px) {
  .blog-new ul li img {
    width: 20rem;
  }
}

.button {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  font-family: "Zen Maru Gothic";
  background-color: #A2D5ED;
  border-radius: 10px;
  border-style: none;
  width: 260px;
  padding: 4px 20px;
  text-align: left;
}
.button p {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
}
.button p::before {
  position: absolute;
  content: "›";
  top: 0;
  font-size: 30px;
  font-weight: 700;
  color: #5db1df;
  line-height: 20px;
  right: 0px;
  transition: all 0.3s;
}
.button a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

.page {
  position: relative;
  background-image: url(img/top-movie.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 36rem;
}
.page::before {
  position: absolute;
  content: "";
  background-image: url(img/wave-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40rem;
  height: 100%;
  background-size: contain;
  z-index: -10;
  bottom: -80%;
  transform: translateY(-10%);
}
.page h1 {
  position: absolute;
  font-size: 3rem;
  letter-spacing: 1.6px;
  color: #fff;
  bottom: 40px;
  left: 8rem;
  padding-bottom: 6px;
  border-bottom: dotted 7px #fff;
}

.item-page {
  position: relative;
  padding-top: 0;
}
.item-page .item-wrap {
  display: flex;
  align-items: end;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
  margin-top: 14rem;
}
@media screen and (max-width: 559px) {
  .item-page .item-wrap {
    display: block;
  }
}
.item-page .item-wrap .item {
  margin-right: 40px;
}
@media screen and (max-width: 559px) {
  .item-page .item-wrap .item {
    margin-right: 0;
  }
}
.item-page .item-wrap .item h2 {
  font-size: 2.6rem;
  margin-bottom: 40px;
  position: absolute;
  left: 4rem;
  top: -4.6rem;
}
@media screen and (max-width: 559px) {
  .item-page .item-wrap .item h2 {
    left: 50%;
    transform: translate(-50%);
  }
}
.item-page .item-wrap .item h2 span {
  font-size: 2.6rem;
}
.item-page .item-wrap .item img {
  width: 28rem;
  height: auto;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  background-image: url(img/round.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.item-page .item-wrap .spec {
  position: relative;
  min-width: 30%;
  white-space: nowrap;
  max-width: 30rem;
}
@media screen and (max-width: 559px) {
  .item-page .item-wrap .spec {
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin-top: 4rem;
  }
}
@media screen and (max-width: 430px) {
  .item-page .item-wrap .spec {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .item-page .item-wrap .spec > div {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin-top: 4rem;
  }
}
.item-page .item-wrap .spec > div h3 {
  color: #5db1df;
  font-size: 2rem;
  text-align: left;
  font-weight: 700;
  margin-bottom: 20px;
}
.item-page .item-wrap .spec > div div p {
  position: relative;
  display: flex;
  font-size: 14px;
}
.item-page > ul li:nth-of-type(2n) .item-wrap {
  flex-direction: row-reverse;
}
.item-page .acc {
  margin-bottom: 160px;
}
.item-page .acc ul {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  max-width: 680px;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (max-width: 559px) {
  .item-page .acc ul {
    overflow-x: auto;
    justify-content: start;
    scrollbar-color: #5db1df #E6E8EA;
    scrollbar-width: thin;
  }
}
.item-page .acc ul li {
  position: relative;
  min-width: 170px;
  width: calc(33.3333333333% - 16px);
  margin: 3rem 8px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  transition: ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 559px) {
  .item-page .acc ul li {
    width: 160px;
  }
}
.item-page .acc ul li:active, .item-page .acc ul li:hover {
  box-shadow: -4px -4px 4px 0 #fff, 2px 2px 8.3px 0 rgba(61, 133, 171, 0.119);
  transition: ease-in-out 0.3s;
}
.item-page .acc ul li p {
  margin-top: auto;
}

.acc-page-ul {
  width: calc(100% - 10rem);
}
.acc-page-ul ul li {
  overflow-x: unset;
  min-width: initial;
}
.acc-page-ul ul li .acc-page ul {
  margin-top: 18rem;
  justify-content: start;
  flex-wrap: wrap;
  max-width: 820px;
}
.acc-page-ul ul li .acc-page li {
  position: relative;
  width: calc(33.3333333333% - 16px);
  margin: 0 8px 4rem;
  min-width: initial;
}
@media screen and (max-width: 700px) {
  .acc-page-ul ul li .acc-page li {
    width: calc(50% - 16px);
    margin: 0 8px 10rem;
  }
}
@media screen and (max-width: 559px) {
  .acc-page-ul ul li .acc-page li {
    width: calc(100% - 16px);
  }
}
.acc-page-ul ul li .acc-page li img {
  max-height: 14rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.acc-page-ul ul li .acc-page li p {
  text-align: left;
  margin-top: 4px;
}

.main-page {
  background-position: 50% 100%;
}
.main-page h1,
.main-page h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  border: 1px solid;
  border-style: none;
  color: #fff;
}
.main-page h1 {
  font-size: 3.8rem;
}
.main-page h2 {
  top: calc(50% + 50px);
  font-size: 14px;
}

.matric {
  background-image: url(img/top-sa.png);
  background-position: 0 100%;
}

.mini {
  background-image: url(img/top-co.png);
}

.accessory {
  background-image: url(img/ac-ht.png);
}

.surins {
  background-image: url(img/top-so.png);
}

.air {
  background-image: url(img/top-movie.png);
}

.blog {
  background-image: url(img/top-blog.png);
}
@media screen and (max-width: 559px) {
  .blog {
    background-image: url(img/top-blog-sp.png);
  }
}

.company {
  background-image: url(img/top-company.png);
}

.jump {
  font-family: "Zen Maru Gothic";
  position: relative;
  border: 1.5px solid #FA8B91;
  padding: 3px 20px;
  width: 100%;
  text-align: left;
  background-color: #fafafa;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 2rem;
}
@media screen and (max-width: 559px) {
  .jump {
    width: 100%;
    min-width: 160px;
  }
}
@media screen and (max-width: 430px) {
  .jump {
    margin-left: 0px;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translate(-50%);
  }
}
.jump span {
  position: absolute;
  background-color: #FA8B91;
  width: 12rem;
  height: 12rem;
  right: -40px;
  top: -50%;
  border-radius: 100%;
  z-index: 1;
}
@media screen and (max-width: 559px) {
  .jump span {
    width: 16rem;
    height: 16rem;
    right: -60px;
  }
}
.jump span::before {
  position: absolute;
  content: "›";
  left: 40%;
  top: 0.8rem;
  font-size: 24px;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 559px) {
  .jump span::before {
    top: 2.2rem;
    left: 36%;
    font-size: 28px;
  }
}

@media screen and (max-width: 559px) {
  .blog-list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: start;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
}
.blog-list li {
  border-radius: 10px;
  position: relative;
  display: flex;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 559px) {
  .blog-list li {
    display: block;
    width: calc(50% - 4rem);
    margin: 0 1.6rem 8rem;
    padding: 10px;
  }
}
@media screen and (max-width: 470px) {
  .blog-list li {
    display: block;
    width: calc(100% - 6rem);
    margin: 0 1.6rem 8rem;
    padding: 10px;
  }
}
.blog-list li:hover, .blog-list li:active {
  background-color: #ECF4F8;
  box-shadow: -4px -4px 4px 0 #fff, 2px 2px 8.3px 0 rgba(61, 133, 171, 0.18);
}
.blog-list li img {
  border-radius: 10px;
  width: 28rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 4rem;
}
@media screen and (max-width: 700px) {
  .blog-list li img {
    width: 20rem;
  }
}
@media screen and (max-width: 559px) {
  .blog-list li img {
    width: 100%;
    height: 20rem;
  }
}
.blog-list li div .day {
  font-size: 12px;
  color: #5db1df;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 559px) {
  .blog-list li div .day {
    margin-top: 10px;
  }
}
.blog-list li div .title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.blog-list li div .blog-content {
  margin-top: auto;
}

.single {
  position: relative;
  width: 100%;
  padding-bottom: 8rem;
}
.single::before {
  position: absolute;
  content: "";
  background-image: url(img/wave-r.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.single ul {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  max-width: 900px;
}
.single ul li {
  background-color: transparent;
}
@media screen and (max-width: 559px) {
  .single ul li {
    width: 100%;
  }
}
.single ul li:hover, .single ul li:active {
  background-color: transparent;
  box-shadow: none;
}
.single ul li div {
  width: 100%;
}
.single ul li div .day {
  font-size: 1.6rem;
  margin-left: 4px;
  margin-bottom: 10px;
}
.single ul li div .title {
  font-size: 2.4rem;
  margin-bottom: 6px;
}
.single ul li div p {
  margin-bottom: 1.8rem;
}
.single ul li div img {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  width: calc(100% - 1rem);
  height: 40rem;
}
.single ul li div .blog-content {
  margin-top: 4rem;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  width: calc(100% - 1rem);
  font-size: 1.8rem;
  line-height: 1.7;
}

.company-list dl {
  font-size: 1.8rem;
}
@media screen and (max-width: 559px) {
  .company-list dl {
    font-size: 1.6rem;
  }
}
.company-list dl dt {
  float: left;
}
.company-list dl dd {
  margin-left: 12rem;
  margin-bottom: 20px;
}
.company-list iframe {
  width: 100%;
  height: 40rem;
  margin: 4rem 0 16rem;
  border-radius: 10px;
}

.service-text {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10rem;
}
.service-text p {
  width: calc(60% - 10px);
  margin-right: 20px;
}
.service-text img {
  width: 24rem;
  height: auto;
  position: relative;
}
@media screen and (max-width: 959px) {
  .service-text img {
    width: 20rem;
  }
}

.merit {
  position: relative;
  width: 100%;
  background-color: #ECF4F8;
  margin-top: 18rem;
  padding-top: 8rem;
  padding-bottom: 30rem;
}
.merit::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 170px;
  border-radius: 50%;
  background-color: #ECF4F8;
  top: -85px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .merit::before {
    height: 100px;
    top: -50px;
  }
}
@media screen and (max-width: 559px) {
  .merit::before {
    height: 80px;
    top: -40px;
  }
}
.merit ul {
  text-align: center;
  display: flex;
  width: calc(100% - 20rem);
  padding-top: 18rem;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  padding-top: 0;
}
@media screen and (max-width: 959px) {
  .merit ul {
    width: calc(100% - 10rem);
  }
}
@media screen and (max-width: 559px) {
  .merit ul {
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 700px) {
  .merit ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.merit ul li {
  width: calc(100% - 20px);
  margin: 0 10px;
}
@media screen and (max-width: 700px) {
  .merit ul li {
    width: calc(50% - 6rem);
    text-align: left;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 559px) {
  .merit ul li {
    width: calc(50% - 3rem);
  }
}
.merit ul li p:nth-of-type(1) {
  position: relative;
  font-weight: 800;
  font-size: 2rem;
  padding: 76px 0 14px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 7rem;
}
.merit ul li .one {
  background-image: url(img/one.png);
}
.merit ul li .two {
  background-image: url(img/two.png);
}
.merit ul li .three {
  background-image: url(img/three.png);
}
.merit ul li .four {
  background-image: url(img/four.png);
}
.merit ul li .four span {
  white-space: nowrap;
}

.scene {
  position: relative;
  width: 100%;
  margin-top: 18rem;
  padding-top: 0rem;
  z-index: 2;
}
.scene::before {
  position: absolute;
  content: "";
  background-image: url(img/wave-wb.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: -32rem;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1000px) {
  .scene::before {
    background-size: cover;
  }
}
.scene > img {
  top: -10rem;
  left: 10%;
  width: 20rem;
  transform: rotate(-8deg);
}
@media screen and (max-width: 559px) {
  .scene > img {
    top: -14rem;
  }
}
.scene .slide-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.scene .slide-wrap .scene-slider {
  display: flex;
  width: 120%;
  animation: loop-slide 30s infinite linear 1s both;
}
@media screen and (max-width: 700px) {
  .scene .slide-wrap .scene-slider {
    width: 160%;
  }
}
@media screen and (max-width: 559px) {
  .scene .slide-wrap .scene-slider {
    width: 180%;
  }
}
.scene .slide-wrap .scene-slider li {
  width: 40rem;
  height: 30rem;
  margin: 0 10px;
}
@media screen and (max-width: 700px) {
  .scene .slide-wrap .scene-slider li {
    margin: 0 6px;
  }
}
@media screen and (max-width: 559px) {
  .scene .slide-wrap .scene-slider li {
    margin: 0 10px;
  }
}
.scene .slide-wrap .scene-slider li img {
  width: 40rem;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.scene .slide-wrap .scene-slider li p {
  font-size: 14px;
  margin-left: 4px;
  margin-top: 4px;
}

.drone {
  position: relative;
  padding-bottom: 20rem;
}
.drone ul {
  display: block;
}
.drone ul li {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  width: calc(100% - 10rem);
  min-width: calc(100% - 20rem);
  margin-bottom: 80px;
}
@media screen and (max-width: 559px) {
  .drone ul li {
    display: block;
    width: calc(100% - 4rem);
    max-width: 300px;
    margin: 0 0 80px;
  }
}
.drone ul li:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.drone ul li:nth-of-type(2n) img {
  margin-right: 0;
  margin-left: 40px;
}
@media screen and (max-width: 559px) {
  .drone ul li:nth-of-type(2n) img {
    margin-left: 0;
  }
}
.drone ul li img {
  width: 28rem;
  height: auto;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  background-image: url(img/round-w.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  left: 0;
  transform: translate(0);
  margin-right: 40px;
}
@media screen and (max-width: 700px) {
  .drone ul li img {
    width: 24rem;
  }
}
@media screen and (max-width: 559px) {
  .drone ul li img {
    margin-right: 0;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
}
.drone ul li div {
  text-align: left;
}
.drone ul li div h3 {
  text-align: left;
  color: #5db1df;
  font-size: 2.4rem;
  margin-bottom: 0;
}
@media screen and (max-width: 559px) {
  .drone ul li div h3 {
    position: absolute;
    top: -4rem;
    width: 100%;
    text-align: center;
  }
}
.drone ul li div p:nth-of-type(1) {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 500;
  padding-top: 2rem;
}
@media screen and (max-width: 559px) {
  .drone ul li div p:nth-of-type(1) {
    font-size: 1.6rem;
  }
}
.drone .left,
.drone .right {
  position: absolute;
  content: "";
  z-index: -1;
}
.drone .left {
  top: -140px;
  left: -18%;
  width: 45rem;
}
@media screen and (max-width: 959px) {
  .drone .left {
    left: -24%;
    width: 40rem;
    top: -100px;
  }
}
@media screen and (max-width: 559px) {
  .drone .left {
    width: 52%;
    top: -60px;
  }
}
.drone .right {
  top: -130px;
  right: -20%;
  width: 58rem;
}
@media screen and (max-width: 959px) {
  .drone .right {
    right: -26%;
    width: 50rem;
    top: -100px;
  }
}
@media screen and (max-width: 559px) {
  .drone .right {
    width: 60%;
    right: -16%;
    top: -78px;
  }
}

.qa {
  width: 100%;
  background-color: #ECF4F8;
  margin-top: 0;
  padding-top: 8rem;
  z-index: 1;
  padding-bottom: 4rem;
}
.qa::before {
  position: absolute;
  content: "";
  width: calc(100% - 10rem);
  height: 100%;
  background-color: #FAFAFA;
  border-radius: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 559px) {
  .qa::before {
    width: calc(100% - 4rem);
  }
}
.qa::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 170px;
  border-radius: 50%;
  background-color: #ECF4F8;
  bottom: -85px;
  left: 0;
  z-index: -10;
}
@media screen and (max-width: 700px) {
  .qa::after {
    height: 100px;
    bottom: -50px;
  }
}
.qa h2 {
  font-size: 3.6rem;
  letter-spacing: 2px;
}
.qa h2 span:first-child {
  color: #C0C9CE;
}
.qa ul li {
  margin-bottom: 6rem;
}
@media screen and (max-width: 559px) {
  .qa ul li {
    margin-bottom: 3rem;
  }
}
.qa ul li .q {
  display: flex;
  align-items: baseline;
}
.qa ul li .q span {
  color: #C0C9CE;
  font-size: 2.8rem;
  font-weight: 800;
}
.qa ul li .a {
  display: flex;
  align-items: baseline;
}
.qa ul li .a span {
  color: #FA8B91;
  font-size: 2.8rem;
  font-weight: 800;
}

.accordion-area {
  list-style: none;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  width: calc(100% - 18rem);
  padding-top: 0rem;
}
@media screen and (max-width: 559px) {
  .accordion-area {
    width: calc(100% - 10rem);
  }
}

.accordion-area li {
  margin: 10px 0;
}

.accordion-area .q {
  border-bottom: 2px dotted #A2D5ED;
}

/*アコーディオンタイトル*/
.q {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  padding: 10px;
  transition: all 0.5s ease;
}
.q p {
  font-size: 16px;
  font-weight: 700;
  max-width: 92%;
}
.q div {
  display: flex;
  font-size: 13px;
  margin-bottom: 10px;
}

/*アイコンの＋と×*/
.q::before,
.q::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #5db1df;
  transition: all 0.3s;
}

.q::before {
  top: 48%;
  right: -5px;
  transform: rotate(0deg);
}

.q::after {
  top: 48%;
  right: -5px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.q.close::before {
  transform: rotate(45deg);
}

.q.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  padding: 6px 10px;
  font-size: 14px;
}

/* ページネーション全体のスタイル */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  justify-content: center;
}

/* ページネーションの各アイテムのスタイル */
.page-numbers {
  margin: 0 5px;
  padding: 2px 10px;
  border-radius: 20px;
  position: static; /* absolute を解除 */
}

/* 現在のページのスタイル */
.page-numbers.current {
  background-color: #FA8B91;
  color: #fff;
}

/* 前へ・次へのアイコンのスタイル */
.prev,
.next {
  margin: 0 5px;
  font-size: 18px;
  color: #333;
  position: static;
  cursor: pointer;
}

/* ドットのスタイル */
.page-numbers.dots {
  padding: 5px 10px;
}

.prev:before,
.next:before {
  margin-right: 5px;
}/*# sourceMappingURL=style.css.map */