@charset "UTF-8";
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  list-style-type: none;
  padding: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  list-style-type: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(1.4rem, -3.833rem + 8.33vw, 1.5rem);
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
}

a {
  text-decoration: none;
  outline: none;
  color: #2a2a2a;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.cont-wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}

.p-header-wrap {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 auto;
  background-color: #fafafa;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.p-header-wrap .f-nav {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px;
  align-items: center;
}
.p-header-wrap .f-nav .logo {
  width: 260px;
  z-index: 999;
}
@media (max-width: 768px) {
  .p-header-wrap .f-nav .logo {
    width: 230px;
  }
}
@media (max-width: 480px) {
  .p-header-wrap .f-nav .logo {
    width: 200px;
  }
}
.p-header-wrap .f-nav .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.p-header-wrap .f-nav .nav-menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .p-header-wrap .f-nav .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 60px;
    background-color: rgba(255, 255, 255, 0.94);
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.p-header-wrap .f-nav .nav-menu ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .p-header-wrap .f-nav .nav-menu ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin: 0 auto 2.5em;
  }
}
.p-header-wrap .f-nav .nav-menu ul li {
  margin-right: 1.5em;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .p-header-wrap .f-nav .nav-menu ul li {
    font-size: 2.2vw;
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .p-header-wrap .f-nav .nav-menu ul li {
    font-size: 3.2vw;
  }
}
@media (max-width: 480px) {
  .p-header-wrap .f-nav .nav-menu ul li {
    font-size: 4.1vw;
  }
}
@media (max-width: 1024px) {
  .p-header-wrap .f-nav .nav-menu ul li:first-child {
    border-top: 1px solid rgba(34, 34, 34, 0.2);
  }
}
@media (max-width: 1024px) {
  .p-header-wrap .f-nav .nav-menu ul li a {
    display: block;
    padding: 1.5em 0;
  }
}
@media (max-width: 1024px) {
  .p-header-wrap .f-nav .nav-menu .nav-c-btn {
    width: 94%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .p-header-wrap .f-nav .nav-menu .nav-c-btn {
    width: 90%;
  }
}
.p-header-wrap .f-nav .nav-menu .nav-c-btn a {
  max-width: 100%;
  justify-content: center;
  padding: 1em 3.5em;
}
@media (max-width: 768px) {
  .p-header-wrap .f-nav .nav-menu .nav-c-btn a {
    padding: 1em;
  }
}
.p-header-wrap .f-nav .hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .p-header-wrap .f-nav .hamburger {
    display: block;
    position: absolute;
    right: 15px;
    width: 40px;
    /* クリックしやすい幅 */
    height: 40px;
    /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .p-header-wrap .f-nav .hamburger .hamburger_border {
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    background-color: #333;
    transition: all 0.6s;
  }
  .p-header-wrap .f-nav .hamburger .hamburger_border:nth-child(1) {
    top: 12px;
  }
  .p-header-wrap .f-nav .hamburger .hamburger_border:nth-child(2) {
    top: 20px;
  }
  .p-header-wrap .f-nav .hamburger .hamburger_border:nth-child(3) {
    top: 28px;
  }
}
.p-header-wrap .f-nav .black_bg {
  display: none;
}
@media (max-width: 1024px) {
  .p-header-wrap .f-nav .black_bg {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }
}

.nav-open .p-header-wrap .nav-menu {
  right: 0;
}
.nav-open .p-header-wrap .f-nav .hamburger_border:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.nav-open .p-header-wrap .f-nav .hamburger_border:nth-child(2) {
  width: 0;
  left: 50%;
}
.nav-open .p-header-wrap .f-nav .hamburger_border:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.twentytwenty01 {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.cont-wrapper section {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .cont-wrapper section {
    margin-bottom: 70px;
  }
}
@media (max-width: 480px) {
  .cont-wrapper section {
    margin-bottom: 50px;
  }
}
.cont-wrapper .sub-h3 {
  margin-bottom: 1.5em;
  color: #00488B;
  font-size: clamp(2.2rem, 2.018rem + 0.91vw, 2.5rem);
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .cont-wrapper .sub-h3 {
    font-size: 2.1rem;
  }
}
@media (max-width: 480px) {
  .cont-wrapper .sub-h3 {
    font-size: 1.75rem;
  }
}
.cont-wrapper .sub-h3 span {
  color: #2a2a2a;
}
.cont-wrapper .content .sec-headline {
  text-align: center;
  margin-bottom: 4.5em;
}
@media (max-width: 768px) {
  .cont-wrapper .content .sec-headline {
    margin-bottom: 4em;
  }
}
@media (max-width: 480px) {
  .cont-wrapper .content .sec-headline {
    margin-bottom: 3em;
  }
}
.cont-wrapper .content .sec-headline h2 {
  color: #00488B;
  font-size: clamp(3.375rem, -0.037rem + 5.88vw, 4.375rem);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cont-wrapper .content .sec-headline h2 {
    font-size: clamp(2.6rem, 2.171rem + 2.14vw, 3.2rem);
  }
}
.cont-wrapper .content .sec-headline h3 {
  color: #2a2a2a;
  font-size: clamp(1.4rem, 0.035rem + 2.35vw, 1.8rem);
}
.cont-wrapper .content .scene-cau {
  color: #454545;
  text-align: center;
}
.cont-wrapper .contact-bg {
  margin: 0 calc(50% - 50vw);
  background: linear-gradient(320deg, rgb(0, 72, 139) 94%, rgb(46, 105, 160) 94%);
}
.cont-wrapper .cont-bg-gray {
  background-color: #F7F7F7;
  padding: 5em 0;
}
.cont-wrapper .cont-bg-blue {
  background-color: #EEF3F9;
  padding: 5em 0;
}
@media (max-width: 768px) {
  .cont-wrapper .cont-bg-blue.last {
    padding: 5em 0 1em;
  }
}
.cont-wrapper .cont-bg-problem {
  position: relative;
  margin: 0 calc(50% - 50vw);
  background-color: #EEF3F9;
  padding: 3em 0;
}
@media (max-width: 480px) {
  .cont-wrapper .cont-bg-problem {
    padding: 4em 0;
  }
}
.cont-wrapper .cont-bg-problem::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 30px solid #EEF3F9;
}
.cont-wrapper .contact-wrap {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .cont-wrapper .contact-wrap {
    padding: 35px 0;
  }
}
.cont-wrapper .contact-wrap p {
  color: #F6FF00;
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 0.75em;
}

@media (max-width: 768px) {
  .sec-cont {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .sec-cont {
    padding: 0 10px;
  }
}

/* problem */
.sec-cont.problem ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1em;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 5em;
  padding: 0 1em;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .sec-cont.problem ul {
    padding: 0;
    gap: 1.5em;
  }
}
.sec-cont.problem li {
  position: relative;
  padding: 1.5em 1em;
  color: #5d5d5d;
  font-size: 1.5rem;
  font-weight: bold;
  border: solid 8px #f0f0f0;
  border-radius: 5px;
  background-color: #ffffff;
}
@media (max-width: 480px) {
  .sec-cont.problem li {
    font-size: 1.5rem;
  }
}
.sec-cont.problem li .problem-box-icon {
  width: 85%;
  min-width: 100px;
  margin: 0 auto 1em;
}
@media (max-width: 768px) {
  .sec-cont.problem li .problem-box-icon {
    width: 60%;
  }
}
.sec-cont.problem li .problem-box-icon img {
  margin: 0 auto;
}
.sec-cont.problem li .problem-box-text {
  line-height: 1.55em;
}

.sub-h3.problem {
  position: relative;
}
.sub-h3.problem::before {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-right: 75px solid transparent;
  border-left: 75px solid transparent;
  border-top: 80px solid #F6FF00;
  z-index: -1;
}

/* about */
.sec-cont.about .about-c-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-rows: minmax(240px, auto);
  gap: 1em;
  width: 100%;
}
@media (max-width: 768px) {
  .sec-cont.about .about-c-wrap {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.sec-cont.about .about-c-wrap li {
  width: 100%;
  margin: 0 auto;
  padding: 2.5em 1.5em;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 3px 5px 8px -3px rgba(83, 83, 83, 0.2);
}
.sec-cont.about .about-c-wrap li .icon {
  margin-bottom: 1em;
  padding: 1em 0;
  background-color: #EEF3F9;
}
.sec-cont.about .about-c-wrap li img {
  width: 100%;
  max-width: 100px;
  margin: 0 auto;
}
.sec-cont.about .about-c-wrap li h4 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.7rem;
}

/* sample */
.sec-cont.sample .sample-slider {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 6em;
}
.sec-cont.sample .sample-slider .slider .slick-slide {
  width: 600px;
  height: auto;
  margin: 0 40px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec-cont.sample .sample-slider .slider .slick-slide {
    margin: 0 20px;
  }
}
@media (max-width: 480px) {
  .sec-cont.sample .sample-slider .slider .slick-slide {
    margin: 0 10px;
  }
}
.sec-cont.sample .sample-slider .slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-cont.sample .sample-slider .slider .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #00488B;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
@media (max-width: 768px) {
  .sec-cont.sample .sample-slider .slider .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
.sec-cont.sample .sample-slider .slider .slick-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #ffffff;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .sec-cont.sample .sample-slider .slider .slick-arrow::before {
    top: 14px;
  }
}
.sec-cont.sample .sample-slider .slider .slick-next {
  right: 0px;
}
.sec-cont.sample .sample-slider .slider .slick-prev {
  left: 0px;
}
.sec-cont.sample .sample-slider .slider .slick-next::before {
  left: 20px;
}
@media (max-width: 768px) {
  .sec-cont.sample .sample-slider .slider .slick-next::before {
    left: 12px;
  }
}
.sec-cont.sample .sample-slider .slider .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}
@media (max-width: 768px) {
  .sec-cont.sample .sample-slider .slider .slick-prev::before {
    left: 14px;
  }
}
.sec-cont.sample .sample-slider .slick-dots li button:before {
  font-size: 6.5rem;
}
.sec-cont.sample .embed-container {
  position: relative;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 94%;
}
.sec-cont.sample .embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec-cont.sample .embed-container .clickToRead {
  display: none !important;
}
.sec-cont.sample .flip-txt {
  margin: 0 auto;
  text-align: center;
  color: #3b3b3b;
  font-weight: 500;
}

