header {
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  header {
    height: 60px;
  }
}
header .header-inner {
  position: relative;
}
header .header-inner .logo-area {
  position: relative;
  width: 16.3%;
  min-width: 224px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  header .header-inner .logo-area {
    min-width: 130px;
  }
}
header .header-inner .logo-area a {
  display: block;
}
header .header-inner .logo-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header #NavWrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 64.7%;
  max-width: 800px;
  margin-left: auto;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  header #NavWrap {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    transform: translateY(0);
  }
}
header #NavWrap .menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 67.3%;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  header #NavWrap .menu-container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  header #NavWrap .menu-container li {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: solid 1px #ebf5fa;
    margin-bottom: 20px;
    font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  }
  header #NavWrap .menu-container li:first-of-type {
    padding-top: 20px;
    border-top: solid 1px #ebf5fa;
  }
}
header #NavWrap .menu-container li a {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  color: #0d47a1;
  transition: all 0.3s;
}
header #NavWrap .menu-container li a:hover {
  color: #0285c0;
}
header #NavWrap .contact-btn {
  width: 26%;
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  header #NavWrap .contact-btn {
    width: 100%;
    max-width: unset;
  }
}
header #NavWrap .contact-btn a {
  display: block;
  padding: 15px 0;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  background-color: #ff9124;
  transition: all 0.3s;
}
header #NavWrap .contact-btn a:hover {
  background-color: #0285c0;
}

