@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
}
:root {
  --viewport: 1920;
}
@media (max-width: 1280px) {
  :root {
    --viewport: 1200;
  }
}
@media (max-width: 768px) {
  :root {
    --viewport: 768;
  }
}

html {
  scroll-behavior: initial;
  width: 100%;
  font-size: 0.83vw;
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  min-height: 100%;
  font-size: 16px;
  font-family: "Gilroy", "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
}

.tb {
  display: none;
}
@media (max-width: 1200px) {
  .tb {
    display: block;
  }
}

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

.sp-nav {
  background-color: #124a61;
  position: fixed;
  min-height: 100vh;
  top: 75px;
  left: 0;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
.sp-nav li {
  border-top: 1px solid rgba(255, 255, 255, 0.3647058824);
}
.sp-nav__btn {
  padding: 30px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sp-nav__en {
  width: 100px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1.6px;
}
.sp-nav__jp {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 1;
}
.sp-nav .contact-wrap {
  padding: 60px 0;
}
.sp-nav .contact-button {
  padding: 16px 40px;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 335px;
  margin: auto;
  background: linear-gradient(270deg, #00537f 0%, #0096e5 100%);
  box-shadow: 0px 1px 2px 0px rgba(198, 228, 246, 0.05);
}
.sp-nav .contact-button.slide {
  color: #008cd6;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sp-nav .contact-button.slide::after {
  background: #008cd6;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.sp-nav .contact-button.slide:hover {
  color: #fff;
}
.sp-nav .contact-button.slide:hover::after {
  transform: scale(1, 1);
}
.sp-nav .contact-button .icon {
  width: 50px;
}
.sp-nav .contact-button .text-wrap {
  color: #fff;
}
.sp-nav .contact-button .text-wrap .number {
  font-size: 28px;
  line-height: 1;
}
.sp-nav .contact-button .text-wrap .text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1;
}

header {
  z-index: 10;
  position: absolute;
  top: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
header .left {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 8px 30px 8px 100px;
}
@media (max-width: 1200px) {
  header .left {
    padding: 30px 30px 30px 20px;
  }
}
@media (max-width: 768px) {
  header .left {
    padding: 20px;
  }
}
header .left__logo a {
  display: block;
  width: 125px;
}
@media (max-width: 768px) {
  header .left__logo a {
    width: 100px;
  }
}
@media (max-width: 1200px) {
  header .left__nav {
    display: none;
  }
}
header .left__nav nav ul {
  display: flex;
  gap: 30px;
  color: #fff;
}
header .right .sp {
  display: none;
  padding: 30px 20px;
}
@media (max-width: 1200px) {
  header .right .sp {
    display: flex;
    background: #342f30;
  }
}
header .right .sp button {
  display: flex;
}
header .right a {
  padding: 16px 40px;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 360px;
  background: linear-gradient(270deg, #00537f 0%, #0096e5 100%);
  box-shadow: 0px 1px 2px 0px rgba(198, 228, 246, 0.05);
}
header .right a.slide {
  color: #008cd6;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
header .right a.slide::after {
  background: #008cd6;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
header .right a.slide:hover {
  color: #fff;
}
header .right a.slide:hover::after {
  transform: scale(1, 1);
}
@media (max-width: 1200px) {
  header .right a {
    display: none;
  }
}
header .right a .icon {
  width: 50px;
}
header .right a .text-wrap {
  color: #fff;
}
header .right a .text-wrap .number {
  font-size: 28px;
  line-height: 1;
}
header .right a .text-wrap .text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1;
}

.mv {
  width: 100%;
  height: 50em;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  font-size: 0.83vw;
}
.mv .text-wrap {
  position: absolute;
  width: 40em;
  height: 100%;
  background-color: #342f30;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 6.25em;
  z-index: 1;
}
@media (max-width: 768px) {
  .mv .text-wrap {
    width: 100%;
    height: 40%;
    max-height: 230px;
    padding-left: 0;
    z-index: 1;
    display: flex;
    align-items: end;
  }
}
.mv .text-wrap > div {
  position: absolute;
  width: 100%;
  z-index: 2;
}
@media (max-width: 768px) {
  .mv .text-wrap > div {
    display: grid;
    justify-content: center;
    align-items: end;
  }
}
@media (max-width: 768px) {
  .mv {
    height: 450px;
    min-height: auto;
  }
}
.mv .text-wrap > div h1 {
  font-size: max(3rem, 28px);
  font-weight: bold;
}
@media (max-width: 768px) {
  .mv .text-wrap > div h1 {
    font-size: 18px;
  }
}
.mv .text-wrap > div p {
  margin-top: 50px;
  font-size: max(2rem, 20px);
}
@media (max-width: 768px) {
  .mv .text-wrap > div p {
    margin-top: 20px;
    font-size: 12px;
  }
  .mv .text-wrap {
    height: 100%;
    max-height: 200px;
  }
}
.mv .text-wrap::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 22.3125em;
  clip-path: polygon(0% 0%, 40% 0%, 100% 50%, 40% 100%, 0% 100%);
  background-color: #342f30;
  right: -18.125em;
  top: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .mv .text-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    clip-path: polygon(100% 0%, 100% 35%, 50% 100%, 50% 100%, 0% 35%, 0% 0%);
    background-color: #342f30;
    right: 0;
    bottom: -75px;
    top: auto;
    z-index: 2;
  }
}
.mv .text-wrap::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 22.3125em;
  clip-path: polygon(0% 0%, 40% 0%, 100% 50%, 40% 100%, 0% 100%);
  background-color: #008cd6; /* デモは赤色の部分 */
  right: -20.625em;
  top: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .mv .text-wrap::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    clip-path: polygon(100% 0%, 100% 35%, 50% 100%, 50% 100%, 0% 35%, 0% 0%);
    background-color: #008cd6;
    right: 0;
    bottom: -95px;
    top: auto;
  }
}
.mv .slider-wrap {
  height: 800px;
  width: 100%;
  margin: 0 0 0 auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mv .slider-wrap {
    height: 450px;
    width: 100%;
    margin: 0 0 0 auto;
    overflow: hidden;
  }
}
.mv .slider-wrap .slider .slick-slide img {
  margin: 0 0 0 auto;
  height: 800px;
}
@media (max-width: 768px) {
  .mv .slider-wrap .slider .slick-slide img {
    width: 100%;
    margin: 0 0 auto 0;
    height: 450px;
  }
}
.inner {
  width: 1200px;
  margin: auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }
}

