@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4A3121;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
}
body.is-nav-open {
  overflow: hidden;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #4A3121;
  display: inline-block;
  position: relative;
  padding-bottom: 0.75rem;
  margin: 0;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  background-color: #C1272D;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}
.btn--red {
  background-color: #C1272D;
  color: #FFFFFF;
}
.btn--red:hover {
  background-color: #A01F24;
  color: #FFFFFF;
}
.btn--hero {
  padding: 16px 48px;
  font-size: 1.1rem;
}
.btn--cta {
  padding: 16px 40px;
  font-size: 1.05rem;
  min-width: 240px;
}

.header {
  background-color: transparent;
  padding: 40px 0 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header__inner {
  width: min(90%, 1240px);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}
.header__content {
  flex: 1 1 auto;
  min-width: 0;
  background-color: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(74, 49, 33, 0.08);
  padding: 0.8rem 1.4rem;
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #4A3121;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.header__logo img {
  width: 240px;
  height: auto;
}
.header__logo span {
  white-space: nowrap;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}
.header__contact-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}
.header__contact-mobile a {
  font-size: 1rem;
  font-weight: 700;
  color: #4A3121;
}
.header__contact-mobile img {
  width: 36px;
  height: auto;
}
.header__contact-label {
  font-size: 0.68rem;
  color: #666666;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #4A3121;
}
.header__phone img {
  width: 36px;
  height: auto;
}
.header__phone:hover {
  color: #C1272D;
}
.header__hours {
  font-size: 0.68rem;
  color: #666666;
}
.header__menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: #FFFFFF;
  cursor: pointer;
  padding: 18px 10px 8px;
  border-radius: 22px;
  width: 74px;
  min-width: 74px;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1002;
  transition: background-color 0.3s ease;
  box-shadow: 0 10px 26px rgba(74, 49, 33, 0.08);
}
.header__menu span {
  width: 30px;
  height: 3px;
  background-color: #4A3121;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
.header__menu em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2px;
  color: #4A3121;
}
.header__menu.is-open {
  background-color: #4A3121;
  border-color: #4A3121;
}
.header__menu.is-open span {
  background-color: #FFFFFF;
}
.header__menu.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__menu.is-open span:nth-child(2) {
  opacity: 0;
}
.header__menu.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.header__menu.is-open em {
  opacity: 0;
}
.header__nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4A3121;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.header__nav-inner {
  width: 100%;
  max-width: 1200px;
  padding: 1.25rem 1.5rem;
}
.header__nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header__nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
}
.header__nav-brand img {
  width: 52px;
  height: auto;
  filter: brightness(0) invert(1);
}
.header__nav-brand span {
  font-size: 1rem;
  line-height: 1.4;
}
.header__nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #FFFFFF;
  line-height: 1.35;
}
.header__nav-contact span,
.header__nav-contact small {
  font-size: 0.75rem;
  opacity: 0.9;
}
.header__nav-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.15rem 0;
}
.header__nav-cta {
  flex-shrink: 0;
}
.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
  max-width: 400px;
  margin-inline: auto;
}
.header__nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.header__nav-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.header__nav-list a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header__nav-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.header__nav-list .nav-contact {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  color: #FFFFFF;
}
.header__nav-list .nav-contact .nav-phone {
  font-size: 1.1rem;
  font-weight: 700;
}
.header__nav-list .nav-contact .nav-phone--sp {
  display: none;
  padding: 0;
  color: #FFFFFF;
}
.header__nav-list .nav-contact .nav-hours {
  font-size: 0.7rem;
  opacity: 0.85;
}
.header__nav-bottom {
  max-width: 400px;
  margin: 1.25rem auto 0;
  text-align: center;
}
.header__nav-bottom-cta {
  display: block;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
}

.hero {
  position: relative;
}
.hero__sp-logo {
  display: none;
}
.hero__image {
  min-height: 80vh;
  background: url("../images/lp/hero.jpg") no-repeat right center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 2rem;
}
.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.45;
}
.hero__title span {
  display: table;
  background-color: #FFFFFF;
  color: #C1272D;
  padding: 0 0.1em;
  margin-bottom: 0.25em;
  box-shadow: 0 8px 24px rgba(74, 49, 33, 0.08);
}
.hero__lead {
  color: #4A3121;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 1.75rem;
  text-shadow: 1px 1px 0px white;
}