.home main .section-mv {
  padding: 127px 40px 0;
  background-color: #ebf5fa;
}
@media screen and (max-width: 768px) {
  .home main .section-mv {
    padding: 107px 0 0;
  }
}
.home main .section-mv .mv-area {
  position: relative;
  width: 100%;
  padding-top: calc(100vh - 127px);
  background: url(../img/mv.webp) center/cover, no-repeat;
}
@media screen and (max-width: 768px) {
  .home main .section-mv .mv-area {
    max-width: 1200px;
    width: 87.2%;
    margin: auto;
    background: url(../img/mv.webp) 70%/cover, no-repeat;
  }
  .home main .section-mv .mv-area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgb(255, 255, 255));
  }
}
.home main .section-mv .mv-area .lead-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 95%;
  max-width: 996px;
}
@media screen and (max-width: 768px) {
  .home main .section-mv .mv-area .lead-wrap {
    text-align: center;
    top: unset;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.home main .section-mv .mv-area .lead-wrap .logo-area {
  margin-bottom: 35px;
  width: 35%;
  max-width: 350px;
}
@media screen and (max-width: 768px) {
  .home main .section-mv .mv-area .lead-wrap .logo-area {
    margin: 0 auto 10px;
    width: 85%;
  }
}
.home main .section-mv .mv-area .lead-wrap h1 {
  font-size: clamp(2rem, 2.3vw, 2.8rem);
  color: #5a5858;
  line-height: 1.5;
}
.home main .section-news {
  margin-bottom: 80px;
  padding: 80px 0;
  background-color: #ebf5fa;
}
.home main .section-news h2 {
  margin-bottom: 21px;
  font-size: clamp(2rem, 2.3vw, 2.8rem);
}
.home main .section-news ul li a {
  display: block;
  border-top: solid 1px #333;
  padding: 21px 0;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  transition: all 0.3s;
}
.home main .section-news ul li a:hover {
  background-color: #cbe6f2;
}
.home main .section-news ul li a .category-area {
  display: inline-block;
  min-width: 67px;
  border: solid 1px #333;
  padding: 6px 10px;
  margin: 0 22px;
  text-align: center;
  font-size: clamp(1rem, 1vw, 1.2rem);
}
@media screen and (max-width: 768px) {
  .home main .section-news ul li a .category-area {
    margin: 0 10px;
  }
}
.home main .section-news ul li a .date-area {
  display: inline-block;
  min-width: 90px;
}
.home main .section-news ul li a .title-area {
  display: inline-block;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .home main .section-news ul li a .title-area {
    display: block;
    margin-top: 10px;
    width: 100%;
    line-height: 1.7;
  }
}
.home main .section-news ul li:last-of-type a {
  border-bottom: solid 1px #333;
}
.home main .section-support {
  margin-bottom: 80px;
}
.home main .section-support .support-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.home main .section-support .support-wrap .image-area {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .home main .section-support .support-wrap .image-area {
    width: 100%;
    margin-bottom: 40px;
  }
}
.home main .section-support .support-wrap .text-area {
  width: 68.8%;
}
@media screen and (max-width: 768px) {
  .home main .section-support .support-wrap .text-area {
    width: 100%;
  }
}
.home main .section-support .support-wrap .text-area h2 {
  font-size: clamp(2.4rem, 2.6vw, 3.2rem);
  margin-bottom: 46px;
  color: #0285c0;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .home main .section-support .support-wrap .text-area h2 {
    margin-bottom: 26px;
  }
}
.home main .section-support .support-wrap .text-area .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.home main .section-support .support-wrap .text-area .content-wrapper .container {
  width: 43.7%;
  padding-bottom: 40px;
  margin-bottom: 80px;
  position: relative;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .home main .section-support .support-wrap .text-area .content-wrapper .container {
    width: 100%;
  }
  .home main .section-support .support-wrap .text-area .content-wrapper .container:last-of-type {
    margin-bottom: 0;
  }
}
.home main .section-support .support-wrap .text-area .content-wrapper .container h3 {
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: solid 2px #0285c0;
  font-size: clamp(1.8rem, 1.3vw, 2rem);
}
@media screen and (max-width: 768px) {
  .home main .section-support .support-wrap .text-area .content-wrapper .container h3 {
    margin-bottom: 20px;
  }
}
.home main .section-support .support-wrap .text-area .content-wrapper .container .support-list {
  margin-bottom: 40px;
}
.home main .section-support .support-wrap .text-area .content-wrapper .container .support-list .support-item {
  margin-bottom: 10px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
}
.home main .section-support .support-wrap .text-area .content-wrapper .container .more-btn {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 0;
  max-width: 200px;
  width: 66%;
  text-align: center;
  background-color: #29abd6;
  color: #fff;
  transition: all 0.3s;
}
.home main .section-support .support-wrap .text-area .content-wrapper .container .more-btn:hover {
  background-color: #0285c0;
}
@media screen and (max-width: 768px) {
  .home main .section-support .support-wrap .text-area .content-wrapper .container .more-btn {
    left: 50%;
    transform: translateX(-50%);
  }
}
.home main .section-reason {
  margin-bottom: 160px;
  padding: 80px 0;
  background-color: #ebf5fa;
}
@media screen and (max-width: 768px) {
  .home main .section-reason {
    margin-bottom: 80px;
  }
}
.home main .section-reason h2 {
  margin-bottom: 40px;
  font-size: clamp(2.4rem, 2.6vw, 3.2rem);
  color: #0285c0;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .home main .section-reason h2 {
    margin-bottom: 26px;
  }
}
.home main .section-reason ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 60px;
}
.home main .section-reason ul li {
  width: 23%;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .home main .section-reason ul li {
    width: 100%;
    margin-bottom: 40px;
  }
  .home main .section-reason ul li:last-child {
    margin-bottom: 0;
  }
}
.home main .section-reason ul li .image-area {
  position: relative;
  width: 100%;
}
.home main .section-reason ul li .image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home main .section-reason ul li .image-area .point-area {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  background: #0285c0;
  color: #fff;
  text-align: center;
  font-size: clamp(2.4rem, 2.6vw, 3.2rem);
}
@media screen and (max-width: 768px) {
  .home main .section-reason ul li .image-area .point-area {
    padding: 10px 15px;
  }
}
.home main .section-reason ul li .image-area .point-area .font-small {
  display: block;
  font-size: clamp(1rem, 1vw, 1.2rem);
}
.home main .section-reason ul li .text-area {
  padding: 14px 14px 30px;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}