/* plan */
.sec-cont.plan .plan-wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .sec-cont.plan .plan-wrap {
    flex-direction: column;
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .sec-cont.plan .plan-wrap {
    padding: 0 10px;
  }
}
.sec-cont.plan .plan-wrap > li {
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - 15px);
  background-color: #ffffff;
  border: solid 1px #00488B;
}
@media (max-width: 768px) {
  .sec-cont.plan .plan-wrap > li {
    width: 100%;
    margin-bottom: 2em;
  }
}
@media (max-width: 768px) {
  .sec-cont.plan .plan-wrap > li:last-child {
    margin-bottom: 0;
  }
}
.sec-cont.plan .plan-wrap h4 {
  display: block;
  width: 100%;
  padding: 0.5em 1em;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background-color: #00488B;
}
.sec-cont.plan .plan-wrap .plan-inner-wrap {
  padding: 2em 1.5em 0;
}
.sec-cont.plan .plan-wrap .price_txt {
  margin-bottom: 0.75em;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .sec-cont.plan .plan-wrap .price_txt {
    font-size: 1.7rem;
  }
}
.sec-cont.plan .plan-wrap .price_txt span {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .sec-cont.plan .plan-wrap .price_txt span {
    font-size: 2.6rem;
  }
}
@media (max-width: 480px) {
  .sec-cont.plan .plan-wrap .price_txt span {
    font-size: 2.2rem;
  }
}
.sec-cont.plan .plan-wrap .check-orange li {
  position: relative;
  margin-bottom: 1em;
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 1.75em;
}
.sec-cont.plan .plan-wrap .check-orange li:last-child {
  margin-bottom: 1.5em;
}
.sec-cont.plan .plan-wrap .check-orange li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/check_orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
.sec-cont.plan .plan-wrap .s-txt {
  margin-bottom: 1.25em;
  font-size: 1.9rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .sec-cont.plan .plan-wrap .s-txt {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .sec-cont.plan .plan-wrap .s-txt {
    font-size: 1.55rem;
  }
}
.sec-cont.plan .plan-wrap .suggest {
  height: calc(180px + 1.5vh);
  margin-top: auto;
  padding: 0 1.5em 2em;
}
@media (max-width: 768px) {
  .sec-cont.plan .plan-wrap .suggest {
    height: auto;
  }
}
.sec-cont.plan .plan-wrap .suggest p {
  margin-bottom: 1em;
  padding-bottom: 0.75em;
  font-weight: bold;
  text-align: center;
  border-bottom: solid 1.5px #2a2a2a;
}
.sec-cont.plan .plan-wrap .suggest ul {
  list-style: disc;
}
.sec-cont.plan .plan-wrap .suggest ul li {
  margin-left: 1em;
  margin-bottom: 1em;
}
.sec-cont.plan .plan-wrap .suggest ul li:last-child {
  margin-bottom: 0;
}

/* FV */
.fv-top {
  position: relative;
  background: rgb(247, 249, 251);
  background-image: url("../img/top-fv-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.fv-top .top-bg-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv-top .top-bg-triangle.triangle01 {
  background: linear-gradient(315deg, rgba(247, 249, 251, 0) 65%, rgba(228, 236, 242, 0.3) 65%);
  mix-blend-mode: multiply;
}
.fv-top .top-bg-triangle.triangle02 {
  background: linear-gradient(315deg, rgba(196, 172, 111, 0.55) 10%, rgba(228, 236, 242, 0) 10%);
  mix-blend-mode: multiply;
}
.fv-top .title-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 500px;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .fv-top .title-wrap {
    height: 400px;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .fv-top .title-wrap {
    height: auto;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .fv-top .title-wrap {
    padding: 0 10px;
  }
}
.fv-top .title-wrap .fv-left {
  width: 40%;
  z-index: 1;
}
@media (max-width: 768px) {
  .fv-top .title-wrap .fv-left {
    width: 90%;
    min-width: 310px;
    margin: 0 auto;
    padding: 20px 10px;
    text-align: center;
  }
}
.fv-top .title-wrap .fv-left .left-logo {
  width: 100%;
  margin: 0 auto 2.5rem;
  padding: 3.5em 0.5em;
  background: rgba(46, 63, 132, 0.89);
}
.fv-top .title-wrap .fv-left h1 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .fv-top .title-wrap .fv-left h1 {
    font-size: 2rem;
    text-align: center;
  }
}
.fv-top .title-wrap .fv-left .nandemoscan-logo {
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .fv-top .title-wrap .fv-left .nandemoscan-logo {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .fv-top .title-wrap .fv-left .nandemoscan-logo {
    padding: 0;
  }
}
.fv-top .title-wrap .fv-left .nandemoscan-logo img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.fv-top .title-wrap .fv-img {
  position: absolute;
  bottom: -150px;
  right: -180px;
  width: 60%;
}
@media (max-width: 1024px) {
  .fv-top .title-wrap .fv-img {
    bottom: -40px;
    right: -150px;
  }
}
@media (max-width: 768px) {
  .fv-top .title-wrap .fv-img {
    display: none;
  }
}

/* PRICE */
.sec-cont .price-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1em;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .sec-cont .price-wrap {
    flex-wrap: wrap;
  }
}
.sec-cont .price-wrap .price-cont {
  width: 49%;
  padding: 1.25em;
  background: #eef3f9;
  border: solid 2px rgba(13, 51, 123, 0.11);
  border-radius: 5px;
}
@media (max-width: 928px) {
  .sec-cont .price-wrap .price-cont {
    width: 48%;
  }
}
@media (max-width: 768px) {
  .sec-cont .price-wrap .price-cont {
    width: 100%;
  }
}
.sec-cont .price-wrap .price-about {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1em 1.6em;
  height: 100%;
}
.sec-cont .price-wrap .price-book {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45%;
  height: 100%;
  padding: 0 1em;
  background: #ffffff;
}
.sec-cont .price-wrap .price-book .icon {
  margin: 0 auto 0.5em;
  color: #00488B;
  text-align: center;
}
.sec-cont .price-wrap .price-book .icon img {
  width: 80%;
  margin: 0 auto;
}
.sec-cont .price-wrap .price-book .icon p {
  font-size: 1.75rem;
  font-weight: bold;
}
.sec-cont .price-wrap .price-book .price {
  font-size: 1.9rem;
  font-weight: bold;
  color: #eb4444;
}

.sec-cont.flow .flow-step {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .sec-cont.flow .flow-step {
    flex-direction: column;
    gap: 2em;
  }
}
.sec-cont.flow .flow-step li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18.5%;
  padding: 1.5em 1em;
  text-align: center;
  background: #ffffff;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .sec-cont.flow .flow-step li {
    width: initial;
    flex-direction: row;
    gap: 1em;
  }
}
.sec-cont.flow .flow-step li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid #cfe2fa;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
}
@media (max-width: 768px) {
  .sec-cont.flow .flow-step li::after {
    top: initial;
    bottom: -40px;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 20px solid #cfe2fa;
    border-bottom: 20px solid transparent;
  }
}
.sec-cont.flow .flow-step li:last-child::after {
  display: none;
}
.sec-cont.flow .flow-step li img {
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .sec-cont.flow .flow-step li img {
    margin-bottom: 0;
  }
}
.sec-cont.flow .flow-step li p {
  font-size: 1.6rem;
  font-weight: bold;
}

