@charset "UTF-8";
/* common */
html {
  font-size: 10px;
}

* {
  box-sizing: border-box;
}

* a {
  text-decoration: none;
  color: #000;
}

* ul {
  list-style: none;
}

* h3,
* h4 {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  max-width: 1180px;
  margin: auto;
  font-family: "Noto Sans JP", sans-serif;
}

.sp__br {
  display: none;
}
@media screen and (max-width: 500px) {
  .sp__br {
    display: block;
  }
}

.header {
  display: none;
  box-sizing: border-box;
}
@media screen and (max-width: 500px) {
  .header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0.5rem 2rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.5s;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
  }
}
.header.active {
  opacity: 1;
  transform: translateY(0);
}
.header__inner {
  max-width: 1180px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-weight: bold;
  font-size: 1.6rem;
}
.header__logo img {
  display: block;
  margin-right: auto;
  max-height: 3rem;
}
.header .header__hamburger {
  padding: 10px;
  cursor: pointer;
  position: relative;
  background: linear-gradient(to right, #3B84C4, #276AB3);
  border-radius: 1rem;
}
.header .header__hamburger .hamburger__line {
  width: 30px;
  height: 22px;
  position: relative;
}
.header .header__hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  transition: 0.4s;
  z-index: 10;
}
.header .header__hamburger span:nth-child(1) {
  top: 0;
}
.header .header__hamburger span:nth-child(2) {
  top: 10px;
}
.header .header__hamburger span:nth-child(3) {
  bottom: 0;
}
.header .header__hamburger.active span {
  background: #fff;
}
.header .header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.header .header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}
.header__nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #fff;
  transition: 0.4s;
  padding-top: 80px;
  background: linear-gradient(to right, #3B84C4, #276AB3);
}
.header__nav ul {
  padding: 0;
}
.header__nav li {
  list-style: none;
  text-align: center;
  margin: 20px 0;
}
.header__nav a {
  font-size: 1.6rem;
  text-decoration: none;
  color: #fff;
}
.header__nav.active {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 5;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.top {
  width: 100%;
  max-width: 100rem;
  margin: auto;
}
.top img {
  width: 100%;
}

.contact {
  padding: 3rem 0;
}
.contact h2 {
  color: #0475CC;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .contact__des::before,
.contact .contact__des::after {
  content: "";
  width: 18px;
  height: 2px;
  box-sizing: border-box;
  background-color: #525252;
  position: relative;
  bottom: -7px;
}
.contact .contact__des::before {
  transform: rotate(40deg);
  left: 12px;
}
.contact .contact__des::after {
  transform: rotate(-40deg);
  right: 12px;
}
.contact .contact__des span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.contact .contact__des span::before,
.contact .contact__des span::after {
  content: "";
  width: 28px;
  height: 2px;
  box-sizing: border-box;
  background-color: #525252;
}
.contact .contact__des span::before {
  transform: rotate(60deg);
}
.contact .contact__des span::after {
  transform: rotate(-60deg);
}
.contact__btn:nth-child(2) {
  margin-bottom: 2rem;
}
.contact__btn:nth-child(2) {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  position: relative;
}
.contact__btn:nth-child(2) img {
  position: absolute;
  display: block;
  width: 10%;
  aspect-ratio: 1/1;
  margin-right: auto;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.contact__btn {
  position: relative;
  cursor: pointer;
  border-radius: 100px;
  display: block;
  max-width: 60.5rem;
  width: 70%;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .contact__btn {
    max-width: 30.2rem;
    width: 80%;
  }
}
.contact__btn {
  background: #06c755;
  padding: 15px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  text-align: center;
  margin: 10px auto;
  /* ✅ ぷるぷる */
  animation: btnShake 1.2s infinite;
}
.contact__btn p {
  color: #fff;
  margin: 0;
  font-size: 2.4rem;
}
.contact__btn p span {
  font-size: 1.8rem;
}
@media screen and (max-width: 500px) {
  .contact__btn p {
    font-size: 1.6rem;
  }
  .contact__btn p span {
    font-size: 1.4rem;
  }
}
.contact {
  /* ぷるぷるアニメーション */
}
@keyframes btnShake {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2px, 0);
  }
  20% {
    transform: translate(2px, 0);
  }
  30% {
    transform: translate(-2px, 0);
  }
  40% {
    transform: translate(2px, 0);
  }
  50% {
    transform: translate(-1px, 0);
  }
  60% {
    transform: translate(0, 0);
  }
  /* ✅ ここから停止時間 */
  100% {
    transform: translate(0, 0);
  }
}
.contact {
  /* hover */
}
.contact__btn:hover {
  opacity: 0.7;
  transition: 0.6s;
}
.contact__btn:hover::before {
  right: 1.8rem;
  transition: 0.6s;
}
.contact__btn:hover::after {
  right: 0.8rem;
  transition: 0.6s;
}
.contact {
  /* 矢印 */
}
.contact__btn::before, .contact__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: rotate(45deg) translateY(-50%);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.contact__btn::before {
  right: 3rem;
}
.contact__btn::after {
  right: 2rem;
}

.flow {
  background-image: url(../img/background-image.png);
  padding: 3rem 5rem;
}
@media screen and (max-width: 500px) {
  .flow {
    padding: 3rem 0rem;
  }
}
.flow h2 {
  color: #FF4F00;
  text-align: center;
  border: 1px solid #FF4F00;
  padding: 0.5rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.flow h3 {
  text-align: center;
  font-size: 2rem;
  margin: 1.2rem 0;
}
.flow__flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(2rem);
}
@media screen and (max-width: 500px) {
  .flow__flex {
    display: block;
  }
}
.flow__flex__box {
  padding: 1.7rem 2rem;
  background: linear-gradient(to right, #3B84C4, #276AB3);
  width: calc((100% - 2rem) / 2);
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 500px) {
  .flow__flex__box {
    width: 95%;
    margin: 0 auto 2rem;
  }
}
.flow__flex__box {
  border-radius: 2rem;
  color: #fff;
}
.flow__flex__box .title {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  text-align: center;
  border: 1px solid #fff;
  padding: 0.1rem 1rem;
  border-radius: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.flow__flex__box .subtitle {
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  margin: 1.2rem auto;
}
.flow__flex__box img {
  width: 100%;
  margin-bottom: 2rem;
}
.flow__flex__box .des {
  font-size: 1.6rem;
}
.flow__flex__box ul {
  margin: 0.8rem 0;
  padding: 0;
  padding-left: 3rem;
  list-style: disc;
}
@media screen and (max-width: 500px) {
  .flow__flex__box::after {
    content: "";
    position: absolute;
    width: 0.3rem;
    height: 2rem;
    bottom: -2rem;
    left: 50%;
    background: #0475CC;
    transform: translateX(-50%);
  }
}
.flow__flex__box:last-child::after {
  display: none;
}
.flow__flex.appear {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s;
}

.worry {
  background-image: url(../img/background-worry.png);
  padding: 3rem 5rem;
}
@media screen and (max-width: 500px) {
  .worry {
    padding: 3rem 0rem;
  }
}
.worry h2 {
  text-align: center;
  color: #fff;
  font-size: 2.8rem;
}
.worry h2 span {
  color: #FFF95D;
}
.worry .vertical-dotted {
  border-right: 0.7rem dotted #fff;
  height: 3rem;
  text-align: center;
  width: 50%;
  transform: translateX(0.35rem);
  margin-bottom: 2.4rem;
}
.worry__flex {
  display: block;
}
.worry__flex__box {
  width: 50%;
}
@media screen and (max-width: 500px) {
  .worry__flex__box {
    width: 90%;
  }
}
.worry__flex__box {
  margin: auto;
  max-width: 49.4rem;
  display: flex;
  justify-content: space-between;
  background: #fff;
  margin-bottom: 3rem;
  align-items: center;
  padding: 0.6rem 3rem;
}
@media screen and (max-width: 500px) {
  .worry__flex__box {
    padding: 0.6rem 2rem;
  }
}
.worry__flex__box img {
  display: block;
  aspect-ratio: 58/80;
  margin: 0;
  width: 4.8rem;
}
.worry__flex__box p {
  font-size: 1.6rem;
  color: #004579;
  margin-right: auto;
  margin-left: 3rem;
}
.worry__flex__box p span {
  color: #F82427;
}
.worry__flex__box:nth-child(2) {
  flex-direction: row-reverse;
}
.worry__flex__box:nth-child(2) p {
  margin-left: auto;
}
.worry__flex__box:nth-child(odd) {
  opacity: 0;
  transform: translateX(-2rem);
}
.worry__flex__box:nth-child(odd).appear {
  opacity: 1;
  transform: translateX(0);
  transition: 0.6s;
}
.worry__flex__box:nth-child(even) {
  opacity: 0;
  transform: translateX(2rem);
}
.worry__flex__box:nth-child(even).appear {
  opacity: 1;
  transform: translateX(0);
  transition: 0.6s;
}

.support {
  background: linear-gradient(to right, #057CD7, #478FC5);
  padding: 3rem 5rem;
}
@media screen and (max-width: 500px) {
  .support {
    padding: 3rem 0rem;
  }
}
.support h2 {
  text-align: center;
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 4rem;
}
.support h2 span {
  color: #FFF95D;
}
.support .arrow {
  display: block;
  margin: 3rem auto;
}
.support .arrow img {
  display: block;
  width: 5rem;
  margin: auto;
}
.support__flex {
  display: block;
  margin: 8rem auto;
}
.support__flex__box {
  background: #fff;
  border-radius: 2rem;
  position: relative;
  padding: 6rem 2rem 2rem;
  max-width: 56.2rem;
  width: 60%;
  margin: auto;
  margin-bottom: 11.5rem;
}
@media screen and (max-width: 500px) {
  .support__flex__box {
    width: 90%;
    margin: auto;
    margin-bottom: 10rem;
  }
}
.support__flex__box__img {
  position: absolute;
  top: 0;
  left: 50%;
  background: linear-gradient(to right, #69B1E0, #268FCB);
  border-radius: 50%;
  border: 2px solid #fff;
  width: 10rem;
  aspect-ratio: 1/1;
  margin: auto;
  display: flex;
  align-items: center;
  transform: translate(-50%, -50%);
}
.support__flex__box__img img {
  display: block;
  width: 70%;
  aspect-ratio: 1/1;
  margin: auto;
}
.support__flex__box .title {
  color: #0475CC;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.support__flex__box .subtitle {
  color: #282828;
  font-size: 1.4rem;
}
.support__flex__box:last-child {
  margin-bottom: 0;
}

.review {
  padding: 3rem 5rem;
}
@media screen and (max-width: 500px) {
  .review {
    padding: 3rem 0rem;
  }
}
.review h2 {
  color: #FF4F00;
  text-align: center;
  border: 1px solid #FF4F00;
  padding: 0.5rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.review h3 {
  text-align: center;
  font-size: 2rem;
  margin: 1.2rem 0;
}
.review__flex {
  background: #0475CC;
  border-radius: 2rem;
  padding: 2rem 2.5rem;
  max-width: 57.5rem;
  margin: auto;
}
.review__flex__box {
  border-radius: 2rem;
  background: #fff;
  padding: 3rem 3rem 4rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 500px) {
  .review__flex__box {
    padding: 3rem 2rem 4rem;
  }
}
.review__flex__box .title {
  color: #0475CC;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.review__flex__box .man__des {
  display: flex;
  justify-content: space-between;
}
.review__flex__box .man__des img {
  display: block;
  width: 100%;
  height: 100%;
  margin-right: auto;
  max-width: 7.4rem;
}
.review__flex__box .man__des__box p {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.review__flex__box .man__des__box img {
  display: block;
  width: 100%;
  margin: 0;
  height: auto;
  margin-left: auto;
  max-width: 12.2rem;
}
.review__flex__box .subtitle {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.review__flex__box:nth-child(odd) {
  opacity: 0;
  transform: translateX(-2rem);
}
.review__flex__box:nth-child(odd).appear {
  opacity: 1;
  transform: translateX(0);
  transition: 0.6s;
}
.review__flex__box:nth-child(even) {
  opacity: 0;
  transform: translateX(2rem);
}
.review__flex__box:nth-child(even).appear {
  opacity: 1;
  transform: translateX(0);
  transition: 0.6s;
}
.review__flex__box:last-child {
  margin-bottom: 0;
}

.question {
  padding: 3rem 5rem;
  background-image: url(../img/question-back.png);
}
@media screen and (max-width: 500px) {
  .question {
    padding: 3rem 0rem;
  }
}
.question h2 {
  color: #FF4F00;
  text-align: center;
  border: 1px solid #FF4F00;
  padding: 0.5rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 2rem;
}
.question h3 {
  font-size: 1.8rem;
  font-size: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.question .accordion {
  max-width: 57.5rem;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .question .accordion {
    width: 95%;
    margin: auto;
  }
}
.question .accordion__item {
  border-bottom: 1px solid #ddd;
  background: #fff;
  margin-bottom: 1.5rem;
}
.question .accordion__title {
  padding: 2rem;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  color: #0475CC;
  font-weight: bold;
  font-size: 1.6rem;
  align-items: center;
  line-height: 1.6rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .question .accordion__title {
    padding: 1.5rem 0.5rem;
    font-size: 1.4rem;
  }
}
.question .accordion__title span {
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  margin-right: 1.6rem;
}
@media screen and (max-width: 500px) {
  .question .accordion__title span {
    margin-right: 0.8rem;
  }
}
.question .accordion__title::after {
  content: "+";
  position: absolute;
  right: 2rem;
  transition: 0.3s;
  font-size: 2rem;
}
.question .accordion__title.active::after {
  transform: rotate(45deg);
}
.question .accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  box-sizing: border-box;
}
.question .accordion__content p {
  font-size: 1.4rem;
  padding: 2rem;
  margin: 0;
}
.question .word {
  max-width: 57.5rem;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  margin: auto;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  .question .word {
    font-size: 1.6rem;
  }
}
.question .word .red {
  color: #F82427;
}
.question .word .marker {
  background: linear-gradient(transparent 60%, #fff176 60%);
}

.company {
  padding: 3rem 5rem;
  max-width: 57.5rem;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .company {
    padding: 3rem 0rem;
    width: 95%;
    margin: auto;
  }
}
.company h2 {
  text-align: center;
  padding: 0.5rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3rem;
  font-size: 2.4rem;
}
.company h2 span {
  color: #3556a6;
}
.company__des {
  margin: auto;
  width: 100%;
  color: #1F3a7a;
  font-weight: 600;
}
.company__des p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 500px) {
  .company__des {
    margin-bottom: 2rem;
  }
}
.company .triangle {
  width: 0;
  height: 0;
  border-left: 4rem solid transparent;
  border-right: 4rem solid transparent;
  border-top: 1.5rem solid #3B84C4;
  margin: 0 auto 3rem;
}
.company__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
}
.company__table th,
.company__table td {
  padding: 16px 20px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.company__table th {
  background: #f3f3f3;
  width: 30%;
  font-weight: 600;
}
.company__table td {
  background: #fff;
}

.footer {
  padding: 20px 0;
  text-align: center;
  background: #222;
  color: #fff;
  font-size: 1.4rem;
}
.footer__copyright {
  margin: 0;
}/*# sourceMappingURL=style.css.map */  border-top: 1.5rem solid #3B84C4;
  margin: 0 auto 3rem;
}
.company__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
}
.company__table th,
.company__table td {
  padding: 16px 20px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.company__table th {
  background: #f3f3f3;
  width: 30%;
  font-weight: 600;
}
.company__table td {
  background: #fff;
}

.footer {
  padding: 20px 0;
  text-align: center;
  background: #222;
  color: #fff;
  font-size: 1.4rem;
}
.footer__copyright {
  margin: 0;
}