@charset "UTF-8";
/* ========================================
  Base
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
}

.hero__box-text,
.hero__title {
  font-weight: 700;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: none;
  background: rgba(0, 20, 26, 0.72);
  backdrop-filter: blur(1px);
  pointer-events: auto;
}
.sp-menu.is-open {
  display: block;
}
.sp-menu__inner {
  width: 100%;
  padding-top: 96px;
}
.sp-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sp-menu__list li {
  border-top: 1px solid rgba(255, 255, 255, 0.75);
}
.sp-menu__list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
.sp-menu__list a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 58px;
  padding: 0 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: right;
  text-decoration: none;
}

.menu-button {
  position: fixed !important;
  top: 14px;
  right: 14px;
  z-index: 10 !important;
  display: grid !important;
  gap: 4px;
  justify-items: center;
  width: 34px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
  opacity: 1 !important;
  visibility: visible !important;
}
.menu-button__line {
  display: block !important;
  width: 24px;
  height: 2px;
  background: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.menu-button__text {
  display: block !important;
  color: #fff !important;
  font-size: 10px;
  line-height: 1;
  opacity: 1 !important;
  visibility: visible !important;
}
.menu-button.is-open {
  opacity: 1 !important;
  visibility: visible !important;
}
.menu-button.is-open .menu-button__line,
.menu-button.is-open .menu-button__text {
  opacity: 1 !important;
  visibility: visible !important;
}

.page-sub .site-header {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.page-sub .sp-menu {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: none;
  background: rgba(0, 20, 26, 0.72);
  backdrop-filter: blur(1px);
  pointer-events: auto;
}
.page-sub .sp-menu.is-open {
  display: block;
}
.page-sub .sp-menu__inner {
  width: 100%;
  padding-top: 96px;
}
.page-sub .sp-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-sub .sp-menu__list li {
  border-top: 1px solid rgba(255, 255, 255, 0.75);
}
.page-sub .sp-menu__list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
.page-sub .sp-menu__list a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 58px;
  padding: 0 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: right;
  text-decoration: none;
}
.page-sub .menu-button {
  position: fixed !important;
  top: 14px;
  right: 14px;
  z-index: 10 !important;
  display: grid !important;
  gap: 4px;
  justify-items: center;
  width: 34px;
  padding: 0;
  color: #363636;
  background: transparent;
  border: 0;
  cursor: pointer;
  pointer-events: auto;
  opacity: 1 !important;
  visibility: visible !important;
}
.page-sub .menu-button__line {
  display: block !important;
  width: 24px;
  height: 3px;
  background: #363636 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.page-sub .menu-button__text {
  display: block !important;
  color: #363636 !important;
  font-size: 10px;
  line-height: 1;
  opacity: 1 !important;
  visibility: visible !important;
}
.page-sub .menu-button.is-open {
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.page-sub .menu-button.is-open .menu-button__line {
  background: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.page-sub .menu-button.is-open .menu-button__text {
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media screen and (min-width: 1024px) {
  .page-sub .menu-button,
  .page-sub .sp-menu {
    display: none !important;
  }
}

.pc-nav {
  display: none;
}

@media screen and (min-width: 1024px) {
  .menu-button,
  .sp-menu {
    display: none !important;
  }
  .site-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    pointer-events: auto;
  }
  .pc-nav {
    position: absolute;
    top: 36px;
    right: 48px;
    z-index: 1000;
    display: block;
  }
  .pc-nav__list {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .pc-nav li {
    display: flex;
    align-items: center;
  }
  .pc-nav li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 20px;
    margin: 0 38px;
    background: rgba(255, 255, 255, 0.9);
  }
  .pc-nav a {
    color: #fff;
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .pc-nav a:hover {
    opacity: 0.65;
    transform: translateY(-2px);
  }
}
.page-sub .pc-nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .page-sub .menu-button,
  .page-sub .sp-menu {
    display: none !important;
  }
  .page-sub .site-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    pointer-events: auto;
  }
  .page-sub .pc-nav {
    position: absolute;
    top: 36px;
    right: 48px;
    z-index: 1000;
    display: block;
  }
  .page-sub .pc-nav__list {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .page-sub .pc-nav li {
    display: flex;
    align-items: center;
  }
  .page-sub .pc-nav li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 20px;
    margin: 0 38px;
    background: rgba(35, 24, 21, 0.75);
  }
  .page-sub .pc-nav a {
    color: #231815;
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .page-sub .pc-nav a:hover {
    opacity: 0.65;
    transform: translateY(-2px);
  }
}

/* ========================================
  Utility
======================================== */
.u-sp {
  display: inline;
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

/* ========================================
  SEO / Accessibility
======================================== */
.visually-hidden {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  height: 1px !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 1px !important;
  max-height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ========================================
  Breadcrumb
======================================== */
.breadcrumb-wrap {
  position: relative;
  z-index: 2;
  background: #fff;
  color: #666;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  list-style: none;
  font-size: 12px;
  line-height: 1.6;
  box-sizing: border-box;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb li::after {
  content: ">";
  margin: 0 6px;
  color: #999;
}
.breadcrumb li:last-child::after {
  content: "";
  margin: 0;
}
.breadcrumb a {
  color: #666;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: #666;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 14px 24px;
    font-size: 13px;
  }
}

/* ========================================
  Home page breadcrumb overlay
======================================== */
body.page-home main {
  position: relative;
}

body.page-home .breadcrumb-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: auto;
  overflow: visible;
  background: transparent;
  pointer-events: auto;
}

body.page-home .breadcrumb {
  position: relative;
  z-index: 51;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  transform: none;
  background: transparent;
  pointer-events: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

body.page-home .breadcrumb a {
  position: relative;
  z-index: 52;
  pointer-events: auto;
}

body.page-home .hero {
  margin-top: 0;
}

/* ========================================
  Detail page breadcrumb overlay
======================================== */
body.page-detail main {
  position: relative;
}

body.page-detail .breadcrumb-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: auto;
  overflow: visible;
  background: transparent;
  pointer-events: auto;
}

body.page-detail .breadcrumb {
  position: relative;
  z-index: 51;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  transform: none;
  background: transparent;
  pointer-events: auto;
}

body.page-detail .breadcrumb a {
  position: relative;
  z-index: 52;
  pointer-events: auto;
}

body.page-detail .detail-hero {
  margin-top: 0;
}

/* ========================================
  Flow page breadcrumb overlay
======================================== */
body.page-flow main {
  position: relative;
}

body.page-flow .breadcrumb-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: auto;
  overflow: visible;
  background: transparent;
  pointer-events: auto;
}

body.page-flow .breadcrumb {
  position: relative;
  z-index: 51;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  transform: none;
  background: transparent;
  pointer-events: auto;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

body.page-flow .breadcrumb a {
  position: relative;
  z-index: 52;
  pointer-events: auto;
}

body.page-flow .flow-hero {
  margin-top: 0;
}

/* ========================================
  Case page breadcrumb overlay
======================================== */
body.page-case main {
  position: relative;
}

body.page-case .breadcrumb-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: auto;
  overflow: visible;
  background: transparent;
  pointer-events: auto;
}