@media screen and (max-width: 768px) {
  .home main .section-reason ul li .text-area {
    padding: 14px 14px 15px;
  }
}
.home main .section-reason ul li .text-area h4 {
  color: #0285c0;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.home main .section-reason ul li .text-area p {
  line-height: 1.5;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.home main .section-reason h3 {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  color: #0285c0;
  line-height: 1.7;
}
.home main .section-reason .description {
  line-height: 1.7;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.home main .section-message {
  margin-bottom: 120px;
}
.home main .section-message .message-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.home main .section-message .message-wrap .text-box {
  width: 41.9%;
}
@media screen and (max-width: 768px) {
  .home main .section-message .message-wrap .text-box {
    width: 100%;
  }
}
.home main .section-message .message-wrap .text-box h2 {
  font-family: "NotoSerifJP-Bold.ttf";
  font-size: clamp(5.6rem, 5.4vw, 6.5rem);
  color: #0285c0;
  margin-bottom: 60px;
  position: relative;
}
.home main .section-message .message-wrap .text-box h2:before {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  background-color: #0285c0;
  width: calc(100% - 300px);
  height: 1px;
}
@media screen and (max-width: 768px) {
  .home main .section-message .message-wrap .text-box h2:before {
    width: calc(100% - 250px);
  }
}
.home main .section-message .message-wrap .text-box h3 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  margin-bottom: 24px;
}
.home main .section-message .message-wrap .text-box p {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  line-height: 1.7;
}
.home main .section-message .message-wrap .image-area {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .home main .section-message .message-wrap .image-area {
    margin-top: 24px;
    width: 100%;
  }
}
.home main .section-consultation {
  margin-bottom: 120px;
}
.home main .section-consultation .consultation-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.home main .section-consultation .consultation-wrap .image-area {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .home main .section-consultation .consultation-wrap .image-area {
    width: 50%;
    margin-left: -7.4%;
    margin-bottom: 40px;
  }
}
.home main .section-consultation .consultation-wrap .text-area {
  padding-left: 80px;
  width: 58%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home main .section-consultation .consultation-wrap .text-area {
    width: 100%;
  }
}
.home main .section-consultation .consultation-wrap .text-area h2 {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: vertical-rl;
  font-family: "NotoSerifJP-Bold.ttf";
  font-size: clamp(5.6rem, 5.4vw, 6.5rem);
  color: #0285c0;
}
.home main .section-consultation .consultation-wrap .text-area h2:before {
  content: "";
  position: absolute;
  top: 7em;
  right: 55%;
  background-color: #0285c0;
  width: 1px;
  height: 40%;
}
.home main .section-consultation .consultation-wrap .text-area h3 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  margin-bottom: 24px;
  margin-left: 32px;
}
.home main .section-consultation .consultation-wrap .text-area p {
  margin-left: 32px;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.home main .section-consultation .consultation-wrap .text-area .wrapper {
  margin-left: 32px;
}
.home main .section-consultation .consultation-wrap .text-area .wrapper dl {
  margin-top: 10px;
  line-height: 1.8;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.home main .section-consultation .consultation-wrap .text-area .wrapper dl dt {
  font-weight: 400;
}
.home main .section-consultation .consultation-wrap .text-area .wrapper dl dd {
  padding-left: 1em;
}
.home main .section-consultation .consultation-wrap .text-area .image-area {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home main .section-consultation .consultation-wrap .text-area .image-area {
    margin-left: 9.6%;
  }
}
.home main .section-career {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .home main .section-career {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .home main .section-career .image-area {
    margin-bottom: 40px;
  }
}
.home main .section-career .message-wrap .text-box h2 {
  position: relative;
}
.home main .section-career .message-wrap .text-box h2:before {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  background-color: #0285c0;
  height: 1px;
  width: calc(100% - 240px);
}
@media screen and (max-width: 768px) {
  .home main .section-career .message-wrap .text-box h2:before {
    width: calc(100% - 210px);
  }
}
.home main #pageTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .home main #pageTop {
    bottom: 20px;
    right: 20px;
  }
}
.home main #pageTop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #29abd6;
  position: relative;
  transition: all 0.3s;
}
.home main #pageTop a:hover {
  transform: scale(1.1);
  background-color: #0285c0;
}
.home main #pageTop a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(-45deg) translate(-20%, -50%);
  width: 15px;
  height: 15px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.page .main .section-mv {
  margin-top: 101px;
}
.page .main .section-mv h2 {
  margin-bottom: 60px;
  font-size: clamp(3.2rem, 3.3vw, 4rem);
  font-weight: normal;
}
.page .main .section-mv h2 .sub {
  display: inline-block;
  padding-left: 90px;
}
@media screen and (max-width: 768px) {
  .page .main .section-mv h2 .sub {
    display: block;
    padding: 20px 0 0;
  }
}
.page .main .section-about__message h2 {
  margin-bottom: 80px;
  padding-top: 90px;
  font-family: "NotoSerifJP-Light.ttf";
  line-height: 1.5;
  font-size: clamp(3.2rem, 4.5vw, 5.5rem);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .main .section-about__message h2 {
    margin-bottom: 60px;
    padding-top: 10%;
    font-size: clamp(2rem, 8vw, 5.5rem);
  }
}
.page .main .section-about__message h2:before {
  content: "SOLUTION";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(14rem, 12.9vw, 15.5rem);
  font-family: "NotoSerifJP-Light.ttf";
  color: #cbe6f2;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page .main .section-about__message h2:before {
    font-size: clamp(5rem, 16.5vw, 11rem);
  }
}
.page .main .section-about__message .image_area {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page .main .section-about__message .image_area {
    margin-bottom: 20px;
  }
}
.page .main .section-about__message .name-area {
  margin-bottom: 80px;
  text-align: right;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .page .main .section-about__message .name-area {
    margin-bottom: 60px;
  }
}
.page .main .section-about__message .message-area {
  max-width: 796px;
  margin-bottom: 80px;
  width: 100%;
}
.page .main .section-about__message .message-area h3 {
  margin-bottom: 40px;
  font-size: clamp(2rem, 2.3vw, 2.8rem);
}
.page .main .section-about__message .message-area p {
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  line-height: 1.7;
}
.page .main .section-about__message .message-area p .font-bold {
  font-weight: bold;
}
.page .main .section-about__profile {
  padding: 80px 40px;
  background-color: #ebf5fa;
}
@media screen and (max-width: 768px) {
  .page .main .section-about__profile {
    padding: 80px 0;
  }
}
.page .main .section-about__profile .profile-box,
.page .main .section-about__profile .history-box {
  max-width: 796px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .page .main .section-about__profile .profile-box,
  .page .main .section-about__profile .history-box {
    width: 100%;
    margin-bottom: 80px;
  }
}
.page .main .section-about__profile .profile-box h3,
.page .main .section-about__profile .history-box h3 {
  margin-bottom: 35px;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}
