@charset "UTF-8";
/*----------------------------------------
	variables
----------------------------------------*/
:root {
  --c_main: #B0245C;
  --c_sub: #9E7972;
  --c_blue: #329CAC;
  --c_yellow: #F3A712;
  --c_red: #993341;
  --c_bg: #FFF5FA;
  --c_txt: #303437;
  --c_white: #FFFFFF;
  --f_gothic: "Noto Sans JP", sans-serif;
  --f_mincho: "Shippori Mincho", serif;
}

/*----------------------------------------
	base
----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--f_gothic);
  font-weight: 700;
  font-size: 18px;
  font-style: normal;
  color: var(--c_txt);
  line-height: 2;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

li {
  list-style: none;
}

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

iframe {
  max-width: 100%;
}

/*----------------------------------------
	header
----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: var(--c_white);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1820px;
  width: calc(100% - 100px);
  margin: 0 auto;
  padding: 26px 50px 6px;
}

.header__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__tel,
.header__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 251px;
  height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--c_white);
}

.header__tel {
  background-color: var(--c_main);
}

.header__mail {
  background-color: var(--c_blue);
}

.header__tel img {
  width: 45px;
}

.header__mail img {
  width: 26px;
}

.header__tel span,
.header__mail span {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--c_white);
}

.gnav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.gnav__item a {
  display: block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--c_txt);
}

body.is-fixed {
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .header__inner {
    padding: 10px 20px;
    width: 100%;
  }
  .header__content {
    display: none;
  }
  .gnav--pc {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .header__inner {
    gap: 10px;
    padding: 10px 16px;
  }
}
/*----------------------------------------
	hamburger
----------------------------------------*/
.js-hamburger {
  cursor: pointer;
}

/* 開いている状態 */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--c_main);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--c_white);
  transition: transform 0.3s, opacity 0.3s;
}

.js-hamburger[aria-expanded=true] .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.js-hamburger[aria-expanded=true] .hamburger__line:nth-child(2) {
  opacity: 0;
}

.js-hamburger[aria-expanded=true] .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 1200px) {
  .hamburger {
    display: flex;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 834px) {
  .hamburger {
    flex: 0 0 44px;
    margin-left: auto;
  }
}
/*----------------------------------------
	gnav
----------------------------------------*/
.js-gnav--sp {
  display: none;
}

.js-gnav--sp.is-open {
  display: block;
}

.header__drawer {
  position: fixed;
  top: 72px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: calc(100vh - 72px);
  padding: 24px 16px 40px;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.98);
}

.header__drawer-list {
  width: 100%;
}

.header__drawer-item {
  border-bottom: 1px solid #F3D6E4;
}

.header__drawer-item a {
  display: block;
  padding: 16px 8px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--c_txt);
  text-align: center;
}

.header__drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
  margin: 28px auto 0;
}

@media screen and (max-width: 1200px) {
  .header__drawer .header__tel,
  .header__drawer .header__mail {
    width: 100%;
  }
}
/*----------------------------------------
	main
----------------------------------------*/
.main {
  margin-top: 134px;
}

@media screen and (max-width: 1200px) {
  .main {
    margin-top: 72px;
  }
}
/*----------------------------------------
	footer
----------------------------------------*/
.footer {
  position: relative;
  padding: 145px 0 40px;
  color: var(--c_white);
  background-color: var(--c_main);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  left: 5%;
  top: -30px;
  width: 197px;
  height: 478px;
  background: url("../img/paw-2.png") no-repeat center/contain;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 63px;
  max-width: 1070px;
  margin: 0 auto;
}

.footer__logo {
  width: 330px;
  line-height: 1;
}

.footer__logo a {
  display: block;
}

.footer__logo img {
  width: 100%;
}

.footer__actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer__tel,
.footer__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 251px;
  height: 44px;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.footer__tel {
  color: var(--c_main);
  background-color: var(--c_white);
}

.footer__mail {
  color: var(--c_white);
  background-color: var(--c_blue);
}