body.page-case .breadcrumb {
  position: relative;
  z-index: 51;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  transform: none;
  background: transparent;
  pointer-events: auto;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

body.page-case .breadcrumb a {
  position: relative;
  z-index: 52;
  pointer-events: auto;
}

body.page-case .case-hero {
  margin-top: 0;
}

/* ========================================
  Home page header click-through
======================================== */
body.page-home .site-header {
  pointer-events: none;
}

body.page-home .menu-button,
body.page-home .pc-nav,
body.page-home .pc-nav a,
body.page-home .sp-menu,
body.page-home .sp-menu * {
  pointer-events: auto;
}

/* ========================================
  Flow page header click-through
======================================== */
body.page-flow .site-header {
  pointer-events: none;
}

body.page-flow .menu-button,
body.page-flow .pc-nav,
body.page-flow .pc-nav a,
body.page-flow .sp-menu,
body.page-flow .sp-menu * {
  pointer-events: auto;
}

/* ========================================
  Case page header click-through
======================================== */
body.page-case .site-header {
  pointer-events: none;
}

body.page-case .menu-button,
body.page-case .pc-nav,
body.page-case .pc-nav a,
body.page-case .sp-menu,
body.page-case .sp-menu * {
  pointer-events: auto;
}

/* ========================================
  Detail page header click-through
======================================== */
body.page-detail .site-header {
  pointer-events: none;
}

body.page-detail .menu-button,
body.page-detail .pc-nav,
body.page-detail .pc-nav a,
body.page-detail .sp-menu,
body.page-detail .sp-menu * {
  pointer-events: auto;
}

/* ========================================
  Header
======================================== */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  padding: 18px 18px 0;
}

.site-header__nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 0;
  background: #363636;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.site-header__nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media screen and (min-width: 1024px) {
  .site-header__nav {
    position: static;
    z-index: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 34px;
    padding: 22px 38px 0 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

.site-header__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 60px;
  padding: 0 20px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.site-header__link::after {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header__link {
    display: inline-block;
    min-height: auto;
    padding: 0;
    border-bottom: 0;
    color: #fff;
    font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .site-header__link::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -18px;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-50%) scaleX(0.5);
    transform-origin: center;
  }
  .site-header__link:last-child::after {
    content: none;
  }
}
@media (hover: hover) {
  .site-header__link:hover {
    opacity: 0.72;
  }
}

@media screen and (max-width: 1023px) {
  .site-header__nav {
    inset: 0;
    padding-top: 0;
    background: #363636;
  }
  .site-header__link {
    min-height: 60px;
    padding: 0 16px 0 24px;
    justify-content: flex-end;
    font-size: 24px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  }
  .site-header__link:first-child {
    min-height: 60px;
    align-items: center;
  }
  .site-header__link:last-child {
    border-bottom: 0;
  }
}
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-button {
  position: fixed;
  top: calc(env(safe-area-inset-top) + 14px);
  right: 14px;
  z-index: 1100;
  display: grid;
  gap: 4px;
  justify-items: center;
  width: 34px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .menu-button {
    display: none;
  }
}
.menu-button.is-open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-button__line {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
}

.menu-button__text {
  margin-top: 1px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ========================================
  Hero
======================================== */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background-image: url("../img/bg_sp.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .hero {
    background-image: url("../img/bg_pc.jpg");
    background-position: center top;
  }
}
@media screen and (min-width: 1024px) {
  .hero {
    min-height: 1000px;
  }
}

.hero__inner {
  width: min(100%, 1180px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 73px 20px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero__inner {
    padding: 120px 32px 0;
  }
}
@media screen and (min-width: 1024px) {
  .hero__inner {
    min-height: 1000px;
    padding-top: 155px;
  }
}

.hero__box {
  position: relative;
  display: grid;
  place-items: center;
  width: 176px;
  aspect-ratio: 1/0.9;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.12);
}
.hero__box::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .hero__box {
    width: 230px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__box {
    width: 345px;
    aspect-ratio: 1/0.88;
  }
}

.hero__box-text {
  margin: 0;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2), 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .hero__box-text {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__box-text {
    font-size: 53px;
    line-height: 1.3;
  }
}

.hero__copy {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .hero__copy {
    margin-top: 30px;
  }
}

.hero__title {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.48), 1px 1px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 25px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1024px) {
  .hero__title {
    font-size: 38px;
  }
}

.hero__lead {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.48), 1px 1px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .hero__lead {
    margin-top: 8px;
    font-size: 17px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__lead {
    font-size: 23px;
  }
}

.hero__guarantee {
  position: absolute;
  top: clamp(455px, 455px + (100vw - 375px) * 1.25, 525px);
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100vw;
  min-width: 0;
  margin: 0;
  padding: 6px 10px 8px;
  background: rgba(0, 54, 71, 0.95);
  transform: translateX(-50%);
}

