@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%;
}

.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%;
  }
}
.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%;
  }
}
.see-more {
  text-align: center;
}
.see-more .see-more-button {
  color: #333;
  text-decoration: none;
  font-size: 1.5rem;
  border: 2px solid #9c9c9c;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background-color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .see-more .see-more-button {
    font-size: 1rem;
  }
}
.category-active {
  border: 1px solid #cf431d;
  color: #cf431d;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1019607843);
}

.category-none-active {
  border: 1px solid #bebebe;
  color: #bebebe;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1019607843);
}

.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%;
  }
}
.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%;
}

.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;
  }
}
.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;
}

main section p,
main section h3,
main section span {
  line-height: 1.5;
}

.display-pc {
  display: block;
}

.section-title {
  padding: 0 1.5rem;
}
.section-title h2 {
  width: 100%;
}
.section-title h2 a {
  color: #363636;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}
.section-title p {
  font-weight: 700;
  color: #a8957e;
  letter-spacing: 0.2em;
  font-size: 5rem;
  line-height: 1.3;
  padding: 1rem 0 0.5rem 0;
  position: relative;
  display: inline-block;
}
.section-title p:first-letter {
  color: #cc4b00;
}

.cta-section {
  background-color: #F9F2EB;
  padding: 3rem;
  border-radius: 1rem;
}
.cta-section div {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem 3rem;
  text-align: center;
}

.cta-sub-text {
  margin-bottom: 4px;
}
.cta-sub-text span {
  color: #cc4b00;
}

.none-background-color {
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  section {
    margin-bottom: 3rem;
  }
  .display-pc {
    display: none;
  }
  .section-title {
    font-size: 3rem;
    letter-spacing: 4px;
    padding: 0 1rem;
  }
  .section-title h2 {
    font-size: 1rem;
  }
  .section-title p {
    font-size: 3rem;
    letter-spacing: 4px;
    padding-top: 1rem;
  }
  .cta-section {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    display: none;
  }
  .cta-section div {
    padding: 2rem 1rem;
  }
  .cta-section .cta-sub-text {
    margin-bottom: 0.5rem;
  }
  .see-more {
    margin-top: 2rem;
  }
  .none-background-color {
    padding: 0 1rem;
  }
  .none-background-color div {
    padding: 0 0 2rem 0;
  }
}
.fv {
  margin-top: 1px;
  height: 526px;
  background-image: url("https://img.tantei-hikaku-navi.com/common/fv.webp");
  background-size: cover;
  position: relative;
}
.fv .fv-words {
  position: relative;
  height: 100%;
  margin-left: 4rem;
}
.fv .fv-words p {
  position: absolute;
  left: 3rem;
  top: 1rem;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  background-color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 6px 3px;
  letter-spacing: 3px;
}
.fv .fv-words p:nth-child(1) {
  left: 9rem;
}
.fv .fv-words p:nth-child(2) {
  left: 6rem;
}
.fv .fv-words p:nth-child(3) {
  left: 3rem;
}
.fv .fv-words strong {
  color: #cc4b00;
}
.fv .fv-words .horizontal-tb {
  writing-mode: horizontal-tb;
  letter-spacing: -2px;
  font-weight: 800;
}
.fv .fv-batch {
  position: absolute;
  right: 0;
  bottom: 2rem;
}
.fv .fv-batch ul {
  display: flex;
  margin-right: 1.5rem;
}
.fv .fv-batch li {
  position: relative;
}
.fv .fv-batch p {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  width: 66%;
}
.fv .fv-batch picture {
  display: block;
  width: 150px;
  height: 150px;
}
.fv .fv-batch img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.fv .fv-cta {
  position: absolute;
  bottom: -1rem;
  left: 7rem;
  width: 24rem;
}
.fv .fv-cta p {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .fv {
    background-position: 50% 0;
    background-image: url("https://img.tantei-hikaku-navi.com/common/fv-sp-100.webp");
    margin-bottom: 0;
  }
  .fv .fv-words {
    margin: 0;
  }
  .fv .fv-words p {
    padding: 6px 0;
    letter-spacing: 6px;
    font-size: 20px;
    font-weight: 600;
  }
  .fv .fv-words strong {
    font-size: 24px;
  }
  .fv .fv-words p:nth-child(1) {
    left: 7rem;
    height: auto;
  }
  .fv .fv-words p:nth-child(2) {
    left: 4rem;
  }
  .fv .fv-words p:nth-child(3) {
    left: 1rem;
  }
  .fv .fv-batch p {
    font-weight: bold;
    font-size: 11px;
  }
  .fv .fv-batch picture {
    width: 120px;
    height: auto;
  }
  .fv .fv-batch ul {
    margin: 0;
  }
  .fv .fv-batch li {
    margin-left: -20px;
  }
  .fv .fv-cta {
    bottom: -3.5rem;
    border-radius: 1rem;
    width: 93%;
    display: flex;
    align-items: center;
    justify-content: unset;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 0rem;
  }
  .fv .fv-cta a {
    width: 100%;
    box-shadow: 0px 8px 22px 0px rgba(149, 133, 114, 0.4);
    justify-content: center;
  }
  .fv .fv-cta p {
    font-size: 5vw;
    margin-left: 8px;
  }
  .fv .fv-cta .arrow {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .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 {
    margin-left: 8px;
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  .fv .fv-batch picture {
    width: 100%;
  }
}
.map-container {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.map-container picture {
  display: block;
  width: 97%;
  margin: 0 auto;
}
.map-container picture img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.map-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.label {
  position: absolute;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px 6px;
  border-radius: 3px;
  cursor: pointer;
}

/* 各地方の位置を調整 */
.hokkaido {
  left: 81%;
  top: 11%;
}

.tohoku {
  left: 80%;
  top: 37%;
}

.kanto {
  left: 80%;
  top: 62%;
}

.chubu {
  left: 63%;
  top: 57%;
}

.kinki {
  left: 50%;
  top: 66%;
}

.chugoku {
  left: 31%;
  top: 61%;
}

.shikoku {
  left: 32%;
  top: 77%;
}

.kyushu {
  left: 14%;
  top: 60%;
}

.okinawa {
  left: 11.5%;
  top: 89%;
}

.prefecture-lists {
  display: none;
}

.areas p {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
}
.areas ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid rgba(0, 0, 0, 0.5);
}
.areas li:nth-child(odd) {
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  border-right: 2px solid rgba(0, 0, 0, 0.5);
}
.areas li:nth-child(even) {
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}
.areas li {
  width: 48%;
  text-align: center;
  padding: 8px 2px;
}
.areas .none-border {
  border-bottom: none !important;
}
.areas a {
  text-decoration: none;
  color: #0274d1;
  font-size: 20px;
  width: 100%;
  display: block;
}
.areas a:hover {
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.modal.show {
  display: block;
}
.modal .modal-content {
  position: relative;
  background-color: #fff;
  margin: 15% auto;
  padding: 24px;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.modal .close-button {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}
.modal .close-button:hover {
  color: #333;
}

@media screen and (max-width: 768px) {
  .map-container {
    width: 100%;
  }
  .map-container picture {
    width: 80%;
  }
  .modal .modal-content {
    margin: 20% auto;
  }
  /* 各地方の位置を調整 */
  .hokkaido {
    top: 9%;
    left: 72%;
  }
  .tohoku {
    top: 33%;
    left: 72%;
  }
  .kanto {
    top: 58%;
    left: 72%;
  }
  .chubu {
    top: 51%;
    left: 57%;
  }
  .kinki {
    top: 67%;
    left: 47%;
  }
  .chugoku {
    top: 59%;
    left: 31.4%;
  }
  .shikoku {
    top: 74%;
    left: 32.5%;
  }
  .kyushu {
    top: 57%;
    left: 15%;
  }
  .okinawa {
    top: 86%;
    left: 15%;
  }
}
.about {
  padding-bottom: 5rem;
}

.about-content {
  width: 70%;
  margin: 0 auto;
}
.about-content h1 {
  position: relative;
  margin: 0 3rem;
  font-size: 3rem;
  background: #fff;
  display: inline;
  z-index: 2;
}
.about-content span {
  font-size: 2rem;
}
.about-content p {
  position: relative;
  margin-top: -1.5rem;
  border: solid 3px #958572;
  border-radius: 10px;
  font-size: 1.5rem;
  padding: 2.5rem 4rem 1.5rem 1.5rem;
  line-height: 2.1;
  background: rgba(255, 255, 255, 0.9);
}
.about-content p strong {
  font-weight: 600;
}
.about-content p span {
  position: absolute;
  top: 2rem;
  z-index: -1;
  width: 0;
  writing-mode: vertical-rl;
  right: -37px;
  font-size: 5.5rem;
  font-weight: 500;
  color: #958572;
  line-height: 0;
}
.about-content p:after {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: solid 3px #958572;
  background-color: #958572;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .about {
    padding-bottom: 1rem;
    margin-top: 3rem;
  }
  .about-content {
    width: 90%;
    margin: 0 auto;
  }
  .about-content h1 {
    font-size: 8vw;
    margin: 0 1rem;
  }
  .about-content p {
    padding: 2rem 0.8rem 1rem 1rem;
    font-size: 1rem;
    width: 90%;
    line-height: 1.8;
  }
  .about-content p span {
    font-size: 4.5rem;
    right: -27px;
  }
  .about-content p:after {
    width: 100%;
    height: 96%;
    right: 0.5rem;
  }
}
.ranking {
  margin-bottom: 2rem;
}
.ranking .shop {
  width: 800px;
  margin: 2rem auto;
}

@media screen and (max-width: 768px) {
  .ranking .shop {
    width: auto;
    margin: 1rem;
  }
}
.category-section .category-table {
  margin: 1rem 1.5rem;
  border: 2px solid #958572;
  padding: 1rem;
  border-radius: 1rem;
}
.category-section li {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 2px solid rgba(221, 221, 221, 0.8666666667);
  padding: 0px 0 8px 0;
  margin-top: 8px;
}
.category-section li:first-child {
  margin-top: 0;
}
.category-section li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.category-section a {
  color: #333;
  font-size: 1.5rem;
  text-decoration: none;
}
.category-section picture {
  display: block;
  width: 36px;
  height: 36px;
}
.category-section img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 768px) {
  .category-section .category-table {
    margin: 1rem;
    padding: 1rem 8px;
  }
  .category-section li {
    gap: 0.5rem;
  }
  .category-section a {
    font-size: 14px;
    max-width: 90%;
  }
  .category-section picture {
    width: 24px;
    height: 24px;
  }
}
.services {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 24px 3rem 55px;
}
.services .service {
  position: relative;
  background: #f6f4ed;
  border-radius: 10px;
  margin-top: 5rem;
  width: 420px;
  height: auto;
}
.services .service .number {
  position: absolute;
  top: -6.4em;
  left: 3.4em;
}
.services .service .number p {
  position: relative;
  z-index: 2;
  color: #958572;
  font-size: 6rem;
  font-weight: 500;
}
.services .service .number p:after {
  background-color: #fff;
  content: "";
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100%;
  height: 30%;
}
.services .service .service-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  width: 80%;
  margin: 0 auto;
  padding-right: 1rem;
}
.services .service picture {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 195px;
}
.services .service img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.services .service .service-text {
  text-align: center;
  letter-spacing: 0.04em;
  padding-bottom: 2rem;
  padding-right: 1rem;
}
.services .service .service-text p {
  font-size: 20px;
  font-weight: 600;
  margin: 1rem auto 1.5rem auto;
  width: 90%;
}
.services .service .service-text span {
  font-size: 1rem;
  width: 93%;
  display: block;
  margin: 0 auto;
}
.services .service:after {
  border: solid 2px #958572;
  border-radius: 10px;
  content: "";
  position: absolute;
  top: -1.4em;
  right: 1.4em;
  width: 100%;
  height: 100%;
}
.services .service-2 {
  margin-top: 14em;
  height: 410px;
}
.services .service-3 {
  height: 460px;
}
.services .service-4 {
  margin-top: 14rem;
  height: 424px;
}

@media screen and (max-width: 768px) {
  .services {
    margin: 0 8px;
    display: block;
  }
  .services .service {
    width: 90%;
    margin: 5rem auto;
    height: auto;
  }
  .services .service .number {
    top: -5.4em;
    left: 1.4em;
  }
  .services .service .number p {
    font-size: 5rem;
    font-weight: 700;
  }
  .services .service .number p:after {
    bottom: 50px;
    left: 48%;
  }
  .services .service .service-img {
    height: 190px;
    padding-right: 0.5rem;
  }
  .services .service picture {
    height: 150px;
  }
  .services .service::after {
    right: 0.5rem;
  }
  .services .service .service-text {
    padding-right: 0.5rem;
  }
  .services .service .service-text p {
    width: 94%;
    margin-top: 0;
    font-size: 18px;
  }
  .services .service-2 {
    height: 360px;
  }
}
