@charset "UTF-8";
* {
  font-family: "Noto Sans JP", sans-serif !important;
  color: #333;
}

html, body {
  overflow-x: hidden;
}

.slider {
  opacity: 0;
}

.slider.slick-initialized {
  opacity: 1;
  transition: opacity 0.3s ease;
}

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

.pc-only {
  display: none !important;
}

@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: block !important;
  }
}
.section {
  width: 90%;
  margin: 0 auto;
  max-width: 500px;
}
.section .section-title .h2-title h2 {
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(90deg, #385aaa, #5cb1ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section .section-title .h2-title p {
  font-size: 14px;
  margin-top: 5px;
}
.section .section-title .title-text {
  font-size: 16px;
  line-height: 25px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .section {
    width: 75%;
    max-width: 1200px;
  }
  .section .section-title {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) and (min-width: 1350px) {
  .section .section-title {
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .section .section-title .h2-title h2 {
    font-size: 80px;
    line-height: 80px;
    margin-right: 60px;
  }
  .section .section-title .h2-title p {
    font-size: 23px;
    margin-top: 7px;
  }
  .section .section-title .title-text {
    font-size: 16px;
    line-height: 25px;
    margin-top: 5px;
  }
}
.cta-btn {
  text-align: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: block;
  background-image: linear-gradient(90deg, #385aaa, #5cb1ff);
  padding: 20px 0;
  box-sizing: border-box;
  width: 90%;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

.cta-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/arrow.webp");
  background-size: 100%;
  width: 33px;
  height: 4px;
}

.cta-btn:hover {
  transition: all 0.3s;
  opacity: 0.8;
}

.header-section {
  background: #fff;
  padding: 20px 20px 20px 10px;
  height: 70px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.header-section .header-logo {
  width: 180px;
}
.header-section .header-nav {
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, #385aaa, #5cb1ff);
  display: none;
  padding-top: 77px;
  padding-bottom: 60px;
  box-sizing: border-box;
}
.header-section .header-nav .nav-link-text {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  position: relative;
}
.header-section .header-nav li {
  margin-bottom: 25px;
  width: 80%;
  margin: 0 auto;
  padding: 15px 8px;
  border-bottom: 1px solid #E1E1E1;
  max-width: 300px;
}
.header-section .header-nav li:first-of-type {
  border-top: 1px solid #E1E1E1;
}
.header-section .header-nav .nav-link-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header-section .header-nav .nav-link-text:hover::after {
  transform: scale(1, 1);
}
.header-section .open-active {
  display: block;
}
.header-section .cv-content {
  text-align: center;
  background: #F69C00;
  padding: 18px 0;
  box-sizing: border-box;
  width: 80%;
  max-width: 300px;
  margin: 40px auto 0 auto;
  border-radius: 6px;
  position: relative;
}
.header-section .cv-content a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.header-section .cv-content:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
.header-section .cv-content::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../images/arrow.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 33px;
  height: 4px;
}

@media (min-width: 1400px) {
  .header-section {
    padding: 25px 40px;
    height: 98px;
  }
  .header-section .header-logo {
    width: 232px;
    margin-right: 10px;
  }
  .header-section .header-nav {
    display: flex !important;
    background: transparent !important;
    position: initial !important;
    height: initial !important;
    width: initial !important;
    padding: 0;
    overflow: initial;
  }
  .header-section .header-nav li,
  .header-section .header-nav li:first-of-type {
    padding: 0;
    border: none;
    width: initial;
  }
  .header-section .header-nav li {
    margin-top: 8px;
    margin-right: 20px;
  }
  .header-section .header-nav .nav-link-text {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 18px;
    margin: 0;
    display: block;
    position: relative;
  }
  .header-section .header-nav .cv-content {
    width: 238px;
    margin-top: 0;
    height: 58px;
  }
  .header-section .header-nav .nav-link-text::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  .header-section .header-nav .nav-link-text:hover::after {
    transform: scale(1, 1);
  }
}
@media (min-width: 1400px) {
  .header-section {
    max-width: 1500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.open-menu .openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 5px;
}
.open-menu {
  /*ボタン内側*/
}
.open-menu .openbtn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  height: 3px;
  background: #105CA7;
  width: 100%;
}
.open-menu .openbtn1 span:nth-of-type(1) {
  top: 2px;
}
.open-menu .openbtn1 span:nth-of-type(2) {
  top: 12px;
}
.open-menu .openbtn1 span:nth-of-type(3) {
  top: 22px;
}
.open-menu {
  /*activeクラスが付与されると線が回転して×に*/
}
.open-menu .openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: -16px;
  transform: translateY(6px) rotate(-45deg);
  width: 40px;
  background: #fff;
}
.open-menu .openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.open-menu .openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: -16px;
  transform: translateY(-6px) rotate(45deg);
  width: 40px;
  background: #fff;
}

@media (min-width: 1400px) {
  .open-menu {
    display: none;
  }
}
.fv-section2 {
  padding-top: 70px;
  margin: 40px auto 0 auto;
}
.fv-section2 .inner .page-title {
  width: 90%;
  margin: 0 auto;
}
.fv-section2 .inner .page-title h1 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
  background: linear-gradient(90deg, #385aaa, #5cb1ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.fv-section2 .inner .page-title p {
  font-size: 14px;
}
.fv-section2 .inner img {
  width: 95%;
  display: block;
  margin: 50px 0 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 300px;
}

@media (min-width: 768px) {
  .fv-section2 {
    padding-top: 98px;
    margin-top: 50px;
    max-width: 1400px;
  }
  .fv-section2 .inner .page-title h1 {
    font-size: 80px;
    line-height: 80px;
  }
  .fv-section2 .inner .page-title p {
    margin-top: 10px;
    font-size: 23px;
    line-height: 23px;
  }
  .fv-section2 .inner img {
    max-height: 320px;
  }
}
.entry-inner {
  margin-top: 80px;
  padding: 80px 0;
  box-sizing: border-box;
  background: url("../images/entry_bg_sp.webp");
}
.entry-inner .entry-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 30px 10px;
}
.entry-inner .entry-section .container .title h2 {
  background: linear-gradient(90deg, #385aaa, #5cb1ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  line-height: 80px;
  font-weight: 600;
}
.entry-inner .entry-section .container .title span {
  font-size: 16px;
}
.entry-inner .entry-section .container .text h3 {
  color: #385AAA;
  font-size: clamp(0px, 6vw, 30px);
  font-weight: 700;
  line-height: 160%;
  margin: 30px 0 15px 0;
}
.entry-inner .entry-section .container .text p {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
}
.entry-inner .cta-btn {
  margin-top: 20px;
  background: #F69C00 !important;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .entry-inner {
    margin-top: 120px;
    padding: 130px 0;
    background: url("../images/entry_bg_pc.webp");
  }
  .entry-inner .entry-section {
    text-align: left;
    padding: 0;
    width: 79%;
  }
  .entry-inner .entry-section .container {
    display: flex;
    justify-content: space-between;
    padding: 33px 40px;
  }
  .entry-inner .entry-section .container .title {
    margin-right: 8%;
  }
  .entry-inner .entry-section .container .title h2 {
    font-size: 86px;
    line-height: 80px;
  }
  .entry-inner .entry-section .container .title span {
    font-size: 16px;
    display: block;
    margin-top: 6px;
    margin-left: 6px;
  }
  .entry-inner .entry-section .container .text h3 {
    font-size: 26px;
    line-height: 35px;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .entry-inner .cta-btn {
    width: 100%;
    width: 315px;
  }
}
.company-section .company-inner {
  color: #fff;
}
.company-section .company-inner .g-map iframe {
  width: 100%;
  height: 536px;
}
.company-section .company-inner .company-container {
  background: linear-gradient(to right, #385AAA, #5CB1FF);
  padding: 40px 0;
}
.company-section .company-inner .section-title {
  width: 90%;
  margin: 0 auto 40px auto;
  max-width: 500px;
}
.company-section .company-inner .section-title .section-title2 span {
  font-size: 34px;
  color: #fff;
}
.company-section .company-inner .section-title span span {
  color: #fff;
}
.company-section .company-inner .section-title1 span::after {
  background: #fff;
}
.company-section .company-inner .content {
  width: 90%;
  margin: 0 auto 20px auto;
  max-width: 500px;
}
.company-section .company-inner .content h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 10px;
  color: #fff !important;
}
.company-section .company-inner .content h3::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 25px;
  background: #fff;
  margin-right: 10px;
  vertical-align: middle;
}
.company-section .company-inner .content p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 10px;
  color: #fff !important;
}
.company-section .company-inner .content .tel {
  font-size: 30px;
  font-weight: 700;
}
.company-section .company-inner .content .tel span {
  color: #fff !important;
  font-size: 16px;
  line-height: 25px;
}