.top-news {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .top-news {
    padding: 80px 0;
  }
}
.top-news .more-btn {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .top-news .more-btn {
    margin-top: 30px;
  }
}
.top-news .more-btn a {
  margin: auto;
}

.single-news-main .title-wrap > div {
  margin-top: 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  line-height: 1;
  color: #008cd6;
  align-items: center;
}
@media (max-width: 768px) {
  .single-news-main .title-wrap > div {
    margin-top: 12px;
    margin-bottom: 10px;
    gap: 6px;
  }
}
.single-news-main .title-wrap .type {
  color: #008cd6;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  border-radius: 50px;
  background: #f1faff;
  padding: 6px 16px;
}
@media (max-width: 768px) {
  .single-news-main .title-wrap .type {
    padding: 4px 16px;
    font-size: 10px;
  }
}
.single-news-main .title-wrap .date {
  font-size: 12px;
}
@media (max-width: 768px) {
  .single-news-main .title-wrap .date {
    font-size: 10px;
  }
}
.single-news-main .title-wrap .title {
  font-size: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f1faff;
}
.single-news-main .single-news-content {
  margin-top: 50px;
}
.single-news-main .single-news-content img {
  display: block;
  width: auto;
  margin: 0 auto;
}
.single-news-main .button-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 150px;
}