/* scene */
.sec-cont .scene-icon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 90%;
  padding: 0em 2em 2em;
  margin: 0 auto;
  gap: 1em;
}
@media (max-width: 768px) {
  .sec-cont .scene-icon {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .sec-cont .scene-icon {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.sec-cont .scene-icon li {
  flex-shrink: 0;
}
.sec-cont .scene-icon li img {
  margin: 0 auto;
}
.sec-cont.scene .scene-cau {
  text-align: center;
}

/* faq */
.sec-cont.faq .faq-wrap {
  width: 100%;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .sec-cont.faq .faq-wrap {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .sec-cont.faq .faq-wrap {
    padding: 0 10px;
  }
}
.sec-cont.faq .faq-wrap li {
  color: #2a2a2a;
  background: #ffffff;
  margin-bottom: 1.75em;
}
.sec-cont.faq .faq-wrap li:last-child {
  margin-bottom: 0;
}
.sec-cont.faq .faq-wrap .show-faq .question {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem 1.5rem 6rem;
  font-size: 1.75rem;
  font-weight: bold;
  border: solid 1.5px #a8a8a8;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .sec-cont.faq .faq-wrap .show-faq .question {
    padding: 1.5rem 6.5rem 1.5rem 6rem;
    font-size: 1.5rem;
  }
}
.sec-cont.faq .faq-wrap .show-faq .question::before, .sec-cont.faq .faq-wrap .show-faq .question::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  background-color: #a8a8a8;
  transition: all 0.3s;
}
.sec-cont.faq .faq-wrap .show-faq .question::before {
  top: 48%;
  right: 30px;
  transform: rotate(0deg);
}
.sec-cont.faq .faq-wrap .show-faq .question::after {
  top: 48%;
  right: 30px;
  transform: rotate(90deg);
}
.sec-cont.faq .faq-wrap .show-faq .question.close::before {
  transform: rotate(45deg);
}
.sec-cont.faq .faq-wrap .show-faq .question.close::after {
  transform: rotate(-45deg);
}
.sec-cont.faq .faq-wrap .show-faq .question span {
  position: relative;
}
.sec-cont.faq .faq-wrap .show-faq .question span::before {
  content: "Q.";
  position: absolute;
  top: 50%;
  left: -3.75rem;
  transform: translateY(-50%);
  font-size: 2rem;
}
.sec-cont.faq .faq-wrap .hide-faq {
  display: none;
  padding: 1.5rem 2rem 1.5rem 7rem;
}
@media (max-width: 768px) {
  .sec-cont.faq .faq-wrap .hide-faq {
    padding: 1.5rem 2rem;
  }
}

/* about us */
.sankyo-about {
  display: flex;
  width: 90%;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
  padding: 3.5em 2em;
  background-color: #ffffff;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .sankyo-about {
    flex-direction: column;
    padding: 3em 2em;
  }
}
@media (max-width: 480px) {
  .sankyo-about {
    padding: 2.5em 1.5em;
  }
}
@media (max-width: 768px) {
  .sankyo-about .us-icon {
    margin-bottom: 1.5em;
  }
}
.sankyo-about .us-icon img {
  max-width: 90px;
}
@media (max-width: 480px) {
  .sankyo-about .us-icon img {
    max-width: 75px;
  }
}
.sankyo-about .sankyo-txt-wrap {
  width: 80%;
}
@media (max-width: 768px) {
  .sankyo-about .sankyo-txt-wrap {
    width: 95%;
  }
}
.sankyo-about .sankyo-txt-wrap .bold-txt {
  padding-bottom: 1em;
  margin-bottom: 1em;
  color: #00488B;
  font-size: 1.75rem;
  font-weight: bold;
  border-bottom: 2px solid #00488B;
}
@media (max-width: 768px) {
  .sankyo-about .sankyo-txt-wrap .bold-txt {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .sankyo-about .sankyo-txt-wrap .bold-txt {
    font-size: 1.3rem;
  }
}

.contact-btn {
  display: inline-block;
}
@media (max-width: 768px) {
  .contact-btn {
    width: 94%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
  }
}
.contact-btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em;
  max-width: 400px;
  color: #00488B;
  font-size: 18px;
  font-weight: 700;
  background-color: #F6FF00;
  border-radius: 6px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .contact-btn a {
    justify-content: space-around;
    padding: 1em 1em;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .contact-btn a {
    padding: 1em 1em;
    font-size: 14px;
  }
}
.contact-btn.nav-c-btn a {
  padding: 0.75em 1em;
  max-width: 300px;
  font-size: 14px;
}
.contact-btn.nav-c-btn a::after {
  display: none;
}
.contact-btn a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}
.contact-btn a:hover {
  text-decoration: none;
  background-color: #d3bb7f;
}

.footer {
  margin: 0 auto;
  background-color: #ffffff;
}
.footer .footer__container {
  padding: 40px 0;
  text-align: center;
}
.footer .footer__container .footer-logo {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 0.75em;
}
@media (max-width: 480px) {
  .footer .footer__container .footer-logo {
    width: 90%;
  }
}
.footer .footer__container .footer-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.footer .footer__container .copy-right p {
  color: #2a2a2a;
  font-size: 1.2rem;
  font-weight: bold;
}

.float-box__wrap {
  display: none;
  position: fixed;
  bottom: 5%;
  right: 10px;
  z-index: 10;
}
.float-box__wrap .btn-box {
  display: flex;
  gap: 1em;
  align-items: center;
}
.float-box__wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #00488B;
  font-weight: bold;
}
.float-box__wrap a:nth-child(1) {
  padding: 1em 5em;
  white-space: nowrap;
  border-radius: 50px;
  background-color: #F6FF00;
}
.float-box__wrap #js-pagetop {
  cursor: pointer;
}
.float-box__wrap #js-pagetop img {
  max-width: 75%;
}

