@charset "UTF-8";
/* 共通関数
----------------------- */
/* ===============================================
コンテナ―
=============================================== */
.l-container {
  max-width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .l-container {
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 100%;
  }
}
.l-container--form {
  max-width: 900px;
}

/* セクションレイアウト
----------------------- */
/* ヘッダー
----------------------- */
.l-header {
  background: #00BEDB;
  height: 80px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}
.l-header__pic {
  max-width: 890px;
  margin: 0 auto;
}

/* フッター
----------------------- */
.l-footer__top {
  background: #fff;
  border-top: 2px solid #eee;
  color: #666;
  padding: 2em 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-footer__top {
    font-size: 14px;
    padding: 1.5em 0;
  }
}
.l-footer__top-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1.5em;
  column-gap: 1.5em;
  align-items: center;
  margin: 1em auto 0;
}
@media screen and (max-width: 767px) {
  .l-footer__top-item {
    width: 100%;
    max-width: 160px;
  }
}
.l-footer__top-item a {
  display: block;
  transition: 0.3s;
  display: grid;
  place-content: center;
}
.l-footer__top-item a:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.l-footer__top-item img {
  max-width: 160px;
}
.l-footer__top-item--border {
  border: 1px solid #dddddd;
}
.l-footer__last {
  background: #00BEDB;
  color: #fff;
  display: grid;
  place-content: center;
  place-items: center;
  padding: 2em 0 2em;
}
.l-footer__name {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .l-footer__name {
    font-size: 18px;
  }
}
.l-footer__name .big {
  font-size: 1.5em;
}
.l-footer__copy {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 12px;
  }
}

/* 共通設定
----------------------- */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  background: #E6F6FF;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.4;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

main {
  width: 100%;
}

/* リンク
----------------------- */
.f-link {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s;
}
.f-link:hover {
  transition: 0.3s;
  opacity: 0.7;
}

/* 画像
----------------------- */
.f-img {
  width: 100%;
  display: block;
  object-fit: contain;
}

/* フェードイン
----------------------- */
.js-fade {
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

.js-fade.is-loaded {
  opacity: 1;
}

/* セクション イントロ
----------------------- */
.c-section-intro {
  background: #00BEDB;
  color: #fff;
  text-align: center;
  padding: 0.4em 0;
  font-size: 30px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-section-intro {
    font-size: 18px;
  }
}
.c-section-intro::after {
  position: absolute;
  background: #00BEDB;
  content: "";
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  width: 2em;
  height: 0.8em;
  bottom: -0.6em;
  left: 50%;
  transform: translateX(-50%);
}
.c-section-intro--dark {
  background: #008BA6;
}
.c-section-intro--dark::after {
  background: #008BA6;
}

/* 要素を光らせる
----------------------- */
.c-shine {
  position: relative;
  overflow: hidden;
}
.c-shine::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 40%;
  height: 160%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  transform: skewX(-25deg);
  animation: shine 2s linear infinite;
}
.c-shine--form {
  border-radius: 50px;
}
.c-shine--circle {
  border-radius: 50%;
}
.c-shine--delay::before {
  animation-delay: 0.4s;
}

@keyframes shine {
  0% {
    left: -60%;
  }
  25% {
    left: 160%;
  }
  100% {
    left: 160%;
  }
}
/* ボタン
----------------------- */
.c-orange-btn {
  width: 100%;
}
.c-orange-btn__link {
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.1));
}
.c-orange-btn__link:hover {
  filter: none;
  transform: translateY(0.1em);
}