.sp-fixed-actions {
  display: none;
}

.worry {
  padding: 4.5rem 0 3rem;
  background-color: #FFFFFF;
}
.worry__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.worry__heading {
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #4A3121;
  margin: 0 0 2.5rem;
}
.worry__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.worry__image {
  border-radius: 12px;
  overflow: hidden;
  border: 5px solid #CCCCCC;
  aspect-ratio: 4/3;
  margin-bottom: 1rem;
  box-shadow: 0 10px 22px rgba(74, 49, 33, 0.08);
}
.worry__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.worry__body {
  padding: 0 0.25rem;
}
.worry__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #4A3121;
  text-align: center;
}
.worry__text {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
  line-height: 1.8;
}

.solve {
  width: 100%;
}
.solve__inner {
  width: 100%;
}
.solve picture {
  display: block;
  width: 100%;
}
.solve img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.services {
  padding: 5rem 0;
  background-color: #FDF8F0;
}
.services__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.services__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border: 5px solid #4A3121;
  background-color: #FDF8F0;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(74, 49, 33, 0.08);
}
.services__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(74, 49, 33, 0.2);
  align-items: center;
  transition: background-color 0.25s ease;
  cursor: pointer;
}
.services__item:last-child {
  border-bottom: none;
}
.services__item:hover {
  background-color: rgba(255, 255, 255, 0.55);
}
.services__item:focus-visible {
  outline: 2px solid #C1272D;
  outline-offset: -2px;
}
.services__item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #4A3121;
}
.services__item--active {
  background-color: #4A3121;
  color: #FFFFFF;
}
.services__item--active .services__icon {
  color: #FFFFFF;
}
.services__item--active .services__icon img {
  filter: brightness(0) invert(1);
}
.services__item--active h3,
.services__item--active p {
  color: #FFFFFF;
}
.services__item--active:hover {
  background-color: #4A3121;
}
.services__item p {
  margin: 0;
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.6;
}
.services__icon {
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  font-size: 1.35rem;
  color: #4A3121;
  padding-top: 0.15rem;
}
.services__icon img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.25s ease;
}
.services__image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.services__slider {
  position: absolute;
  inset: 0;
  height: 100%;
}
.services__slider .slick-list,
.services__slider .slick-track,
.services__slider .slick-slide > div {
  height: 100%;
}
.services__slider .slick-slide {
  height: 100%;
}
.services__slide {
  height: 100%;
  position: relative;
}
.services__slide p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666666;
  position: absolute;
  width: 90%;
  margin: 0 auto;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 1.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.82);
  color: #4A3121;
}
.services__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow {
  padding: 4.5rem 0;
  background-color: #FFFFFF;
}
.flow__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.flow__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  background-color: #FDF8F0;
  border: 1px solid #4A3121;
  border-radius: 4px;
  margin-bottom: 1.75rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(74, 49, 33, 0.05);
}
.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.15rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #B8B0A8;
}
.flow__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid #4A3121;
}
.flow__num {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #4A3121;
  line-height: 1;
}
.flow__label {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}
.flow__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.5rem;
  font-size: 0.95rem;
}
.flow__body p {
  margin: 0 0 0.5rem;
}
.flow__body p:last-child {
  margin-bottom: 0;
}
.flow__body a {
  color: #C1272D;
  font-weight: 600;
  text-decoration: underline;
}
.flow__note {
  font-size: 0.8rem;
  color: #666666;
}

.cta {
  padding: 3rem 0;
  background: url("../images/cvbg.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  border-top: 4px solid #4A3121;
  border-bottom: 4px solid #4A3121;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta__catch {
  font-size: 3rem;
  font-weight: 700;
  color: #4A3121;
  margin: 0 0 1.25rem;
  line-height: 1.4;
}
.cta__catch strong {
  font-size: 3rem;
}
.cta__box {
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid #4A3121;
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 14px 28px rgba(74, 49, 33, 0.08);
}
.cta__box-label {
  font-weight: 600;
  font-size: 1.5rem;
}
.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4A3121;
}
.cta__phone img {
  width: 64px;
  height: auto;
}
.cta__box-sub {
  margin: 0.25rem 0 0;
  font-size: 1.25rem;
  color: #666666;
}
.cta__box-sub-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4A3121;
}
.cta__box-hours {
  font-size: 1rem;
  color: #666666;
}

