@charset "UTF-8";
/**
 * Normarize
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: min(4.8vw, 20px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #ffffff;
  color: #595757;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #595757;
  text-decoration: none;
}

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

figure {
  display: block;
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: left;
}

button, input, select, textarea {
  font: inherit;
}

/**
 * Section
 * セクション共通の背景、inner、見出しを定義
 * 背景は、Mdサイズ時にグラデーションから画像に切り替え
 * 背景の波形は、Smサイズ時に変形
 * 見出しは、Smサイズ時のフォントサイズを増大
 */
.area, .project, .intro {
  position: relative;
  padding: 3rem 0;
}

.area, .project, .intro {
  background: linear-gradient(135deg, #efeb64, #a3daf6);
}
@media (min-width: 945px) {
  .area, .project, .intro {
    background: url("./assets/bg_sub.jpg") no-repeat center center/cover scroll;
  }
}
.area::before, .project::before, .intro::before, .area::after, .project::after, .intro::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 20;
  background: url("./assets/wave.svg") no-repeat 0 0/cover scroll;
}
.area::before, .project::before, .intro::before {
  top: 0;
  left: 0;
  transform: rotate(180deg) translateY(-0.5rem) scaleY(2.5);
}
@media (min-width: 630px) {
  .area::before, .project::before, .intro::before {
    transform: rotate(180deg);
  }
}
.area::after, .project::after, .intro::after {
  right: 0;
  bottom: 0;
  transform: translateY(-0.5rem) scaleY(2.5);
}
@media (min-width: 630px) {
  .area::after, .project::after, .intro::after {
    transform: initial;
  }
}

.area__inner, .review__inner, .project__inner, .intro__inner {
  position: relative;
  width: min(100%, 63rem);
  margin: auto;
  padding: 0 clamp(0.75rem, 2.5%, 1.5rem) 3rem;
}

.area__heading, .review__heading, .project__heading, .intro__heading {
  margin: 3rem 0;
  text-align: center;
}

.area__headingInner, .review__headingInner, .project__headingInner, .intro__headingInner {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  color: #595757;
  font-weight: 700;
  font-size: 1.5rem;
}
@media (min-width: 630px) {
  .area__headingInner, .review__headingInner, .project__headingInner, .intro__headingInner {
    font-size: 3rem;
  }
}
.area__headingInner::before, .review__headingInner::before, .project__headingInner::before, .intro__headingInner::before, .area__headingInner::after, .review__headingInner::after, .project__headingInner::after, .intro__headingInner::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 6px;
  bottom: 0;
}
.area__headingInner::before, .review__headingInner::before, .project__headingInner::before, .intro__headingInner::before {
  left: 0;
  background-color: #ed6a1f;
}
.area__headingInner::after, .review__headingInner::after, .project__headingInner::after, .intro__headingInner::after {
  right: 0;
  background-color: #7ebfd8;
}

/**
 * Main Visual
 * 背景要素と画像要素から構成
 * #headerに重ねるため、両要素とも絶対配置し、aspect-ratioで高さを固定
 * BPは2点で、Smサイズ時に画像を切り替え、Lgサイズ時に高さの上限を固定する
 */
.mainVisual {
  position: absolute;
  width: 100%;
  aspect-ratio: 0.5;
  background: linear-gradient(135deg, #efeb64, #a3daf6);
}
@media (min-width: 630px) {
  .mainVisual {
    aspect-ratio: 1.5;
    background: url("./assets/bg_main.jpg") no-repeat center center/cover scroll;
  }
}
@media (min-width: 1260px) {
  .mainVisual {
    position: fixed;
    height: 100vh;
    aspect-ratio: initial;
  }
}
.mainVisual::before, .mainVisual::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 20;
  background: url("./assets/wave.svg") no-repeat 0 0/cover scroll;
}
.mainVisual::before {
  top: 0;
  left: 0;
  transform: rotate(180deg) translateY(-0.5rem) scaleY(2.5);
}
@media (min-width: 630px) {
  .mainVisual::before {
    transform: rotate(180deg);
  }
}
.mainVisual::after {
  right: 0;
  bottom: 0;
  transform: translateY(-0.5rem) scaleY(2.5);
}
@media (min-width: 630px) {
  .mainVisual::after {
    transform: initial;
  }
}
.mainVisual__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  margin: auto;
}
.mainVisual__image img {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}
@media (min-width: 1260px) {
  .mainVisual__image img {
    width: auto;
    height: 100%;
  }
}