.c-main-btn {
  position: relative;
  background: #FFFADB;
  border-radius: 10px;
  border: #fff 3px solid;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.1));
  max-width: 846px;
  margin: 0 auto;
  container-type: inline-size;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 60;
}
@media screen and (max-width: 767px) {
  .c-main-btn {
    align-items: flex-end;
    padding-right: 1em;
    height: 100px;
  }
}
.c-main-btn .main-free {
  width: 14cqw;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 0.5em;
  transform: translateY(-50%);
}
.c-main-btn .main-house {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14cqw;
}
@media screen and (max-width: 767px) {
  .c-main-btn .main-house {
    display: none;
  }
}
.c-main-btn .main-house img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  display: block;
}
.c-main-btn__link {
  background: linear-gradient(to top, #9E0B11 0%, #ED1C24 100%);
  width: 60cqw;
  height: 100px;
  display: grid;
  place-content: center;
  place-items: center;
  border: 3px solid #fff;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.1));
  border-radius: 10px;
  color: #fff;
  font-size: clamp(18px, 15.2440944882px + 0.7874015748vw, 26px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-main-btn__link {
    width: 83cqw;
    font-size: 4cqw;
    height: 60px;
  }
}
.c-main-btn__link:hover {
  filter: none;
  transform: translateY(0.1em);
}
.c-main-btn__link .btn-inner {
  display: flex;
  align-items: center;
}
.c-main-btn__link i {
  font-size: 1.5em;
  padding-right: 0.5em;
}
.c-main-btn__link::after {
  content: "\f138";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}

.c-sub-btn {
  background: #fff;
  border-radius: 10px;
  height: 100px;
  margin: 1em 0;
  container-type: inline-size;
  display: grid;
  place-content: center;
  z-index: 60;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-sub-btn {
    border-radius: 7px;
  }
}
.c-sub-btn__link {
  background: linear-gradient(to top, #9E0B11 0%, #ED1C24 100%);
  width: 60cqw;
  height: 70px;
  display: grid;
  place-content: center;
  place-items: center;
  border: 3px solid #fff;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.1));
  border-radius: 10px;
  color: #fff;
  font-size: clamp(16px, 12.5551181102px + 0.9842519685vw, 26px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-sub-btn__link {
    width: 83cqw;
    font-size: 4cqw;
    height: 60px;
  }
}
.c-sub-btn__link:hover {
  filter: none;
  transform: translateY(0.1em);
}
.c-sub-btn__link .btn-inner {
  display: flex;
  align-items: center;
}
.c-sub-btn__link i {
  font-size: 1.5em;
  padding-right: 0.5em;
}
.c-sub-btn__link::after {
  content: "\f138";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}

/* ロゴ
----------------------- */
/* 見出しタイトル
----------------------- */
.c-title {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 18px;
  }
}
.c-title::before {
  content: "";
  position: absolute;
  height: 3px;
  background: #00BEDB;
  width: 100%;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  z-index: 0;
}
.c-title .title-inner {
  position: relative;
  z-index: 20;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
}
.c-title .title-inner::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 110%;
  background: #E6F6FF;
  z-index: -1;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}
.c-title--white .title-inner::after {
  background: #fff;
}
.c-title .title-big {
  font-size: 1.2em;
  font-weight: 900;
}

/* ボックス
----------------------- */
.c-box_l {
  background: #FFFADB;
  border: 3px solid #FF8E66;
  border-radius: 10px;
  padding: 0.5em;
  width: 100%;
  max-width: 800px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  column-gap: 1em;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-box_l {
    margin: 10px auto 0;
  }
}
.c-box_l__pic {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 120px;
}
.c-box_l__txt {
  font-size: 1.2em;
  flex: 0 0 auto;
  white-space: nowrap;
}
.c-box_l__txt .big {
  font-size: 1.2em;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .c-box_l__txt {
    font-size: 16px;
  }
}

.c-box_s {
  background: #E6F6FF;
  border: 3px solid #00BEDB;
  border-radius: 10px;
  padding: 0.5em;
  width: 100%;
  max-width: 800px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  column-gap: 1em;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-box_s {
    margin: 10px auto 0;
  }
}
.c-box_s__pic {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 80px;
}
@media screen and (max-width: 767px) {
  .c-box_s__pic {
    max-width: 60px;
  }
}
.c-box_s__txt {
  font-size: 1.2em;
  flex: 0 0 auto;
  white-space: nowrap;
}
.c-box_s__txt .big {
  font-size: 1.2em;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .c-box_s__txt {
    font-size: 16px;
  }
}

/* フォーム
----------------------- */
.c-form input,
.c-form select {
  background: #f2f2f2;
  width: 100%;
  height: 60px;
  padding: 0.3em 1em;
  border-radius: 5px;
}
.c-form input::placeholder,
.c-form select::placeholder {
  color: #888888;
  font-weight: 400;
}
.c-form input[type=checkbox] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 1.5em;
}
.c-form input[type=radio] {
  appearance: auto;
  -webkit-appearance: radio;
  width: 1em;
}
.c-form__item {
  margin-bottom: 1.5em;
}
.c-form__item:last-child {
  margin-bottom: 0;
}
.c-form__title {
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
.c-form__require {
  margin-left: 1em;
  color: #fff;
  background: #C1272D;
  font-size: 0.8em;
  padding: 0em 0.6em 0.2em 0.6em;
  border-radius: 3px;
}
.c-form__select {
  position: relative;
}
.c-form__select::after {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  color: #00BEDB;
  font-size: 1.8em;
}
.c-form__radio-area {
  display: flex;
  column-gap: 2em;
  align-items: center;
  padding: 0 1em;
}
.c-form__radio {
  align-items: center;
  display: flex;
  column-gap: 0.4em;
}
.c-form__check {
  text-align: center;
  margin: 40px 0px;
}
@media screen and (max-width: 767px) {
  .c-form__check {
    margin: 20px 0px;
  }
}
.c-form__check label {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5em;
}
.c-form__link {
  color: #00BEDB;
  text-decoration: underline;
  transition: 0.3s;
}
.c-form__link:hover {
  color: #F15A24;
  transition: 0.3s;
}
.c-form__privacy {
  text-align: center;
  margin-bottom: 0.5em;
}
.c-form__btnarea {
  width: 100%;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.c-form__btnarea:hover {
  filter: none;
  transform: translateY(0.1em);
  transition: 0.3s;
}
.c-form__btn {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 783/121;
  background: url("../img/form_btn.webp") center/contain no-repeat !important;
  border: none;
  cursor: pointer;
  font-size: 0;
  color: transparent;
  position: relative;
  z-index: 1;
}

/* 要素を光らせる
----------------------- */
.c-phone-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-phone-wrap::before,
.c-phone-wrap::after {
  content: "";
  position: absolute;
  width: 1.8em;
  height: 1.8em;
  border: 0.2em solid rgba(0, 190, 219, 0.5);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.4);
  animation: ripple 2s infinite;
}

.c-phone-wrap::after {
  animation-delay: 0.25s;
}

@keyframes phoneRing {
  /* 普段は止まる */
  0%, 75%, 100% {
    transform: rotate(0deg);
  }
  /* 着信 */
  78% {
    transform: rotate(-6deg);
  }
  80% {
    transform: rotate(6deg);
  }
  82% {
    transform: rotate(-3deg);
  }
  84% {
    transform: rotate(3deg);
  }
  86% {
    transform: rotate(-2deg);
  }
  88% {
    transform: rotate(2deg);
  }
  90% {
    transform: rotate(0deg);
  }
}
@keyframes ripple {
  0%, 72% {
    opacity: 0;
    transform: scale(0.4);
  }
  76% {
    opacity: 0.8;
  }
  90% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}
/* ===============================================
キ－ビジュアル
=============================================== */
.p-kv__main {
  width: 100%;
  aspect-ratio: 192/79;
}
.p-kv__btnarea {
  position: relative;
  container-type: inline-size;
  width: clamp(320px, 161.5354330709px + 45.2755905512vw, 780px);
  margin: 0 auto;
  display: grid;
  place-content: center;
  place-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-kv__btnarea {
    width: 100%;
  }
}
.p-kv__txt {
  font-size: clamp(26px, 3vw, 45px);
  white-space: nowrap;
  position: relative;
  background: linear-gradient(transparent 95%, #FF8E66 5%);
  text-shadow: 3px 3px 5px #fff, -3px 3px 5px #fff, 3px -3px 5px #fff, -3px -3px 5px #fff, 0 0 25px #fff, 0 0 50px #fff;
}
.p-kv__txt span.txt-big {
  font-weight: 900;
  font-size: 1.5em;
}
.p-kv__txt span.txt-red {
  color: #C1272D;
  font-weight: 900;
  font-size: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-kv__txt {
    font-size: clamp(12px, 3.4vw, 800px);
  }
}
.p-kv__btn {
  width: 100cqw;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .p-kv__btn {
    margin-top: 0.5em;
  }
}

/* ===============================================
安心してご相談いただける理由があります
=============================================== */
.p-achievements {
  text-align: center;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-achievements {
    margin: 20px auto;
  }
}
.p-achievements__txt {
  font-size: clamp(14px, 9.5216535433px + 1.2795275591vw, 27px);
  font-weight: 700;
}
.p-achievements__wrapper {
  display: flex;
  justify-content: center;
  column-gap: 1.5em;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .p-achievements__wrapper {
    column-gap: 0.5em;
    margin: 10px auto 0;
  }
}
.p-achievements__caption {
  text-align: right;
  font-size: clamp(12px, 10.6220472441px + 0.3937007874vw, 16px);
}
.p-achievements__pic {
  width: 33%;
}

/* ===============================================
このような方のためのサービスです
=============================================== */
.p-target {
  margin: 20px 0;
}
.p-target__top {
  background: #FFE65A;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  position: relative;
  max-width: 860px;
  margin: 2em auto 0;
  padding: 0.2em 0;
}
@media screen and (max-width: 767px) {
  .p-target__top {
    font-size: 16px;
    padding: 0.5em 0;
  }
}
.p-target__top::after {
  position: absolute;
  background: #FFE65A;
  content: "";
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  width: 2em;
  height: 1em;
  bottom: -0.8em;
  left: 50%;
  transform: translateX(-50%);
}
.p-target__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1em;
  row-gap: 0.5em;
  margin: 2em auto;
  max-width: 860px;
}
@media screen and (max-width: 767px) {
  .p-target__list {
    column-gap: 0.5em;
  }
}
.p-target__item {
  background: #fff;
  border: 2px solid #00BEDB;
  border-radius: 10px;
  width: 100%;
  min-height: 77px;
  display: grid;
  place-content: center start;
  padding: 0 1em 0 3em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-target__item {
    padding: 0 0.5em 0 2.5em;
  }
}
.p-target__item::before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #C1272D;
  top: 50%;
  left: 0.3em;
  transform: translateY(-50%);
  font-size: 1.8em;
}
@media screen and (max-width: 767px) {
  .p-target__item::before {
    font-size: 1.5em;
  }
}
.p-target__last {
  text-align: center;
  position: relative;
  margin: 2em 0 0.5em;
  z-index: 60;
}
.p-target__last::before {
  position: absolute;
  content: "\f103";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  top: -1.3em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5em;
  color: #00BEDB;
}

/* ===============================================
こんなお悩みはありませんか？
=============================================== */
.p-worries {
  background-image: repeating-linear-gradient(-45deg, #00bedb, #00bedb 10px, #1ec3de 10px, #1ec3de 20px);
  padding: 160px 0 40px;
  margin-top: -120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-worries {
    margin-top: -80px;
    padding: 100px 0 20px;
  }
}
.p-worries::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: -1px;
  background: #E6F6FF;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-worries::before {
    height: 60px;
  }
}
.p-worries__contents {
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  display: grid;
  place-content: center;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-worries__contents {
    padding: 20px 2%;
  }
}
.p-worries__title {
  text-align: center;
}
.p-worries__wrapper {
  display: flex;
  align-items: flex-end;
  column-gap: 1em;
  justify-content: space-between;
  margin: 1em 0;
  max-width: 800px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-worries__wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.p-worries__wrapper::after {
  position: absolute;
  content: "";
  background: #00BEDB;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 180px;
  height: 30px;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-worries__wrapper::after {
    bottom: -30px;
  }
}
.p-worries__pic {
  min-width: 0;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-worries__pic {
    width: 100px;
    padding: 0.5em 1em 0 0;
  }
}
.p-worries__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex: 1 1 auto;
  gap: 0.5em;
}
.p-worries__item {
  width: calc(50% - 0.3em);
  background: #E6F6FF;
  border-radius: 10px;
  padding: 0.5em 1em 0.5em 3em;
  position: relative;
}
.p-worries__item::before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #00BEDB;
  top: 50%;
  left: 0.3em;
  transform: translateY(-50%);
  font-size: 1.8em;
}
@media screen and (max-width: 767px) {
  .p-worries__item::before {
    font-size: 1.5em;
  }
}
.p-worries__before {
  margin-top: clamp(20px, 13.1102362205px + 1.968503937vw, 40px);
}

