@charset "UTF-8";
:root {
  --base-color: #1c4a70;
  --main-color: #252b36;
  --sub-color: #188ae0;
  --sub-color2: #707070;
  --list-color: #1f4c74;
  --noto: "Noto Sans JP", sans-serif;
  --noto-serif: "Noto Serif JP", serif;
  --zen: "Zen Kaku Gothic New", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-size: 16px;
  color: var(--main-color);
  font-family: var(--noto);
  font-weight: 500;
  font-style: normal;
  background-color: #fefefe;
  font-feature-settings: "palt";
  line-break: strict;
}

a {
  text-decoration: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
.ttl {
  padding: 2em 0;
  margin-inline: auto;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  gap: 3em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.header.visible {
  transform: translateY(0);
}

.header .nav-container .logo img {
  max-width: 70px;
}

.nav-container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-links a {
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  background-color: var(--list-color);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* 特徴をクリックしてヘッダー高さを確保したままスクロール */
:target {
  scroll-margin-top: 120px;
}

@media screen and (max-width: 850px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    right: 0;
  }
  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
.sec01 {
  margin-top: 1rem;
  background-image: url("../assets/images/line_shadow.webp");
  background-repeat: no-repeat;
  background-position: 50%;
}
@media screen and (max-width: 592px) {
  .sec01 {
    background-image: none;
  }
}
.sec01 ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 4em;
  padding: 0 10px;
  flex-wrap: wrap;
}
.sec01 ul li img {
  max-width: 244px;
}

.hover-item {
  background: #1c4a70;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
}
.hover-item p {
  width: 100%;
  position: absolute;
  bottom: -1.75em;
  left: 50%;
  transform: translate(-52%, 0);
  text-align: center;
  font-size: 22px;
  color: var(--list-color);
  font-weight: 400;
}
.hover-item a:hover {
  display: block;
  width: 244px;
  height: 219px;
}
.hover-item a:hover p {
  font-weight: 700;
}

.item-link1,
.item-link2,
.item-link3 {
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.item-link1 {
  background-image: url("../assets/images/list_icon_01.webp");
}

.item-link2 {
  background-image: url("../assets/images/list_icon_02.webp");
}

.item-link3 {
  background-image: url("../assets/images/list_icon_03.webp");
}

.inner {
  padding-inline: 1em;
}

.intro {
  margin-top: 4em;
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
}
.intro h2 {
  font-size: clamp(1.125rem, 0.9rem + 0.96vw, 1.5rem);
  padding: 3px 0;
  margin-inline: auto;
  text-align: center;
  max-width: 580px;
  color: #fff;
  letter-spacing: 0.5em;
  background-image: linear-gradient(90deg, rgb(254, 254, 254), rgb(28, 74, 112) 5% 95%, rgb(254, 254, 254)), linear-gradient(90deg, rgb(254, 254, 254) 17%, rgb(127, 153, 174) 33%, rgb(28, 74, 112) 46%, rgb(254, 254, 254) 90%);
}
.intro .intro__container {
  margin-top: 1.5em;
  text-align: center;
}
.intro .intro__container span {
  color: #ff0000;
  font-weight: 700;
}

.feature {
  display: flex;
  justify-content: center;
  background-image: linear-gradient(to bottom, #fefefe, #f3f3f3, #e7e7e7, #dbdbdb, #cfcfcf);
}
.feature .feature__container {
  max-width: 900px;
}
.feature .feature__container img:nth-child(2) {
  margin-top: -4.5em;
}

.feature__text {
  padding: 1em;
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  background: var(--base-color);
  color: #fff;
}
.feature__text span {
  font-size: 1.8em;
  font-weight: 900;
}
.feature__text .caution {
  font-size: 0.55em;
  font-weight: 300;
}

.features {
  margin-top: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features p {
  line-height: 1.5;
}

.feature__point01 span {
  font-weight: 700;
  font-size: 1.1em;
}

.marker {
  background: linear-gradient(transparent 50%, #fffb00 70%);
}

.feature_heading__container {
  text-align: center;
}

.feature_heading {
  display: inline-block;
  position: relative;
  color: #333;
  text-align: center;
  margin-bottom: 2.5em;
}
.feature_heading::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--base-color);
}

.points {
  margin-top: 3em;
  margin-inline: auto;
  display: flex;
  max-width: 1200px;
  gap: 1.5em;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.points img {
  position: absolute;
  z-index: -999;
  filter: opacity(0.4);
}
@media (max-width: 768px) {
  .points img {
    display: none;
  }
}

.point01__wrap {
  max-width: 360px;
  font-weight: 300;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
}
.point01__wrap h3 {
  font-family: var(--zen);
  text-align: center;
  padding: 0 0.4em 0.2em;
  border-bottom: 2px dotted var(--base-color);
  color: #333333;
}
.point01__wrap .point01__container {
  padding: 1em;
  min-height: 220px;
  border-radius: 3px;
  box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.1);
}
.point01__wrap .point01__container p {
  margin-top: 0.5em;
}

.points__text {
  margin-top: 2em;
}

.caution {
  padding-top: 0.4em;
  font-size: 0.85em;
}

.point_img {
  text-align: center;
}

.point02_img {
  margin-top: 2.5em;
  padding-block: 0 1em;
  border-radius: 10px;
  background: #eaeff9;
  box-shadow: 0 0 13px 8px #eaeff9;
}
.point02_img p {
  margin: 0;
  padding: 1em 0.5em;
}
.point02_img p.point__text {
  text-align: left;
}

.feature__point03 .feature_heading__container + p {
  text-align: center;
}

.point03__flow {
  margin-top: 2em;
  margin-inline: auto;
  max-width: 1000px;
}

.flow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow__content {
  padding-left: 0;
}

.flow__content > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow__content > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow__content > li .icon05 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: var(--base-color);
  color: #fff;
  position: absolute;
  left: 0;
}

.flow__content > li:not(:last-child)::before {
  content: "";
  background: #c3c3c3;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% + 30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow__content > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #4d9bc1;
}

.flow__content > li dl dd {
  margin-left: 0;
}

.point03__container p a {
  word-break: break-all;
}

.process {
  margin-top: 3em;
  background: var(--base-color);
}
.process .process__container {
  padding-top: 3.5em;
}
.process .process__container .process__ttl {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .process .process__container .process__ttl {
    flex-direction: column;
  }
}
.process .process__container .process__ttl img {
  width: 150px;
}
.process .process__container .process__ttl h3 {
  font-size: 30px;
  color: var(--base-color);
  font-family: var(--zen);
}
.process .process__container .process__img {
  padding-block: 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.functions {
  margin-top: 3.5em;
  background-image: linear-gradient(to bottom, #ffffff, #f8f8f8, #f2f2f2, #ebebeb, #e5e5e5);
}

.functions__container {
  padding: 2em 1em;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2em;
}
.functions__container:nth-child(2n) {
  margin-top: 2em;
}
.functions__container .functions__text {
  width: 390px;
}
@media screen and (max-width: 480px) {
  .functions__container .functions__text {
    width: 100%;
  }
}
.functions__container .functions__text h2 {
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 30px;
  border-radius: 3px;
  background: var(--base-color);
}
.functions__container .functions__text p {
  margin-top: 1em;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
.functions__container .functions__text p span {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  font-size: 1.5em;
  color: #d82323;
  border-radius: 5px;
}
.functions__container .functions__img {
  text-align: center;
}
.functions__container .functions__img p {
  font-weight: 500;
}
.functions__container .functions__img .small {
  font-size: 0.85em;
}

.price {
  padding-block: 3em;
  background-image: linear-gradient(to right top, #e5e5e5, #ebebeb, #f2f2f2, #f8f8f8, #ffffff);
}
.price .price__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.price .price__list {
  list-style-type: none;
}
.price .price__list li {
  display: flex;
  align-items: center;
  gap: 0 5px;
  padding: 0.3em;
  font-weight: 700;
}
.price .price__list li::before {
  display: inline-block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #1c4a70;
  border-left: 2px solid #1c4a70;
  transform: rotate(-45deg) translateY(-1.5px);
  content: "";
}

footer {
  background: var(--base-color);
}
footer .footer-container {
  margin: 0 auto;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  color: #fff;
}
footer .company-container .logo {
  width: 200px;
  margin-bottom: 20px;
}
footer .company-container address {
  font-style: normal;
}
footer .company-container address a {
  color: #fff;
  transition: 0.3s ease;
}
footer .company-container address a:hover {
  color: #86ccec;
}

.contact a {
  display: block;
  width: 300px;
  padding: 15px 10px;
  text-align: center;
  border-radius: 50px;
  font-weight: 400;
  letter-spacing: 0.05rem;
  background: #e1a346;
  color: #fff;
  transition: 0.3s ease;
}
.contact a:hover {
  transform: scale(1.03);
}

@media screen and (max-width: 768px) {
  .ttl {
    flex-direction: column;
    align-items: center;
  }
  .feature .feature__container {
    margin-top: 3em;
  }
  .functions {
    margin-top: 0;
  }
  .functions__container {
    align-items: center;
    flex-direction: column;
  }
  .functions__container .functions__text {
    width: 100%;
  }
  .price .price__container {
    flex-direction: column;
  }
  footer .footer-container {
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
  }
}
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: solid 2px var(--sub-color2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.pagetop:hover {
  background: var(--base-color);
}

.pagetop:hover .pagetop__arrow {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
  transition: 0.3s ease;
}/*# sourceMappingURL=index.css.map */