@charset "UTF-8";
html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

body {
  font-family: 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333;
  margin: 0;
  background-color: #f9f9f9;
  line-height: 1.6;
  overflow-x: hidden;
}

.wrapper {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}

.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: absolute;
  top: 35px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 3px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 964px) {
  .site-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #7fc9c4;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 80px;
  }
}
.site-header__nav.active {
  right: 0;
}
.site-header__nav .site-header__nav-list {
  gap: 20px;
  text-align: center;
}
@media (max-width: 964px) {
  .site-header__nav .site-header__nav-list {
    flex-direction: column;
    gap: 60px;
  }
}

@media (max-width: 964px) {
  .hamburger {
    display: block;
  }
}
.site-header {
  background-color: #7fc9c4;
  padding: 0 1rem;
}
.site-header__inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.site-header__logo {
  display: flex;
  font-size: 1.5rem;
  color: white;
  align-items: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 520px) {
  .site-header__logo {
    font-size: 1.2rem;
  }
}
.site-header__logo img {
  width: 40px;
  height: auto;
}
@media (max-width: 520px) {
  .site-header__logo img {
    width: 30px;
  }
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.site-header__nav-link, .site-header__nav-button {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0.5rem 0.5rem;
}
.site-header__nav-button {
  padding: 0.75em 1.4em;
  display: inline-block;
  background-color: #f4c2c2;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border: none;
  padding: 0.75em 2em;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  margin-left: 14px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.4), 0 3px 6px rgba(0, 0, 0, 0.1);
}
.site-header__nav-button:hover {
  box-shadow: none;
  transform: scale(1.05);
}

.hero {
  background-color: #7fc9c4;
  margin-top: -1rem;
  max-height: calc(100vh - 240px);
  min-height: 560px;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
@media (max-width: 964px) {
  .hero-wrapper {
    flex-direction: column;
    height: 600px;
  }
}

.hero-mainvisual {
  position: relative;
  z-index: 0;
  width: 100vw;
  height: 500px;
  flex: 1;
}
.hero-mainvisual::before {
  background-image: url(../img/image/pfvm.png);
  background-repeat: no-repeat;
  background-position: center 43%;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  z-index: -1;
  color: #fff;
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100vw;
  max-height: calc(100vh - 240px);
  min-height: 560px;
  content: "";
}
@media (max-width: 520px) {
  .hero-mainvisual::before {
    background-position: 39% 20%;
  }
}

.hero-menu {
  position: relative;
}

.hero h2 {
  font-size: 1.8em;
  font-weight: normal;
  margin-bottom: 0;
  text-shadow: 0 6px 8px rgba(0, 30, 30, 0.85);
}
@media (max-width: 520px) {
  .hero h2 {
    font-size: 1.2rem;
  }
}

.hero p {
  font-size: 1.8em;
  margin-bottom: 1em;
  margin-left: 4px;
  margin-top: 0;
  text-align: left;
  text-shadow: 0 6px 8px rgba(0, 30, 30, 0.85);
}
@media (max-width: 520px) {
  .hero p {
    font-size: 1.2rem;
  }
}

.hero-title-text {
  position: absolute;
  content: "";
  top: 64%;
  right: 0px;
  color: #fff;
  z-index: 0;
}
@media (max-width: 520px) {
  .hero-title-text {
    top: 64%;
    left: 20px;
  }
}

.hero-menu-contents {
  width: 11%;
  margin: 0;
  padding: 0 10px 20px 4px;
  font-size: 12px;
}
@media (max-width: 964px) {
  .hero-menu-contents {
    width: 100%;
    padding: 0 10px 0 20px;
  }
}
.hero-menu-contents .hero-menu {
  padding: 20px 0px;
  border-radius: 20px;
  margin-top: 20px;
}
@media (max-width: 964px) {
  .hero-menu-contents .hero-menu {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
}
.hero-menu-contents a {
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.hero-menu-contents li {
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background-color: #f4c2c2;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border: none;
  padding: 0.75em 2em;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.4), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  box-shadow: none;
  transform: scale(1.05);
}

.nav-menu .contact-btn {
  display: inline-block;
  background-color: white;
  box-shadow: 0 6px 12px rgba(0, 60, 60, 0.3);
  border: 1px solid #7fc9c4;
  color: #007a7a;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  transition: all 0.3s;
}
.nav-menu .contact-btn:hover {
  box-shadow: none;
  transform: scale(1.05);
}

.hero-btn {
  margin-top: 10px;
}

.about {
  padding: 68px 0 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9)), url(../img/image/aboutBack.png) no-repeat center/cover;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.03);
  background-image: url(../img/image/aboutBack.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.about__inner {
  max-width: 1200px;
  margin: auto;
}
.about__title {
  text-align: right;
  color: #66b3b0;
  font-size: 2.4rem;
  margin-bottom: 0;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 60, 60, 0.3);
}
@media (max-width: 520px) {
  .about__title {
    font-size: 1.4rem;
  }
}
.about__title::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 4px;
  background-color: #66b3b0;
  top: 48%;
  right: 280px;
}
@media (max-width: 520px) {
  .about__title::before {
    right: 164px;
    width: 22px;
  }
}
.about__subtitle {
  text-align: right;
  color: #66b3b0;
  font-size: 1.6rem;
  opacity: 0.3;
  font-weight: bold;
  margin-top: 0;
  padding-right: 4px;
}
@media (max-width: 520px) {
  .about__subtitle {
    font-size: 1rem;
  }
}
.about__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 964px) {
  .about__content {
    flex-direction: column;
    width: 100%;
  }
}
.about__image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 964px) {
  .about__image {
    width: 100%;
    height: auto;
    margin-right: 20px;
  }
}
.about__text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  margin-right: 20px;
  text-align: justify;
}
@media (max-width: 964px) {
  .about__text {
    width: 100%;
  }
}