/* ===============================================
二大地苑が、お客さまにお約束する5つのこと
=============================================== */
.p-promise {
  background: #E6F6FF;
  padding: 60px 0 40px;
}
@media screen and (max-width: 767px) {
  .p-promise {
    padding: 40px 0 40px;
  }
}
.p-promise__list {
  margin: 80px auto;
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-promise__list {
    margin: 60px auto 40px;
    row-gap: 40px;
    column-gap: 10px;
  }
}
.p-promise__item {
  width: calc(33% - 20px);
  background: #fff;
  display: grid;
  row-gap: 0.5em;
  place-content: center;
  place-items: center;
  border-radius: 10px;
  border: 2px solid #00BEDB;
  padding: 1.5em 0 0.5em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-promise__item {
    width: calc(50% - 20px);
    padding: 1.5em 0.7em 0.5em;
  }
}
.p-promise__item .promise-head {
  position: absolute;
  width: 80px;
  height: 80px;
  container-type: inline-size;
  background: #00A3C2;
  color: #fff;
  display: grid;
  place-content: center;
  border-radius: 50%;
  line-height: 1.1;
  font-size: 18px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.p-promise__item .promise-head .title-ansin {
  font-size: 25cqw;
}
.p-promise__item .promise-head .title-num {
  font-family: "Oswald", sans-serif;
  color: yellow;
  font-size: 45cqw;
}
@media screen and (max-width: 767px) {
  .p-promise__item .promise-head {
    width: 50px;
    height: 50px;
    top: -36px;
  }
}
.p-promise__item .promise-pic {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .p-promise__item .promise-pic {
    width: 60px;
  }
}
.p-promise__last {
  text-align: center;
}
.p-promise__before {
  margin-bottom: 0.5em;
}

/* ===============================================
二大地苑だからできる、買取サービス
=============================================== */
.p-service {
  background: #fff;
  padding: 190px 0 90px;
  margin-top: -160px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service {
    margin-top: -100px;
    padding: 100px 0 60px;
  }
}
.p-service::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: -1px;
  background: #E6F6FF;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-service::before {
    height: 60px;
  }
}
.p-service__contents {
  margin-top: 1em;
  background: #E6F6FF;
  border: 3px solid #00BEDB;
  border-radius: 10px;
  padding: 2em 2em 90px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-service__contents {
    padding: 1em 1em 60px;
  }
}
.p-service__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .p-service__list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5em;
  }
}
.p-service__item {
  display: grid;
  place-content: center;
  background: #fff;
  border-radius: 10px;
}
.p-service__item--icon {
  background: #E6F6FF;
}
.p-service__item--icon .service-icon {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .p-service__item--icon {
    display: none;
  }
}
.p-service__item img {
  max-width: 280px;
  max-height: 193px;
}
@media screen and (max-width: 767px) {
  .p-service__item img {
    width: 100%;
    height: auto;
  }
}
.p-service__box {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 640px;
}
@media screen and (max-width: 767px) {
  .p-service__box {
    max-width: 320px;
    bottom: -50px;
  }
}
.p-service__bg {
  position: absolute;
  height: 500px;
  width: 100%;
  background-image: repeating-linear-gradient(-45deg, #00bedb, #00bedb 10px, #1ec3de 10px, #1ec3de 20px);
  z-index: 0;
  bottom: 0;
}
.p-service__bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: -1px;
  background: #fff;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-service__bg::before {
    height: 60px;
  }
}
.p-service__btn {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-service__btn {
    margin-top: 70px;
  }
}

