@charset "utf-8";

body {
  font-family: "Roboto", sans-serif, "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
img {
  max-width: 100%;
}
p {
  letter-spacing: 0.1em;
}
.sp-br {
  display: none;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .sp-br {
    display: block;
  }
}

/*================================================
    ↓↓↓　header　↓↓↓
=================================================*/
.header-wrapper {
  width: 100%;
  height: 80px;
  color: #000;
  background-color: rgba(251, 250, 247, 0.5);
  position: fixed;
  transition: 1s;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
.header-logo {
  width: 300px;
}
.ham-btn {
  display: none;
}
.header-nav_menu {
  display: flex;
  gap: 30px;
}
/*スクロールしたときのheaderデザイン jQueryでclass付与*/
.change-color {
  color: #333;
  background-color: rgba(246, 241, 229, 0.9);
  transition: 1s;
}

@media screen and (max-width: 767px) {
  .header-wrapper {
    padding: 0 20px;
  }
  .header-logo {
    width: 170px;
  }

  /*ハンバーガーメニュー*/
  .ham-btn {
    width: 39px;
    height: 39px;
    display: block;
    position: absolute;
    right: 20px;
  }
  /*メニュー閉じたときの3本線*/
  .bar {
    width: 20px;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333333;
    z-index: 99;
  }
  .bar-top {
    top: 10px;
    transition: 0.5s;
  }
  .bar-middle {
    top: 50%;
    transition: 0.5s;
  }
  .bar-bottom {
    bottom: 10px;
    transition: 0.5s;
  }
  /*メニュー開いた時の3本線*/
  .ham-btn.close .bar {
    background-color: #fff;
  }
  .ham-btn.close .bar-top {
    transform: translate(-50%, 10px) rotate(45deg);
    transition: 0.5s;
  }
  .ham-btn.close .bar-middle {
    opacity: 0;
    transition: 0.5s;
  }
  .ham-btn.close .bar-bottom {
    transform: translate(-50%, -7px) rotate(-45deg);
    transition: 0.5s;
  }
  .header-nav {
    visibility: hidden;
    opacity: 0;
  }
  /*開いたメニュー*/
  .header-nav.fade {
    visibility: visible;
    opacity: 1;
    width: 50vw;
    height: 100vh;
    background-color: rgba(52, 57, 46, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    transition: all 1s;
  }
  .header-nav_menu {
    color: #fff;
    display: block;
    position: absolute;
    top: 20%;
    left: 30%;
    transform: translateX(-50%);
  }
  .header-nav-menu_list {
    margin-bottom: 40px;
  }
}

/*================================================
    ↓↓↓　mv　↓↓↓
=================================================*/
.swiper {
  width: 100%;
  height: 100vh;
}

.mv-pc {
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}
.mv-sp {
  display: none;
}
/*======  ↓↓↓　ズームしながらフェードイン　↓↓↓  =======*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}
.swiper-slide img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .swiper {
    height: auto;
  }
  .mv-pc {
    display: none;
  }
  .mv-sp {
    display: block;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
  }
}

/*================================================
    ↓↓↓　top-comment　↓↓↓
=================================================*/
.top-comment_wrapper {
  max-width: 1160px;
  position: relative;
  padding: 50px 20px 0;
  margin: 50px auto 90px auto;
}
.top-comment_heading {
  font-size: 36px;
  text-align: center;
  line-height: 2.2rem;
  margin: 150px 0 70px 0;
}
.top-comment_image {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
.top-comment-image-sp {
  display: none;
}
.top-comment_inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.top-comment_contents1,
.top-comment_contents2 {
  max-width: 50%;
}
.top-comment_contents1 {
  line-height: 1.6;
}
.top-comment_contents2 {
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .top-comment_wrapper {
    padding: 30px 20px 0;
    margin: 30px auto 100px auto;
  }
  .top-comment_image {
    display: none;
  }
  .top-comment-image-sp {
    display: block;
    margin: 0 auto;
  }
  .top-comment_heading {
    font-size: 28px;
    margin: 20px 0 50px;
  }
  .top-comment_inner {
    display: block;
  }
  .top-comment_contents1,
  .top-comment_contents2 {
    max-width: 100%;
  }
  .top-comment_contents1 {
    margin-bottom: 70px;
  }
  .top-comment_contents2 {
    display: block;
    margin: 0 auto;
  }
}

/*================================================
    ↓↓↓　guide　↓↓↓
=================================================*/
.guide {
  position: relative;
  background-color: #f2eede;
}
.custom-shape-divider-top-1707744848 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-shape-divider-top-1707744848 svg {
  position: relative;
  display: block;
  width: calc(133% + 1.3px);
  height: 150px;
}
.custom-shape-divider-top-1707744848 .shape-fill {
  fill: #ffffff;
}
.guide-wrapper {
  max-width: 1160px;
  padding: 180px 20px 0 20px;
  margin: 0 auto;
}
.section-heading {
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.3em;
  line-height: 1.8rem;
}
.section-subheading {
  font-size: 1rem;
  letter-spacing: 0.3rem;
  position: relative;
}
.section-subheading::after {
  content: url(../images/all-page/section-heading.png);
  position: absolute;
  top: -15px;
  right: -50px;
}
.section-top-text {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.8;
  margin: 120px 0 100px;
}
.marker {
  font-size: 24px;
  background: linear-gradient(transparent 10%, #fae09e 70%);
}
.guide-title {
  font-size: 20px;
  max-width: 600px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  letter-spacing: 0.6em;
  background-color: #fff;
  margin: 0 auto;
}

/* \こんなお悩みありませんか？/ */
.guide-worry_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 70px 0 140px 0;
}
.guide-worry_container {
  display: flex;
  align-items: center;
}
.guide-worry_illust {
  object-position: center;
  object-fit: contain;
}
.guide-worry-text {
  max-width: 70%;
  border-top: dotted 2px #333;
  border-bottom: dotted 2px #333;
  padding: 7px 10px;
  margin-left: 10px;
}
.guide-worry_text-top {
  margin-bottom: 7px;
}
/* \その悩み　おまかせください！/ */
.guide-worry_wrapper2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  column-gap: 3%;
  row-gap: 70px;
  margin: 70px auto;
}
.solution {
  max-width: 280px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
}
.guide-worry-illust {
  width: 45%;
  margin-top: 40px;
}
.solution-text {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.6em;
  margin: 40px 0 30px;
}
.guide-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.guide-bottom_content {
  border: 1px solid #bcd0c0c0;
  border-radius: 20px;
  background-color: #bcd0c0c0;
  padding: 25px 25px;
  margin-left: 50px;
}
.guide-bottom_text {
  font-size: 18px;
  margin-bottom: 20px;
}
.to-guide {
  width: 320px;
  height: 63px;
  line-height: 63px;
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
  display: block;
  background: linear-gradient(125deg, #fdcb04 0%, #fde998 100%);
  border-radius: 0 10px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .guide-wrapper {
    padding: 140px 20px 70px 20px;
  }
  .section-heading {
    font-size: 1.8rem;
    line-height: 1.3rem;
  }
  .section-subheading {
    font-size: 1rem;
  }
  .section-heading::after {
    top: -10px;
  }
  .custom-shape-divider-top-1707744848 svg {
    height: 70px;
  }
  .section-subheading::after {
    left: -52px;
  }
  .section-top-text {
    font-size: 1.1rem;
    text-align: left;
    margin: 120px 0 70px;
  }
  .marker {
    font-size: 1.4rem;
    background: linear-gradient(transparent 10%, #fae09e 70%);
  }
  .guide-title {
    height: 50px;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 50px;
  }
  /* \こんなお悩みありませんか？/ */
  .guide-worry_wrapper {
    display: block;
    margin: 50px 0 70px 0;
  }
  .guide-worry-man {
    flex-direction: row-reverse;
  }
  .guide-worry-text {
    padding: 7px 0 7px 10px;
  }
  /* \その悩み　おまかせください！/ */
  .guide-worry_wrapper2 {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    column-gap: 3%;
    row-gap: 30px;
    margin: 50px auto;
  }
  .solution {
    max-width: 200px;
  }
  .guide-worry-illust {
    width: 40%;
  }
  .solution-text {
    font-size: 1.3rem;
    letter-spacing: 0.4em;
    margin: 40px 0 10px;
  }
  .guide-bottom {
    flex-direction: column-reverse;
  }

  .guide-bottom_content {
    border: 1px solid #bcd0c0c0;
    border-radius: 20px;
    background-color: #bcd0c0c0;
    padding: 25px 20px;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .guide-bottom_text {
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .flow-bottom {
    width: 300px;
    height: 43px;
    font-size: 16px;
    line-height: 43px;
  }
  .to-guide {
    width: 250px;
    height: 43px;
    line-height: 43px;
    font-size: 16px;
  }
}

/*================================================
    ↓↓↓　flow　↓↓↓
=================================================*/
.flow {
  position: relative;
  background-image: url(../images/home/flow-bg.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 70px;
}
.custom-shape-divider-top-1707805020 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.custom-shape-divider-top-1707805020 svg {
  width: calc(100% + 1.3px);
  height: 201px;
  display: block;
}

.custom-shape-divider-top-1707805020 .shape-fill {
  fill: #f2eede;
}
.flow-wrapper {
  max-width: 1160px;
  padding: 175px 20px 50px 20px;
  margin: 0 auto;
}
.flow-heading {
  font-size: 3rem;
  letter-spacing: 0.3em;
  line-height: 1.8rem;
  text-align: center;
}
.flow-subheading {
  font-size: 1rem;
  letter-spacing: 0.3rem;
  position: relative;
}
.flow-subheading::after {
  position: absolute;
  content: url(../images/all-page/section-heading.png);
  top: -15px;
  left: -50px;
}
/* フローシート */
.flow-container {
  max-width: 1000px;
  background-color: #fff;
  border-radius: 15px;
  padding: 70px;
  margin: 0 auto;
}
.flow-inner {
  display: flex;
  align-items: center;
}
.flow-contents {
  width: 100%;
  margin-left: 40px;
}
.flow-numbering {
  font-size: 78px;
  font-weight: bold;
  color: chocolate;
}
.flow-title {
  font-size: 1.5rem;
  border-top: 2px solid #cbcbcb;
  padding-top: 25px;
  margin-bottom: 10px;
}
.flow-text {
  line-height: 1.6rem;
  padding-bottom: 25px;
}
.flow-text-last {
  border-bottom: 2px solid #cbcbcb;
}
/* フローシートの下 */
.flow-under {
  text-align: center;
  margin: 70px auto;
}
.flow-under-text {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 23px;
}

@media screen and (max-width: 767px) {
  .custom-shape-divider-top-1707805020 svg {
    height: 100px;
  }
  .flow-wrapper {
    padding: 150px 20px 20px 20px;
  }
  .flow-heading {
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.7rem;
    position: relative;
  }
  .flow-subheading::after {
    position: absolute;
    content: url(../images/all-page/section-heading.png);
    top: -33px;
    left: 26px;
  }
  /* フローシート */
  .flow-container {
    padding: 50px 10px;
    margin: 0 auto;
  }
  .flow-inner {
    align-items: start;
  }
  .flow-contents {
    margin-left: 10px;
  }
  .flow-numbering {
    font-size: 68px;
    font-weight: bold;
    color: chocolate;
  }
  .flow-title {
    font-size: 1.2rem;
    border-top: 2px solid #cbcbcb;
    padding-top: 20px;
    margin-bottom: 15px;
  }
  .flow-text {
    line-height: 1.3rem;
    padding-bottom: 15px;
  }
  .flow-text-last {
    border-bottom: 2px solid #cbcbcb;
  }
  /* フローシートの下 */
  .flow-under {
    margin: 50px auto;
  }
  .flow-under-text {
    font-size: 1.3em;
    letter-spacing: normal;
    margin-bottom: 17px;
  }
}

/*================================================
    ↓↓↓　contact-cta　↓↓↓
=================================================*/
.contact-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-cta-left,
.contact-cta-right {
  width: 30%;
}
.cta1,
.cta2 {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}
.contact-cta-inner {
  width: 40%;
  text-align: center;
  background-color: #9fbcce;
  padding: 50px 20px;
}
.contact-cta_heading {
  font-size: clamp(3rem, 4vw + 1rem, 5rem);
  color: #fff;
  line-height: 0.8em;
  margin-bottom: 30px;
}
.contact-cta-heading-sub {
  font-size: clamp(1.375rem, 2vw + 1rem, 2.25rem);
}
.contact-cta-text {
  line-height: 1.7em;
  margin-bottom: 30px;
}
.to-contact-btn {
  width: 250px;
  height: 63px;
  line-height: 63px;
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
  display: block;
  background: linear-gradient(125deg, #fdcb04 0%, #fde998 100%);
  border-radius: 0 10px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.to-contact-btn::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: -100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 28%,
    rgba(255, 255, 255, 0.75) 32%,
    rgba(255, 255, 255, 0.75) 78%,
    rgba(255, 255, 255, 0) 82%
  );
  animation: shine-loop 3s linear infinite;
}
@keyframes shine-loop {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(200%);
  }
}

@media screen and (max-width: 767px) {
  .contact-cta {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-cta-left,
  .contact-cta-right {
    width: 100%;
  }
  .sp-cta1 {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center;
  }
  .sp-cta2 {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: top;
  }
  .contact-cta-inner {
    width: 100%;
  }
  .contact-cta-text {
    letter-spacing: 0;
  }
  .to-contact-btn {
    width: 200px;
    height: 45px;
    line-height: 45px;
  }
}

/*================================================
    ↓↓↓　map　↓↓↓
=================================================*/
.map {
  margin-top: 70px;
}
iframe {
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 767px) {
  iframe {
    height: 400px;
  }
}

/*================================================
    ↓↓↓　footer　↓↓↓
=================================================*/

.footer {
  position: relative;
}
.footer-illust {
  width: 100%;
  height: 91px;
  object-fit: cover;
  position: absolute;
  top: -90px;
}
.footer-wrapper {
  background-color: #a1b8c7;
  padding: 20px 20px 10px 20px;
}
.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-nav-menu {
  font-size: 0.8rem;
  color: #fff;
  display: flex;
  gap: 30px;
  justify-content: left;
}
.copyright {
  font-size: 0.75rem;
  color: #dbdbdb;
  text-align: right;
  margin: 7px 0;
}
.pageTop {
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 56px;
}

@media screen and (max-width: 767px) {
  .footer-illust {
    height: 77px;
    top: -73px;
  }

  .footer-wrapper {
    padding: 10px 20px 10px 20px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  .footer-nav-menu {
    font-size: 0.6rem;
    column-gap: 15px;
    row-gap: 10px;
    flex-wrap: wrap;
    justify-content: left;
  }
  .copyright {
    font-size: 0.6rem;
  }
  .pageTop {
    width: 40px;
    right: 10px;
    bottom: 61px;
  }
}