.hero__guarantee-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.hero__guarantee-label {
  display: grid;
  place-items: center;
  width: clamp(30px, 8vw, 34px);
  height: clamp(30px, 8vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(9px, 9px + (100vw - 375px) * 0.04, 12px);
  font-weight: 700;
  line-height: 1.15;
}

.hero__guarantee-number {
  color: #fff200;
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: clamp(36px, 36px + (100vw - 375px) * 0.18, 46px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero__guarantee-unit {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(10px, 10px + (100vw - 375px) * 0.06, 13px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.hero__guarantee-unit small {
  font-size: 0.55em;
}

.hero__guarantee-note {
  position: absolute;
  right: -2.25em;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(5px, 5px + (100vw - 375px) * 0.04, 7px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .hero__guarantee {
    position: static;
    width: fit-content;
    min-width: 410px;
    margin: 38px auto 0;
    padding: 10px 45px 12px;
    gap: 24px;
    transform: none;
  }
  .hero__guarantee-label {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }
  .hero__guarantee-number {
    font-size: 62px;
  }
  .hero__guarantee-unit {
    font-size: 16px;
  }
  .hero__guarantee-note {
    right: -18px;
    font-size: 7px;
  }
}
.hero__note {
  margin: 26px 0 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.45), 1px 1px 2px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .hero__note {
    margin-top: 18px;
    font-size: 17px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__note {
    font-size: 23px;
  }
}

.dot {
  display: inline-block;
  margin-inline: -0.25em;
}

/* ========================================
  SP Hero position adjustment
======================================== */
@media screen and (max-width: 767px) {
  .hero {
    min-height: 100svh;
    background-position: center top;
  }
  .hero__inner {
    position: relative;
    min-height: 100svh;
    padding: 0 20px;
  }
  /* 1. キャッチコピー */
  .hero__copy {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    transform: translateX(-50%);
  }
  .hero__title {
    font-size: clamp(20px, 20px + (100vw - 375px) * 0.1, 24px);
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  .hero__lead {
    margin-top: 19px;
    font-size: clamp(14px, 14px + (100vw - 375px) * 0.08, 18px);
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
  /* 2. 四角タイトル */
  .hero__box {
    position: absolute;
    top: clamp(190px, 190px + (100vw - 375px) * 0.5, 235px);
    left: 50%;
    width: clamp(188px, 188px + (100vw - 375px) * 0.8, 232px);
    margin: 0;
    transform: translateX(-50%);
  }
  .hero__box-text {
    font-size: clamp(28px, 28px + (100vw - 375px) * 0.16, 36px);
  }
  /* 3. 補足テキスト */
  .hero__note {
    position: absolute;
    top: clamp(380px, 380px + (100vw - 375px) * 1.25, 450px);
    left: 50%;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    font-size: clamp(14px, 14px + (100vw - 375px) * 0.08, 18px);
    line-height: 1.8;
    letter-spacing: 0.06em;
    transform: translateX(-50%);
  }
  /* 4. 保証帯 */
  .hero__guarantee {
    position: absolute;
    top: clamp(455px, 455px + (100vw - 375px) * 1.25, 525px);
    left: 50%;
    width: 100vw;
    margin: 0;
    padding: 6px 10px 8px;
    gap: 14px;
    transform: translateX(-50%);
  }
  .hero__guarantee-label {
    width: clamp(30px, 8vw, 34px);
    height: clamp(30px, 8vw, 34px);
    font-size: clamp(9px, 9px + (100vw - 375px) * 0.04, 12px);
  }
  .hero__guarantee-number {
    font-size: clamp(36px, 36px + (100vw - 375px) * 0.18, 46px);
  }
  .hero__guarantee-unit {
    font-size: clamp(10px, 10px + (100vw - 375px) * 0.06, 13px);
    line-height: 0.8;
  }
  .hero__guarantee-unit small {
    font-size: clamp(5px, 5px + (100vw - 375px) * 0.04, 7px);
  }
}
/* ========================================
  Intro
======================================== */
.intro {
  background: #f3f0eb;
  color: #231815;
}

.intro__inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.intro__problem {
  position: relative;
  padding: 90px 5px 0;
  text-align: center;
  background: #fff;
}

.intro__sub {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #213961;
}

.intro__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: #213961;
}

.intro__text {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

.intro__alert {
  width: min(100%, 280px);
  margin: 18px auto 0;
  padding: 16px 14px;
  border: 1px solid #273a5b;
  background: #fff;
  width: 310px;
}
.intro__alert p {
  margin: 0;
  color: #e50012;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
}
.intro__alert span {
  color: #111;
}

.intro__dots {
  display: grid;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
}
.intro__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #231815;
}

.intro__catch {
  margin: 0;
  color: #111;
  font-size: 24px;
  font-weight: 700;
}

.intro__service {
  position: relative;
  z-index: 2;
  width: min(100%, clamp(354px, 354px + (100vw - 375px) * 0.8, 398px));
  margin: 48px 0 0 14px;
}
.intro__service img {
  display: block;
  width: 100%;
  height: auto;
}

.intro__person {
  position: absolute;
  right: 18px;
  bottom: -1px;
  width: 175px;
}
.intro__person img {
  display: block;
  width: 100%;
}

.intro__problem {
  background: linear-gradient(to bottom, #fff 0%, #fff calc(100% - 40px), #f3f0eb calc(100% - 40px), #f3f0eb 100%);
}

.intro__service,
.intro__person {
  z-index: 2;
}

.intro__content {
  padding: 48px 28px 64px;
}

.intro__content-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
  color: #213961;
}

.intro__content-lead {
  margin: 18px 0 0;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.intro__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 12px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}
.intro__icons li {
  display: grid;
  justify-items: center;
  color: #0d2b52;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
.intro__icons li:first-child {
  grid-column: 1/3;
  margin-bottom: -8px;
}
.intro__icons img {
  width: 140px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.intro__icons span {
  display: block;
  margin-top: -27px;
}

.intro__description {
  margin-top: 42px;
  color: #231815;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}
.intro__description img {
  display: none;
}
.intro__description p {
  margin: 0;
  text-align: justify;
  text-justify: inter-ideograph;
}

.intro__merits {
  display: grid;
  gap: 24px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.intro__merits li {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 14px;
  align-items: center;
}
.intro__merits img {
  width: 30px;
}
.intro__merits p {
  margin: 0;
  color: #231815;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}
.intro__merits span {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 500;
}

.intro__button-wrap {
  margin-top: 42px;
  text-align: center;
}

.intro__button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: min(100%, 236px);
  min-height: 44px;
  padding: 10px 30px;
  color: #fff;
  background: #c16849;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.intro__button span {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .intro__button:hover {
    opacity: 0.8;
    transform: translateY(-2px);
  }
}

/* PC */
@media screen and (min-width: 1024px) {
  .intro__inner {
    width: 100%;
    max-width: none;
  }
  .intro__problem {
    padding: 120px 20px 0;
    background: #fff;
  }
  .intro__sub {
    font-size: 36px;
  }
  .intro__title {
    font-size: 66px;
  }
  .intro__text {
    font-size: 18px;
  }
  .intro__text-em {
    color: #c40d23;
  }
  .intro__alert {
    width: 415px;
    padding: 18px 16px;
  }
  .intro__alert p {
    font-size: 30px;
  }
  .intro__alert span {
    font-size: 24px;
  }
  .intro__catch {
    font-size: 18px;
  }
  .intro__service {
    width: 576px;
    margin: 30px auto 8px;
    line-height: 0;
  }
  .intro__person {
    position: relative;
    right: auto;
    bottom: auto;
    width: 120px;
    margin: -8px auto 0;
  }
  .intro__service picture,
  .intro__service img {
    display: block;
  }
  .intro__service img {
    width: 100%;
    height: auto;
  }
  .intro__content {
    width: min(100%, 910px);
    margin: 0 auto;
    padding: 120px 0 100px;
  }
  .intro__head {
    display: grid;
    grid-template-columns: 1fr 489px;
    align-items: center;
  }
  .intro__content-title {
    font-size: 36px;
    text-align: left;
  }
  .intro__content-lead {
    font-size: 18px;
    text-align: left;
  }
  .intro__icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0;
  }
  .intro__icons li:first-child {
    grid-column: auto;
    margin-bottom: 0;
  }
  .intro__icons img {
    width: 144px;
  }
  .intro__icons span {
    font-size: 18px;
  }
  .intro__icons li:nth-child(1) {
    order: 3;
  }
  .intro__icons li:nth-child(2) {
    order: 1;
  }
  .intro__icons li:nth-child(3) {
    order: 2;
  }
  .intro__description {
    position: relative;
    margin-top: 42px;
    padding: 31px 220px 31px 28px;
    border: 1px solid #333;
    font-size: 16px;
  }
  .intro__description img {
    position: absolute;
    right: 28px;
    bottom: 0;
    display: block;
    width: 165px;
    height: auto;
  }
  .intro__merits {
    gap: 24px;
    margin-top: 34px;
  }
  .intro__merits li {
    grid-template-columns: 58px 1fr;
    gap: 30px;
  }
  .intro__merits img {
    width: 82px;
  }
  .intro__merits p {
    font-size: 35px;
  }
  .intro__merits span {
    font-size: 22px;
  }
  .intro__description {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .intro__merits {
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .intro__button-wrap {
    margin-top: 100px;
  }
  .intro__button {
    position: relative;
    justify-content: center;
    gap: 0;
    min-height: 48px;
    padding: 10px 54px;
    width: 502px;
    min-height: 56px;
    background: #ea5e00;
    font-size: 24px;
    font-weight: 400;
  }
  .intro__button span {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
}
/* ========================================
  Guarantee Detail
======================================== */
.guarantee-detail {
  background: #fff;
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
}

.guarantee-detail__inner {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 72px 16px 48px;
}

.guarantee-detail__heading {
  text-align: center;
}
.guarantee-detail__heading h2 {
  margin: 0;
  color: #231815;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.guarantee-detail__heading span {
  color: #213961;
}
.guarantee-detail__heading p {
  margin: 16px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.guarantee-detail__cards {
  display: grid;
  gap: 40px;
  margin-top: 46px;
}

.guarantee-card {
  padding: 36px 24px 32px;
  border: 1px solid #888;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.guarantee-card__title {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #fff200;
  text-decoration-thickness: 6px;
  text-underline-offset: -3px;
}

.guarantee-card__image {
  margin: 0;
}
.guarantee-card__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.guarantee-card__list {
  display: inline-grid;
  gap: 6px;
  margin: 26px auto 15px;
  padding: 0;
  list-style: none;
  text-align: left;
}
.guarantee-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.guarantee-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 14px;
  height: 14px;
  background: url("../img/checkbox.svg") no-repeat center/contain;
}

.guarantee-card__price {
  width: 238px;
  margin: 28px auto 0;
}
.guarantee-card__price img {
  display: block;
  width: 100%;
  height: auto;
}

.guarantee-card__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 28px;
  border: 1px solid #363636;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
.guarantee-card__button span {
  position: absolute;
  right: 20px;
}
@media (hover: hover) {
  .guarantee-card__button:hover {
    opacity: 0.7;
  }
}

/* Inspection */
.inspection {
  display: grid;
  gap: 28px;
  margin-top: 60px;
}

.inspection__body {
  text-align: center;
}
.inspection__body h2 {
  margin: 0;
  color: #0d2b52;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.inspection__lead {
  margin: 20px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.inspection__image {
  margin: 28px 0 0;
}
.inspection__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.inspection__list {
  display: grid;
  gap: 14px;
  margin: 50px 0 0;
}
.inspection__list div {
  display: grid;
  gap: 8px;
}
.inspection__list dt {
  width: fit-content;
  min-width: 110px;
  padding: 6px 14px;
  color: #fff;
  background: #0d2b52;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.inspection__list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
}

.guarantee-detail__button-wrap {
  margin-top: 52px;
  text-align: center;
}

.guarantee-detail__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 240px);
  min-height: 48px;
  padding: 10px 48px;
  color: #fff;
  background: #c16849;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.guarantee-detail__button span {
  position: absolute;
  right: 9px;
}
@media (hover: hover) {
  .guarantee-detail__button:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }
}

.bottom-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 68px;
  font-size: 13px;
  font-weight: 700;
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.bottom-nav a {
  position: relative;
  padding: 0;
  white-space: nowrap;
}
.bottom-nav a::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: #231815;
  transform: translateY(-50%);
}
.bottom-nav a:last-child::after {
  display: none;
}

.bottom-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin-top: 68px;
  padding: 0 8px;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: 700;
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.bottom-nav a {
  position: relative;
  padding: 0 10px;
  white-space: nowrap;
  color: #231815;
}
.bottom-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: #231815;
  transform: translateY(-50%);
}
.bottom-nav a:last-child::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .bottom-nav {
    gap: 80px;
    margin-top: 200px;
    font-size: 29px;
    font-weight: 400;
  }
  .bottom-nav a::after {
    right: -40px;
    height: 24px;
  }
}

.sub-page-bottom-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin-top: 68px;
  padding: 0 8px;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: 700;
  font-family: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.sub-page-bottom-nav a {
  position: relative;
  padding: 0 10px;
  white-space: nowrap;
  color: #231815;
}
.sub-page-bottom-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: #231815;
  transform: translateY(-50%);
}
.sub-page-bottom-nav a:last-child::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .sub-page-bottom-nav {
    gap: 80px;
    margin-top: 200px;
    font-size: 29px;
    font-weight: 400;
  }
  .sub-page-bottom-nav a::after {
    right: -40px;
    height: 24px;
  }
}

/* PC */
@media screen and (min-width: 1024px) {
  .guarantee-detail__inner {
    width: min(100%, 1030px);
    padding: 120px 0 88px;
  }
  .guarantee-detail__heading h2 {
    font-size: 36px;
  }
  .guarantee-detail__heading p {
    font-size: 18px;
  }
  .guarantee-detail__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 42px;
    width: 910px;
    margin-inline: auto;
  }
  .guarantee-card {
    display: flex;
    flex-direction: column;
    padding: 30px 48px 34px;
  }
  .guarantee-card__image img {
    aspect-ratio: 4/3;
  }
  .guarantee-card__list {
    min-height: 86px;
  }
  .guarantee-card__list li {
    font-size: 14px;
  }
  .guarantee-card__price {
    width: 238px;
    margin-top: auto;
  }
  .guarantee-card__button {
    min-height: 38px;
    margin-top: 50px;
    font-size: 16px;
  }
  .inspection {
    display: block;
    width: 910px;
    margin: 130px auto 0;
  }
  .inspection__body {
    display: grid;
    grid-template-columns: 450px 460px;
    align-items: start;
  }
  .inspection__body h2,
  .inspection__body .inspection__lead,
  .inspection__body .inspection__list {
    grid-column: 1;
  }
  .inspection__body h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.45;
    letter-spacing: 0.04em;
    text-align: left;
  }
  .inspection__body .inspection__lead {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.8;
    text-align: left;
  }
  .inspection__body .inspection__image {
    grid-column: 2;
    grid-row: 1/4;
    align-self: stretch;
    width: 460px;
    height: auto;
    overflow: visible;
  }
  .inspection__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: initial;
  }
  .inspection__image picture,
  .inspection__image img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .inspection__list {
    gap: 10px;
    margin-top: 26px;
  }
  .inspection__list div {
    gap: 6px;
  }
  .inspection__list dt {
    min-width: auto;
    width: fit-content;
    padding: 5px 12px;
    font-size: 17px;
    line-height: 1.4;
  }
  .inspection__list dd {
    font-size: 16px;
    line-height: 1.7;
  }
  .guarantee-detail__button-wrap {
    margin-top: 200px;
  }
  .guarantee-detail__button {
    width: 500px;
    font-size: 24px;
    font-weight: 400;
    min-height: 56px;
    background: #f06400;
  }
}
/* ========================================
  Detail Hero
======================================== */
.detail-hero {
  position: relative;
  height: 420px;
  background-image: url("../img/detail_bg_sp.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .detail-hero {
    height: 690px;
    background-image: url("../img/detail_bg_pc.jpg");
    background-position: center top;
  }
}

.detail-hero__inner {
  width: calc(100% - 76px);
  max-width: 297px;
  min-height: inherit;
  margin: 0 auto;
  padding: 170px 0 160px;
}
@media screen and (min-width: 768px) {
  .detail-hero__inner {
    width: 100%;
    max-width: 910px;
    padding: 400px 0 150px;
  }
}

.detail-hero__copy {
  color: #231815;
}

.detail-hero__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .detail-hero__title {
    font-size: 38px;
    line-height: 1.7;
  }
}

.detail-hero__lead {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .detail-hero__lead {
    margin-top: 14px;
    font-size: 23px;
  }
}

/* ========================================
  Detail Service
======================================== */
.detail-service {
  padding: 64px 0 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .detail-service {
    padding: 197px 0 88px;
  }
}

.detail-service__inner {
  width: calc(100% - 30px);
  max-width: 345px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .detail-service__inner {
    width: calc(100% - 37px);
    max-width: 1030px;
  }
}

.detail-service__heading {
  margin-bottom: 61px;
  text-align: center;
  color: #0f334f;
}
@media screen and (min-width: 768px) {
  .detail-service__heading {
    width: 650px;
    margin: 0 auto 96px;
    text-align: left;
  }
}
.detail-service__heading h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .detail-service__heading h2 {
    font-size: 36px;
  }
}
.detail-service__heading p {
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .detail-service__heading p {
    font-size: 18px;
  }
}