/* ===============================================
お客様からいただく言葉
=============================================== */
.p-voice {
  background: #F5F5F5;
  display: grid;
  place-content: center;
  place-items: center;
  text-align: center;
  padding: 60px 0;
}
.p-voice__title {
  font-size: 36px;
  border-bottom: 5px dotted #00BEDB;
}
@media screen and (max-width: 767px) {
  .p-voice__title {
    font-size: clamp(18px, 5vw, 22px);
  }
}
.p-voice__title .big {
  font-size: 1.2em;
}
.p-voice__txt {
  margin: 20px 0;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-voice__txt {
    font-size: 18px;
  }
}
.p-voice__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-voice__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__item:nth-last-child(-n+2) {
    display: none;
  }
}

/* ===============================================
買取と仲介の比較
=============================================== */
.p-comparison {
  background: #fff;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-comparison {
    padding: 40px 0;
  }
}
.p-comparison__contents {
  overflow-x: auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .p-comparison__contents {
    padding-bottom: 2em;
    display: block;
    place-content: center;
    place-items: center;
  }
}
.p-comparison__img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-comparison__img {
    min-width: 600px;
    max-width: none;
  }
}
.p-comparison__box {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-comparison__box {
    margin-top: 30px;
  }
}
.p-comparison__scroll {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-comparison__scroll {
    vertical-align: middle;
    display: block;
    margin: 1em;
    font-size: 1.2em;
  }
  .p-comparison__scroll .arrow {
    display: inline-block;
    font-size: 1.5em;
    padding-right: 0.2em;
  }
}