.footer__tel img,
.footer__mail img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
}

.footer__tel img {
  width: 45px;
}

.footer__mail img {
  width: 26px;
}

.copyright {
  font-size: 16px;
  width: 100%;
  margin-top: 72px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 834px) {
  .footer {
    padding: 50px 0 100px;
  }
  .footer::before {
    left: -60px;
    top: 10px;
    width: 200px;
    height: 100px;
  }
  .footer__inner {
    display: block;
    width: calc(100% - 40px);
    text-align: center;
  }
  .footer__logo {
    width: 240px;
    margin: 0 auto;
  }
  .footer__actions {
    flex-direction: column;
    gap: 10px;
    max-width: 260px;
    margin: 25px auto 0;
  }
  .footer__tel,
  .footer__mail {
    width: 100%;
    min-height: 34px;
    font-size: 14px;
  }
  .copyright {
    margin-top: 30px;
    font-size: 10px;
    white-space: normal;
  }
}
/*----------------------------------------
    fixed cta
----------------------------------------*/
.fixed-cta {
  display: none;
}

@media screen and (max-width: 834px) {
  .fixed-cta {
    position: fixed;
    left: 0;
    right: auto;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-sizing: border-box;
    width: 100%;
    transform: none;
    padding: 14px 20px 12px;
    background-color: var(--c_white);
  }
  .fixed-cta__tel,
  .fixed-cta__mail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1 1 0;
    width: 194px;
    min-height: 45px;
    padding: 15px 8px;
    border-radius: 40px;
    color: var(--c_white);
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .fixed-cta__tel {
    background-color: var(--c_main);
  }
  .fixed-cta__mail {
    background-color: var(--c_blue);
  }
  .fixed-cta__tel img {
    width: 35px;
  }
  .fixed-cta__mail img {
    width: 20px;
  }
  .fixed-cta span {
    min-width: 0;
  }
}
/*----------------------------------------
    section
----------------------------------------*/
.section {
  padding: 80px 0;
  scroll-margin-top: 134px;
}

@media screen and (max-width: 834px) {
  .section {
    padding: 50px 0;
    scroll-margin-top: 72px;
  }
}
/*----------------------------------------
	thanks
----------------------------------------*/
.thanks {
  text-align: center;
  margin: 300px 0 0;
}

.thanks__ttl {
  font-size: 40px;
  color: var(--c_main);
}

.thanks__btn {
  margin-top: 80px;
  margin-inline: auto;
  width: 200px;
  border: 1px solid var(--c_main);
}

.thanks__btn a {
  font-size: 20px;
  display: inline-block;
  width: 100%;
  padding: 20px 0;
  color: var(--c_main);
}

@media screen and (max-width: 834px) {
  .thanks {
    margin: 150px 0 0;
  }
  .thanks__ttl {
    font-size: 18px;
  }
  .thanks__btn a {
    font-size: 16px;
  }
}
/*----------------------------------------
    site-ttl
----------------------------------------*/
.site-ttl {
  width: 490px;
  flex-shrink: 0;
}

.site-ttl a {
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .site-ttl {
    width: 250px;
  }
}
@media screen and (max-width: 834px) {
  .site-ttl {
    flex: 1 1 auto;
    width: auto;
    max-width: 250px;
    min-width: 0;
  }
  .site-ttl a {
    display: block;
    width: 100%;
  }
  .site-ttl img {
    display: block;
    width: 100%;
  }
}
/*----------------------------------------
    heading
----------------------------------------*/
.heading-lv2 {
  font-family: var(--f_gothic);
  font-size: 45px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--c_main);
  text-align: center;
  overflow-wrap: break-word;
}

.heading-lv2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 28px auto 0;
  background-color: var(--c_main);
}

.heading-lv2 span {
  font-family: var(--f_gothic);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--c_txt);
  display: block;
  margin-bottom: 20px;
}

.about .heading-lv2 {
  margin-left: -20%;
}

.cta .heading-lv2 {
  text-align: left;
}

.cta .heading-lv2::after {
  margin-left: 0;
}