.service {
  padding: 48px 0px 80px 0px;
  background-color: #f3fdfa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.service__title {
  text-align: left;
  color: #66b3b0;
  font-size: 2.4rem;
  margin-bottom: 0;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 60, 60, 0.3);
}
@media (max-width: 520px) {
  .service__title {
    font-size: 1.4rem;
  }
}
.service__title::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 4px;
  background-color: #66b3b0;
  top: 48%;
  left: 240px;
}
@media (max-width: 520px) {
  .service__title::before {
    left: 140px;
    width: 22px;
  }
}
.service__subtitle {
  text-align: left;
  color: #66b3b0;
  font-size: 1.6rem;
  opacity: 0.3;
  font-weight: bold;
  margin-top: 0;
  margin-left: 6px;
}
@media (max-width: 520px) {
  .service__subtitle {
    font-size: 1rem;
  }
}
.service__buttons {
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 960px;
}
@media (max-width: 964px) {
  .service__buttons {
    width: 100%;
    display: block;
  }
}
@media (max-width: 964px) {
  .service__buttons ul {
    padding-left: 0;
  }
}
.service__button {
  background-color: #7fc9c4;
  border: none;
  color: white;
  padding: 1rem 8rem;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 68px;
}
@media (max-width: 520px) {
  .service__button {
    padding: 1rem 3rem;
    gap: 20px;
  }
}
.service__button:hover {
  background-color: #66b3b0;
}
.service__button img {
  width: 30px;
  height: auto;
}
.service__description {
  flex: 1;
  max-width: 720px;
  margin: 0px auto 0;
  line-height: 1.8;
  text-align: justify;
}
@media (max-width: 964px) {
  .service__description {
    width: 100%;
  }
}
.service__contents {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 964px) {
  .service__contents {
    flex-direction: column;
    gap: 2rem;
  }
}

.about-title-contents {
  margin-right: 20px;
}
@media (max-width: 520px) {
  .about-title-contents {
    margin-right: 0;
  }
}

