/* base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #707070;
}

p {
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  p {
    font-size: 1rem;
  }
}
p span.under {
  color: #080808;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    #e7cc6d 70%,
    #e7cc6d 100%
  );
}

a {
  text-decoration: none;
  color: inherit;
}

/* header */
.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 15px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
.header__logo {
  width: auto;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 0 40px;
  }
}

/* hamburger */
.hamburger {
  width: 25px;
  height: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.hamburger span:nth-child(1) {
  top: 4px;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  top: 18px;
}
.hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* global menu */
.global-nav {
  position: fixed;
  top: 0;
  right: -120%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  width: 300px;
  height: calc(100svh - 60px);
  margin-top: 60px;
  background-color: rgba(32, 58, 82, 0.95);
  transition: all 0.4s ease;
}
.global-nav.active {
  right: 0;
}
@media screen and (min-width: 1024px) {
  .global-nav {
    position: relative;
    top: auto;
    right: auto;
    flex-direction: row;
    width: auto;
    height: auto;
    margin-top: 0;
    background-color: #ffffff;
  }
}
.global-nav__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .global-nav__inner {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.global-nav__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 60px;
  color: #ffffff;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .global-nav__item {
    width: auto;
    height: auto;
    margin: 0;
    color: #707070;
    background-color: transparent;
  }
}
.global-nav__item--contact {
  max-width: 200px;
  height: 40px !important;
  padding: 0 30px;
  border-radius: 20px;
  background-color: #4783b8;
  color: #ffffff;
  transition: all 0.4s ease;
}
.global-nav__item--contact:hover {
  opacity: 0.8;
}

/* section common style */
.section {
  padding: 60px 0;
}
@media screen and (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }
}
.section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .section__heading {
    gap: 15px;
    font-size: 2.5rem;
    margin-bottom: 60px;
  }
}
.section__heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(to right bottom, #439cd7, #4783b8);
}
@media screen and (min-width: 1024px) {
  .section__heading::after {
    height: 6px;
  }
}
.section__heading--white {
  color: #ffffff;
}
.section__heading--white::after {
  background: inherit;
  background-color: #ffffff;
}
.section__content {
  width: 80%;
  max-width: 1024px;
  margin: 0 auto;
}

/* mv */
.mv {
  position: relative;
  height: 100svh;
  min-height: 812px;
  padding-top: 60px;
  background-color: #4783b8;
}
@media screen and (min-width: 1024px) {
  .mv {
    min-height: 768px;
  }
}
.mv__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 500px;
}
.mv__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #4783b8 0%, rgba(71, 131, 184, 0) 30%);
}
.mv__bg__sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .mv__bg__sp {
    display: none;
  }
}
.mv__bg__pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .mv__bg__pc {
    display: block;
  }
}
.mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
@media screen and (min-width: 768px) {
  .mv__bg {
    right: 0;
    width: auto;
    height: calc(100% - 60px);
  }
  .mv__bg::before {
    background: linear-gradient(
      to right,
      #4783b8 0%,
      rgba(71, 131, 184, 0) 20%
    );
  }
}
.mv__heading {
  color: #ffffff;
}
.mv__heading__subtitle {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 1rem;
  background-color: #203a52;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .mv__heading__subtitle {
    font-size: 1.5rem;
    padding: 5px 10px;
  }
}
.mv__heading__title {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .mv__heading__title {
    font-size: 4rem;
  }
}
.mv__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 80%;
  height: 100%;
  margin: 0 auto;
}
.mv__service {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .mv__service {
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 20px;
  }
}
.mv__service__item {
  width: 185px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .mv__service__item {
    width: 220px;
  }
}
.mv__appeal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media screen and (min-width: 768px) {
  .mv__appeal {
    display: flex;
  }
}
.mv__appeal__item {
  width: 140px;
  -o-object-fit: contain;
  object-fit: contain;
}
.mv__appeal__item:nth-child(1) {
  grid-column: 1/3;
  justify-self: center;
}
.mv__appeal__item:nth-child(2) {
  grid-column: 1/2;
  justify-self: end;
}
.mv__appeal__item:nth-child(3) {
  grid-column: 2/3;
  justify-self: start;
}
@media screen and (min-width: 768px) {
  .mv__appeal__item {
    width: 185px;
  }
}
@media screen and (min-width: 1024px) {
  .mv__appeal__item {
    width: 220px;
  }
}

/* footer */
.footer {
  background-color: #4783b8;
  color: #ffffff;
}
.footer__logo {
  display: block;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    font-size: 1.5rem;
  }
}
.footer__content {
  width: 80%;
  max-width: 1024px;
  padding: 40px 0;
  margin: 0 auto;
}
.footer__sitemap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .footer__sitemap {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.footer__sitemap__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  font-size: 1rem;
  border-bottom: 1px solid #ffffff;
}
.footer__sitemap__item::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(assets/KeyboardArrowRight.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .footer__sitemap__item {
    width: 50%;
  }
}
.footer__copyright {
  padding: 8px 0;
  background-color: #203a52;
  font-size: 0.75rem;
  color: #ffffff;
  text-align: center;
}