/* ===============================================
代表からのメッセージ
=============================================== */
.p-message {
  background: url(../img/message_bg.jpg) no-repeat center bottom/cover;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding: 60px 0;
  }
}
.p-message__contents {
  background: #fff;
  border-radius: 10px;
  filter: drop-shadow(6px 6px 6px rgba(0, 19, 70, 0.3));
  container-type: inline-size;
}
.p-message__wrapper {
  position: relative;
}
.p-message__pic {
  position: absolute;
  width: 30cqw;
  bottom: 0;
  left: 6cqw;
}
@media screen and (max-width: 767px) {
  .p-message__pic {
    left: 50%;
    transform: translateX(-50%);
    width: 45cqw;
    bottom: 0;
  }
}
.p-message__desc {
  width: 64cqw;
  margin-left: auto;
  margin-right: 0;
  padding: 4cqw;
}
@media screen and (max-width: 767px) {
  .p-message__desc {
    width: 100cqw;
    padding-bottom: 65cqw;
  }
}
.p-message__title {
  font-size: 3cqw;
}
@media screen and (max-width: 767px) {
  .p-message__title {
    font-size: clamp(16px, 4.7cqw, 40px);
  }
}
.p-message__title .title-inner {
  display: inline-block;
  transform: skewX(-10deg) scaleX(0.97);
  text-decoration: underline;
  text-decoration-color: #00BEDB;
  text-underline-offset: 0.2em;
  line-height: 1.8;
}
.p-message__main {
  margin-top: 2cqw;
}
@media screen and (max-width: 767px) {
  .p-message__main {
    margin-top: 6cqw;
  }
}
.p-message__sub-title {
  background: #00BEDB;
  color: #fff;
  font-size: 1.5cqw;
  display: inline-block;
  padding: 0.2em 1em;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-message__sub-title {
    font-size: 4cqw;
  }
}
.p-message__txt-area {
  font-size: 1.9cqw;
  margin: 1.5cqw 0 3cqw;
}
@media screen and (max-width: 767px) {
  .p-message__txt-area {
    margin: 4cqw 0 5cqw;
    font-size: clamp(14px, 4cqw, 18px);
  }
}
.p-message__txt-area .txt {
  margin-bottom: 0.5em;
}
.p-message__bottom {
  font-size: 1.6cqw;
  border-top: 5px dotted #00BEDB;
  padding: 0.5em 1em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-message__bottom {
    font-size: 3.6cqw;
    padding: 0.5em;
    border-top: 3px dotted #00BEDB;
  }
}
.p-message__google {
  position: relative;
  display: inline-block;
}
.p-message__google::before {
  content: "";
  position: absolute;
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-size: contain;
  background: #ccc;
  width: 10cqw;
  height: 1.8cqw;
  left: -10.5cqw;
  mask-image: url("../img/message_icon.webp");
  background: linear-gradient(90deg, #00BEDB 0%, #00BEDB 92%, #ccc 92%, #ccc 100%);
  top: 0.5cqw;
}
@media screen and (max-width: 767px) {
  .p-message__google::before {
    width: 26cqw;
    height: 4.68cqw;
    left: -28cqw;
  }
}
.p-message__date {
  font-size: 1.4cqw;
  text-align: right;
  display: block;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-message__date {
    font-size: 3.5cqw;
  }
}

/* ===============================================
よくあるご質問
=============================================== */
.p-faq {
  background: #F5F5F5;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 60px 0;
  }
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.2em;
}
.p-faq__item {
  background: #fff;
  border-radius: 10px;
  letter-spacing: 1px;
}
.p-faq__q {
  cursor: pointer;
  padding: 1em 4em 1em 5em;
  font-size: 24px;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    font-size: 16px;
    padding: 0.8em 2.5em 0.8em 3.5em;
  }
}
.p-faq__q::before {
  position: absolute;
  content: "Q";
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  background: #00BEDB;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  display: grid;
  place-content: center;
  place-items: center;
  padding-bottom: 0.2em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-faq__q::before {
    width: 40px;
    height: 40px;
    left: 0.2em;
    font-size: 26px;
  }
}
.p-faq__q::after {
  position: absolute;
  content: "+";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #00BEDB;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  font-size: 40px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-faq__q::after {
    font-size: 26px;
    right: 0.4em;
  }
}
.p-faq__q:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.p-faq__q:hover::after {
  color: #F15A24;
  transition: 0.3s;
}
.p-faq__q .big {
  font-size: 1.2em;
  color: #00BEDB;
}
@media screen and (max-width: 767px) {
  .p-faq__q .big {
    font-size: 1.1em;
  }
}
.p-faq__q.open::after {
  content: "\f068";
}
.p-faq__a {
  display: none;
  padding: 0.5em 7em 1.5em 7em;
}
@media screen and (max-width: 1280px) {
  .p-faq__a {
    padding: 0.5em 4em 1.5em 7em;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__a {
    padding: 0.5em 2.5em 1.5em 4em;
    line-height: 1.5;
  }
}
.p-faq__a .faq-inner {
  position: relative;
  display: block;
}
.p-faq__a .faq-inner::before {
  position: absolute;
  content: "A";
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  background: #B3B3B3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  top: 50%;
  left: -87px;
  transform: translateY(-50%);
  display: grid;
  place-content: center;
  place-items: center;
  padding-bottom: 0.2em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-faq__a .faq-inner::before {
    width: 40px;
    height: 40px;
    left: -50px;
    font-size: 26px;
  }
}

/* ===============================================
お問い合わせフォーム
=============================================== */
.p-contact {
  background: #E6F6FF;
  padding: 90px 0 260px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 40px 0 200px;
  }
}
.p-contact__top {
  margin-bottom: 40px;
}
.p-contact__list {
  display: flex;
}
.p-contact__item {
  width: 33%;
  border-right: 3px solid #ccc;
  height: 70px;
  display: grid;
  place-content: center;
  color: #00BEDB;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-contact__item {
    border-right: 2px solid #ccc;
  }
}
.p-contact__item:last-child {
  border-right: none;
}
.p-contact__inner {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    flex-direction: column;
  }
}
.p-contact__pic {
  width: 78px;
}
@media screen and (max-width: 1280px) {
  .p-contact__pic {
    width: 60px;
  }
}
.p-contact__txt {
  font-size: 24px;
}
@media screen and (max-width: 1280px) {
  .p-contact__txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__txt {
    font-size: clamp(12px, 3vw, 18px);
  }
}
.p-contact__contents {
  background: #fff;
  border-radius: 10px;
  position: relative;
  padding: 30px 60px 60px;
}
@media screen and (max-width: 1280px) {
  .p-contact__contents {
    padding: 30px 30px 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__contents {
    padding: 20px 3% 50px;
  }
}
.p-contact__icon {
  position: absolute;
  width: 160px;
  aspect-ratio: 1;
  right: 10px;
  top: -30px;
  filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .p-contact__icon {
    width: clamp(60px, 22vw, 120px);
    top: -20px;
    right: -5px;
  }
}
.p-contact__title {
  font-size: 30px;
  color: #00BEDB;
  border-bottom: 3px solid #00BEDB;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: clamp(16px, 6vw, 24px);
  }
}
.p-contact__form-area {
  margin: 60px 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-contact__form-area {
    margin: 40px 0 0 0;
  }
}
.p-contact__bottom {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-contact__bottom {
    margin-top: 30px;
  }
}
.p-contact__btm-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact__btm-wrapper {
    flex-direction: column;
  }
}
.p-contact__btm-pic {
  border-right: 3px dotted #00BEDB;
  padding: 0 2em;
}
@media screen and (max-width: 767px) {
  .p-contact__btm-pic {
    border-right: none;
    width: 140px;
  }
}
.p-contact__btm-desc {
  padding: 2em;
  font-size: 16px;
}
.p-contact__btm-desc .big {
  display: block;
  color: #00BEDB;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .p-contact__btm-desc {
    text-align: center;
    padding: 1em 0;
    font-size: 14px;
  }
  .p-contact__btm-desc .big {
    font-size: 18px;
  }
}
.p-contact__telarea {
  background: #fff;
  border-radius: 10px;
  border: 3px solid #00BEDB;
  padding: 16px;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.3;
}
.p-contact__telarea .tel-top {
  font-size: 22px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-contact__telarea .tel-top {
    font-size: 17px;
  }
}
.p-contact__telarea .tel-number {
  font-size: 44px;
  font-weight: 900;
  color: #00BEDB;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-contact__telarea .tel-number {
    font-size: 36px;
  }
}
.p-contact__telarea .tel-number::before {
  position: absolute;
  content: "\f095";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  left: -1.2em;
}
.p-contact__telarea .tel-small {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact__telarea .tel-small {
    font-size: 14px;
  }
}