.detail-guarantee-card {
  padding: 46px 12px 56px;
  border: 1px solid #231815;
  border-radius: 12px;
  background: #fff;
}
.detail-guarantee-card + .detail-guarantee-card {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .detail-guarantee-card + .detail-guarantee-card {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) {
  .detail-guarantee-card {
    padding: 62px 48px 94px;
    border-radius: 16px;
    width: 910px;
    margin-inline: auto;
  }
}

.detail-guarantee-card__title {
  margin: 0 0 26px;
  color: #202900;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #fff200;
  text-decoration-thickness: 6px;
  text-underline-offset: -3px;
}
@media screen and (min-width: 768px) {
  .detail-guarantee-card__title {
    margin-bottom: 34px;
    font-size: 38px;
  }
}

.detail-guarantee-card__image {
  width: 296px;
  max-width: 100%;
  margin: 0 auto 28px;
}
@media screen and (min-width: 768px) {
  .detail-guarantee-card__image {
    width: 100%;
    max-width: 522px;
    margin-bottom: 30px;
  }
}
.detail-guarantee-card__image picture,
.detail-guarantee-card__image img {
  display: block;
}
.detail-guarantee-card__image img {
  width: 100%;
  height: auto;
}

.detail-guarantee-card__list {
  width: fit-content;
  margin: 35px auto 30px;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .detail-guarantee-card__list {
    margin: 47px auto 30px;
  }
}
.detail-guarantee-card__list li {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-left: 22px;
  color: #231815;
  list-style-type: none;
}
.detail-guarantee-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 14px;
  height: 14px;
  background: url("../img/checkbox.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .detail-guarantee-card__list li::before {
    width: 27px;
    height: 27px;
    top: 0.3em;
    left: -26px;
  }
}
@media screen and (min-width: 768px) {
  .detail-guarantee-card__list li {
    font-size: 27px;
  }
}

