/* setting */
:root {
  --green: #99c73a;
  --orange: #ff6f00;
  --black: #000;
}

/* base */
* {
  box-sizing: border-box;
  position: relative;
  font-feature-settings: "palt";
}

html {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05px;
  color: #000;
}

figure {
  margin: 0;
}

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

a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: var(--black);
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.pc-only,
.sp-only {
  display: none;
}

@media (min-width: 769px) {
  .pc-only {
    display: inherit;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: inherit;
  }
}
body {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
  line-height: 1.6;
  padding-top: 4.375rem;
  scroll-padding-top: 4.375rem;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  body {
    font-size: 1rem;
    padding-top: 4.375rem;
    scroll-padding-top: 4.375rem;
  }
}

.inner {
  width: min(100%, 700px);
  margin: 0 auto;
}

@media (max-width: 700px) {
  .inner {
    padding: 0 20px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
  padding: 1.25rem 0;
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav {
  z-index: 5;
}
.header-nav a {
  background: var(--orange);
  box-shadow: 4px 4px 6px #ccc;
  border-radius: 80px;
  padding: 0.625rem 1.25rem;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 520px) {
  .header-nav a {
    font-size: 1rem;
  }
}
.header-nav a::before {
  content: "";
  background: transparent url("../img/icon_tel.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 20px;
  display: block;
}
.header-logo {
  max-width: 120px;
  z-index: 5;
}
@media (max-width: 520px) {
  .header-logo {
    max-width: 80px;
  }
}
.header-right {
  display: flex;
  align-items: center;
  gap: 3.125rem;
}
@media (max-width: 520px) {
  .header-right {
    gap: 1.25rem;
  }
}
.header-toggle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.625rem;
  border: 1px solid var(--orange);
  padding: 20px 0 0;
  z-index: 5;
  cursor: pointer;
}
@media (max-width: 520px) {
  .header-toggle {
    width: 40px;
    height: 40px;
    padding: 9px 0 0;
    gap: 0.3125rem;
  }
}
.header-toggle span {
  background: var(--orange);
  width: 40px;
  height: 3px;
  display: block;
  transition: 0.3s all;
}
@media (max-width: 520px) {
  .header-toggle span {
    width: 20px;
  }
}
.header-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header-toggle.is-active span:nth-child(1) {
  transform: rotate(-45deg);
  top: 13px;
}
@media (max-width: 768px) {
  .header-toggle.is-active span:nth-child(1) {
    top: 8px;
  }
}
.header-toggle.is-active span:nth-child(3) {
  transform: rotate(45deg);
  top: -13px;
}
@media (max-width: 768px) {
  .header-toggle.is-active span:nth-child(3) {
    top: -8px;
  }
}
.header-list {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  background: #fff;
  padding: 8.75rem 1.875rem 1.875rem;
  display: none;
  width: 100%;
}
@media (max-width: 520px) {
  .header-list {
    padding: 5.625rem 1.25rem 1.25rem;
  }
}
.header-list.is-active {
  display: block;
}
.header-list__group {
  display: flex;
  gap: 0.625rem;
  flex-direction: column;
}
.header-list__item {
  width: 100%;
}
.header-list__item a {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}
.header-list__item a::before {
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 50%);
          clip-path: polygon(0 100%, 0 0, 100% 50%);
  content: "";
  width: 8px;
  height: 10px;
  background: var(--green);
  display: block;
}

.title {
  background: #ff0000;
  color: #fff;
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  text-align: center;
  padding: 0.625rem;
  margin-bottom: 2.5rem;
}

.main {
  overflow-x: hidden;
}

.mv {
  background: #ede7d1;
  padding: 3.125rem 0 5rem;
}
@media (max-width: 768px) {
  .mv {
    padding: 1.875rem 0 1.875rem;
  }
}
.mv-image {
  margin-bottom: 1.25rem;
}
.mv-lead {
  max-width: 500px;
  margin: 0 auto 1.875rem;
}
@media (max-width: 520px) {
  .mv-lead {
    margin: 0 auto 0.625rem;
  }
}
.mv-text {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  color: var(--orange);
}
@media (max-width: 520px) {
  .mv-text {
    text-align: left;
  }
}
.mv-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 520px) {
  .mv-list {
    gap: 0.625rem;
    margin-bottom: 1.875rem;
  }
}

.first {
  background: #ffc0a1;
  padding: 3.125rem 0 5rem;
}
@media (max-width: 768px) {
  .first {
    padding: 1.875rem 0 1.875rem;
  }
}
.first-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .first-list {
    gap: 0.625rem;
  }
}

.cta {
  background: var(--green);
  padding: 3.125rem 0 5rem;
}
@media (max-width: 768px) {
  .cta {
    padding: 1.875rem 0 1.875rem;
  }
}
.cta-image {
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .cta-image {
    margin-bottom: 1.875rem;
  }
}
.cta-image2 {
  max-width: 450px;
  margin: 0 auto 3.125rem;
}
@media (max-width: 768px) {
  .cta-image2 {
    margin-bottom: 1.875rem;
  }
}