/**
 * Header
 * タイトルとボタンを含むが、#mainVisualに重ねる空白のコンテナとして役目を担う
 * 高さは100vhだが、絶対配置のボタンエリアが6rem追加される
 */
.header {
  position: relative;
  width: 100%;
  aspect-ratio: 0.5;
}
@media (min-width: 630px) {
  .header {
    aspect-ratio: 1.5;
  }
}
@media (min-width: 945px) {
  .header {
    aspect-ratio: initial;
    height: 100vh;
  }
}
.header__title {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 0.75rem;
  color: #ee7a7a;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media (min-width: 630px) {
  .header__title {
    padding: 0.75rem 6rem;
  }
}
.header__maintitle {
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}
.header__subtitle {
  display: inline-block;
  font-size: 0.65rem;
  vertical-align: middle;
}
.header__buttonWrap {
  position: absolute;
  top: 100%;
  height: 6rem;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #ffffff;
}
.header__buttonWrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 100%;
  aspect-ratio: 20;
  background: url("./assets/wave.svg") no-repeat 0 0/cover scroll;
  transform: translateY(-0.5rem) scaleY(2.5);
}
@media (min-width: 630px) {
  .header__buttonWrap::after {
    transform: initial;
  }
}
.header__button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  display: block;
  width: min(87.5%, 24rem);
  height: 3rem;
  margin: auto;
  border: 2px solid #ee7a7a;
  border-radius: 1.5rem;
  background-color: #ffffff;
  color: #ee7a7a;
  font-size: 1rem;
  line-height: 3rem;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
.header__button:hover {
  background-color: #ee7a7a;
  color: #ffffff;
}
.header__button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.125rem;
  bottom: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: auto;
  border-radius: 50%;
  background: url("./assets/chevron-down.svg") no-repeat center center/contain scroll;
}

/**
 * Intro
 * 画面幅によって吹き出しの向きを調整
 * pickup要素の装飾はMdサイズから
 * catch要素を最後部に追加 (高さ9rem)
 */
.intro {
  margin-top: 6rem;
}
.intro__decorated {
  font-size: 1.125rem;
}
@media (min-width: 630px) {
  .intro__decorated {
    font-size: 2.25rem;
  }
}
.intro__decorated::before {
  content: "\\";
  font-size: 1.5rem;
}
@media (min-width: 630px) {
  .intro__decorated::before {
    font-size: 3rem;
  }
}
.intro__decorated::after {
  content: "/";
  font-size: 1.5rem;
}
@media (min-width: 630px) {
  .intro__decorated::after {
    font-size: 3rem;
  }
}
.intro__worries {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.intro__worries.--num_1 {
  flex-flow: row wrap;
  margin-bottom: 1.5rem;
}
.intro__worries.--num_2 {
  flex-flow: row-reverse wrap;
}
.intro__illust.--num_1 {
  flex: 0 1 18rem;
}
.intro__illust.--num_2 {
  flex: 0 1 18rem;
  padding: 0 1.5rem;
}
.intro__text {
  position: relative;
  flex: 0 1 24rem;
  padding: 0.75rem 1.5rem 1.5rem;
  border-radius: 6px;
  background-color: #ffffff;
}
.intro__text.--num_1::before, .intro__text.--num_2::before {
  content: "";
  position: absolute;
}
@media (max-width: 944.9px) {
  .intro__text.--num_1::before, .intro__text.--num_2::before {
    top: -3rem;
    right: 50%;
    margin-right: 1.5rem;
    border: 1.5rem solid transparent;
    border-bottom: 3rem solid #ffffff;
  }
}
@media (min-width: 945px) {
  .intro__text.--num_1::before {
    top: 50%;
    left: -3rem;
    margin-top: 1.5rem;
    border: 1.5rem solid transparent;
    border-right: 3rem solid #ffffff;
  }
  .intro__text.--num_2::before {
    top: 50%;
    right: -3rem;
    margin-top: 1.5rem;
    border: 1.5rem solid transparent;
    border-left: 3rem solid #ffffff;
  }
}
.intro__largeText {
  font-size: 1.2rem;
}
.intro__smallText {
  font-size: 0.8rem;
}
.intro__pickup {
  margin-top: 3rem;
  padding: 0.75rem 0;
  border-radius: 6px;
  background-color: #ffffff;
  color: #ee7a7a;
  text-align: center;
}
@media (min-width: 945px) {
  .intro__pickup {
    height: 7.5rem;
    margin-top: -0.75rem;
    padding: 2.025rem 0 0;
    background: url("./assets/textPickUp.svg") no-repeat 50% 50%;
    background-size: auto 7.5rem;
  }
}
.intro__pickupSmall {
  margin: 0;
  font-size: 0.7rem;
}
.intro__pickupLarge {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
}
.intro__em {
  position: relative;
  z-index: 0;
  display: inline-block;
  font-style: normal;
}
.intro__em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 6em;
  height: 0.5em;
  background-color: #f5fd24;
}
.intro__catchWrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 9rem;
  background-color: #ffffff;
}
.intro__catch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  display: block;
  width: 15rem;
  height: 6rem;
  margin: auto;
}
@media (min-width: 630px) {
  .intro__catch {
    width: 18.75rem;
    height: 7.5rem;
  }
}