.detail-guarantee-card__list li + li {
  margin-top: -2px;
}

.detail-guarantee-card__point picture {
  display: block;
}
.detail-guarantee-card__point img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 266px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .detail-guarantee-card__point img {
    max-width: 760px;
  }
}

.detail-guarantee-card__note {
  margin: 55px auto 0;
  font-size: 10px;
  line-height: 1.75;
  letter-spacing: -0.08em;
  color: #231815;
  max-width: 267px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .detail-guarantee-card__note {
    font-size: 19px;
    max-width: 760px;
    margin: 75px auto 0;
    letter-spacing: -0.03em;
  }
}

/* ========================================
  Target Equipment
======================================== */
.target-equipment {
  margin-top: 44px;
  padding: 28px 18px 30px;
  background: #ffffff;
  border: 1px solid #231815;
}
@media screen and (min-width: 768px) {
  .target-equipment {
    margin-top: 56px;
    padding: 46px 38px 100px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    border: none;
  }
}

.target-equipment__title {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  color: #231815;
}
@media screen and (min-width: 768px) {
  .target-equipment__title {
    margin-bottom: 32px;
    font-size: 27px;
  }
}

.target-equipment__list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .target-equipment__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 18px;
  }
}
.target-equipment__list li {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .target-equipment__list li {
    background: #f7f2ed;
  }
}
.target-equipment__list img {
  display: block;
  width: 100%;
  height: auto;
}
.target-equipment__list h5 {
  display: block;
  margin: 8px 0 0;
  padding-bottom: 4px;
  border-bottom: 1px solid #231815;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #231815;
}
.target-equipment__list p {
  margin: 4px 0 0;
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #231815;
}

.target-equipment__note {
  width: fit-content;
  margin: 26px auto 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
  color: #231815;
}
@media screen and (min-width: 768px) {
  .target-equipment__note {
    width: auto;
    margin-top: 50px;
    font-size: 17px;
    text-align: center;
  }
}

.target-equipment__button-wrap--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .target-equipment__button-wrap--pc {
    display: block;
  }
}

.target-equipment__button-wrap--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .target-equipment__button-wrap--sp {
    display: none;
  }
}

.target-equipment__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  min-height: 48px;
  padding: 10px 48px;
  color: #fff;
  background: #c16849;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.target-equipment__button span {
  position: absolute;
  right: 9px;
}
@media (hover: hover) {
  .target-equipment__button:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }
}
@media screen and (min-width: 768px) {
  .target-equipment__button {
    min-width: 500px;
    font-size: 24px;
    font-weight: 400;
    min-height: 56px;
    background: #f06400;
  }
}

/* SP：設備保証カード以降の背景 */
@media screen and (max-width: 767px) {
  .detail-guarantee-card--equipment {
    background: #f7f2ed;
  }
  .target-equipment {
    background: #fff;
  }
}
/* PC：主な対象設備の枠内だけ背景色 */
@media screen and (min-width: 768px) {
  .detail-guarantee-card--equipment {
    background: #fff;
  }
  .target-equipment {
    background: #f7f2ed;
  }
}
.detail-equipment-area {
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .detail-equipment-area {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 40px 16px 50px;
    background: #f7f2ed;
  }
}
@media screen and (min-width: 768px) {
  .detail-equipment-area {
    margin-top: 48px;
  }
}

@media screen and (max-width: 767px) {
  .detail-guarantee-card--equipment {
    background: transparent;
  }
}
@media screen and (min-width: 768px) {
  .detail-guarantee-card--equipment {
    background: #fff;
  }
}

.target-equipment {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .target-equipment {
    background: #f7f2ed;
  }
}

.target-equipment__button-wrap {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .target-equipment__button-wrap {
    margin-top: 100px;
  }
}

.target-equipment__button {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .target-equipment__list {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px 18px;
  }
  .target-equipment__item--wide {
    grid-column: span 3;
  }
  .target-equipment__item--small {
    grid-column: span 2;
  }
  .target-equipment__item--small img {
    aspect-ratio: auto;
    object-fit: contain;
    width: 100%;
    height: auto;
  }
}
/* ========================================
   Case Hero
======================================== */
.case-hero {
  position: relative;
  height: 420px;
  background-image: url("../img/case_bg_sp.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.case-hero__inner {
  width: min(100% - 76px, 297px);
  min-height: inherit;
  margin: 0 72px;
  padding: 170px 0 160px;
}
.case-hero__copy {
  color: #231815;
}
.case-hero__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.06em;
}
.case-hero__lead {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 900px) {
  .case-hero {
    height: 690px;
    background-image: url("../img/case_bg_pc.jpg");
    background-position: center top;
  }
  .case-hero__inner {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 400px 0 150px;
  }
  .case-hero__copy {
    margin-left: 130px;
  }
  .case-hero__title {
    font-size: 38px;
    line-height: 1.8;
  }
  .case-hero__lead {
    margin-top: 12px;
    font-size: 23px;
  }
}
/* ========================================
   Case Support
======================================== */
.case-support {
  background: #f5f2ec;
  padding: 55px 14px 50px;
}
.case-support__inner {
  max-width: 760px;
  margin: 0 auto;
}
.case-support__head {
  text-align: center;
  margin-bottom: 55px;
}
.case-support__title {
  margin: 0;
  color: #213961;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
}
.case-support__lead {
  margin: 20px 0 0;
  color: #231815;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.case-support__cards {
  display: grid;
  gap: 50px;
}
.case-support__card {
  margin: 0;
}
.case-support__card img {
  display: block;
  width: 100%;
  height: auto;
}
.case-support__bottom {
  margin-top: 56px;
}
.case-support__bottom img {
  display: block;
  width: 100%;
  height: auto;
}
.case-support__cta {
  margin-top: 46px;
  text-align: center;
}
.case-support__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 226px;
  min-height: 56px;
  padding: 0 46px;
  border-radius: 8px;
  background: #c66c4b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.case-support__button span {
  position: absolute;
  right: 22px;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
}