/* フェードアニメーション */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.active .fadedown:nth-child(1) {
  animation: fadeDownAnime 0.4s ease 0.1s 1 forwards;
}

.active .fadedown:nth-child(2) {
  animation: fadeDownAnime 0.4s ease 0.2s 1 forwards;
}

.active .fadedown:nth-child(3) {
  animation: fadeDownAnime 0.4s ease 0.3s 1 forwards;
}

.active .fadedown:nth-child(4) {
  animation: fadeDownAnime 0.4s ease 0.4s 1 forwards;
}

.active .fadedown:nth-child(5) {
  animation: fadeDownAnime 0.4s ease 0.5s 1 forwards;
}

.active .fadedown:nth-child(6) {
  animation: fadeDownAnime 0.4s ease 0.6s 1 forwards;
}

.active .fadedown:nth-child(7) {
  animation: fadeDownAnime 0.4s ease 0.7s 1 forwards;
}

.active .fadedown:nth-child(8) {
  animation: fadeDownAnime 0.4s ease 0.8s 1 forwards;
}
@keyframes fadeDownAnime {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 汎用 */
.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

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

.tx_c {
  text-align: center;
}

.tx_l {
  text-align: left;
}

.tx_r {
  text-align: right;
}

.bg_l_bl {
  background-color: #FAFCFF;
}

.bg_l_gray {
  background-color: #FAFAFA;
}

/* 余白 */
.ma-0 {
  margin: 0rem !important;
}
.mb-0 {
  margin-bottom: 0rem !important;
}
.mt-0 {
  margin-top: 0rem !important;
}
.ml-0 {
  margin-left: 0rem !important;
}
.mr-0 {
  margin-right: 0rem !important;
}

.pa-0 {
  padding: 0rem !important;
}
.pb-0 {
  padding-bottom: 0rem !important;
}
.pt-0 {
  padding-top: 0rem !important;
}
.pl-0 {
  padding-left: 0rem !important;
}
.pr-0 {
  padding-right: 0rem !important;
}

.ma-1 {
  margin: 1rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mt-1 {
  margin-top: 1rem !important;
}
.ml-1 {
  margin-left: 1rem !important;
}
.mr-1 {
  margin-right: 1rem !important;
}

.pa-1 {
  padding: 1rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pt-1 {
  padding-top: 1rem !important;
}
.pl-1 {
  padding-left: 1rem !important;
}
.pr-1 {
  padding-right: 1rem !important;
}

.ma-2 {
  margin: 2rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.ml-2 {
  margin-left: 2rem !important;
}
.mr-2 {
  margin-right: 2rem !important;
}

.pa-2 {
  padding: 2rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pl-2 {
  padding-left: 2rem !important;
}
.pr-2 {
  padding-right: 2rem !important;
}

.ma-3 {
  margin: 3rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.ml-3 {
  margin-left: 3rem !important;
}
.mr-3 {
  margin-right: 3rem !important;
}

.pa-3 {
  padding: 3rem !important;
}
.pb-3 {
  padding-bottom: 3rem !important;
}
.pt-3 {
  padding-top: 3rem !important;
}
.pl-3 {
  padding-left: 3rem !important;
}
.pr-3 {
  padding-right: 3rem !important;
}

.ma-4 {
  margin: 4rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.ml-4 {
  margin-left: 4rem !important;
}
.mr-4 {
  margin-right: 4rem !important;
}

.pa-4 {
  padding: 4rem !important;
}
.pb-4 {
  padding-bottom: 4rem !important;
}
.pt-4 {
  padding-top: 4rem !important;
}
.pl-4 {
  padding-left: 4rem !important;
}
.pr-4 {
  padding-right: 4rem !important;
}

.ma-5 {
  margin: 5rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}
.ml-5 {
  margin-left: 5rem !important;
}
.mr-5 {
  margin-right: 5rem !important;
}

.pa-5 {
  padding: 5rem !important;
}
.pb-5 {
  padding-bottom: 5rem !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
.pl-5 {
  padding-left: 5rem !important;
}
.pr-5 {
  padding-right: 5rem !important;
}

.ma-6 {
  margin: 6rem !important;
}
.mb-6 {
  margin-bottom: 6rem !important;
}
.mt-6 {
  margin-top: 6rem !important;
}
.ml-6 {
  margin-left: 6rem !important;
}
.mr-6 {
  margin-right: 6rem !important;
}

.pa-6 {
  padding: 6rem !important;
}
.pb-6 {
  padding-bottom: 6rem !important;
}
.pt-6 {
  padding-top: 6rem !important;
}
.pl-6 {
  padding-left: 6rem !important;
}
.pr-6 {
  padding-right: 6rem !important;
}

.ma-7 {
  margin: 7rem !important;
}
.mb-7 {
  margin-bottom: 7rem !important;
}
.mt-7 {
  margin-top: 7rem !important;
}
.ml-7 {
  margin-left: 7rem !important;
}
.mr-7 {
  margin-right: 7rem !important;
}

.pa-7 {
  padding: 7rem !important;
}
.pb-7 {
  padding-bottom: 7rem !important;
}
.pt-7 {
  padding-top: 7rem !important;
}
.pl-7 {
  padding-left: 7rem !important;
}
.pr-7 {
  padding-right: 7rem !important;
}

.ma-8 {
  margin: 8rem !important;
}
.mb-8 {
  margin-bottom: 8rem !important;
}
.mt-8 {
  margin-top: 8rem !important;
}
.ml-8 {
  margin-left: 8rem !important;
}
.mr-8 {
  margin-right: 8rem !important;
}

.pa-8 {
  padding: 8rem !important;
}
.pb-8 {
  padding-bottom: 8rem !important;
}
.pt-8 {
  padding-top: 8rem !important;
}
.pl-8 {
  padding-left: 8rem !important;
}
.pr-8 {
  padding-right: 8rem !important;
}

.ma-9 {
  margin: 9rem !important;
}
.mb-9 {
  margin-bottom: 9rem !important;
}
.mt-9 {
  margin-top: 9rem !important;
}
.ml-9 {
  margin-left: 9rem !important;
}
.mr-9 {
  margin-right: 9rem !important;
}

.pa-9 {
  padding: 9rem !important;
}
.pb-9 {
  padding-bottom: 9rem !important;
}
.pt-9 {
  padding-top: 9rem !important;
}
.pl-9 {
  padding-left: 9rem !important;
}
.pr-9 {
  padding-right: 9rem !important;
}

.ma-10 {
  margin: 10rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}

.pa-10 {
  padding: 10rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pl-10 {
  padding-left: 10rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}