/* ===============================================
CTA
=============================================== */
.p-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  border-top: 3px solid #00BEDB;
  background: #fff;
  display: grid;
  place-content: center;
  place-items: center;
  padding: 5px 3%;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 0;
    border-top: 2px solid #00BEDB;
  }
}
.p-cta__top-pc {
  font-size: 20px;
}
.p-cta__top-pc .big {
  font-size: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-cta__top-pc {
    display: none;
  }
}
.p-cta__top-sp {
  display: none;
  color: #3f3f3f;
}
@media screen and (max-width: 767px) {
  .p-cta__top-sp {
    display: block;
  }
}
.p-cta__sp-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  width: 100%;
  align-items: center;
  column-gap: 10px;
  height: 50px;
}
.p-cta__sp-inner .tel-inner {
  display: flex;
  align-items: center;
  color: #00BEDB;
  padding-bottom: 5px;
}
.p-cta__sp-inner .tel-flex {
  display: grid;
  place-content: center;
  place-items: center;
  line-height: 1.1;
  text-align: center;
}
.p-cta__sp-inner i {
  font-size: clamp(9px, 7vw, 32px);
  padding-top: 5px;
}
.p-cta__sp-inner .num {
  font-size: clamp(18px, 5.8vw, 28px);
  font-weight: 900;
}
.p-cta__sp-inner .txt {
  font-size: clamp(9px, 2.6vw, 12px);
  color: #3f3f3f;
}
.p-cta__sp-inner .sp-copy {
  font-size: clamp(9px, 3vw, 12px);
  border-left: 2px solid #c7c7c7;
  padding-left: 1em;
}
.p-cta__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0.5em;
  padding: 0.5em 0;
}
@media screen and (max-width: 767px) {
  .p-cta__list {
    column-gap: 0em;
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__item {
    width: 50vw;
  }
  .p-cta__item:first-child {
    display: none;
  }
}
.p-cta__link {
  width: 100%;
  height: 80px;
  padding: 1em;
  display: grid;
  place-content: center;
  place-items: center;
  transition: 0.3s;
  border-radius: 10px;
}
.p-cta__link--tel {
  background: #fff;
  border: 2px solid #00BEDB;
  container-type: inline-size;
}
.p-cta__link--tel .tel-inner {
  display: flex;
  align-items: center;
  color: #00BEDB;
  padding-bottom: 5px;
}
.p-cta__link--tel .tel-flex {
  display: grid;
  place-content: center;
  place-items: center;
  line-height: 1.1;
  text-align: center;
}
.p-cta__link--tel i {
  font-size: 16cqw;
  padding-top: 5px;
}
.p-cta__link--tel .num {
  font-size: 12cqw;
  font-weight: 900;
  white-space: nowrap;
}
.p-cta__link--tel .txt {
  font-size: 5.2cqw;
  color: #3f3f3f;
}
.p-cta__link--form {
  background: #ED1C24;
  border: 2px solid #fff;
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.2));
}
.p-cta__link--line {
  background: #06C755;
  border: 2px solid #fff;
  filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .p-cta__link {
    height: 60px;
    width: 100%;
    border-radius: 0px;
    border: none;
    filter: none;
  }
}
.p-cta__link:hover {
  filter: none;
  transition: 0.3s;
  transform: translateY(2px);
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-cta__link:hover {
    transform: none;
  }
}