.u-sp {
  display: block;
}

@media screen and (min-width: 900px) {
  .case-support {
    padding: 200px 40px 88px;
  }
  .case-support__inner {
    max-width: 1030px;
  }
  .case-support__head {
    margin-bottom: 48px;
  }
  .case-support__title {
    font-size: 36px;
    line-height: 1.6;
  }
  .case-support__lead {
    margin-top: 40px;
    font-size: 18px;
  }
  .case-support__cards {
    gap: 100px;
    width: 910px;
    margin-inline: auto;
  }
  .case-support__bottom {
    width: 610px;
    margin: 110px auto 0;
  }
  .case-support__cta {
    margin-top: 200px;
  }
  .case-support__button {
    width: 500px;
    font-size: 24px;
    font-weight: 400;
    min-height: 56px;
    background: #f06400;
  }
}
@media screen and (min-width: 900px) and (hover: hover) {
  .case-support__button:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }
}
@media screen and (min-width: 900px) {
  .u-sp {
    display: none;
  }
}
.case-card {
  overflow: hidden;
  border: 1px solid #777;
  background: #fff;
}
.case-card__head {
  margin: 0;
  padding: 8px 12px;
  background: #183b66;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
.case-card__body {
  padding: 22px 16px 28px;
}
.case-card__chart img {
  display: block;
  width: 100%;
  height: auto;
}
.case-card__text {
  margin: 18px 0 0;
  color: #231815;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.case-example {
  margin-top: 34px;
}
.case-example__label {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 4px 12px;
  background: #183b66;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.case-example__content {
  border: 1px solid #8b8b8b;
  padding: 20px 14px 24px;
}
.case-example__title {
  margin: 0 0 18px;
  color: #183b66;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}
.case-example p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  margin-inline: auto;
}
.case-example em {
  color: #d8342a;
  font-style: normal;
}
.case-example__image {
  margin-top: 20px;
}
.case-example__image img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 900px) {
  .case-card {
    border-radius: 8px;
  }
  .case-card__head {
    padding: 10px 16px;
    font-size: 13px;
  }
  .case-card__body {
    padding: 48px 54px 56px;
  }
  .case-card__top {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 30px;
    align-items: center;
  }
  .case-card__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
  }
  .case-example {
    margin-top: 36px;
  }
  .case-example__content {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 24px;
    align-items: center;
    padding: 24px 28px;
  }
  .case-example__title {
    text-align: left;
    font-size: 18px;
  }
  .case-example p {
    font-size: 12px;
  }
  .case-example__image {
    margin-top: 0;
  }
}
.case-card {
  overflow: hidden;
  border: 1px solid #1c3d68;
  border-radius: 0;
  background: #fff;
}
.case-card__head {
  margin: 0;
  padding: 8px 16px;
  background: #1c3d68;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.case-card__body {
  padding: 18px 16px 45px;
}
.case-card__body img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 900px) {
  .case-card {
    border-radius: 24px;
    background: #f6f2ed;
  }
  .case-card__head {
    padding: 24px 16px;
    font-size: 20px;
  }
  .case-card__body {
    padding: 74px 98px 130px;
  }
}
.case-card__body picture {
  display: block;
}
.case-card__text {
  position: relative;
  margin: 14px 0 0 0;
  padding: 16px 10px 16px 52px;
  background: #fff;
  border: 1px solid #104051;
  color: #231815;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}
.case-card__text::before {
  content: "補足";
  position: absolute;
  left: 12px;
  top: 20px;
  padding: 2px 7px;
  background: #1c3d68;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.case-card__text strong {
  color: #e60012;
  font-weight: 500;
}

@media screen and (min-width: 900px) {
  .case-card__body picture,
  .case-card__body .case-card__text {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }
  .case-card__text {
    margin-top: 18px;
    padding: 12px 12px 12px 62px;
    font-size: 14px;
  }
  .case-card__text::before {
    left: 16px;
    top: 16px;
    font-size: 11px;
  }
}
.case-period {
  background: #f6f2ed;
  padding: 50px 0 0;
  text-align: center;
}
.case-period__inner {
  max-width: 820px;
  margin: 0 auto;
}
.case-period__title {
  margin: 0;
  color: #213961;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}
.case-period__lead {
  margin: 20px 0 0;
  color: #231815;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.case-period__message {
  margin: 34px auto 0;
  padding: 20px 14px;
  border: 1px solid #555;
  background: transparent;
  color: #231815;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
.case-period__image {
  margin-top: 20px;
}
.case-period__image img {
  display: block;
  width: 100%;
  height: auto;
}

.case-period .case-card__text {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 900px) {
  .case-period {
    padding-top: 200px;
  }
  .case-period__inner {
    max-width: 980px;
  }
  .case-period__title {
    font-size: 36px;
    line-height: 1.35;
  }
  .case-period__lead {
    margin-top: 25px;
    font-size: 18px;
  }
  .case-period__message {
    width: 690px;
    margin-top: 50px;
    padding: 34px 24px;
    font-size: 30px;
    line-height: 1.55;
    background: #ffffff;
  }
  .case-period__image {
    width: 760px;
    margin: 50px auto 0;
  }
}
.flow-hero {
  position: relative;
  height: 420px;
  background-image: url("../img/flow_bg_sp.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.flow-hero__inner {
  width: min(100% - 76px, 297px);
  min-height: inherit;
  margin: 0 72px;
  padding: 170px 0 160px;
}
.flow-hero__copy {
  color: #231815;
}
.flow-hero__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.06em;
}
.flow-hero__lead {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 900px) {
  .flow-hero {
    height: 690px;
    background-image: url("../img/flow_bg_pc.jpg");
    background-position: center top;
  }
  .flow-hero__inner {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 400px 0 150px;
  }
  .flow-hero__copy {
    margin-left: 130px;
  }
  .flow-hero__title {
    font-size: 38px;
    line-height: 1.8;
  }
  .flow-hero__lead {
    margin-top: 12px;
    font-size: 23px;
  }
}
.flow-guide {
  padding: 54px 13px 48px;
  background: #f3f0eb;
}

.flow-guide__inner {
  max-width: 1030px;
  margin: 0 auto;
}

.flow-guide__head {
  margin-bottom: 58px;
  text-align: center;
}

.flow-guide__title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #213961;
}

.flow-guide__lead {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #231815;
}

.flow-guide__panel {
  max-width: 910px;
  margin: 0 auto;
}

.flow-guide__box {
  padding: 32px 22px 48px;
  background: #fff;
  border: 1px solid #1f3b5f;
}

.flow-faq {
  margin: 50px -13px 0;
  padding: 50px 13px 0;
  background: #fff;
}

.seller-flow__title,
.flow-faq__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.07em;
  color: #213961;
}

.seller-flow__image {
  display: block;
  margin-top: 26px;
}

.seller-flow__image img {
  display: block;
  height: auto;
  width: 760px;
  margin-inline: auto;
}

.seller-flow__note {
  margin-top: 30px;
}

.seller-flow__support {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #231815;
}

.seller-flow__appeal {
  margin: 0;
  padding: 12px 14px;
  background: #fff100;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
  color: #231815;
}

.flow-faq {
  margin-top: 50px;
  padding-bottom: 100px;
}

.flow-faq__head {
  margin-bottom: 28px;
  text-align: center;
}

.flow-faq__lead {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #231815;
}

.flow-faq__list {
  display: grid;
  gap: 15px;
}

.flow-faq__item {
  overflow: hidden;
  border-radius: 7px;
}

.flow-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-height: 52px;
  padding: 0px 40px 0px 20px;
  background: #1f3b5f;
  border: 0;
  border-radius: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.flow-faq__item.is-open .flow-faq__question {
  border-radius: 14px 14px 0 0;
}

.flow-faq__question::after {
  display: none;
}

.flow-faq__q {
  flex: 0 0 auto;
  font-family: "Century Gothic", "Montserrat", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.flow-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0 18px;
  background: #fff;
  border: 1px solid #1f3b5f;
  border-top: 0;
  border-radius: 0 0 7px 7px;
  color: #231815;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
}

.flow-faq__answer-inner {
  min-height: 0;
  padding: 16px 0 18px;
}

.flow-faq__item.is-open .flow-faq__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.flow-faq__button-wrap {
  margin-top: 50px;
  text-align: center;
}

.flow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: min(100%, 214px);
  min-height: 50px;
  padding: 0 20px;
  background: #c96a4a;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.flow__button span {
  position: absolute;
  right: 22px;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
}