/**
 * Project
 * amount要素をLgサイズ時に絶対配置に切り替える
 * button要素を最後部に追加 (高さ12rem)
 */
.project {
  display: block;
}
.project.--num_1 {
  margin-top: 9rem;
}
.project__headingInner img {
  display: inline-block;
  width: 3rem;
  margin-top: -0.5625rem;
  margin-right: 0.375rem;
}
@media (min-width: 630px) {
  .project__headingInner img {
    width: 6rem;
    margin-top: -1.125rem;
    margin-right: 0.75rem;
  }
}
.project__summary, .project__table {
  font-size: 0.8rem;
}
@media (min-width: 630px) {
  .project__summary, .project__table {
    font-size: 1rem;
  }
}
.project__target {
  display: flex;
  font-size: 0.72rem;
}
@media (min-width: 630px) {
  .project__target {
    font-size: 0.9rem;
  }
}
.project__target p:nth-child(1) {
  margin: 0;
  padding: 0.5rem;
  border-radius: 6px 0 0 6px;
  background-color: #ee7a7a;
  color: #ffffff;
  text-align: center;
}
.project__target p:nth-child(2) {
  margin: 0;
  padding: 0.25rem 1rem;
  border-radius: 0 6px 6px 0;
  background-color: #ffffff;
  color: #ee7a7a;
}
.project__target p:nth-child(2) span {
  font-size: 1.2em;
}
.project.--num_2 .project__target p:nth-child(2) {
  padding: 0.75rem 1rem;
}

.project__table {
  width: 100%;
  margin-top: 1em;
  overflow-x: auto;
}
.project__table table, .project__table p {
  width: 30rem;
}
@media (min-width: 630px) {
  .project__table table, .project__table p {
    width: 36rem;
  }
}
.project__table table td, .project__table p td {
  vertical-align: top;
}
.project__amount {
  width: 6rem;
  margin: 1.5rem auto;
}
@media (min-width: 1260px) {
  .project__amount {
    position: absolute;
    top: 10.5rem;
    right: 6rem;
    z-index: 20;
    width: 9rem;
  }
}
.project__images {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.project__image {
  flex: 0 1 30%;
}
.project__buttonWrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 12rem;
  background-color: #ffffff;
}
.project__button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  display: block;
  width: 18rem;
  height: 4.5rem;
  margin: auto;
  padding-top: 1rem;
  border: 2px solid #ee7a7a;
  border-radius: 2.5rem;
  background-color: #ffffff;
  color: #ee7a7a;
  font-size: 0.75rem;
  line-height: initial;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 630px) {
  .project__button {
    width: 24rem;
    height: 6rem;
    border-radius: 3.75rem;
    font-size: 1rem;
  }
}
.project__button span {
  font-weight: 700;
  font-size: 1.75em;
}
.project__button:hover {
  background-color: #ee7a7a;
  color: #ffffff;
}
.project__button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.125rem;
  bottom: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: auto;
  border-radius: 50%;
  background: url("./assets/chevron-down.svg") no-repeat center center/contain scroll;
}
.project__em {
  position: relative;
  z-index: 0;
  font-style: normal;
}
.project__em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 6em;
  height: 0.5em;
  background-color: #f5fd24;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}