.page .main .section-about__profile .profile-box dl,
.page .main .section-about__profile .history-box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .page .main .section-about__profile .profile-box dl,
  .page .main .section-about__profile .history-box dl {
    margin-bottom: 35px;
  }
}
.page .main .section-about__profile .profile-box dl dt,
.page .main .section-about__profile .history-box dl dt {
  width: 12.5%;
  min-width: 132px;
  font-weight: normal;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .page .main .section-about__profile .profile-box dl dt,
  .page .main .section-about__profile .history-box dl dt {
    width: 100%;
    border-bottom: solid 1px #ccc;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
}
.page .main .section-about__profile .profile-box dl dd,
.page .main .section-about__profile .history-box dl dd {
  width: 76.3%;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .page .main .section-about__profile .profile-box dl dd,
  .page .main .section-about__profile .history-box dl dd {
    width: 100%;
  }
}
.page .main .section-about__map .map-area {
  width: 100%;
  padding-top: 32%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .main .section-about__map .map-area {
    padding-top: 62%;
  }
}
.page .main .section-about__map .map-area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page .main .section-service__menu {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__menu {
    padding-bottom: 0;
  }
}
.page .main .section-service__menu .image-area {
  margin-bottom: 14px;
}
.page .main .section-service__menu .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.page .main .section-service__menu .content-wrapper .container {
  width: 43.7%;
  padding-bottom: 40px;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__menu .content-wrapper .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page .main .section-service__menu .content-wrapper .container:last-of-type {
    margin-bottom: 0;
  }
}
.page .main .section-service__menu .content-wrapper .container h3 {
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: solid 2px #0285c0;
  font-size: clamp(1.6rem, 1.3vw, 2rem);
}
.page .main .section-service__menu .content-wrapper .container .support-list {
  margin-bottom: 40px;
}
.page .main .section-service__menu .content-wrapper .container .support-list .support-item {
  margin-bottom: 10px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.page .main .section-service__menu .content-wrapper .container .more-btn {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 0;
  max-width: 200px;
  width: 66%;
  text-align: center;
  background-color: #29abd6;
  color: #fff;
  transition: all 0.3s;
}
.page .main .section-service__menu .content-wrapper .container .more-btn:hover {
  background-color: #0285c0;
}
.page .main .section-service__mv {
  padding: 123px 0 108px;
  background-color: #29abd6;
  color: #fff;
}
.page .main .section-service__mv h2 {
  margin-bottom: 24px;
  font-size: clamp(4.5rem, 4.5vw, 5.5rem);
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__mv h2 {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }
}
.page .main .section-service__mv p {
  width: 50%;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__mv p {
    width: 100%;
  }
}
.page .main .section-service__about {
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__about {
    padding-bottom: 80px;
  }
}
.page .main .section-service__about .content-wrapper {
  margin-top: -57px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: solid 1px #cccccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.page .main .section-service__about .content-wrapper .image-area {
  width: 38%;
  min-width: 320px;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__about .content-wrapper .image-area {
    width: 100%;
    margin-bottom: 20px;
    min-width: unset;
  }
}
.page .main .section-service__about .content-wrapper p {
  width: 50%;
  color: #0285c0;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__about .content-wrapper p {
    width: 100%;
  }
}
.page .main .section-service__about .content-wrapper p .font-bold {
  font-weight: 600;
}
.page .main .section-service__about .service-menu h2 {
  margin-bottom: 35px;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}
.page .main .section-service__about .service-menu .content {
  margin-left: 40px;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  font-weight: bold;
  line-height: 1.7;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__about .service-menu .content {
    margin-left: 0;
  }
}
.page .main .section-service__about .service-menu .description {
  margin: 30px 0 30px 40px;
  font-size: clamp(1.2rem, 1.16vw, 1.4rem);
  line-height: 1.7;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__about .service-menu .description {
    margin: 30px 0;
    width: 100%;
  }
}
.page .main .section-service__about .service-menu .note {
  margin-left: 40px;
  font-size: clamp(1.2rem, 1.16vw, 1.4rem);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__about .service-menu .note {
    margin-left: 0;
  }
}
.page .main .section-service__fee {
  padding: 80px 0;
  background-color: #ebf5fa;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee {
    padding: 80px 0 60px;
  }
}
.page .main .section-service__fee h2 {
  margin-bottom: 60px;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}