/* サービス */
.service__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service__item {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #4783b8;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1024px) {
  .service__item {
    min-height: 300px;
  }
}
.service__item__title {
  display: flex;
  gap: 10px;
  padding: 20px 20px 50px 20px;
  border-radius: 20px 20px 0 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  background-color: #4783b8;
}
.service__item__title__num {
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .service__item__title {
    gap: 20px;
    padding: 20px 320px 20px 40px;
    font-size: 2rem;
  }
}
.service__item__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .service__item__content {
    padding: 40px;
  }
}
.service__item__image {
  width: 90%;
  aspect-ratio: 16/9;
  margin: -30px auto 0;
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .service__item__image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 260px;
    aspect-ratio: 1/1;
    margin: 0;
  }
}
.service__item__image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .service__item__image img {
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 1024px) {
  .service__item__description {
    width: calc(100% - 300px);
  }
}

/* お客様の声 */
.voice {
  position: relative;
}
.voice::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(assets/images/sp_voice_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
}
@media screen and (min-width: 1024px) {
  .voice::after {
    background-image: url(assets/images/pc_voice_bg.jpg);
  }
}
.voice__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .voice__list {
    flex-direction: row;
    justify-content: center;
  }
}
.voice__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1024px) {
  .voice__item {
    width: 100%/3;
  }
}
.voice__item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  margin-bottom: 20px;
  background-color: #4783b8;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 400;
}
.voice__item__image {
  display: block;
  width: 80%;
  max-width: 300px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 20px;
  background-color: #4783b8;
}
.voice__item__heading {
  font-size: 1.25rem;
  font-weight: 700;
}
.voice__item__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 料金プラン */
.plan {
  background-image: url(assets/images/plan_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.plan__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 0 auto 20px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1024px) {
  .plan__content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px;
    margin-bottom: 40px;
  }
}
.plan__content__heading {
  width: 160px;
  padding: 10px 0;
  background-color: #4783b8;
  font-size: 1.5rem;
  text-align: center;
  color: #ffffff;
  border-radius: 10px;
}
.plan__content__price {
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1024px) {
  .plan__content__price {
    font-size: 2rem;
  }
}
.plan__content__price .important {
  font-size: 2rem;
  font-weight: 500;
  color: #4783b8;
}
@media screen and (min-width: 1024px) {
  .plan__content__price .important {
    font-size: 3rem;
  }
}
.plan__message {
  color: #ffffff;
  text-align: center;
}

/* ご利用の流れ */
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.flow__item {
  display: flex;
  gap: 16px;
}
.flow__item__num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #4783b8;
  font-weight: 700;
  color: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  .flow__item__num {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
.flow__item__content {
  display: flex;
  flex-direction: column;
  width: calc(100% - 56px);
}
@media screen and (min-width: 1024px) {
  .flow__item__content {
    width: calc(100% - 76px);
  }
}
.flow__item__title {
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 0;
}
@media screen and (min-width: 1024px) {
  .flow__item__title {
    font-size: 1.5rem;
  }
}

/* よくあるご質問 */
.faq {
  background: linear-gradient(to right bottom, #4783b8, #203a52);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .faq__list {
    gap: 40px;
  }
}
.faq__item {
  padding: 20px;
  background-color: #ffffff;
}
.faq__item__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  background-color: #4783b8;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .faq__item__label {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
.faq__item__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 1024px) {
  .faq__item__question {
    font-size: 1.25rem;
    gap: 24px;
  }
}
.faq__item__answer {
  display: flex;
  align-items: start;
  gap: 16px;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .faq__item__answer {
    gap: 24px;
  }
}

/* お問い合わせ */
.contact__message {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.contact__form__item input,
.contact__form__item textarea {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.contact__form__item input::-moz-placeholder,
.contact__form__item textarea::-moz-placeholder {
  color: #aaa;
}
.contact__form__item input::placeholder,
.contact__form__item textarea::placeholder {
  color: #aaa;
}
@media screen and (min-width: 1024px) {
  .contact__form .privacypolicy {
    font-size: 0.875rem;
  }
}
.contact__form .privacypolicy__title {
  margin-bottom: 20px;
}
.contact__form .privacypolicy__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__form .privacypolicy__content a {
  color: #4783b8;
}
.contact__form .checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  accent-color: #707070;
}
.contact__form .submit-btn {
  margin-top: 20px;
}
.contact__form .submit-btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 40px;
  margin: 0 auto;
  background-color: #203a52;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.contact__form .submit-btn button:hover {
  opacity: 0.8;
}
@media screen and (min-width: 1024px) {
  .contact__form .submit-btn button {
    height: 48px;
  }
} /*# sourceMappingURL=style.css.map */