.flow {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 48px 0 80px 0;
  background-image: url(../img/image/aboutBack.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9)), url(../img/image/aboutBack.png) no-repeat center/cover;
}
.flow__image {
  margin-left: 200px;
}
@media (max-width: 520px) {
  .flow__image {
    margin-left: 140px;
  }
}
.flow__title {
  text-align: right;
  color: #66b3b0;
  font-size: 2.4rem;
  position: relative;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(0, 60, 60, 0.3);
}
@media (max-width: 520px) {
  .flow__title {
    font-size: 1.4rem;
  }
}
.flow__title::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 4px;
  background-color: #66b3b0;
  top: 48%;
  right: 240px;
}
@media (max-width: 520px) {
  .flow__title::before {
    right: 140px;
    width: 22px;
  }
}
.flow__subtitle {
  text-align: right;
  color: #66b3b0;
  opacity: 0.3;
  font-size: 1.6rem;
  margin-top: 0;
  font-weight: bold;
  margin-right: 6px;
}
@media (max-width: 520px) {
  .flow__subtitle {
    font-size: 1rem;
  }
}
.flow__steps {
  flex: 1;
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 964px) {
  .flow__steps {
    margin: 0;
    width: 100%;
  }
}
.flow__steps ul {
  padding: 8px 24px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 964px) {
  .flow__steps ul {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.flow__steps img {
  width: 30px;
  height: auto;
}
.flow__steps .flow__step {
  color: #66b3b0;
  padding: 1rem 5rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}
@media (max-width: 964px) {
  .flow__steps .flow__step {
    width: 100%;
    margin: 0;
    padding: 1rem 6rem;
  }
}
@media (max-width: 520px) {
  .flow__steps .flow__step {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
.flow__steps .flow__step span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #66b3b0;
  color: #fff;
  text-align: center;
  align-content: center;
  margin-right: 24px;
}
.flow__note {
  flex: 1;
  line-height: 1.8;
}
@media (max-width: 964px) {
  .flow__note {
    width: 100%;
    padding: 0;
  }
}
.flow__contents {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: justify;
}
@media (max-width: 964px) {
  .flow__contents {
    flex-direction: column;
    padding: 0;
  }
}

.faq {
  padding: 53px 0 80px 0;
  background-color: #f3fdfa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.03);
}
.faq__contents {
  display: flex;
  gap: 40px;
}
@media (max-width: 964px) {
  .faq__contents {
    flex-direction: column;
  }
}
.faq__title {
  text-align: left;
  color: #66b3b0;
  font-size: 2rem;
  position: relative;
  margin-bottom: 0;
  text-shadow: 1px 1px 3px rgba(0, 60, 60, 0.3);
}
@media (max-width: 520px) {
  .faq__title {
    font-size: 1.4rem;
  }
}
.faq__title::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 4px;
  background-color: #66b3b0;
  top: 48%;
  left: 240px;
}
@media (max-width: 520px) {
  .faq__title::before {
    left: 164px;
    width: 22px;
  }
}
.faq__subtitle {
  text-align: left;
  color: #66b3b0;
  font-size: 1.6rem;
  opacity: 0.3;
  font-weight: bold;
  margin-top: 0;
}
@media (max-width: 520px) {
  .faq__subtitle {
    font-size: 1rem;
  }
}
.faq__list {
  max-width: 800px;
  margin: auto;
  list-style: none;
  padding: 0;
}
.faq__list-contents {
  flex: 1;
  margin-top: 20px;
}
.faq__image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}
.faq .faq__item {
  margin-bottom: 1.5rem;
  background-color: white;
  border-left: 4px solid #7fc9c4;
  padding: 1rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.contact {
  padding: 53px 1rem;
  background-color: #f9fcfc;
}
.contact__title {
  text-align: center;
  color: #66b3b0;
  font-size: 2rem;
  margin-bottom: 0;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 60, 60, 0.3);
}
@media (max-width: 520px) {
  .contact__title {
    font-size: 1.4rem;
  }
}
.contact__title::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 4px;
  background-color: #66b3b0;
  top: 48%;
  left: 50%;
  transform: translate(-480%, -50%);
}
@media (max-width: 520px) {
  .contact__title::before {
    transform: translate(-420%, -50%);
    width: 22px;
  }
}
.contact__title::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 4px;
  background-color: #66b3b0;
  top: 48%;
  right: 50%;
  transform: translate(480%, -50%);
}
@media (max-width: 520px) {
  .contact__title::after {
    transform: translate(420%, -50%);
    width: 22px;
  }
}
.contact__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-right: 1px solid #66b3b0;
  line-height: 1;
}
@media (max-width: 520px) {
  .contact__phone {
    border: none;
    margin: 24px 0;
    gap: 0px;
  }
}
.contact__phone img {
  width: 40px;
  height: auto;
}
.contact__subtitle {
  text-align: center;
  color: #66b3b0;
  font-size: 1.6rem;
  opacity: 0.3;
  font-weight: bold;
  margin-top: 0;
}
@media (max-width: 520px) {
  .contact__subtitle {
    font-size: 1rem;
  }
}
.contact__methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: auto;
}
@media (max-width: 520px) {
  .contact__methods {
    flex-direction: column;
  }
}
.contact__methods > div {
  flex: 1;
}
@media (max-width: 964px) {
  .contact__methods > div {
    flex-direction: column;
  }
}
.contact__mail {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 520px) {
  .contact__mail {
    margin: 24px 0;
    gap: 0px;
  }
}
.contact__mail img {
  width: 40px;
  height: auto;
}
.contact__form-link {
  display: inline-block;
  background-color: #7fc9c4;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  text-decoration: none;
  margin-top: 1rem;
  font-weight: bold;
  transition: 0.3s ease;
}
.contact__form-link:hover {
  background-color: #66b3b0;
}

.section-wave-footer-top {
  display: block;
  width: 100%;
  height: 80px;
  position: relative;
  margin-bottom: -1px;
  z-index: 1;
}

.site-footer {
  background-color: #7fc9c4;
  color: white;
  padding: 2rem 1rem 0 1rem;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  font-weight: bold;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  font-weight: bold;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.site-footer__nav-list a {
  color: white;
  text-decoration: none;
}
.site-footer__copyright {
  text-align: center;
  margin: 2rem 0 0 0;
  font-size: 0.875rem;
  padding-bottom: 10px;
}/*# sourceMappingURL=style.css.map */