.reasons {
  padding: 4.5rem 0;
  background-color: #FFFFFF;
}
.reasons__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.reasons__image {
  border: 2px solid #C1272D;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 1rem;
  box-shadow: 0 10px 22px rgba(74, 49, 33, 0.08);
}
.reasons__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reasons__item {
  background-color: #FFFFFF;
  padding-bottom: 0.25rem;
  display: flex;
  flex-direction: column;
}
.reasons__item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #4A3121;
}
.reasons__item p {
  margin: 0;
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.8;
}
.reasons__body {
  padding: 0 0.25rem;
}

.works {
  padding: 4.5rem 0;
  background-color: #FDF8F0;
}
.works__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.works__case {
  margin-bottom: 3.5rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid rgba(74, 49, 33, 0.12);
}
.works__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.works__case-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0;
}
.works__case-head h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.works__price {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}
.works__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0;
}
.works__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #F5F5F5;
  box-shadow: 0 10px 24px rgba(74, 49, 33, 0.08);
}
.works__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works__label {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 1px 3px rgba(34, 34, 34, 0.5);
  z-index: 1;
}
.works__note {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 0.65rem;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(34, 34, 34, 0.6);
}
.works__arrow {
  font-size: 5rem;
  font-weight: 700;
  color: #4A3121;
}
.works__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4A3121;
}

.price {
  margin-top: 3rem;
}
.price__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.price__title::after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #C1272D;
}
.price__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(74, 49, 33, 0.06);
}
.price__table th,
.price__table td {
  padding: 0.9rem 1.25rem;
  border: 1px solid #CCCCCC;
  font-size: 0.95rem;
  font-weight: 700;
}
.price__table tbody tr:nth-child(even) {
  background-color: #F1F1F1;
}
.price__table th {
  background-color: #4A3121;
  color: #FFFFFF;
  font-weight: 600;
  text-align: left;
}
.price__table th:nth-child(2), .price__table th:nth-child(3) {
  text-align: center;
  width: 30%;
}
.price__table td:nth-child(2) {
  text-align: center;
  font-weight: 700;
}
.price__table td:nth-child(3) {
  text-align: center;
}
.price__note {
  margin: 0.75rem 0 0;
  text-align: right;
  font-size: 0.75rem;
  color: #666666;
}

.recommend {
  padding: 4.5rem 0 4.5rem;
  background-color: #FFFFFF;
  overflow: hidden;
}
.recommend__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.recommend__slider {
  width: 100%;
  margin: 0;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
.recommend__card {
  margin: 0 2rem;
  border: 1px solid rgba(74, 49, 33, 0.35);
  border-radius: 20px;
  overflow: hidden;
  background-color: #F9F6F1;
  padding-bottom: 1.25rem;
}
.recommend__meta {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background-color: #FDF8F0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4A3121;
}
.recommend__meta-label {
  background-color: #C1272D;
  color: #FFFFFF;
  padding: 0.25rem 1rem;
  border-radius: 50px;
}
.recommend__meta-brand {
  background-color: #4A3121;
  color: #FFFFFF;
  padding: 0.25rem 1rem;
  border-radius: 50px;
}
.recommend__image {
  border-radius: 20px;
  background-color: #FDF8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
}
.recommend__image img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: contain;
}
.recommend__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 2rem 0.4rem;
  color: #4A3121;
  text-align: center;
}
.recommend__lead {
  margin: 0 2rem 0.85rem;
  padding: 0;
  text-align: left;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #666666;
  min-height: 3.2em;
}
.recommend__price-old {
  margin: 0 2rem;
  text-align: right;
  font-size: 0.8rem;
  color: #666666;
  text-decoration: line-through;
}
.recommend__price-new {
  margin: 0.35rem 2rem 0;
  text-align: right;
  font-size: 0.95rem;
  color: #C1272D;
  font-weight: 700;
}
.recommend__price-new strong {
  font-size: 1.35rem;
}
.recommend__price-new--solo {
  margin-top: auto;
  color: #222222;
}
.recommend .slick-prev,
.recommend .slick-next {
  width: 64px;
  height: 64px;
  z-index: 2;
  background-color: rgba(34, 34, 34, 0.5);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px auto;
  border-radius: 50%;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}