.flow .heading-lv2 {
  color: var(--c_white);
}

.flow .heading-lv2::after {
  background-color: var(--c_white);
}

@media screen and (max-width: 834px) {
  .heading-lv2 {
    font-size: 26px;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
  .heading-lv2::after {
    width: 56px;
    height: 2px;
    margin-top: 14px;
  }
  .heading-lv2 span {
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .about .heading-lv2 {
    margin-left: 0;
  }
}
/*----------------------------------------
    page-top
----------------------------------------*/
.page-top {
  position: fixed;
  display: block;
  width: 135px;
  right: 50px;
  bottom: 50px;
  z-index: 1000;
}

.page-top img {
  width: 100%;
}

@media screen and (max-width: 834px) {
  .page-top {
    display: none;
  }
}
/*----------------------------------------
    fade-in
----------------------------------------*/
.fade-in {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.is-animation-ready .fade-in {
  opacity: 0;
  transform: translateY(20px);
}

body.is-animation-ready .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
  }
  body.is-animation-ready .fade-in {
    opacity: 1;
    transform: none;
  }
  body.is-animation-ready .fade-in.is-visible {
    opacity: 1;
    transform: none;
  }
}
/*----------------------------------------
    br
----------------------------------------*/
.br--pc {
  display: block;
}

.br--sp {
  display: none;
}

@media screen and (max-width: 834px) {
  .br--pc {
    display: none;
  }
  .br--sp {
    display: block;
  }
}
/*----------------------------------------
	LPページ専用
----------------------------------------*/
/* ファーストビュー
------------------------------ */
.fv {
  position: relative;
  overflow: hidden;
  min-height: 865px;
  padding: 0;
  background: linear-gradient(180deg, #F8F9F9 0%, #FFF5FA 100%);
}

.fv__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 814px;
}

.fv__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.fv__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
}

.fv__inner {
  position: relative;
  z-index: 1;
  max-width: 1640px;
  width: calc(100% - 100px);
  margin: 0 auto;
}

.fv__content {
  padding-top: 152px;
}

.fv__catch {
  font-family: var(--f_mincho);
  font-size: 60px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.fv__text {
  margin-top: 40px;
  font-size: 25px;
  line-height: 2;
}

.fv__point-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
}

.fv__point-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 197px;
  height: 197px;
  border: 3px solid var(--c_main);
  border-radius: 50%;
  background-color: var(--c_white);
  text-align: center;
}

.fv__point-mark {
  font-size: 60px;
  line-height: 1;
  color: var(--c_main);
}

.fv__point-mark span {
  font-size: 30px;
  margin-right: 5px;
}

.fv__point-person {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
}

.fv__point-person img {
  display: block;
  width: 100%;
}

.fv__point-text {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.2;
}

@media screen and (max-width: 834px) {
  .fv {
    min-height: auto;
  }
  .fv__visual {
    position: relative;
    width: 100%;
    height: auto;
  }
  .fv__visual img {
    object-position: left bottom;
  }
  .fv__inner {
    width: calc(100% - 40px);
  }
  .fv__content {
    max-width: none;
    padding-top: 37px;
  }
  .fv__catch {
    font-size: 34px;
  }
  .fv__text {
    margin-top: 20px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .fv__point-list {
    justify-content: center;
    margin-top: 20px;
  }
  .fv__point-item {
    width: 111px;
    height: 111px;
    aspect-ratio: 1/1;
  }
  .fv__point-mark {
    font-size: 50px;
  }
  .fv__point-mark span {
    font-size: 25px;
  }
  .fv__point-person {
    width: 40px;
  }
  .fv__point-text {
    margin-top: 5px;
    font-size: 11px;
  }
}
/* クレリサーチは浮気調査専門の探偵社です！
------------------------------ */
.about {
  position: relative;
  overflow: hidden;
  background: var(--c_bg);
}

.about::after {
  content: "";
  position: absolute;
  right: 50px;
  bottom: -30px;
  width: 197px;
  height: 478px;
  background: url("../img/paw-1.png") no-repeat center/contain;
  pointer-events: none;
}

.about__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  width: calc(100% - 80px);
  margin: 0 auto;
}