@media (min-width: 768px) {
  .company-section .company-inner {
    display: flex;
    padding-bottom: 0;
  }
  .company-section .company-inner .g-map {
    width: 50%;
  }
  .company-section .company-inner .g-map iframe {
    height: 100%;
  }
  .company-section .company-inner .section-title {
    max-width: 1400px;
    width: 80%;
  }
  .company-section .company-inner .section-title .section-title2 span {
    font-size: 62px;
  }
  .company-section .company-inner .company-container {
    width: 50%;
    padding: 70px 0;
  }
  .company-section .company-inner .content {
    max-width: 1400px;
    width: 80%;
  }
}
.footer-section {
  padding: 40px 0;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
}
.footer-section .company p {
  font-size: 16px;
  line-height: 20px;
}
.footer-section .company img {
  width: 201px;
  margin-bottom: 20px;
}
.footer-section .company .address a {
  margin: 10px 0;
  font-size: 16px;
  display: block;
}
.footer-section .company .address a::before {
  content: "";
  display: inline-block;
  background: url("../images/pin.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  position: relative;
  top: 1px;
}
.footer-section .company .tel {
  margin-bottom: 15px;
}
.footer-section span {
  margin: 40px auto 0 auto;
  display: block;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-section {
    max-width: 1500px;
    width: 90%;
    padding-top: 80px;
  }
  .footer-section .company img {
    width: 238px;
  }
  .footer-section .company .flex {
    display: flex;
    justify-content: space-between;
  }
  .footer-section .company .flex .menu-list {
    display: flex !important;
  }
  .footer-section .company .flex .menu-list li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-right: 20px;
  }
  .footer-section .company .flex .menu-list li a:hover {
    transition: all;
    opacity: 0.8;
  }
  .footer-section .company .container .address .address_text {
    display: flex;
  }
  .footer-section .company .container .address a {
    margin: 0;
    margin-left: 20px;
  }
  .footer-section .company .container .address .tel {
    margin: 8px 0 24px 0;
  }
  .footer-section span {
    margin-top: 60px;
    font-size: 15px;
    line-height: 25px;
  }
}/*# sourceMappingURL=style.css.map */