@charset "UTF-8";
/* 基本ページ設定 */
html {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  line-height: 1.4;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

/* コンテナ・汎用要素 */
div {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

span {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

object,
iframe {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

/* テキスト関連 */
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

/* リスト関連 */
dl,
dt,
dd,
ol,
ul,
li {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
  /* リストスタイルを無効化 */
}

/* フォーム関連 */
fieldset,
form,
label,
legend {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

/* テーブル関連 */
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  border-collapse: collapse;
  /* テーブルの境界線を折りたたむ */
}

/* HTML5セマンティック要素 */
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

/* その他の要素 */
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Sans", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

.pre-line {
  white-space: pre-line;
  margin: -1rem 0;
}

header {
  height: 5rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1024px;
}
header .head {
  padding: 1rem;
  justify-content: space-between;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #c3c3c3;
}
header .header-logo {
  width: 50%;
  height: 3rem;
  display: flex;
  align-items: center;
}
header .header-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  gap: 0.5rem;
}
header .header-logo a p {
  font-weight: 700;
}
header .header-logo a span {
  font-size: 12px;
  margin-left: -6px;
}
header .header-logo picture {
  display: block;
  height: auto;
}
header .header-logo img {
  width: 60px;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
header .header-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-info ul {
  display: flex;
  gap: 2rem;
}
header .header-info a {
  color: black;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 1rem 0;
}
header .header-info a:hover {
  border-bottom: 3px #cc4b00 solid;
}
header .header-info .current {
  border-bottom: 3px #cc4b00 solid;
}
header .show {
  display: block;
}
header .menu-img {
  display: none;
}

@media screen and (max-width: 650px) {
  header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 4rem;
  }
  header .head {
    padding: 0.5rem;
  }
  header .header-logo {
    width: 80%;
  }
  header .header-logo img {
    width: 14vw;
  }
  header .header-logo a span {
    font-size: 10px;
  }
  header .menu-img {
    display: block;
  }
  header .menu-img button {
    background: none;
    border: none;
    padding: 0;
  }
  header .menu-img .menu-close {
    display: none;
    padding: 0;
  }
  header .lists {
    background: #fff;
    padding-bottom: 0.5rem;
    border-radius: 0 0 24px 24px;
  }
  header .header-info {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    border-top: 2px solid #808080;
    padding: 1.1rem 0;
  }
  header .header-info ul {
    display: flex;
    gap: 2rem;
  }
  header .header-info a {
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 0;
  }
  header .header-info {
    display: none;
    width: 100%;
    z-index: 5;
    height: 100vh;
    position: absolute;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    top: 65px;
    left: 0;
  }
  header .header-info ul {
    display: block;
    width: 60%;
    margin: 0px auto 1rem auto;
  }
  header .header-info li {
    margin: 0;
    position: relative;
  }
  header .header-info li a {
    padding: 1rem 0 0.3rem 0;
    font-size: 20px;
    display: block;
  }
  header .header-info li a::before {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 10px;
    background-color: #28344c;
    transform: translateY(-50%) rotate(-45deg);
    transition-property: transform;
    top: calc(50% + 4px);
    right: 0;
  }
  header .header-info li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 10px;
    background-color: #28344c;
    transform: translateY(-50%) rotate(45deg);
    top: calc(50% + 10px);
    right: 0;
  }
  header .header-info .buttons-sp {
    display: flex;
    gap: 4vw;
    align-items: center;
    justify-content: center;
  }
  header .header-info .buttons-sp .user-singup {
    color: #fff;
    padding: 4px 0px;
  }
  header .header-info .buttons-sp a:hover {
    color: #cc4b00;
  }
}
footer {
  width: 100%;
  max-width: 1024px;
  background-color: #F9F2EB;
  padding: 1rem 0;
  margin: 0 auto;
}

.footer-content {
  margin: 0 auto;
}

.footer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-content a {
  text-decoration: none;
  color: #333;
}

.footer-content span {
  color: #999;
  margin: 0 10px;
}

main {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumb {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
.breadcrumb ul {
  display: flex;
  padding: 0.5rem 0;
}
.breadcrumb li {
  padding: 0 0.25rem;
}
.breadcrumb a {
  text-decoration: none;
  color: #0000ee;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.5em 0;
  }
  .breadcrumb ul {
    align-items: center;
    padding: 0;
    margin: 0;
  }
  .breadcrumb-item {
    padding: 0 0.5em;
  }
}
.pagination {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
}
.pagination li {
  display: inline-block;
  margin-right: 5px;
}
.pagination li a {
  display: block;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
}
.pagination li a:hover {
  background-color: #4b4487;
  color: #fff;
}
.pagination li .active {
  background-color: #4b4487;
  color: #fff;
}

.cta-sec {
  background-color: #0d8024;
  border-radius: 8px;
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  width: 30%;
}
.cta-sec .cta-free-text {
  background-color: #fff;
  color: #cc4b00;
  padding: 4px 8px;
  border-radius: 8px;
  margin-right: 8px;
}

.cta-sec-reverse-color {
  background-color: #fff;
  border-color: #0d8024;
  border: 1px solid #0d8024;
  border-radius: 8px;
  display: inline-flex;
  text-decoration: none;
  color: #0d8024;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  width: 30%;
}
.cta-sec-reverse-color .cta-free-text {
  background-color: #fff;
  color: #cc4b00;
  padding: 4px 8px;
  border-radius: 8px;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .cta-sec {
    font-size: 1rem;
    padding: 9px;
    width: auto;
    display: inline-flex;
    text-align: left;
    justify-content: center;
    align-items: center;
    width: 40%;
  }
  .cta-sec .cta-free-text {
    display: inline-block;
    text-align: left;
  }
  .cta-sec-reverse-color {
    width: 40%;
  }
}
@media screen and (max-width: 335px) {
  .cta {
    width: 90%;
  }
}
.discount-text {
  padding-bottom: 4px;
}
.discount-text span {
  color: #cc4b00;
  font-weight: 700;
}

.cta {
  background-color: #cc4b00;
  border-color: #fff;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border: solid 2px #fff;
  box-shadow: 0px 4px 4px 0px rgba(149, 133, 114, 0.4);
  width: 300px;
}
.cta .cta-free-text {
  background-color: #fff;
  color: #cc4b00;
  padding: 4px 8px;
  border-radius: 8px;
  margin-right: 8px;
  min-width: 40px;
  text-align: center;
}
.cta .arrow {
  position: relative;
  height: 1rem;
  width: 3rem;
}
.cta .arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 12px;
  width: 45px;
  height: 2px;
  background: #fff;
}
.cta .arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 35.5px;
  width: 12px;
  height: 24px;
  border: 2px solid;
  border-color: transparent transparent #fff transparent;
  transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
  .cta {
    font-size: 1rem;
    padding: 12px 1rem;
    display: inline-flex;
    text-align: left;
    justify-content: center;
    align-items: center;
  }
  .cta .cta-free-text {
    display: inline-block;
    text-align: left;
    min-width: 34px;
  }
  .cta .cta-text {
    display: inline-block;
    font-size: 1rem;
  }
  .cta .arrow {
    width: 20%;
  }
  .cta .arrow::before {
    left: 6px;
    top: 8px;
    width: 100%;
  }
  .cta .arrow::after {
    width: 13px;
    left: unset;
    right: 0;
  }
}
@media screen and (max-width: 335px) {
  .cta {
    width: 90%;
  }
}
.cta-line {
  font-weight: 700;
  max-width: 100%;
  box-sizing: border-box;
  margin: 2rem 0;
}
.cta-line .warning-text {
  font-size: 12px;
  color: #fb1919;
  font-weight: bold;
  padding: 10px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  animation: warning-pulse 1.5s ease-in-out infinite;
  -webkit-animation: warning-pulse 1.5s ease-in-out infinite;
}
.cta-line .warning-icon {
  display: inline-block;
  animation: warning-pulse 1.5s ease-in-out infinite;
  -webkit-animation: warning-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes warning-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .cta-line {
    width: 94%;
  }
}
.cta-line-inner {
  background: transparent;
  border-radius: 1rem;
  text-align: center;
  border: none;
  padding: 4px 0 0 0;
  max-width: 500px;
  margin: 0 auto;
}
.cta-line-inner .cta-sub-text {
  margin-bottom: 0;
}

.cta-sub-text {
  margin-bottom: 0;
  padding-bottom: 8px;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
}

.cta-sub-text::before {
  content: "\\";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scaleY(1.8) rotate(-10deg);
  font-size: 18px;
  color: #333;
}

.cta-sub-text::after {
  content: "/";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%) scaleY(1.8) rotate(10deg);
  font-size: 18px;
  color: #333;
}