.about {
  padding: 3.125rem 0 5rem;
  background: #ede7d1;
}
.about-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .about-head {
    gap: 0.65rem;
  }
}
@media (max-width: 767px) {
  .about-head {
    grid-template-columns: 1fr;
  }
}
.about-set__image {
  margin-bottom: 1.25rem;
  min-height: 230px;
}
@media (max-width: 768px) {
  .about-set__image {
    width: 80%;
    margin: 0 auto 1.25rem;
  }
}
.about-set__text {
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.about-bottom-set {
  position: relative;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .about-bottom-set {
    margin: 6.25rem auto;
  }
}
.about-bottom-set:last-child {
  margin-bottom: 0;
}
.about-bottom-set__text {
  padding: 1.875rem 6.875rem 1.875rem 1.875rem;
}
@media (max-width: 768px) {
  .about-bottom-set__text {
    font-size: 1.25rem;
    padding: 1.875rem;
  }
}
.about-bottom-set__text::before {
  content: "";
  height: 100px;
  width: 100%;
  -webkit-clip-path: polygon(100% 3%, 0% 100%, 100% 100%);
          clip-path: polygon(100% 3%, 0% 100%, 100% 100%);
  display: block;
  top: -99px;
  position: absolute;
  left: 0;
}
.about-bottom-set__label {
  z-index: 50;
  margin: 0 0 0 1.25rem;
}
.about-bottom-set__01 .about-bottom-set__label {
  width: 60vw;
  max-width: 400px;
}
@media (max-width: 768px) {
  .about-bottom-set__01 .about-bottom-set__label {
    max-width: 70vw;
  }
}
.about-bottom-set__02 .about-bottom-set__label {
  width: 60vw;
  max-width: 400px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .about-bottom-set__02 .about-bottom-set__label {
    max-width: 70vw;
  }
}
.about-bottom-set__03 .about-bottom-set__label {
  width: 60vw;
  max-width: 400px;
}
@media (max-width: 768px) {
  .about-bottom-set__03 .about-bottom-set__label {
    max-width: 70vw;
  }
}
.about-bottom-set__01 .about-bottom-set__text, .about-bottom-set__03 .about-bottom-set__text {
  background: var(--green);
}
.about-bottom-set__01 .about-bottom-set__text::before, .about-bottom-set__03 .about-bottom-set__text::before {
  background: var(--green);
}
.about-bottom-set__02 .about-bottom-set__text {
  padding: 1.875rem 1.875rem 1.875rem 6.875rem;
  background: var(--orange);
}
@media (max-width: 768px) {
 .about-bottom-set__02 .about-bottom-set__text {
   padding: 1.875rem;
  }
}
.about-bottom-set__02 .about-bottom-set__text::before {
  background: var(--orange);
}
.about-bottom-set__02 .about-bottom-set__text::before {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.about-bottom-set__image {
  z-index: 5;
}
.about-bottom-set__image--01 {
  max-width: 120px;
  right: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .about-bottom-set__image--01 {
    top: -5.5rem;
    width: clamp(90px, 20vw,120px);
  }
}
.about-bottom-set__image--02 {
  max-width: 120px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .about-bottom-set__image--02 {
    top: -5.5rem;
    width: clamp(90px, 20vw,120px);
  }
}
.about-bottom-set__image--03 {
  max-width: 120px;
  right: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .about-bottom-set__image--03 {
    top: -5.5rem;
   width: clamp(90px, 20vw,120px);
  }
}

.strong {
  padding: 3.125rem 0 5rem;
  background: var(--green);
}
.strong-lead {
  margin-bottom: 1.875rem;
}
.strong-table {
  width: 100%;
  color: #fff;
  margin-bottom: 3.125rem;
 table-layout: auto;
}
.strong-table th {
  font-size: 1.25rem;
  padding: 0.625rem;
  border-bottom: 3px solid #fff;
}
@media (max-width: 768px) {
  .strong-table th {
    font-size: 1rem;
  }
}
.strong-table td {
  border-bottom: 3px solid #fff;
  padding: 0.625rem;
  vertical-align: middle;
  font-weight: 700;
  font-size: 1.25rem;
  width: 33%;
  line-height: 1.2;
}
.strong-table__mark {
  font-size: 2.5rem !important;
  text-align: center;
}
.strong-table__mark--02 {
  font-size: 3.75rem !important;
}
.strong-image {
  max-width: 250px;
  margin: 0 auto;
}

.flow {
  background: #ffc0a1;
  padding: 3.125rem 0 5rem;
}
@media (max-width: 768px) {
  .flow {
    padding: 1.875rem 0;
  }
}
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.flow-list__item {
  background: var(--green);
  border-radius: 10px;
  padding: 1.875rem;
}
.flow-list__icon {
  max-width: 150px;
  margin: 0 auto;
  position: relative;
  top: -3.125rem;
  margin-bottom: -3.125rem;
}
.flow-list__label {
  color: #fff;
  font-weight: 700;
}
.flow-list__text {
  font-weight: 700;
}

.faq {
  background: #ede7d1;
  padding: 3.125rem 0 5rem;
}
@media (max-width: 768px) {
  .faq {
    padding: 1.875rem 0;
  }
}
.faq-list {
  margin-bottom: 1.875rem;
}
.faq-list__title {
  background: var(--green);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .faq-list__title {
    font-size: 1.25rem;
  }
}
.faq-list__min {
  font-size: 1rem;
  text-align: right;
  display: block;
  padding-top: 0.625rem;
}
@media (max-width: 768px) {
  .faq-list__min {
    font-size: 0.875rem;
    text-align: left;
  }
}

.consultation {
  padding: 3.125rem 0 5rem;
}
@media (max-width: 768px) {
  .consultation {
    padding: 0rem 0 1.875rem;
  }
}
.consultation-title {
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .consultation-title {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 1.875rem;
  }
}
.consultation-text {
  padding: 0 1.25rem;
  margin-bottom: 1.875rem;
}
.consultation-head {
  position: relative;
  padding-bottom: 8.25rem;
}
@media (max-width: 768px) {
  .consultation-head {
   padding-bottom: 20vw;
  }
}
.consultation-hokkaido {
  position: absolute;
  top: 240px;
  left: 0;
  width: 394px;
  height: 343px;
}
@media (max-width: 768px) {
  .consultation-hokkaido {
    width: 55vw;
    height: 45vw;
    top: 39vw;
  }
}
.consultation-image {
  margin-bottom: 3.125rem;
}
.consultation-sns {
  text-align: center;
}
.consultation-sns__lead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.consultation-sns__text {
  margin-bottom: 1.875rem;
}
.consultation-sns__icon {
  max-width: 70px;
  margin: 0 auto;
}

.cta2 {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin: 0 1.25rem 3.125rem;
}
.cta2-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0rem;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  padding: 1.25rem;
  line-height: 1.3;
}
.cta2-item-mail a {
  background: var(--green);
}
.cta2-item-mail2 a {
  background: #719F12;
}
.cta2-item-mail__bold {
  font-weight: 700;
  font-size: clamp(1.375rem, 5vw, 2.25rem);
}
.cta2-item-mail__text {
  font-size: clamp(1.625rem, 5vw, 2.5rem);
}
.cta2-item-tel a {
  background: var(--orange);
}
.cta2-item-tel__lead {
  font-size: clamp(1.25rem, 5vw, 1.875rem);
}
.cta2-item-tel__num {
  font-size: clamp(1.875rem, 5vw, 3.125rem);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.cta2-item-tel__num::before {
  content: "";
  background: transparent url("../img/icon_tel.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 35px;
  display: block;
  position: relative;
  top: 5px;
}
.cta2-item-tel__text {
  font-size: clamp(0.5625rem, 3.5vw, 1.25rem);
}

@media (max-width: 768px) {
  .bottom .inner {
    padding: 0;
  }
}

.footer {
  background: var(--green);
  padding: 3.125rem 0;
  color: #fff;
  margin-top: 3rem;
}
.footer-top__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-bottom: 3.125rem;
}
.footer-top__item {
  text-align: center;
}
.footer-top__item a {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo {
  max-width: 250px;
  margin: 0 auto 3.125rem;
}
.footer-text {
  text-align: center;
  margin-bottom: 1.875rem;
}
.footer-copy {
  text-align: center;
  font-size: 1rem;
}

.wavy-image {
  display: inline-block;
  animation: wave 1.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes wave {
  0%   { transform: scale(1) skewX(0deg); }
  25%  { transform: scale(1.08) skewX(2deg); }
  50%  { transform: scale(0.97) skewX(-2deg); }
  75%  { transform: scale(1.06) skewX(1.5deg); }
  100% { transform: scale(1) skewX(0deg); }
}

.fadein-left,
.fadein-right {
  opacity: 0;
  transition: all 0.6s ease-out;
  will-change: transform, opacity;
  position: relative;
}

.fadein-left {
  left: -100vw;
}

.fadein-right {
  right: -100vw;
}

.fadein-left.fadein-show {
  opacity: 1;
  left: 0;
}

.fadein-right.fadein-show {
  opacity: 1;
  right: 0;
}

.fixed a {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green);
  z-index: 999;
  display: block;
  text-indent: -9999px;
}

.fixed a::before {
  content: "";
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  display: block;
  width: 12px;
  height: 10px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-60%) translateX(-50%);
}
/*# sourceMappingURL=layout.css.map */