.project__button:hover .project__em::after {
  opacity: 0;
}

.project__em strong {
  transform: scaleY(1.5);
}

/**
 * Review
 */
.review {
  position: relative;
  display: block;
  margin-top: 12rem;
  background-color: #ffffff;
}
.review__case {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  padding: 0.75rem 0;
  border: 1px solid #7ebfd8;
}
@media (min-width: 1260px) {
  .review__case {
    width: 87.5%;
  }
}
.review__case:nth-of-type(even) {
  border-color: #ed6a1f;
}
@media (min-width: 1260px) {
  .review__case:nth-of-type(even) {
    margin-left: 12.5%;
  }
}

.review__num {
  position: absolute;
  top: -0.75rem;
  left: 6rem;
  width: 6rem;
  background-color: #ffffff;
}
.review__caseInner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
}
.review__featured {
  flex: 0 1 15rem;
}
.review__image {
  display: block;
  width: 12rem;
  margin: 0 auto;
}
.review__desc {
  width: 15rem;
  height: 1.8rem;
  margin: auto;
  border: 1px solid #7ebfd8;
  border-radius: 0.9rem;
  color: #7ebfd8;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.6rem;
}
.review__case:nth-of-type(even) .review__desc {
  border-color: #ed6a1f;
  color: #ed6a1f;
}

.review__voice {
  flex: 0 1 20rem;
  padding: 0 0.75rem;
  color: #7ebfd8;
  line-height: 1.8;
}
.review__case:nth-of-type(even) .review__voice {
  color: #ed6a1f;
}

.review__content {
  font-size: 0.75rem;
  text-align: justify;
}
.review__amount {
  flex: 0 1 7.5rem;
  padding: 0 0.75rem;
}

/**
 * Area
 */
.area__map {
  display: none;
  margin: auto;
}
@media (max-width: 629.9px) {
  .area__map.--mb {
    display: block;
    width: min(100%, 20rem);
  }
}
@media (min-width: 630px) {
  .area__map.--lg {
    display: block;
    width: min(100%, 48rem);
  }
}
.area__map svg .cls-1 {
  fill: #ffffff;
  transition: all 0.25s ease-in-out;
}
.cls-0:hover .cls-1 {
  fill: #ee7a7a;
}

.area__map svg .cls-2 {
  fill: #595757;
  transition: all 0.25s ease-in-out;
}
.cls-0:hover .cls-2 {
  fill: #ffffff;
}

.area__textbox {
  display: none;
}
@media (min-width: 630px) {
  .area__textbox {
    position: absolute;
    top: 12rem;
    left: 5%;
    display: block;
    width: 12rem;
    height: 12rem;
    padding: 1.75rem;
    background: url("./assets/circularTextBox.svg") no-repeat center center/contain scroll;
    font-size: 0.8rem;
    text-align: justify;
  }
}
.area__image {
  display: none;
}
@media (min-width: 630px) {
  .area__image {
    position: absolute;
    bottom: 3rem;
    right: 4%;
    display: block;
    width: 25%;
  }
}

/**
 * Footer
 */
.footer {
  position: relative;
}
@media (min-width: 1260px) {
  .footer {
    width: 100%;
    height: 100vh;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  aspect-ratio: 20;
  background: url("./assets/wave.svg") no-repeat 0 0/cover scroll;
  transform: rotate(180deg) translateY(-0.5rem) scaleY(2.5);
}
@media (min-width: 630px) {
  .footer::before {
    transform: rotate(180deg);
  }
}
.footer__inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4.5rem;
  padding: 0.375rem;
  background-color: #ffffff;
  color: #ee7a7a;
  line-height: 1.8;
  text-align: center;
}
.footer__largeText {
  margin: 0;
  font-size: 1rem;
}
.footer__smallText {
  margin: 0;
  font-size: 0.65rem;
}
.footer__backToTop {
  position: absolute;
  top: -1.2rem;
  right: 1.2rem;
  width: 2.4rem;
  height: 2.4rem;
}