.cta-sub-text .line-text {
  background: linear-gradient(45deg, #5dce4f, #7dd957);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
  font-size: 20px;
  font-weight: bold;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cta-sub-text .discount-text {
  color: #333;
}

.cta-sub-text .discount-text-red {
  color: #fb1919;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-sub-text .normal-text {
  color: #333;
}

.cta-line .cta-line-button {
  background-color: #2bb11b;
  border-color: #fff;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  padding: 0.8rem 3%;
  justify-content: space-around;
  align-items: center;
  border: solid 2px #fff;
  box-shadow: 0px 4px 4px 0px rgba(149, 133, 114, 0.4);
  width: 90%;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-line .cta-line-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 3%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: thinSlide 3s ease-in-out infinite;
}

@keyframes thinSlide {
  0% {
    left: -5%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.cta-line .cta-line-button:hover {
  transform: translateY(-1px);
  box-shadow: 0px 6px 8px 0px rgba(149, 133, 114, 0.4);
}

.cta-line .cta-line-free-text {
  background-color: #fff;
  color: #2bb11b;
  padding: 3px 6px;
  border-radius: 6px;
  margin: 0 6px 0 0;
  min-width: 35px;
  text-align: center;
  font-size: 16px;
}

.cta-line .cta-line-text {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.cta-line .cta-line-text span {
  font-size: 17px;
  font-weight: 800;
}

.cta-line > p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  padding: 0 5px;
}

.cta-normal-btn {
  display: inline-flex;
  align-items: center;
  background: #00B900;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 12px 1rem;
  border-radius: 8px;
  text-decoration: none;
  justify-content: center;
}
.cta-normal-btn p {
  text-align: center;
  margin-left: 8px;
}
.cta-normal-btn .line-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-normal-btn .line-icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

input.co-form-input {
  color: #0d8024;
  width: 93%;
  height: 2rem;
  padding: 5px 3%;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 100%;
  letter-spacing: 0.8px;
}
input.co-form-input:focus {
  transition: all 0.2s ease;
  outline: none;
  color: #0d8024;
}

.co-select {
  font-size: 1rem;
  padding: 0.4rem 0rem 0.4rem 0.4rem;
  border-radius: 12px;
  border: 1px solid #ccc;
}

.form-content {
  padding: 1rem 1rem 3.5rem 1rem;
  border-radius: 16px;
}

.shop {
  border: 1px solid #958572;
  padding: 1rem;
  border-radius: 16px;
  margin-bottom: 2rem;
}
.shop a {
  text-decoration: none;
}
.shop .shop-a {
  color: #333;
}
.shop h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.shop h2 picture {
  width: 65px;
  height: 65px;
  display: block;
}
.shop h2 img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.shop h2 a {
  font-size: 1.5rem;
  color: #cc4b00;
}
.shop h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.shop .shop-img {
  width: 45%;
}
.shop .ctas {
  display: flex;
  gap: 1rem;
}
.shop .base-info {
  display: flex;
  gap: 5%;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #aaaaaa;
  margin-bottom: 1rem;
}
.shop .base-info picture {
  display: flex;
  height: 200px;
  justify-content: center;
  align-items: center;
}
.shop .base-info picture img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.shop .base-info .address-review {
  width: 50%;
}
.shop .reviews-all {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
  align-items: center;
}
.shop .reviews-all picture {
  height: 24px;
  width: 24px;
}
.shop .reviews-all ul {
  display: flex;
  align-items: center;
}
.shop .reviews-all p {
  font-weight: 600;
}
.shop .shop-details {
  margin: 0 auto;
  width: 95%;
  /* 事例セクションのスタイル追加 */
}
.shop .shop-details .detail-section {
  padding-bottom: 2rem;
}
.shop .shop-details div:last-child {
  padding-bottom: 0;
}
.shop .shop-details .shop-cases {
  margin-bottom: 1.5rem;
}
.shop .shop-details .shop-cases h4 {
  color: #cc4b00;
}
.shop .shop-details .shop-cases .case {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  min-width: 280px;
  max-width: 30%;
  height: 15rem;
  position: relative;
}
.shop .shop-details .shop-cases .case-info {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.shop .shop-details .shop-cases .case-info p {
  margin-bottom: 0.5rem;
}
.shop .review-info {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.shop .review-info p {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  .shop {
    padding: 1rem 0.5rem;
  }
  .shop a {
    font-size: 14px;
  }
  .shop h2 {
    gap: 4px;
    margin-bottom: 4px;
  }
  .shop h2 picture {
    width: 40px;
    height: 40px;
  }
  .shop h2 .fix-width {
    width: 55px;
  }
  .shop .reviews {
    margin-bottom: 0.5rem;
  }
  .shop picture {
    height: 150px;
  }
  .shop .base-info {
    padding: 0.5rem 0;
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .shop .base-info .address-review {
    width: 100%;
    margin: 1rem auto 0 auto;
  }
  .shop .ctas {
    align-items: center;
    justify-content: center;
  }
  .shop .shop-details {
    width: 95%;
    /* スマホ表示での事例カードの調整 */
  }
  .shop .shop-details .categories {
    padding: 0;
    gap: 8px;
  }
  .shop .shop-details div {
    padding-bottom: 0;
  }
  .shop .shop-details .shop-cases .case {
    min-width: 260px;
    max-width: 85%;
  }
}
.under-fv-cta {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  bottom: 0;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%) translateY(100%); /* 初期状態では下に隠す */
  transition: transform 0.4s ease; /* スムーズな表示アニメーション */
}
.under-fv-cta.show {
  transform: translateX(-50%) translateY(0); /* スクロール時のクラス追加で表示位置に移動 */
}

/* モバイルでのみCTAを表示可能にする */
@media screen and (max-width: 768px) {
  .under-fv-cta {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8862745098);
    padding: 8px 0;
    text-align: center;
  }
  .under-fv-cta.show {
    display: block; /* スクロール時にshowクラスが付いたときのみ表示 */
  }
  .under-fv-cta .cta .arrow {
    display: none;
  }
}
/* PCでは常に非表示にする */
@media screen and (min-width: 769px) {
  .under-fv-cta {
    display: none !important; /* PCでは強制的に非表示 */
  }
}
.reviews .review-contents {
  display: flex;
  gap: 8px;
  overflow: hidden;
  width: 100%;
  overflow-x: scroll;
  align-items: center;
}
.reviews .review {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  max-width: 30%;
  height: 15rem;
  position: relative;
}
.reviews .category {
  margin: 8px 0 4px 0;
  font-size: 14px;
  font-weight: 600;
}
.reviews .content {
  margin-bottom: 1rem;
  max-height: 150px;
  overflow-y: scroll;
}
.reviews .review-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviews .review-score ul {
  display: flex;
  align-items: center;
}
.reviews .review-score picture {
  height: 2rem;
  width: 2rem;
  display: inline-block;
  margin-left: -4px;
}
.reviews .review-score img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.reviews .review-score p {
  width: 45px;
}
.reviews span {
  position: absolute;
  right: 4px;
  bottom: 4px;
}

@media (max-width: 768px) {
  .reviews .review {
    max-width: 100%;
    height: 15rem;
  }
  .reviews .review-score {
    align-items: flex-start;
    gap: 0.5rem;
  }
  .reviews .review-score ul {
    align-items: start;
  }
  .reviews .review-score p {
    margin-left: 8px;
  }
  .reviews .review-score li {
    display: flex;
    align-items: center;
  }
  .reviews .review-score picture {
    height: 1.5rem;
    width: 1.5rem;
    margin: 0;
  }
}
.box-shadow {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1019607843);
}

.box-shadow-low {
  box-shadow: 0 0 16px rgba(160, 160, 160, 0.1019607843);
}

.box-shadow-10 {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1019607843);
}

.scroll-x {
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  gap: 8px;
  width: 100%;
}

.scroll-y {
  overflow-y: scroll;
  overflow-x: hidden;
}

.scroll-hint {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.display-sp {
  display: none;
}

.hidden {
  display: none;
}

.display-pc {
  display: block;
}

p,
span {
  line-height: 1.5;
}

section {
  margin: 0 auto;
  max-width: 800px;
  width: 90%;
}

.fv {
  margin: 0 0 1rem 0;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.fv h1 {
  color: white;
  font-size: 1.5rem;
  padding: 8px;
}
.fv .merit img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.fv .merit .text {
  margin-top: -4px;
  background-image: url("https://img.tantei-hikaku-navi.com/common/fv-back-img.webp");
}
.fv .merit p {
  padding: 8px;
  color: #fff;
  font-weight: 600;
}
.fv .fv-cta {
  text-align: center;
}
.fv .cta {
  font-size: 16px;
}

.search .open {
  color: #0000ee;
  margin-bottom: 0.5rem;
}
.search .open:hover {
  cursor: pointer;
}
.search .search-element {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.search .button {
  border: 1px solid #a7a7a7;
  padding: 0rem 1rem;
  font-size: 1rem;
  margin-left: 8px;
}
.search .button:hover {
  cursor: pointer;
}
.search .search-error {
  color: #a20404;
  font-size: 1rem;
  padding: 0.5rem 0;
  display: none;
}
.search form {
  border: 1px solid rgba(0, 0, 0, 0.1098039216);
  padding: 1rem;
  border-radius: 16px;
}
.search p {
  font-size: 18px;
}
.search .area,
.search .categories {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search .submit-button {
  text-align: right;
}
.search .cta-sec {
  border: none;
  width: 100px;
  border-radius: 50px;
}
.search .cta-sec:hover {
  cursor: pointer;
}

.list-title {
  font-size: 20px;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list-title p {
  margin-bottom: 0.5rem;
}
.list-title .pagination {
  margin: 0;
}

/* 調査事例セクション */
.area-cases {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.area-cases h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 2px solid #ED6518;
  padding-bottom: 0.5rem;
}
.area-cases .cases-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #666;
}
.area-cases .cases-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}
.area-cases .case-card {
  border: 1px solid #958572;
  border-radius: 16px;
  overflow: hidden;
}
.area-cases .case-card h3 {
  color: #cc4b00;
  padding: 4%;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}
.area-cases .case-card .case-header {
  padding: 4%;
  margin: 0 4% 0 4%;
  background-color: #e7e7e7;
  border-radius: 8px;
}
.area-cases .case-card .case-details {
  padding: 4%;
}
.area-cases .case-card .case-cost {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.area-cases .case-card .case-cost .cost-label {
  font-weight: bold;
  margin-right: 0.5rem;
}
.area-cases .case-card .case-cost .cost-value {
  color: #ED6518;
  font-weight: bold;
  font-size: 1.2rem;
}
.area-cases .case-card .case-content,
.area-cases .case-card .case-result {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}
.area-cases .case-card .case-content h4,
.area-cases .case-card .case-result h4 {
  font-weight: bold;
  margin: 0 0 0.5rem -0.5rem;
}
.area-cases .case-card .case-content p,
.area-cases .case-card .case-result p {
  line-height: 1.5;
}
.area-cases .case-card .case-footer {
  text-align: center;
}
.area-cases .case-card .cta-sec-reverse-color {
  width: auto;
  font-size: 14px;
  margin: 0 auto;
  padding: 8px 1rem;
}
.area-cases .case-card .cta-sec-reverse-color a {
  color: #0d8024;
  text-decoration: none;
}

/* 口コミセクション */
.perfect-reviews {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.perfect-reviews h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 2px solid #ED6518;
  padding-bottom: 0.5rem;
}
.perfect-reviews .reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}
.perfect-reviews .review-card {
  border: 1px solid #958572;
  border-radius: 16px;
  overflow: hidden;
}
.perfect-reviews .review-header {
  padding: 0.5rem 0.5rem 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.perfect-reviews .review-header .review-rating {
  display: flex;
  align-items: center;
}
.perfect-reviews .review-header .review-rating ul {
  display: flex;
  margin-right: 0.5rem;
}
.perfect-reviews .review-header .review-rating p {
  font-weight: bold;
  color: #543718;
}
.perfect-reviews .review-header .review-category p {
  font-weight: bold;
  color: #543718;
  font-size: 1rem;
  margin: 0;
}
.perfect-reviews .review-body {
  padding: 1rem;
}
.perfect-reviews .review-body p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.perfect-reviews .cta-sec-reverse-color {
  width: auto;
  font-size: 14px;
  margin: 0 auto;
  padding: 8px 1rem;
}
.perfect-reviews .cta-sec-reverse-color a {
  color: #0d8024;
  text-decoration: none;
}
.perfect-reviews .review-footer {
  padding: 0 1rem 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 市区町村一覧セクション */
.prefecture-cities {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.prefecture-cities h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 2px solid #ED6518;
  padding-bottom: 0.5rem;
}
.prefecture-cities .cities-container {
  border: 1px solid #958572;
  border-radius: 16px;
  padding: 1.5rem;
}
.prefecture-cities .cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.prefecture-cities .cities-list li {
  background-color: #f9f2eb;
  border-radius: 8px;
  min-width: 120px;
  padding: 0.5rem;
  text-align: center;
}
.prefecture-cities .cities-list li:hover {
  background-color: #0d8024;
}
.prefecture-cities .cities-list li:hover a {
  color: #fff;
}
.prefecture-cities .cities-list li a {
  color: #333;
  text-decoration: none;
  display: block;
  font-weight: 600;
}

/* 都道府県一覧セクション */
.prefecture-list {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.prefecture-list h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 2px solid #ED6518;
  padding-bottom: 0.5rem;
}
.prefecture-list .prefectures-container {
  border: 1px solid #958572;
  border-radius: 16px;
  padding: 1.5rem;
}
.prefecture-list .prefectures-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.prefecture-list .prefectures-list li {
  background-color: #f9f2eb;
  border-radius: 8px;
  min-width: 120px;
  padding: 0.5rem;
  text-align: center;
}
.prefecture-list .prefectures-list li:hover {
  background-color: #0d8024;
}
.prefecture-list .prefectures-list li:hover a {
  color: #fff;
}
.prefecture-list .prefectures-list li a {
  color: #333;
  text-decoration: none;
  display: block;
  font-weight: 600;
}

/* 調査内容一覧セクション */
.category-list {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.category-list h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 2px solid #ED6518;
  padding-bottom: 0.5rem;
}
.category-list .categories-container {
  border: 1px solid #958572;
  border-radius: 16px;
  padding: 1.5rem;
}
.category-list .categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.category-list .categories-list li {
  background-color: #f9f2eb;
  border-radius: 8px;
  min-width: 120px;
  padding: 0.5rem;
  text-align: center;
}
.category-list .categories-list li:hover {
  background-color: #0d8024;
}
.category-list .categories-list li:hover a {
  color: #fff;
}
.category-list .categories-list li a {
  color: #333;
  text-decoration: none;
  display: block;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .display-sp {
    display: block;
  }
  .display-pc {
    display: none;
  }
  .fv {
    height: auto;
  }
  .fv h1 {
    font-size: 20px;
    text-align: left;
  }
  .search p {
    font-size: 1rem;
  }
  .search .area,
  .search .categories {
    margin-bottom: 0.5rem;
    display: block;
  }
  .search .button {
    font-size: 14px;
    margin-left: 0;
  }
  .list-title {
    font-size: 1rem;
    display: block;
  }
  .cta-free-text {
    font-size: 1rem;
  }
  .area-cases h2 {
    font-size: 1.25rem;
  }
  .area-cases .cases-container {
    grid-template-columns: 1fr;
  }
  .area-cases .case-card h3 {
    font-size: 18px;
  }
  .area-cases .case-card .case-cost .cost-value {
    font-size: 1.1rem;
  }
  .perfect-reviews h2 {
    font-size: 1.25rem;
  }
  .perfect-reviews .reviews-container {
    grid-template-columns: 1fr;
  }
  .perfect-reviews .review-card .review-header .review-rating .stars {
    font-size: 1rem;
  }
  .perfect-reviews .review-card .review-body .review-text {
    font-size: 0.8rem;
  }
  .perfect-reviews .review-card .review-footer .review-author {
    font-size: 0.8rem;
  }
  .prefecture-cities h2 {
    font-size: 1.25rem;
  }
  .prefecture-cities .cities-container {
    padding: 1rem;
  }
  .prefecture-cities .cities-list {
    gap: 0.5rem;
  }
  .prefecture-cities .cities-list li {
    min-width: 100px;
    width: 43%;
    font-size: 0.9rem;
    background-color: #f9f2eb;
  }
  .prefecture-cities .cities-list li:hover {
    background-color: #0d8024;
  }
  .prefecture-cities .cities-list li a {
    color: #333;
  }
  .prefecture-cities .cities-list li a:hover {
    color: #fff;
  }
  .prefecture-list h2 {
    font-size: 1.25rem;
  }
  .prefecture-list .prefectures-container {
    padding: 1rem;
  }
  .prefecture-list .prefectures-list {
    gap: 0.5rem;
  }
  .prefecture-list .prefectures-list li {
    min-width: 100px;
    width: 43%;
    font-size: 0.9rem;
    background-color: #f9f2eb;
  }
  .prefecture-list .prefectures-list li:hover {
    background-color: #0d8024;
  }
  .prefecture-list .prefectures-list li a {
    color: #333;
  }
  .prefecture-list .prefectures-list li a:hover {
    color: #fff;
  }
  .category-list h2 {
    font-size: 1.25rem;
  }
  .category-list .categories-container {
    padding: 1rem;
  }
  .category-list .categories-list {
    gap: 0.5rem;
  }
  .category-list .categories-list li {
    min-width: 100px;
    width: 43%;
    font-size: 0.9rem;
    background-color: #f9f2eb;
  }
  .category-list .categories-list li:hover {
    background-color: #0d8024;
  }
  .category-list .categories-list li a {
    color: #333;
  }
  .category-list .categories-list li a:hover {
    color: #fff;
  }
  .under-fv-cta .cta-line {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .under-fv-cta .cta-line .cta-line-button {
    width: 94%;
    box-shadow: 0px 8px 22px 0px rgba(149, 133, 114, 0.4);
    justify-content: center;
  }
  .under-fv-cta .cta-line .cta-line-button svg {
    flex-shrink: 0;
  }
  .under-fv-cta .cta-line .cta-line-button p {
    font-size: 16px;
    margin-left: 8px;
  }
}