.p-cta.is-show {
  opacity: 1;
  visibility: visible;
}

.p-cta.is-absolute {
  position: absolute;
  bottom: auto;
  /* topで位置指定するのでbottomは解除 */
}

/* ===============================================
TOPへもどる
=============================================== */
.p-pagetop {
  width: 50px;
  height: 50px;
  background-color: #00A3C2;
  color: #fff;
  position: absolute;
  bottom: 155px;
  right: 60px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  z-index: 999;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-pagetop {
    width: 35px;
    height: 35px;
    right: 3%;
    bottom: 120px;
  }
}
.p-pagetop:hover, .p-pagetopactive {
  transition: 0.3s;
  background-color: #fff;
  color: #00A3C2;
}
@media screen and (max-width: 767px) {
  .p-pagetop:hover, .p-pagetopactive {
    background-color: #00A3C2;
    color: #fff;
    opacity: 0.7;
  }
}
.p-pagetop__inner {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
}

/* レスポンシブ設定
----------------------- */
.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

/* テキスト設定
----------------------- */
.u-30 {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .u-30 {
    font-size: clamp(14px, 5vw, 18px);
  }
}

.u-red {
  color: #C1272D;
}

.u-blue {
  color: #00BEDB;
}

.u-d-blue {
  color: #00A3C2;
}

.u-yellow {
  color: yellow;
}

.u-en {
  font-family: "Oswald", sans-serif;
}

.u-marker {
  background: linear-gradient(transparent 50%, yellow 50%);
}

.u-slash {
  position: relative;
  display: inline-block;
}
.u-slash::before, .u-slash::after {
  content: "";
  position: absolute;
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-size: contain;
  background: #ccc;
  width: 1em;
  height: 1em;
  bottom: 0.2em;
  mask-image: url("../img/slash.webp");
}
.u-slash::before {
  left: -1.2em;
}
.u-slash::after {
  right: -1.2em;
  transform: scaleX(-1);
}
.u-slash--red::before, .u-slash--red::after {
  background: #C1272D;
}
.u-slash--blue::before, .u-slash--blue::after {
  background: #00BEDB;
}
.u-slash--orange::before, .u-slash--orange::after {
  background: #FF8E66;
}/*# sourceMappingURL=style.css.map */