.page .main .section-service__fee .content-wrapper {
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-wrapper {
    padding: 0;
  }
}
.page .main .section-service__fee .content-wrapper .content {
  padding: 40px 3% 60px;
  width: 47%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-wrapper .content {
    width: 100%;
    margin-bottom: 60px;
  }
}
.page .main .section-service__fee .content-wrapper .content h3 {
  margin-bottom: 20px;
  text-align: center;
  color: #0285c0;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}
.page .main .section-service__fee .content-wrapper .content .note {
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: solid 1px #0285c0;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  text-align: center;
  line-height: 1.5;
}
.page .main .section-service__fee .content-wrapper .content .note .font-small {
  display: block;
  font-size: clamp(1.2rem, 1.16vw, 1.4rem);
}
.page .main .section-service__fee .content-wrapper .content dl {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: clamp(1.2rem, 1.3vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-wrapper .content dl {
    font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  }
}
.page .main .section-service__fee .content-wrapper .content dl dt {
  width: 65%;
  font-weight: normal;
}
.page .main .section-service__fee .content-wrapper .content dl dd {
  width: 23%;
  text-align: right;
}
.page .main .section-service__fee .content-wrapper .content .memo {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 1.7;
}
.page .main .section-service__fee .content-box {
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: #fff;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box {
    margin: 0 0 80px;
    padding: 40px 3%;
  }
}
.page .main .section-service__fee .content-box .item {
  padding: 60px 3% 30px;
  width: 49%;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box .item {
    width: 100%;
    padding: 0;
  }
}
.page .main .section-service__fee .content-box .item .wrapper {
  padding-bottom: 30px;
}
.page .main .section-service__fee .content-box .item .wrapper h3 {
  font-size: clamp(1.2rem, 1.3vw, 1.6rem);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box .item .wrapper h3 {
    font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  }
}
.page .main .section-service__fee .content-box .item .wrapper dl {
  margin-left: 1em;
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
  font-size: clamp(1.2rem, 1.3vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box .item .wrapper dl {
    font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  }
}
.page .main .section-service__fee .content-box .item .wrapper dl dt {
  font-weight: normal;
  width: 66%;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box .item .wrapper dl dt {
    width: 80%;
  }
}
.page .main .section-service__fee .content-box .item .wrapper dl dd {
  width: 34%;
}
.page .main .section-service__fee .content-box .item .wrapper .first {
  margin: 0;
  font-weight: bold;
}
.page .main .section-service__fee .content-box .item .wrapper .first dt {
  font-weight: bold;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box .item .wrapper .first dt {
    width: 80%;
  }
}
.page .main .section-service__fee .content-box .item .wrapper .special.first dt {
  width: 65.5%;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box .item .wrapper .special.first dt {
    width: 74%;
  }
}
.page .main .section-service__fee .content-box .item .wrapper p {
  margin-left: 1em;
  margin-top: 25px;
  font-size: clamp(1.2rem, 1.3vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box .item .wrapper p {
    font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  }
}
.page .main .section-service__fee .content-box .item .wrapper h4 {
  margin-left: 1em;
  margin-top: 25px;
  font-weight: bold;
}
.page .main .section-service__fee .content-box .item .wrapper .last {
  margin-left: 3em;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box .item .wrapper .last {
    margin-left: 1em;
  }
}
.page .main .section-service__fee .content-box .item .wrapper .last dt {
  width: 64%;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box .item .wrapper .last dt {
    width: 80%;
  }
}
.page .main .section-service__fee .content-box .item .wrapper .last.special {
  margin-left: 1em;
}
.page .main .section-service__fee .content-box .item .wrapper .last.special dt {
  width: 65.5%;
}
@media screen and (max-width: 768px) {
  .page .main .section-service__fee .content-box .item .wrapper .last.special dt {
    width: 68.5%;
  }
}
.page .main .section-company__profile ul {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page .main .section-company__profile ul {
    padding: 0;
  }
}
.page .main .section-company__profile ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.page .main .section-company__profile ul li h4 {
  width: 24%;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page .main .section-company__profile ul li h4 {
    width: 100%;
    padding-bottom: 10px;
  }
}
.page .main .section-company__profile ul li .text {
  width: 76%;
  padding-bottom: 30px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page .main .section-company__profile ul li .text {
    width: 100%;
    padding-left: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-left: none;
    border-bottom: solid 1px #ccc;
  }
}
.page .main .section-company__profile ul li .btn-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page .main .section-company__profile ul li .btn-wrap {
    justify-content: center;
  }
}
.page .main .section-company__profile ul li .btn-area {
  display: inline-block;
  text-align: center;
  padding: 8px 60px;
  color: #fff;
  background-color: #06b401;
  border-radius: 50px;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}
@media screen and (max-width: 768px) {
  .page .main .section-company__profile ul li .btn-area {
    margin: 0 auto;
    padding: 5px 60px;
    font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  }
}
.page .main .section-blog__list ul {
  padding-bottom: 160px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page .main .section-blog__list ul {
    padding-bottom: 40px;
  }
}
.page .main .section-blog__list ul li {
  margin-bottom: 40px;
  width: 30%;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  margin-right: 5%;
}
.page .main .section-blog__list ul li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .page .main .section-blog__list ul li {
    width: 100%;
  }
}
.page .main .section-blog__list ul li a .image-area {
  display: block;
  margin-bottom: 12px;
  max-height: 188px;
  overflow: hidden;
}
.page .main .section-blog__list ul li a .image-area img {
  -o-object-fit: cover;
     object-fit: cover;
}
.page .main .section-blog__list ul li a .date-wrap {
  display: flex;
  align-items: center;
}
.page .main .section-blog__list ul li a .category {
  display: inline-block;
  padding: 6px 10px 4px;
  margin-left: 20px;
  font-size: 1.2rem;
  border: solid 1px #333;
}
.page .main .section-blog__list ul li a .title {
  display: block;
  margin-top: 12px;
  color: #0285c0;
  text-decoration: underline;
  line-height: 1.7;
}
.page .main .section-blog__item {
  padding-top: 200px;
  max-width: 800px;
  margin: 0 auto 160px;
}
@media screen and (max-width: 768px) {
  .page .main .section-blog__item {
    margin-bottom: 0;
  }
}
.page .main .section-blog__item h2 {
  margin-bottom: 16px;
  padding-bottom: 24px;
  border-bottom: solid 1px #cccccc;
  line-height: 1.7;
  font-size: clamp(2.4rem, 2.6vw, 3.2rem);
}
.page .main .section-blog__item .date-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.page .main .section-blog__item .date-wrap .category {
  display: inline-block;
  padding: 6px 10px 4px;
  margin-left: 20px;
  font-size: 1.2rem;
  border: solid 1px #333;
}
.page .main .section-blog__item .image-area {
  margin-bottom: 40px;
}
.page .main .section-blog__item p {
  line-height: 1.7;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
.page .main .section-contact__form {
  padding: 200px 0 160px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .main .section-contact__form {
    padding: 200px 0 0;
  }
}
.page .main .section-contact__form h2 {
  margin-bottom: 40px;
  font-size: clamp(2.4rem, 2.6vw, 3.2rem);
}
.page .main .section-contact__form .message {
  margin-bottom: 40px;
  line-height: 1.7;
}
.page .main .section-contact__form .btn-area a {
  text-align: center;
  color: #0285c0;
  text-decoration: underline;
  font-weight: clamp(1.4rem, 1.3vw, 1.6rem);
  margin-top: 24px;
}
.page .main .section-policy {
  max-width: 800px;
  margin: 200px auto 160px;
}
.page .main .section-policy h2 {
  margin-bottom: 60px;
  font-size: clamp(2.4rem, 2.6vw, 3.2rem);
}
.page .main .section-policy .content {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  line-height: 1.7;
  margin-top: 30px;
}
.page .main .section-policy .content .list {
  display: block;
  padding-left: 2.5em;
  text-indent: -2.5em;
}
.page .main .section-policy h3 {
  margin: 80px 0 60px;
  font-size: clamp(2rem, 2.3vw, 2.8rem);
}
.page .main .section-policy .description {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  line-height: 1.7;
}
.page .service_mb {
  margin-bottom: 24px;
}
.page .section-previous-next {
  padding-top: 88px;
}
.page .section-previous-next .previous-next__wrap {
  padding-top: 32px;
  border-top: solid 1px #0285c0;
  display: flex;
  justify-content: space-between;
  font-size: clamp(1.2rem, 1.3vw, 1.6rem);
}

.company .section-policy_wrap {
  line-height: 1.6;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .company .section-policy_wrap {
    padding-bottom: 40px;
  }
}
.company .section-policy_wrap .text {
  width: 69%;
  padding-bottom: 30px;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .company .section-policy_wrap .text {
    width: 100%;
  }
}
.company .border_blue {
  padding-right: 10%;
  border-bottom: solid 1px #0285c0;
  display: inline-block;
}/*# sourceMappingURL=page.css.map */