.u-sp {
  display: block;
}

@media screen and (min-width: 900px) {
  .flow-guide {
    padding: 200px 40px 88px;
  }
  .flow-guide__head {
    margin-bottom: 95px;
  }
  .flow-guide__title {
    font-size: 36px;
  }
  .flow-guide__lead {
    font-size: 18px;
  }
  .flow-guide__panel {
    padding: 72px 58px 150px;
    background: #fff;
    border: 1px solid #1f3b5f;
  }
  .flow-guide__box {
    padding: 0;
    background: transparent;
    border: 0;
  }
  .flow-faq {
    margin-top: 100px;
  }
  .seller-flow__title,
  .flow-faq__title {
    font-size: 36px;
  }
  .seller-flow__image {
    margin-top: 48px;
  }
  .seller-flow__note {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
    align-items: center;
    width: 760px;
    margin: 50px auto 0;
  }
  .seller-flow__support {
    margin: 0;
    font-size: 16px;
    text-align: left;
  }
  .seller-flow__appeal {
    font-size: 16px;
  }
  .flow-faq {
    margin: 100px 0 0;
    padding: 0;
    background: transparent;
  }
  .flow-faq__lead {
    font-size: 18px;
  }
  .flow-faq__list {
    width: 760px;
    margin: 0 auto;
    gap: 18px;
  }
  .flow-faq__question {
    min-height: 42px;
    padding: 25px 44px 25px 18px;
    font-size: 18px;
  }
  .flow-faq__q {
    font-size: 36px;
  }
  .flow-faq__answer {
    padding: 0 32px;
    font-size: 18px;
  }
  .flow-faq__answer-inner {
    padding: 26px 0;
  }
  .flow-faq__button-wrap {
    margin-top: 82px;
  }
  .flow-button {
    width: 374px;
    min-height: 42px;
    background: #ea5e00;
    font-size: 14px;
  }
  .u-sp {
    display: none;
  }
  .flow-faq__question::after {
    content: "";
    display: block;
    position: absolute;
    right: 18px;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 7px 0;
    border-color: #fff transparent transparent;
    transform: translateY(-50%);
  }
  .flow-faq__item.is-open .flow-faq__question::after {
    border-width: 0 7px 10px;
    border-color: transparent transparent #fff;
  }
}
.flow-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 0 0 14px 14px;
  color: #231815;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
}

.flow-faq__answer-inner {
  min-height: 0;
  padding: 0 18px;
}

.flow-faq__item.is-open .flow-faq__answer {
  grid-template-rows: 1fr;
  border: 1px solid #1f3b5f;
  border-top: 0;
  opacity: 1;
}

.flow-faq__item.is-open .flow-faq__answer-inner {
  padding: 16px 18px 18px;
}

.flow__cta {
  margin-top: 50px;
  text-align: center;
}

.flow__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 226px;
  min-height: 56px;
  padding: 0 46px;
  border-radius: 8px;
  background: #c66c4b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media screen and (min-width: 900px) {
  .flow-faq__answer {
    font-size: 18px;
  }
  .flow-faq__answer-inner {
    padding: 0 32px;
  }
  .flow-faq__item.is-open .flow-faq__answer-inner {
    padding: 26px 32px;
  }
  .flow__cta {
    margin-top: 100px;
  }
  .flow__button {
    width: 500px;
    font-size: 24px;
    font-weight: 400;
    min-height: 56px;
    background: #f06400;
  }
}
@media screen and (min-width: 900px) and (hover: hover) {
  .flow__button:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }
}
.seller-flow__steps {
  margin-top: 24px;
  padding: 20px 20px;
  border: 1px solid #d8d2cb;
  border-radius: 12px;
  color: #555;
  opacity: 0.9;
}
.seller-flow__steps-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.4em;
  color: #231815;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 900px) {
  .seller-flow__steps {
    max-width: 860px;
    margin: 36px auto 0;
    padding: 12px 16px;
  }
  .seller-flow__steps-list {
    gap: 4px;
    font-size: 14px;
  }
}

.property-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px 0 96px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .property-section {
    width: 1030px;
    margin-left: auto;
    margin-right: auto;
    padding: 150px 0 0;
    overflow: visible;
  }
}
.property-section__inner {
  width: 100%;
  margin: 0 auto;
}
.property-section__title {
  margin: 0 0 54px;
  color: #231815;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1024px) {
  .property-section__title {
    margin-bottom: 48px;
    font-size: 36px;
  }
}