.recommend .slick-prev::before,
.recommend .slick-next::before {
  content: "" !important;
  display: none;
}
.recommend .slick-prev:hover,
.recommend .slick-next:hover {
  opacity: 0.85;
  background-color: #4A3121;
}
.recommend .slick-prev {
  left: 8px;
  background-image: url("../images/Arrowleft.svg");
}
.recommend .slick-next {
  right: 8px;
  background-image: url("../images/Arrowright.svg");
}
.recommend .slick-dots {
  bottom: -2rem;
}
.recommend .slick-dots li button:before {
  font-size: 10px;
  color: #222222;
  opacity: 1;
}
.recommend .slick-dots li.slick-active button:before {
  color: #C1272D;
}

.news {
  padding: 4.5rem 0;
  background-color: #F5F5F5;
}
.news__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.news__list {
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
}
.news__item {
  border-bottom: 1px solid #CCCCCC;
}
.news__item:nth-child(even) {
  background-color: #EBEAED;
}
.news__item:last-child {
  border-bottom: none;
}
.news__item summary {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}
.news__item summary::-webkit-details-marker {
  display: none;
}
.news__item summary::after {
  content: "▼";
  font-size: 0.7rem;
  color: #4A3121;
  transition: transform 0.2s ease;
}
.news__item[open] summary::after {
  transform: rotate(180deg);
}
.news__date {
  font-weight: 700;
  font-size: 0.9rem;
}
.news__title {
  font-size: 0.95rem;
}
.news__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666666;
}
.news__body a {
  color: #C1272D;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.news__body a:hover {
  color: #A01F24;
}
.news__body img {
  display: block;
  width: 80%;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
}
.news__body p {
  margin: 0 0 0.75rem;
}
.news__body p:last-child {
  margin-bottom: 0;
}
.news__empty {
  margin: 0;
  padding: 1.25rem;
  color: #666666;
  text-align: center;
}

.faq {
  padding: 4.5rem 0;
  background-color: #FDF8F0;
}
.faq__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
}
.faq__q, .faq__a {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq__q span, .faq__a span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #FFFFFF;
  border-radius: 2px;
}
.faq__q {
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.faq__q span {
  background-color: #4A3121;
}
.faq__a span {
  background-color: #C1272D;
}

.company {
  padding: 4.5rem 0;
  background-color: #FFFFFF;
}
.company__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.company__table {
  margin: 0;
  border-top: 1px solid #CCCCCC;
}
.company__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid #CCCCCC;
  padding: 1rem 0;
}
.company__row dt {
  font-weight: 700;
  margin: 0;
}
.company__row dd {
  margin: 0;
}
.company__row dd ul {
  margin: 0;
}