.news-wrap {
  margin-top: 70px;
  gap: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1200px) {
  .news-wrap {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .news-wrap {
    margin-top: 30px;
  }
}
.news-wrap li {
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-wrap li img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .news-wrap li.news2 {
    display: none;
  }
}
@media (max-width: 768px) {
  .news-wrap li {
    align-items: start;
    width: 157px;
    height: auto;
  }
}
.news-wrap li .title {
  color: #554d4f;
  line-height: 24px;
  letter-spacing: 1.6px;
}
@media (max-width: 768px) {
  .news-wrap li .title {
    font-size: 12px;
  }
}
.news-wrap li .text {
  margin-top: 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  line-height: 1;
  color: #008cd6;
  align-items: center;
}
@media (max-width: 768px) {
  .news-wrap li .text {
    margin-top: 12px;
    margin-bottom: 10px;
    gap: 6px;
  }
}
.news-wrap li .text .type {
  color: #008cd6;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  border-radius: 50px;
  background: #f1faff;
  padding: 6px 16px;
}
@media (max-width: 768px) {
  .news-wrap li .text .type {
    padding: 4px 16px;
    font-size: 10px;
  }
}
.news-wrap li .text .date {
  font-size: 12px;
}
@media (max-width: 768px) {
  .news-wrap li .text .date {
    font-size: 10px;
  }
}

.category-title > div {
  display: flex;
  align-items: start;
  gap: 30px;
  color: #008cd6;
}
@media (max-width: 768px) {
  .category-title > div {
    gap: 20px;
  }
}
.category-title > div h2 {
  font-size: 72px;
  line-height: 1;
}
@media (max-width: 768px) {
  .category-title > div h2 {
    font-size: 42px;
  }
}
.category-title > div p {
  padding-top: 25px;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 768px) {
  .category-title > div p {
    font-size: 12px;
  }
}

.more-btn a,
.more-btn button {
  width: 295px;
  padding: 16px 0;
  text-align: center;
  color: #008cd6;
  font-size: 18px;
  border: 1px solid;
  display: block;
  font-weight: 600;
  letter-spacing: 1.8px;
}
.more-btn a.slide,
.more-btn button.slide {
  background: #fff;
  color: #008cd6;
  border: 1px solid #008cd6;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}
.more-btn a.slide::after,
.more-btn button.slide::after {
  background: #008cd6;
  border: 1px solid #008cd6;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.more-btn a.slide:hover,
.more-btn button.slide:hover {
  color: #fff;
  border: 1px solid #fff;
}
.more-btn a.slide:hover::after,
.more-btn button.slide:hover::after {
  transform: scale(1, 1);
}

.top-service {
  background: url(../img/top/service-bg.png);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 120px 0;
}
@media (max-width: 768px) {
  .top-service {
    background: #342f30;
    padding: 80px 0;
  }
}
.top-service .category-title h2 {
  color: #fff;
}
.top-service .category-title p {
  color: #fff;
  line-height: 1.5;
  padding-top: 0;
  line-height: 200%; /* 32px */
  letter-spacing: 1.6px;
}

.zoom-frame {
  overflow: hidden;
}
.zoom-frame img {
  transition: transform 0.5s;
}
.zoom-frame:hover img {
  transform: scale(1.1);
}

.top-service .category-title > div {
  display: grid;
}

.service-contents {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  gap: 50px;
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .service-contents {
    gap: 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .service-contents {
    margin-top: 50px;
    padding: 0;
  }
}
.service-contents > div {
  width: 24.5em;
  height: 16.3125em;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .service-contents > div {
    width: 392px;
    height: 261px;
  }
}
@media (max-width: 768px) {
  .service-contents > div {
    width: 335px;
    height: 150px;
  }
}
#service01 {
  background-image: url(../img/top/feature-bg.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #service01 {
    background-image: none;
  }
}
#service01,
#service02,
#service03,
#service04,
#features01,
#features02 {
  padding-top: 100px;
  margin-top: -100px;
}
.service-contents > div.service01::before {
  content: url(../img/top/service01.png);
  position: absolute;
  z-index: 0;
  transition: transform 0.5s;
}
.service-contents > div.service02::before {
  content: url(../img/top/service02.png);
  position: absolute;
  z-index: 0;
  transition: transform 0.5s;
}
.service-contents > div.service03::before {
  content: url(../img/top/service03.png);
  position: absolute;
  z-index: 0;
  transition: transform 0.5s;
}
.service-contents > div.service04::before {
  content: url(../img/top/service04.png);
  position: absolute;
  z-index: 0;
  transition: transform 0.5s;
}
.service-contents > div:hover::before {
  transform: scale(1.1);
}
.service-contents > div a {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s;
}
.service-contents > div a > div {
  color: #fff;
  padding: 25px;
}
.service-contents > div a > div p:nth-of-type(1) {
  letter-spacing: 1.4px;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 768px) {
  .service-contents > div a > div p:nth-of-type(1) {
    font-size: 12px;
  }
}
.service-contents > div a > div p:nth-of-type(2) {
  margin-top: 14px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 768px) {
  .service-contents > div a > div p:nth-of-type(2) {
    margin-top: 10px;
    font-size: 20px;
  }
}

.top-features {
  padding: 150px 0;
  background-image: url(../img/top/feature-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .top-features {
    padding: 80px 0;
  }
}
@media (max-width: 1200px) {
  .top-features .more-btn {
    display: flex;
    justify-content: center;
  }
}
.top-features .title {
  color: #008cd6;
}
@media (max-width: 1200px) {
  .top-features .title {
    padding: 0 20px;
  }
}
.top-features .title p {
  font-size: 18px;
  letter-spacing: 1.8px;
  line-height: 1;
}
@media (max-width: 1200px) {
  .top-features .title p {
    font-size: 14px;
  }
}
.top-features .title h3 {
  font-size: max(2.625em, 36px);
  font-weight: 900;
  line-height: normal;
  letter-spacing: 4.2px;
  line-height: 1.5;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .top-features .title h3 {
    margin-top: 20px;
    font-size: 24px;
  }
}
.top-features .text {
  font-size: 0.83vw;
  margin: 50px 0;
  width: 40em;
  min-width: 500px;
  line-height: 32px; /* 32px */
  letter-spacing: 1.6px;
}
@media (max-width: 1200px) {
  .top-features .text {
    width: 100%;
    min-width: 0;
    max-width: 800px;
    padding: 0 20px;
  }
}
.top-features .text p {
  font-size: 16px;
}
@media (max-width: 768px) {
  .top-features .text p {
    font-size: 14px;
  }
}
.top-features .feature01 {
  display: flex;
  gap: 7.5em;
  align-items: center;
  font-size: 0.83vw;
}
@media (max-width: 1200px) {
  .top-features .feature01 {
    flex-grow: 1; /* [3] */
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }
}
.top-features .feature01 img {
  width: 50em;
}
@media (max-width: 1200px) {
  .top-features .feature01 img {
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .top-features .feature01 img {
    padding-right: 20px;
  }
}
.top-features .feature02 {
  margin-top: 80px;
  display: flex;
  gap: 120px;
  justify-content: end;
  align-items: center;
  font-size: 0.83vw;
}
@media (max-width: 1200px) {
  .top-features .feature02 {
    flex-grow: 1; /* [3] */
    display: flex; /* [4] */
    flex-direction: column-reverse;
    gap: 50px;
  }
}
.top-features .feature02 img {
  width: 50em;
}
@media (max-width: 1200px) {
  .top-features .feature02 img {
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .top-features .feature02 img {
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .gallery {
    display: none;
  }
}

.gallery-slider {
  padding: 100px 0;
}
.gallery-slider .slick-slide {
  padding: 0 25px;
}
.gallery-slider .slick-slide img {
  width: 500px;
}

.footer-contact {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  font-size: 0.83vw;
}
@media (max-width: 768px) {
  .footer-contact {
    height: 595px;
  }
}
.footer-contact .text-wrap {
  position: absolute;
  width: 62.5em;
  height: 100%;
  background-color: #342f30;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 6.25em;
  z-index: 1;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .footer-contact .text-wrap {
    text-align: center;
    width: 100%;
    height: 300px;
    max-height: none;
    padding-left: 0;
    z-index: 1;
    display: flex;
    align-items: end;
    top: auto;
    bottom: 0;
    padding-bottom: 100px;
  }
}
.footer-contact .text-wrap > div {
  position: absolute;
  z-index: 2;
}
@media (max-width: 768px) {
  .footer-contact .text-wrap > div {
    display: grid;
    justify-content: center;
    align-items: end;
  }
  .footer-contact .text-wrap > div {
    position: absolute;
    width: 100%;
    z-index: 2;
  }
}
.footer-contact .text-wrap > div h1 {
  font-size: max(3rem, 28px);
  font-weight: bold;
}
@media (max-width: 768px) {
  .footer-contact .text-wrap > div h1 {
    font-size: 28px;
  }
}
.footer-contact .text-wrap > div p {
  margin-top: 50px;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .footer-contact .text-wrap > div p {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .footer-contact .text-wrap > div p {
    text-align: left;
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
  }
}
.footer-contact .text-wrap::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 17.3125em;
  clip-path: polygon(0% 0%, 40% 0%, 100% 50%, 40% 100%, 0% 100%);
  background-color: #342f30;
  top: 0;
  left: -13.125em;
  transform: rotate(180deg);
  z-index: 2;
}
@media (max-width: 768px) {
  .footer-contact .text-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 170px;
    clip-path: polygon(100% 0%, 100% 35%, 50% 100%, 50% 100%, 0% 35%, 0% 0%);
    background-color: #342f30;
    left: 0;
    top: -165px;
    z-index: 2;
  }
}
.footer-contact .text-wrap::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 17.3125em;
  clip-path: polygon(0% 0%, 40% 0%, 100% 50%, 40% 100%, 0% 100%);
  background-color: #008cd6;
  top: 0;
  left: -15.625em;
  transform: rotate(180deg);
  z-index: 1;
}
@media (max-width: 768px) {
  .footer-contact .text-wrap::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 165px;
    clip-path: polygon(100% 0%, 100% 35%, 50% 100%, 50% 100%, 0% 35%, 0% 0%);
    background-color: #008cd6;
    left: 0;
    top: -195px;
  }
}
.footer-contact .img-wrap {
  width: 960px;
  margin: 0 auto 0 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .footer-contact .img-wrap {
    width: 100%;
    margin: auto;
  }
}
.footer-contact .img-wrap img {
  width: 87%;
  margin: 0 auto 0 0;
}
@media (max-width: 1500px) {
  .footer-contact .img-wrap img {
    width: 80%;
  }
}
@media (max-width: 1400px) {
  .footer-contact .img-wrap img {
    width: 70%;
    margin-top: 18px;
  }
}
@media (max-width: 1200px) {
  .footer-contact .img-wrap img {
    width: 60%;
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .footer-contact .img-wrap img {
    width: 100%;
    margin-top: 0;
  }
}

.footer-contact .more-btn {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .footer-contact .more-btn {
    display: flex;
    justify-content: center;
  }
}
.footer-contact .more-btn a.slide {
  background: none;
}
.footer-contact .more-btn a.slide:hover {
  border: 1px solid #342f30;
}

.bunner {
  display: flex;
  justify-content: center;
  padding: 175px 20px;
  gap: 50px;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .bunner {
    padding: 50px 20px;
  }
}
.bunner > div {
  width: 575px;
}
@media (max-width: 1200px) {
  .bunner > div {
    width: 100%;
    max-width: 375px;
  }
}

.inc .text-wrap {
  border-top: 30px solid #008cd6;
  padding: 30px 0;
  background: #342f30;
}
.inc .text-wrap p {
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  letter-spacing: 1.2px;
}

.sv-title {
  line-height: 1;
  color: #008cd6;
  padding: 240px 0 80px;
}
@media (max-width: 768px) {
  .sv-title {
    padding: 150px 0 50px;
  }
}
.sv-title h1 {
  font-size: 72px;
}
@media (max-width: 768px) {
  .sv-title h1 {
    font-size: 42px;
  }
}
.sv-title p {
  font-size: 24px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .sv-title p {
    font-size: 12px;
    margin-top: 20px;
  }
}

.sv {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 237px 0 165px;
  color: #fff;
}
.sv.service {
  background-image: url(../img/service/sv.png);
}
.sv.features {
  background-image: url(../img/features/sv.png);
}
@media (max-width: 768px) {
  .sv {
    padding: 123px 0 49px;
    text-align: center;
  }
}
.sv h1 {
  font-size: 72px;
  line-height: 1;
}
@media (max-width: 768px) {
  .sv h1 {
    font-size: 24px;
    font-weight: 600;
  }
}
.sv p {
  margin-top: 30px;
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 768px) {
  .sv p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
  }
}

.table-wrap {
  overflow-x: scroll;
  position: relative;
}
.table-wrap .scroll {
  display: none;
}
@media (max-width: 768px) {
  .table-wrap .scroll {
    position: absolute;
    width: 100vw;
    height: 100%;
    display: block;
    background-color: rgba(255, 255, 255, 0.4862745098);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .table-wrap .scroll img {
    width: 186px;
    animation: fadeInOut 5s linear infinite;
  }
}

@keyframes fadeInOut {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
.inspection-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.inspection-table th,
.inspection-table td {
  color: #554d4f;
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  min-width: 198px;
}
.inspection-table th:first-child,
.inspection-table td:first-child {
  background-color: #f8f8f8;
}
.inspection-table td img {
  width: auto;
}
.inspection-table thead th {
  color: #fff;
}
.inspection-table thead th span {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}
.inspection-table .blue {
  background-color: #2c94e0;
}
.inspection-table .green {
  background-color: #34a853;
}
.inspection-table .orange {
  background-color: #fbb040;
}
.inspection-table .dark-orange {
  background-color: #d97706;
}
.inspection-table .purple {
  background-color: #9b51e0;
}
.inspection-table .brown {
  background-color: #a75f2a;
}
.inspection-table .pink {
  background-color: #e91e63;
}
.inspection-table .divider {
  background-color: #eee;
  font-weight: bold;
  text-align: center;
  padding-left: 10px;
  background: #888;
  color: #fff;
}
.inspection-table td .weight p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1;
}
.inspection-table td .weight span {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  line-height: 1;
}
.inspection-table .total td {
  background-color: #fee;
  color: #c00;
}

.service-main {
  padding: 0 0 150px;
}
@media (max-width: 768px) {
  .service-main {
    padding: 0 0 80px;
  }
}
.service-main .sec {
  margin-top: 150px;
}
@media (max-width: 768px) {
  .service-main .sec {
    margin-top: 80px;
  }
}
.service-main .service-title {
  color: #008cd6;
  display: flex;
  align-items: end;
  gap: 50px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .service-main .service-title {
    gap: 20px;
  }
}
.service-main .service-title .main p {
  font-size: 18px;
  letter-spacing: 1.8px;
}
@media (max-width: 768px) {
  .service-main .service-title .main p {
    font-size: 14px;
  }
}
.service-main .service-title .main h2 {
  font-size: 42px;
  letter-spacing: 4.2px;
  font-weight: 600;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .service-main .service-title .main h2 {
    font-size: 24px;
    margin-top: 10px;
  }
}
.service-main .service-title .text p {
  font-size: 20px;
}
@media (max-width: 768px) {
  .service-main .service-title .text p {
    font-size: 16px;
  }
}
.service-main .img-wrap {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .service-main .img-wrap {
    margin-top: 30px;
  }
}
.service-main .text-wrap {
  margin: 80px 0;
  font-size: 16px;
  font-style: normal;
  line-height: 2;
  letter-spacing: 1.6px;
  color: #554d4f;
}
@media (max-width: 768px) {
  .service-main .text-wrap {
    font-size: 14px;
    margin: 50px 0;
  }
}
.service-main .text-wrap span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.6px;
  color: #ff7a00;
}
.service-main .rice {
  color: #888;
  font-size: 14px;
  font-style: normal;
  line-height: 2; /* 28px */
  letter-spacing: 1.4px;
}
@media (max-width: 768px) {
  .service-main .rice {
    font-size: 12px;
  }
}
.service-main .inspection-menu {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .service-main .inspection-menu {
    margin-top: 50px;
  }
}
.service-main .inspection-menu .title h3 {
  font-size: 24px;
  color: #008cd6;
  font-weight: bold;
  border-left: 3px solid;
  line-height: 1;
  padding-left: 15px;
}
@media (max-width: 768px) {
  .service-main .inspection-menu .title h3 {
    font-size: 18px;
    padding-left: 8px;
  }
}
.service-main .inspection-menu .inspection-menu-wrap {
  margin: 30px 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.service-main .inspection-menu .inspection-menu-wrap .menu-content {
  background: #008cd6;
  width: 277px;
  padding: 30px;
}
@media (max-width: 768px) {
  .service-main .inspection-menu .inspection-menu-wrap .menu-content {
    max-width: 400px;
    width: 100%;
    margin: auto;
  }
}
.service-main .inspection-menu .inspection-menu-wrap .menu-content h4 {
  color: #008cd6;
  width: 100%;
  line-height: 1;
  display: inline-block;
  padding: 10px 0;
  background-color: #fff;
  text-align: center;
  font-weight: 700;
}
.service-main .inspection-menu .inspection-menu-wrap .menu-content p {
  font-size: 12px;
  color: #fff;
  line-height: 2;
  margin-top: 15px;
}
.service-main .insurelance {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.service-main .insurelance img.ins01 {
  max-width: 400px;
}
.service-main .insurelance img.ins02 {
  max-width: 568px;
}

.high-quality-service {
  padding: 150px 0;
  background-image: url(../img/top/feature-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .high-quality-service {
    padding: 80px 0;
  }
}
.high-quality-service .img-wrap {
  width: 550px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .high-quality-service .img-wrap {
    width: 100%;
    max-width: 550px;
  }
}
.high-quality-service .inner {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media (max-width: 1200px) {
  .high-quality-service .inner {
    flex-direction: column-reverse;
    gap: 50px;
  }
}
.high-quality-service h2 {
  color: #008cd6;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 84px */
  letter-spacing: 4.2px;
}
@media (max-width: 768px) {
  .high-quality-service h2 {
    line-height: 1;
    font-size: 36px;
  }
}
.high-quality-service p {
  margin-top: 32px;
  color: #554d4f;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 32px */
  letter-spacing: 1.6px;
}
@media (max-width: 768px) {
  .high-quality-service p {
    font-size: 14px;
  }
}

.features-wrap {
  margin-bottom: 321px;
  font-size: 0.83vw;
}
@media (max-width: 768px) {
  .features-wrap {
    margin-bottom: 80px;
  }
}
.features-wrap .title {
  display: flex;
  align-items: end;
  padding-left: 12.5em;
  padding-bottom: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
}
@media (max-width: 1200px) {
  .features-wrap .title {
    padding-left: 20px;
    padding-bottom: 34px;
  }
}
@media (max-width: 768px) {
  .features-wrap .title {
    height: 200px;
  }
}
.features-wrap .title h2 {
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 3.6px;
}
@media (max-width: 1200px) {
  .features-wrap .title h2 {
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .features-wrap .title h2 {
    font-size: 16px;
  }
}
.features-wrap .title p {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  line-height: 1;
  letter-spacing: 2.4px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .features-wrap .title p {
    font-size: 12px;
    line-height: 2;
  }
}
.features-wrap .title.feature01 {
  background-image: url(../img/features/feature01.png);
}
.features-wrap .title.feature02 {
  background-image: url(../img/features/feature02.png);
  margin-top: 150px;
}
@media (max-width: 768px) {
  .features-wrap .title.feature02 {
    margin-top: 80px;
  }
}
.features-wrap .text {
  display: flex;
  gap: 100px;
  margin: 100px 0 80px;
}
@media (max-width: 1200px) {
  .features-wrap .text {
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0;
  }
}
@media (max-width: 768px) {
  .features-wrap .text {
    gap: 50px;
  }
}
.features-wrap .text p {
  width: 700px;
  color: #554d4f;
  font-size: 14px;
  font-style: normal;
  line-height: 2;
  letter-spacing: 1.4px;
}
@media (max-width: 1200px) {
  .features-wrap .text p {
    width: 100%;
  }
}
.features-wrap .text .img-wrap iframe {
  width: 100%;
  height: 300px;
}
.features-wrap .text .img-wrap {
  width: 400px;
}
@media (max-width: 1200px) {
  .features-wrap .text .img-wrap {
    max-width: 400px;
    width: 100%;
  }
}
.features-wrap .points-title h4 {
  color: #008cd6;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1;
  font-weight: 600;
  border-left: 4px solid;
  padding-left: 16px;
}
@media (max-width: 768px) {
  .features-wrap .points-title h4 {
    font-size: 18px;
  }
  .features-wrap .text .img-wrap iframe {
    height: 250px;
  }
}
.features-wrap .points {
  display: flex;
  gap: 30px;
  margin-top: 35px;
}
@media (max-width: 1200px) {
  .features-wrap .points {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.features-wrap .points .point {
  width: 100%;
  min-width: 278px;
  background: #008cd6;
  padding: 30px;
  color: #fff;
}
@media (max-width: 1200px) {
  .features-wrap .points .point {
    width: 100%;
    max-width: 500px;
  }
}
.features-wrap .points .point h5 {
  font-size: 16px;
  display: inline-block;
  border: 1px solid;
  padding: 0 20px;
  width: 100%;
  text-align: center;
  line-height: 1.5;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-wrap .points .point p {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}
.features-wrap #feature01 {
  margin-bottom: 150px;
}

.company-table {
  padding: 50px 100px 80px;
  background: #f1faff;
}
@media (max-width: 768px) {
  .company-table {
    padding: 50px 20px;
  }
}
.company-table table {
  width: 100%;
  border-collapse: collapse;
}
.company-table table th,
.company-table table td {
  padding: 30px 20px;
  line-height: 1;
  border-bottom: 1px solid #c2e2f4;
}
@media (max-width: 768px) {
  .company-table table th,
  .company-table table td {
    display: block;
  }
}
.company-table table th {
  color: #008cd6;
  width: 200px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .company-table table th {
    width: 100%;
    border-bottom: 0;
    padding: 30px 20px 10px 20px;
  }
}
.company-table table td {
  color: #554d4f;
  line-height: 2;
}
@media (max-width: 768px) {
  .company-table table td {
    padding: 0 20px 30px 20px;
  }
}

.map {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .map iframe {
    height: 150px;
  }
}

.news-main {
  margin-bottom: 200px;
}

.contact-wrap .more-btn {
  margin: 50px auto 150px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-wrap .more-btn button.send {
  border: 1px solid #008cd6;
  background: #008cd6;
  color: #fff;
}
.contact-wrap table {
  width: 100%;
  padding: 50px 100px 80px;
  background: #f1faff;
}
@media (max-width: 768px) {
  .contact-wrap table {
    padding: 20px 20px 50px;
  }
}
.contact-wrap table th,
.contact-wrap table td {
  display: block;
}
.contact-wrap table th {
  color: #008cd6;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.contact-wrap table td input,
.contact-wrap table td select,
.contact-wrap table td textarea {
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  background: #fff;
  padding: 11px;
  border-radius: 10px;
  width: 100%;
  line-height: 1;
}
.contact-wrap table td input {
  max-width: 800px;
}
.contact-wrap table td select {
  max-width: 488px;
}
.contact-wrap table td .err {
  color: #de0303;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.contact-wrap table td .tel-wrap {
  display: flex;
}

.contact-wrap table .tel-wrap {
  display: flex;
  gap: 30px;
}

.contact-wrap table .tel-wrap > div {
  position: relative;
}

.contact-wrap table .tel-wrap > div:not(:last-child)::before {
  content: "-";
  position: absolute;
  display: inline-block;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 15px;
  margin: auto;
  color: #666;
  z-index: 1;
}

.contact-wrap table .tel-wrap input {
  width: 150px !important;
  position: relative;
}

@media (max-width: 768px) {
  .contact-wrap table .tel-wrap input {
    width: 80px !important;
  }
}
.thankyou-wrap {
  padding: 80px 100px;
  background-color: #f1faff;
  text-align: center;
  font-weight: 700;
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .thankyou-wrap {
    padding: 50px 20px;
  }
}
.thankyou-wrap .compleate {
  color: #008cd6;
  font-size: 24px;
}
@media (max-width: 768px) {
  .thankyou-wrap .compleate {
    font-size: 18px;
  }
}
.thankyou-wrap .send-mail {
  margin: 50px 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .thankyou-wrap .send-mail {
    margin: 30px 0;
    font-size: 12px;
  }
}
.thankyou-wrap .caution {
  color: #008cd6;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.6px;
}
@media (max-width: 768px) {
  .thankyou-wrap .caution {
    font-size: 10px;
  }
}
.fadeup {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 150px;
}
.nextpostslink {
  display: flex;
  width: 80px;
  height: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 100px;
  background: #008cd6;
  color: #fff;
  font-size: 24px;
}
div.nextpostslink {
  display: none;
}
div.nextpostslink a {
  display: flex;
  width: 80px;
  height: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 100px;
  background: #008cd6;
  color: #fff;
  font-size: 24px;
}
div.nextpostslink:has(a) {
  display: flex;
}
div.previouspostslink {
  display: none;
}
div.previouspostslink a {
  display: flex;
  width: 80px;
  height: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 100px;
  color: #008cd6;
  background: #fff;
  border: 1px solid;
  font-size: 24px;
}
div.previouspostslink:has(a) {
  display: flex;
}
.previouspostslink {
  display: flex;
  width: 80px;
  height: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 100px;
  color: #008cd6;
  background: #fff;
  border: 1px solid;
  font-size: 24px;
}
.button-wrap.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .single-news-main .button-wrap .pc {
    display: none;
  }
  .previouspostslink,
  .nextpostslink {
    width: 56px;
    height: 56px;
  }
  .previouspostslink a {
    width: 56px;
    height: 56px;
  }

  .nextpostslink a {
    width: 56px;
    height: 56px;
  }
  .single-news-main .button-wrap {
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
  }
  .pc {
    display: none;
  }
  .button-wrap.sp {
    display: flex;
    gap: 50px;
  }
}
.bg {
  background-color: #353535;
}

.mail02 {
  display: none;
}