.property-slider {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .property-slider {
    width: 950px;
    max-width: 950px;
    margin: 0 auto;
  }
}
.property-slider .slick-list {
  overflow: visible;
}
@media screen and (min-width: 1024px) {
  .property-slider .slick-list {
    overflow: hidden;
    margin: 0;
  }
}
.property-slider .slick-track {
  display: flex;
}
.property-slider .slick-slide {
  height: auto;
  padding: 0 32px;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .property-slider .slick-slide {
    padding: 0 5px !important;
    border: 0 !important;
  }
}
.property-slider .slick-slide > div {
  height: 100%;
}
.property-slider .slick-arrow {
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #06495a;
}
@media screen and (min-width: 1024px) {
  .property-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.property-slider .slick-arrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  border-top: 6px solid #fff;
  border-right: 6px solid #fff;
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .property-slider .slick-arrow::before {
    width: 10px;
    height: 10px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
}
.property-slider .slick-prev {
  left: 30px;
}
@media screen and (min-width: 1024px) {
  .property-slider .slick-prev {
    left: -11px;
  }
}
.property-slider .slick-prev::before {
  transform: rotate(-135deg);
}
.property-slider .slick-next {
  right: 30px;
}
@media screen and (min-width: 1024px) {
  .property-slider .slick-next {
    right: -11px;
  }
}
.property-slider .slick-next::before {
  transform: rotate(45deg);
}

.property-card {
  height: 100%;
  border: 0 !important;
  background: transparent;
  color: #231815;
}
.property-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #231815;
  text-decoration: none;
  background: #fff;
  border: 2px solid #06495a;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .property-card__link {
    border-width: 1px;
  }
}
.property-card__image {
  aspect-ratio: 1.45/1;
  background: #ddd;
}
@media screen and (min-width: 1024px) {
  .property-card__image {
    height: 145px;
    aspect-ratio: auto;
  }
}
.property-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 28px 32px;
}
@media screen and (min-width: 1024px) {
  .property-card__body {
    min-height: 250px;
    padding: 16px 18px 20px;
  }
}
.property-card__name {
  margin: 0 0 10px;
  color: #231815;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1024px) {
  .property-card__name {
    margin-bottom: 8px;
    font-size: 12px;
  }
}
.property-card__price {
  margin: 0 0 28px;
  color: #d71920;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) {
  .property-card__price {
    margin-bottom: 18px;
    font-size: 20px;
  }
}
.property-card__info {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #231815;
  font-size: 16px;
  line-height: 1.7;
  list-style: none;
}
@media screen and (min-width: 1024px) {
  .property-card__info {
    gap: 6px;
    font-size: 9px;
    line-height: 1.55;
  }
}
.property-card__info li {
  position: relative;
  padding-left: 26px;
}
@media screen and (min-width: 1024px) {
  .property-card__info li {
    padding-left: 10px;
  }
}
.property-card__info li::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 13px;
  height: 13px;
  background: #06495a;
}
@media screen and (min-width: 1024px) {
  .property-card__info li::before {
    top: 0.45em;
    width: 6px;
    height: 6px;
  }
}
.property-card__button {
  align-self: flex-end;
  margin-top: auto;
  padding: 9px 26px;
  border: 1.5px solid #06495a;
  border-radius: 4px;
  color: #231815;
  font-size: 18px;
  line-height: 1.3;
}
@media screen and (min-width: 1024px) {
  .property-card__button {
    padding: 5px 16px;
    border-width: 1px;
    font-size: 11px;
  }
}

/* 対象物件：SP調整 */
@media screen and (max-width: 1023px) {
  .property-section {
    padding: 64px 0 0;
  }
  .property-section__title {
    margin-bottom: 38px;
    color: #1f3d63;
    font-size: 30px;
  }
  .property-slider .slick-track {
    align-items: flex-start;
  }
  .property-slider .slick-slide {
    height: auto;
    padding: 0 8px;
  }
  .property-slider .slick-slide > div,
  .property-card,
  .property-card__link {
    height: auto;
  }
  .property-card__link {
    border-width: 1px;
  }
  .property-card__image {
    height: 160px;
    aspect-ratio: auto;
  }
  .property-card__body {
    min-height: 0;
    padding: 24px 20px 26px;
  }
  .property-card__name {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.45;
  }
  .property-card__price {
    margin-bottom: 22px;
    font-size: 20px;
  }
  .property-card__info {
    gap: 8px;
    font-size: 12px;
    line-height: 1;
  }
  .property-card__info li {
    padding-left: 16px;
  }
  .property-card__info li::before {
    width: 10px;
    height: 10px;
  }
  .property-card__button {
    padding: 7px 18px;
    font-size: 14px;
  }
  .property-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .property-slider .slick-arrow::before {
    width: 10px;
    height: 10px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
  .property-slider .slick-prev {
    left: 4px;
  }
  .property-slider .slick-next {
    right: 4px;
  }
}
body footer {
  background: #0081EF;
}

body footer > .inner {
  padding: 80px 0;
}

body footer > .inner * {
  color: #fff;
}

body footer > .inner .flex {
  display: flex;
  justify-content: center;
}

body footer > .inner .flex .flex-item {
  position: relative;
  padding-top: 10.5px;
  padding-left: 34px;
}

body footer > .inner .flex .flex-item .site_ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4583333333;
  margin-bottom: 15px;
  display: block;
}

body footer > .inner .flex .flex-item .site_ttl + p {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
}

body footer > .inner .flex .flex-item p {
  letter-spacing: 0.1em;
}

body footer > .inner .flex .flex-item .ttl {
  font-weight: bold;
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 8.8px;
}

body footer > .inner .flex .flex-item .ttl span {
  font-weight: bold;
  font-size: 13px;
}

body footer > .inner .flex .flex-item a {
  letter-spacing: 0.1em;
  position: relative;
}

body footer > .inner .flex .flex-item a.telephone {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0;
  padding-left: 21px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

body footer > .inner .flex .flex-item a.telephone:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: url(https://www.sayama-f.co.jp/file/special/selling/img/icon__phone-footer.svg) no-repeat;
  background-size: contain;
  width: 17px;
  height: 17px;
  left: 0;
  top: unset;
  transform: unset;
  bottom: 7.2px;
}

body footer > .inner .flex .flex-item address {
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.3125;
  margin-bottom: 3.5px;
}

body footer > .inner .flex .flex-item:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background: #FFFF8B;
  width: 1px;
  height: 130px;
  right: 0;
}

body footer > .inner .flex .flex-item:not(:first-child) {
  width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body footer > .inner .flex .flex-item:first-child {
  width: 290px;
  padding: 0;
}

body footer .footer-bottom {
  background: #fff;
  height: 80px;
}

body footer .footer-bottom > .flex {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

body footer .footer-bottom > .flex .footer___sns-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

body footer .footer-bottom > .flex .copy {
  text-align: right;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #101010;
}

@media screen and (max-width: 950px) {
  body footer > .inner {
    padding: 60px 27.5px;
  }
  body footer > .inner .flex {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  body footer > .inner .flex .flex-item {
    padding-top: 0;
    padding-bottom: 26.3px;
    padding-left: 0;
  }
  body footer > .inner .flex .flex-item .site_ttl {
    font-size: 21.5px;
    line-height: 1.4418604651;
  }
  body footer > .inner .flex .flex-item .site_ttl + p {
    font-size: 12px;
    line-height: 1.5208333333;
  }
  body footer > .inner .flex .flex-item .ttl {
    font-size: 13px;
    line-height: 1.4230769231;
    margin-bottom: 5px;
  }
  body footer > .inner .flex .flex-item .ttl span {
    font-size: 11px;
  }
  body footer > .inner .flex .flex-item a {
    letter-spacing: 0.1em;
  }
  body footer > .inner .flex .flex-item a.telephone {
    font-size: 21.5px;
    padding-left: 21px;
  }
  body footer > .inner .flex .flex-item a.telephone:before {
    bottom: 4px;
  }
  body footer > .inner .flex .flex-item address {
    font-size: 12px;
    letter-spacing: 0.06em;
    line-height: 1.3125;
    margin-bottom: 3.5px;
  }
  body footer > .inner .flex .flex-item:before {
    width: 100%;
    height: 1px;
    top: unset;
    bottom: 0;
    transform: unset;
  }
  body footer > .inner .flex .flex-item:not(:first-child) {
    width: 100%;
    padding-top: 25px;
  }
  body footer > .inner .flex .flex-item:first-child {
    width: 100%;
    padding: 0 0 30px;
  }
  body footer > .inner .flex .flex-item:last-child {
    padding-bottom: 0;
  }
  body footer > .inner .flex .flex-item:last-child:before {
    display: none;
  }
  body footer .footer-bottom {
    height: auto;
    padding: 45px 0 10px;
  }
  body footer .footer-bottom > .flex {
    height: 100%;
    align-items: center;
    gap: 55px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  body footer .footer-bottom > .flex .footer___sns-box {
    gap: 30px;
  }
  body footer .footer-bottom > .flex .copy {
    text-align: center;
    font-size: 10px;
    line-height: 2;
  }
}

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