.footer {
  background-color: #3E3A39;
  color: #FFFFFF;
  padding: 3rem 0 1.5rem;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer__logo img {
  width: 240px;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer__sns {
  display: flex;
  gap: 0.75rem;
}
.footer__sns a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: background-color 0.2s ease;
}
.footer__sns a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}
.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 2.5rem;
}
.footer__nav li {
  margin-bottom: 0.65rem;
}
.footer__nav a {
  color: #FFFFFF;
  font-size: 0.95rem;
}
.footer__nav a:hover {
  opacity: 0.8;
}
.footer__copyright {
  text-align: center;
  font-size: 0.75rem;
  margin: 0;
  padding: 0 1rem;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.footer__copyright a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer__copyright a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .section-title {
    margin-bottom: 2rem;
  }
  .section-title h2 {
    font-size: 1.7rem;
  }
  .header {
    padding-top: 24px;
  }
  .header__inner {
    width: min(94%, 1000px);
    gap: 10px;
  }
  .header__content {
    padding: 0.65rem 1rem;
    border-radius: 20px;
    min-height: 64px;
    gap: 0.75rem;
  }
  .header__logo img {
    width: 30vw;
  }
  .header__contact-label,
  .header__hours,
  .header__contact-mobile {
    display: block;
  }
  .header__phone {
    font-size: 1rem;
  }
  .header__phone img {
    width: 28px;
  }
  .header__contact-mobile a {
    font-size: 0.8rem;
  }
  .header__btn {
    padding: 10px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .header__menu {
    width: 64px;
    min-width: 64px;
    min-height: 64px;
    border-radius: 20px;
    padding: 14px 8px 6px;
  }
  .header__nav-head {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .header__nav-brand,
  .header__nav-actions {
    justify-content: center;
  }
  .header__nav-contact {
    align-items: center;
  }
  .hero__content {
    padding: 3.5rem 1.5rem;
  }
  .hero__title {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  }
  .worry {
    padding: 3.5rem 0 2.5rem;
  }
  .worry__heading {
    font-size: 1.35rem;
    margin-bottom: 2rem;
  }
  .worry__list {
    gap: 1.25rem;
  }
  .worry__title {
    font-size: 0.95rem;
  }
  .services {
    padding: 3.5rem 0;
  }
  .services__layout {
    grid-template-columns: 1fr;
  }
  .services__image {
    position: relative;
    min-height: 320px;
    max-height: none;
    height: 320px;
    order: -1;
  }
  .services__slider {
    position: absolute;
    inset: 0;
  }
  .services__item {
    padding: 1rem 1.25rem;
  }
  .services__caption {
    left: 24px;
    bottom: 24px;
    max-width: calc(100% - 48px);
    padding: 0.75rem 1rem;
  }
  .flow {
    padding: 3.5rem 0;
  }
  .flow__item {
    grid-template-columns: 150px 1fr;
    margin-bottom: 1.5rem;
  }
  .flow__head {
    padding: 1.25rem 1rem;
  }
  .flow__num {
    font-size: 1.7rem;
  }
  .flow__label {
    font-size: 0.95rem;
  }
  .flow__body {
    padding: 1.25rem;
    font-size: 0.9rem;
  }
  .cta {
    padding: 2.5rem 0;
  }
  .cta__inner {
    gap: 1.5rem;
    max-width: 860px;
  }
  .cta__catch {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }
  .cta__catch strong {
    font-size: 2.1rem;
  }
  .cta__box {
    padding: 1.25rem 1.35rem;
  }
  .cta__box-label {
    font-size: 1.2rem;
  }
  .cta__phone {
    font-size: 1.75rem;
  }
  .cta__phone img {
    width: 44px;
  }
  .cta__box-sub,
  .cta__box-sub-phone {
    font-size: 1.05rem;
  }
  .btn--cta {
    min-width: 200px;
    padding: 14px 28px;
  }
  .reasons {
    padding: 3.5rem 0;
  }
  .reasons__grid {
    gap: 2rem;
  }
  .works {
    padding: 3.5rem 0;
  }
  .works__case {
    margin-bottom: 2.75rem;
  }
  .works__arrow {
    font-size: 3.5rem;
  }
  .works__case-head h3 {
    font-size: 1.1rem;
  }
  .price__table th,
  .price__table td {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  .price__table th:nth-child(2),
  .price__table th:nth-child(3) {
    width: 26%;
  }
  .recommend {
    padding: 3.5rem 0;
  }
  .recommend__slider {
    padding: 0 1rem;
  }
  .recommend__card {
    margin: 0 0.75rem;
  }
  .recommend__image {
    padding: 0 1.5rem;
  }
  .recommend__name {
    font-size: 1.1rem;
    margin: 1rem 1.25rem 0.4rem;
  }
  .recommend__lead {
    margin: 0 1.25rem 0.85rem;
  }
  .recommend__price-old, .recommend__price-new {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
  .recommend .slick-prev,
  .recommend .slick-next {
    width: 52px;
    height: 52px;
    background-size: 26px auto;
  }
  .recommend .slick-prev {
    left: 4px;
  }
  .recommend .slick-next {
    right: 4px;
  }
  .news,
  .faq,
  .company {
    padding: 3.5rem 0;
  }
  .news__item summary {
    gap: 0.75rem;
    padding: 1rem 1.1rem;
  }
  .company__row {
    grid-template-columns: 140px 1fr;
  }
  .footer__inner {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding-top: 16px;
  }
  .header__inner {
    width: calc(100% - 24px);
    justify-content: flex-end;
  }
  .header__content {
    display: none;
  }
  .header__menu {
    width: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 18px;
    padding: 13px 8px 6px;
  }
  .header__nav-inner {
    padding: 1rem 1rem 1.5rem;
  }
  .header__nav-list a {
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
  }
  .header__nav-bottom {
    margin-top: 1rem;
  }
  .header__nav-bottom-cta {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  .header__nav-actions {
    flex-direction: column;
  }
  .header__nav-cta {
    width: 100%;
  }
  .header__nav-list .nav-contact {
    display: flex;
  }
  .header__nav-list .nav-contact .nav-phone--desktop {
    display: none;
  }
  .header__nav-list .nav-contact .nav-phone--sp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0;
    color: #FFFFFF;
  }
  .hero__image {
    min-height: 60vh;
    align-items: flex-end;
  }
  .hero__sp-logo {
    position: absolute;
    top: 20px;
    left: 16px;
    z-index: 2;
    display: block;
    width: min(48vw, 190px);
    padding: 0.65rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(74, 49, 33, 0.12);
  }
  .hero__sp-logo img {
    display: block;
    width: 100%;
    height: auto;
  }
  .hero__content {
    padding: 2.5rem 1.25rem 3rem;
  }
  .hero__title {
    font-size: 1.5rem;
  }
  .sp-fixed-actions {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .sp-fixed-actions__item {
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 6px 18px rgba(34, 34, 34, 0.22);
    transition: opacity 0.2s ease;
  }
  .sp-fixed-actions__item i {
    font-size: 1.25rem;
  }
  .sp-fixed-actions__item span {
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
  }
  .sp-fixed-actions__item:hover {
    color: #FFFFFF;
    opacity: 0.85;
  }
  .sp-fixed-actions__item--phone {
    background-color: #4A3121;
  }
  .sp-fixed-actions__item--contact {
    background-color: #C1272D;
  }
  .section-title h2 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
  .worry {
    padding: 3rem 0 2rem;
  }
  .worry__list {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .worry__heading {
    font-size: 4vw;
    letter-spacing: 0.05em;
  }
  .services,
  .flow,
  .reasons,
  .works,
  .recommend,
  .news,
  .faq,
  .company {
    padding: 3rem 0;
  }
  .services__item {
    padding: 1rem;
  }
  .flow__item {
    grid-template-columns: 1fr;
  }
  .flow__item .flow__head {
    border-right: none;
    border-bottom: 1px solid #4A3121;
    padding: 1rem 1.15rem;
  }
  .flow__item .flow__body {
    padding: 1rem 1.15rem;
  }
  .cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta__phone {
    display: none;
  }
  .cta__box-sub {
    margin: 0;
    font-size: 1rem;
  }
  .cta__box-sub-phone {
    font-size: 1.6rem;
  }
  .btn--cta {
    min-width: 0;
    width: 100%;
    max-width: 280px;
  }
  .reasons__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .works__compare {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .works__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
  .works__case-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .price__table th,
  .price__table td {
    padding: 0.75rem 0.85rem;
    font-size: 0.85rem;
  }
  .news__item summary {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }
  .news__item summary .news__date {
    grid-column: 1/-1;
  }
  .news__body img {
    width: 100%;
  }
  .company__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__nav {
    text-align: center;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .footer__sns {
    justify-content: center;
  }
  .recommend .slick-prev {
    left: 0;
  }
  .recommend .slick-next {
    right: 0;
  }
  .recommend .slick-dots {
    left: 50%;
    width: max-content;
    padding: 0;
    display: flex;
    justify-content: center;
    transform: translateX(-50%);
  }
}
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

/*# sourceMappingURL=style.css.map */