.about__campaign {
  max-width: 1506px;
  margin: 0 auto 86px;
}

.about__campaign picture {
  display: block;
}

.about__campaign img {
  display: block;
  width: 100%;
}

.about__body {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1600px;
}

.about__cat {
  flex: 0 0 448px;
}

.about__cat img {
  width: 100%;
}

.about__content {
  flex: 1;
}

.about__text {
  font-size: 18px;
  overflow-wrap: break-word;
  margin-top: 62px;
}

@media screen and (max-width: 834px) {
  .about::after {
    right: 10px;
    bottom: 20px;
    width: 100px;
    height: 200px;
  }
  .about__inner {
    max-width: 390px;
    width: calc(100% - 40px);
  }
  .about__campaign {
    width: 100%;
    overflow: hidden;
  }
  .about__campaign img {
    max-width: none;
    height: auto;
  }
  .about__body {
    display: flex;
    flex-direction: column;
    margin-top: 0;
  }
  .about__cat {
    order: 2;
    width: 200px;
    margin: 20px auto 0;
    flex: 1;
  }
  .about__content {
    order: 1;
    max-width: none;
    display: grid;
    gap: 20px;
  }
  .about__text {
    margin-top: 0;
    font-size: 15px;
  }
}
/* こんなお悩みありませんか？
------------------------------ */
.worries {
  position: relative;
  height: 1350px;
  padding: 103px 0 0;
  background: url("../img/bg.jpg") no-repeat center top/cover;
}

.worries::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -92px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 92px 92px 0 92px;
  border-color: var(--c_main) transparent transparent transparent;
  z-index: 2;
}

.worries__bubble {
  position: absolute;
}

.worries__bubble img {
  display: block;
  width: 100%;
}

.worries__bubble--01 {
  top: 128px;
  left: 5%;
  width: 276px;
}

.worries__bubble--02 {
  top: 201px;
  right: 20%;
  width: 240px;
}

.worries__bubble--03 {
  top: 380px;
  left: 13%;
  width: 257px;
}

.worries__bubble--04 {
  top: 420px;
  right: 15%;
  width: 266px;
}

.worries__check {
  position: absolute;
  left: 50%;
  top: 699px;
  transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  padding: 0 80px 48px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0 20px;
}

.worries__check-ttl {
  max-width: 645px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 50px;
  background-color: var(--c_main);
  color: var(--c_white);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  transform: translateY(-50%);
}

.worries__check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 10px;
  margin-top: 30px;
}

.worries-check-item {
  position: relative;
  font-size: 18px;
}

.worries__check-note {
  margin-top: 42px;
  color: var(--c_main);
  font-size: 30px;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .worries {
    min-height: auto;
    padding: 50px 0 0;
    background-color: var(--c_bg);
    background-image: linear-gradient(180deg, rgba(255, 245, 250, 0) 0%, rgba(255, 245, 250, 0) 34%, var(--c_bg) 68%, var(--c_bg) 100%), url("../img/bg.jpg");
    background-repeat: no-repeat;
    background-size: 100% 760px, auto 560px;
    background-position: center top;
    height: auto;
  }
  .worries::after {
    bottom: -42px;
    border-width: 42px 42px 0 42px;
  }
  .worries__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 10px;
    width: 100%;
    min-height: auto;
    padding: 0 20px;
  }
  .worries .heading-lv2 {
    grid-column: 1/-1;
  }
  .worries__bubble {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .worries__bubble--01,
  .worries__bubble--02 {
    margin-top: 100px;
  }
  .worries__check {
    position: relative;
    grid-column: 1/-1;
    top: auto;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 28px;
    padding: 0 20px 30px;
    border-radius: 36px;
  }
  .worries__check-ttl {
    margin-bottom: 24px;
    padding: 10px 16px;
    font-size: 20px;
    letter-spacing: 0.08em;
  }
  .worries__check-list {
    display: block;
    margin-top: -8px;
  }
  .worries-check-item {
    font-size: 14px;
  }
  .worries__check-note {
    margin-top: 26px;
    font-size: 20px;
    letter-spacing: 0.04em;
  }
}
/* ひとりで抱え込まず、まずはご相談ください。
------------------------------ */
.cta {
  position: relative;
  padding: 127px 0 0;
  background-color: var(--c_bg);
}

.cta__lead {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 64px;
  align-items: stretch;
}

.cta__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.cta__content {
  padding-bottom: 80px;
}

.cta__text {
  max-width: 719px;
  margin-top: 61px;
  font-size: 18px;
}

.cta__case {
  padding: 48px 0 39px;
  background-color: var(--c_main);
}

.cta__case-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1600px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.cta__case-item {
  min-height: 225px;
  padding: 28px 20px;
  border-radius: 100px;
  background-color: var(--c_white);
  text-align: center;
}

.cta__case-num {
  display: inline-block;
  color: var(--c_sub);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.cta__case-num::after {
  content: "";
  display: block;
  width: 71px;
  height: 1px;
  margin: 10px auto 0;
  background-color: var(--c_sub);
}

.cta__case-num em {
  margin-left: 8px;
  font-size: 30px;
  font-style: normal;
}

.cta__case-item p {
  margin-top: 20px;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.cta__message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 75px 0 70px;
}

.cta__message-text {
  flex: 1;
  font-size: 30px;
  line-height: 2.6;
  letter-spacing: 0.1em;
  text-align: center;
  background-image: linear-gradient(var(--c_main), var(--c_main)), linear-gradient(var(--c_main), var(--c_main)), linear-gradient(var(--c_main), var(--c_main));
  background-repeat: no-repeat;
  background-size: 100% 1px, 100% 1px, 100% 1px;
  background-position: left 33.33%, left 66.66%, left 100%;
}

.cta__message-text br {
  content: "";
}

.cta__cat {
  flex: 0 0 334px;
}

.cta__cat img {
  width: 100%;
}

@media screen and (max-width: 834px) {
  .cta {
    padding: 50px 0;
  }
  .cta__lead {
    display: block;
  }
  .cta__img {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .cta__content {
    width: calc(100% - 40px);
    margin: 50px auto 0;
    padding: 0;
  }
  .cta__text {
    margin-top: 32px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }
  .cta__case {
    margin-top: 42px;
    padding: 42px 0;
  }
  .cta__case-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: calc(100% - 40px);
  }
  .cta__case-item {
    min-height: 160px;
    padding: 10px 20px 20px;
  }
  .cta__case-num {
    font-size: 13px;
  }
  .cta__case-num::after {
    width: 48px;
    margin-top: 8px;
  }
  .cta__case-num em {
    margin-left: 5px;
    font-size: 23px;
  }
  .cta__case-item p {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  .cta__message {
    display: block;
    width: calc(100% - 32px);
    padding: 30px 0 0;
  }
  .cta__message-text {
    padding-bottom: 12px;
    font-size: 13px;
  }
  .cta__cat {
    width: 150px;
    margin: 10px auto 0;
  }
}
/* 3つの強み
------------------------------ */
.strongth {
  padding: 0;
  background-color: var(--c_bg);
}

.strongth__inner {
  position: relative;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 145px 0 120px;
  border-radius: 0 180px 0 0;
  background-color: var(--c_white);
}

.strongth__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 50vw;
  background-color: var(--c_white);
}

.strongth__list {
  max-width: 1200px;
  width: calc(100% - 80px);
  margin: 61px auto 0;
  display: grid;
  gap: 46px;
}

.strongth__item {
  display: grid;
  grid-template-columns: 381px 1fr;
  align-items: center;
  gap: 75px;
}

.strongth__img img {
  display: block;
  width: 100%;
}

.strongth__num {
  color: var(--c_sub);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.strongth__num span {
  margin-left: 16px;
  font-size: 30px;
  line-height: 1;
}

.strongth__ttl {
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c_main);
  color: var(--c_main);
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.strongth__text {
  margin-top: 32px;
  font-size: 18px;
}

@media screen and (max-width: 834px) {
  .strongth__inner {
    width: calc(100% - 16px);
    padding: 50px 0;
    border-radius: 0 70px 0 0;
  }
  .strongth__list {
    width: calc(100% - 40px);
    margin-top: 30px;
    gap: 30px;
  }
  .strongth__item {
    display: block;
  }
  .strongth__content {
    margin-top: 22px;
  }
  .strongth__num {
    font-size: 18px;
  }
  .strongth__num span {
    margin-left: 8px;
    font-size: 32px;
  }
  .strongth__ttl {
    margin-top: 14px;
    padding-bottom: 14px;
    font-size: 22px;
  }
  .strongth__text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 2;
    overflow-wrap: anywhere;
  }
}
/* 調査料金について
------------------------------ */
.fee {
  position: relative;
  overflow: visible;
  padding: 93px 0 23px;
  background-color: var(--c_bg);
}

.fee::before {
  content: "";
  position: absolute;
  left: 7%;
  top: -78px;
  width: 178px;
  height: 322px;
  background: url("../img/paw-1.png") no-repeat center/contain;
  pointer-events: none;
}

.fee__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  width: calc(100% - 80px);
  margin: 0 auto;
}

.fee__plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 39px;
  margin-top: 98px;
}

.fee-plan {
  overflow: hidden;
  border: 3px solid var(--fee-color);
  border-radius: 30px;
  background-color: var(--c_white);
}

.fee-plan--time {
  --fee-color: var(--c_blue);
}

.fee-plan--place {
  --fee-color: var(--c_yellow);
}

.fee-plan--success {
  --fee-color: var(--c_red);
}

.fee-plan__head {
  min-height: 190px;
  padding: 50px 20px 44px;
  color: var(--c_white);
  background-color: var(--fee-color);
  text-align: center;
}

.fee-plan__ttl {
  font-size: 40px;
  letter-spacing: 0.05em;
}

.fee-plan__catch {
  margin-top: 30px;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.fee-plan__body {
  min-height: 476px;
  padding: 47px 25px;
}

.fee-plan__lead {
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

.fee-plan__price {
  margin-top: 20px;
  color: var(--fee-color);
  font-size: 30px;
  text-align: center;
}

.fee-plan__price span {
  font-size: 50px;
  line-height: 1;
}

.fee-plan__note {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.fee-plan__text {
  margin-top: 42px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.fee-plan__plus {
  position: relative;
  margin-top: 44px;
  padding-left: 96px;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.fee-plan__plus::before {
  content: "＋";
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  width: 69px;
  height: 69px;
  border-radius: 50%;
  color: var(--c_white);
  background-color: var(--c_yellow);
  font-size: 40px;
  line-height: 1;
}

.fee__message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
}

.fee__cat {
  flex: 0 0 371px;
}

.fee__cat img {
  width: 100%;
}

.fee__message-text {
  flex: 1;
  max-width: 900px;
  padding-bottom: 18px;
  font-size: 30px;
  line-height: 2.5;
  letter-spacing: 0.1em;
  text-align: center;
  background-image: linear-gradient(var(--c_main), var(--c_main)), linear-gradient(var(--c_main), var(--c_main)), linear-gradient(var(--c_main), var(--c_main));
  background-repeat: no-repeat;
  background-size: 100% 1px, 100% 1px, 100% 1px;
  background-position: left 33.33%, left 66.66%, left 100%;
}

@media screen and (max-width: 834px) {
  .fee {
    padding: 50px 0;
  }
  .fee::before {
    left: 20px;
    top: -42px;
    width: 92px;
    height: 167px;
  }
  .fee__inner {
    width: calc(100% - 40px);
  }
  .fee__plans {
    display: block;
    margin-top: 30px;
  }
  .fee-plan + .fee-plan {
    margin-top: 30px;
  }
  .fee-plan__head {
    min-height: auto;
    padding: 30px 18px 26px;
  }
  .fee-plan__ttl {
    font-size: 26px;
    letter-spacing: 0.04em;
  }
  .fee-plan__catch {
    margin-top: 14px;
    font-size: 17px;
  }
  .fee-plan__body {
    min-height: auto;
    padding: 34px 24px 36px;
  }
  .fee-plan__lead {
    font-size: 22px;
  }
  .fee-plan__price {
    margin-top: 24px;
    font-size: 22px;
  }
  .fee-plan__price span {
    font-size: 48px;
  }
  .fee-plan__note {
    margin-top: 16px;
    font-size: 16px;
  }
  .fee-plan__text {
    margin-top: 28px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }
  .fee-plan__plus {
    margin-top: 20px;
    padding-left: 62px;
    font-size: 18px;
  }
  .fee-plan__plus::before {
    width: 46px;
    height: 46px;
    font-size: 34px;
  }
  .fee__message {
    display: block;
    margin-top: 20px;
  }
  .fee__cat {
    width: 170px;
    margin: 0 auto;
  }
  .fee__message-text {
    padding-bottom: 12px;
    font-size: 14px;
  }
}
/* ご依頼の流れ
------------------------------ */
.flow {
  position: relative;
  overflow: hidden;
  padding: 144px 0 135px;
  border-radius: 100px 100px 0 0;
  background-color: var(--c_sub);
  box-shadow: 0 -100px 0 0 var(--c_bg);
}

.flow::before,
.flow::after {
  content: "";
  position: absolute;
  width: 198px;
  height: 478px;
  background: url("../img/paw-2.png") no-repeat center/contain;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.flow::before {
  top: 100px;
  right: 5%;
}

.flow::after {
  left: 5%;
  bottom: 50px;
}

.flow__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  width: calc(100% - 80px);
  margin: 0 auto;
}

.flow__box {
  max-width: 1200px;
  margin: 65px auto 0;
  padding: 48px 60px 90px;
  border-radius: 30px;
  background-color: var(--c_white);
}

.flow__list {
  display: grid;
  gap: 62px;
}

.flow__item {
  display: grid;
  grid-template-columns: 96px 122px 1fr;
  gap: 30px;
  padding-bottom: 60px;
  border-bottom: 1px solid #707070;
}

.flow__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.flow__step {
  color: var(--c_sub);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
  margin-top: 15px;
}

.flow__step span {
  margin-left: 10px;
  font-size: 30px;
  line-height: 1;
}

.flow__icon img {
  display: block;
  width: 122px;
}

.flow__ttl {
  color: var(--c_blue);
  font-size: 30px;
  letter-spacing: 0.1em;
}

.flow__text {
  margin-top: 30px;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1200px) {
  .flow::before,
  .flow::after {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .flow {
    padding: 50px 0;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 -50px 0 0 var(--c_bg);
  }
  .flow::before,
  .flow::after {
    display: none;
  }
  .flow__inner {
    width: calc(100% - 40px);
  }
  .flow__box {
    margin-top: 30px;
    padding: 20px;
  }
  .flow__list {
    gap: 30px;
  }
  .flow__item {
    grid-template-columns: 50px 1fr;
    gap: 10px;
    padding-bottom: 30px;
  }
  .flow__step {
    font-size: 15px;
    margin-top: 0;
  }
  .flow__step span {
    display: block;
    margin: 7px 0 0;
    font-size: 30px;
  }
  .flow__icon img {
    width: 60px;
  }
  .flow__content {
    grid-column: 1/-1;
  }
  .flow__ttl {
    font-size: 22px;
  }
  .flow__text {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }
}
/* 会社概要
------------------------------ */
.company {
  padding: 92px 0 101px;
  background-color: var(--c_white);
}

.company__inner {
  max-width: 1070px;
  width: calc(100% - 80px);
  margin: 0 auto;
}

.company__table {
  margin-top: 68px;
  border-top: 0.5px solid #707070;
}

.company__row {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 0.5px solid #707070;
}

.company__term {
  position: relative;
  padding-left: 25px;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.company__term::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--c_main);
}

.company__desc {
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 834px) {
  .company {
    padding: 50px 0;
  }
  .company__inner {
    width: calc(100% - 40px);
  }
  .company__table {
    margin-top: 30px;
  }
  .company__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }
  .company__term {
    padding-left: 22px;
    font-size: 16px;
  }
  .company__term::before {
    width: 3px;
  }
  .company__desc {
    padding-left: 22px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }
}
/* 無料ご相談フォーム
------------------------------ */
.contact {
  position: relative;
  overflow: visible;
  padding: 100px 0;
  background-color: #F8F9F9;
}

.contact::before {
  content: "";
  position: absolute;
  top: -200px;
  right: 5%;
  width: 197px;
  height: 478px;
  background: url("../img/paw-1.png") no-repeat center/contain;
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1070px;
  width: calc(100% - 80px);
  margin: 0 auto;
}

.contact-form {
  margin-top: 85px;
}

.contact-form__body {
  display: grid;
  gap: 33px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 350px 1fr;
  align-items: center;
  gap: 37px;
}

.contact-form__row--textarea {
  align-items: flex-start;
}

.contact-form__row--textarea .contact-form__label {
  padding-top: 16px;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  border-radius: 100px;
  color: var(--c_white);
  background-color: var(--c_main);
  font-size: 16px;
  line-height: 1;
  padding: 5px 13px;
  white-space: nowrap;
}

.contact-form__label-text {
  font-size: 18px;
}

.contact-form__field input,
.contact-form__field textarea {
  display: block;
  width: 100%;
  border: 0.5px solid #707070;
  border-radius: 10px;
  background-color: var(--c_white);
  font-size: 18px;
}

.contact-form__field input {
  height: 65px;
  padding: 20px;
}

.contact-form__field textarea {
  min-height: 294px;
  padding: 20px;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: 2px solid var(--c_main);
}

.contact-form__privacy {
  margin-top: 32px;
  padding: 26px 49px 37px 49px;
  border: 0.5px solid #707070;
  border-radius: 10px;
  background-color: var(--c_white);
}

.contact-form__privacy-text {
  font-size: 14px;
  line-height: 1.4;
}

.contact-form__submit {
  margin-top: 28px;
  text-align: center;
}

.contact-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 768px;
  width: 100%;
  padding: 28px;
  border-radius: 50px;
  color: var(--c_white);
  background-color: var(--c_main);
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .contact {
    padding: 50px 0;
  }
  .contact::before {
    top: 20px;
    right: -50px;
    width: 200px;
    height: 100px;
  }
  .contact__inner {
    width: calc(100% - 40px);
  }
  .contact-form {
    margin-top: 50px;
  }
  .contact-form__body {
    gap: 30px;
  }
  .contact-form__row {
    display: block;
  }
  .contact-form__row--textarea .contact-form__label {
    padding-top: 0;
  }
  .contact-form__label {
    gap: 10px;
  }
  .contact-form__required {
    flex-basis: 42px;
    font-size: 12px;
  }
  .contact-form__label-text {
    font-size: 15px;
  }
  .contact-form__field {
    margin-top: 10px;
  }
  .contact-form__field input,
  .contact-form__field textarea {
    border-radius: 6px;
    font-size: 16px;
  }
  .contact-form__field input {
    height: 52px;
    padding: 12px 14px;
  }
  .contact-form__field textarea {
    min-height: 220px;
    padding: 12px 14px;
  }
  .contact-form__privacy {
    margin-top: 30px;
    padding: 20px;
  }
  .contact-form__privacy-ttl {
    font-size: 13px;
  }
  .contact-form__privacy-text {
    margin-top: 16px;
    font-size: 12px;
  }
  .contact-form__submit {
    margin-top: 30px;
  }
  .contact-form__btn {
    min-height: 58px;
    padding: 14px 22px;
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */