@charset "UTF-8";
:root {
  --header-scroll-offset: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-scroll-offset);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  background-color: #fff;
  color: #59493f;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #59493f;
  cursor: pointer;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  margin: 0;
}

.wrapper {
  position: relative;
  width: 100%;
}

.content {
  width: 100%;
}

.inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .inner {
    padding: 0 25px;
  }
}

.inline-block {
  display: inline-block;
}

.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* ---------------
header
--------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  border-top: 1px solid #e2e8f0;
}
.header .logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 0;
}
@media (min-width: 898px) {
  .header .logo {
    padding: 15px 0;
  }
}
.header .logo a {
  display: block;
}
.header .logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0;
}
@media (min-width: 1031px) {
  .header .logo img {
    max-width: 200px;
  }
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 898px) {
  .header__inner {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
  }
}

/* header__pc */
@media (min-width: 898px) {
  .header__pc {
    display: inline-block;
  }
  .header__pc-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
  }
  .header__pc-item {
    display: inline-block;
  }
  /* サブリストは subtitle の兄弟のため、親 li のホバーで表示する */
  .header__pc-item:has(.header__pc-sub-list) {
    position: relative;
  }
  .header__pc-item:has(.header__pc-sub-list):hover .header__pc-sub-list {
    opacity: 1;
    visibility: visible;
  }
  .header__pc-link,
  .header__pc-subtitle {
    padding: 10px 0 5px;
    font-size: 16px;
    color: #59493f;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .header__pc-link:hover,
  .header__pc-subtitle:hover {
    opacity: 0.7;
  }
  .header__pc-link::after,
  .header__pc-subtitle::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #59493f;
    transition: width 0.2s;
  }
}
@media (min-width: 898px) and (max-width: 1030px) {
  .header__pc-link,
  .header__pc-subtitle {
    font-size: 14px;
  }
}
@media (min-width: 898px) {
  .header__pc-subtitle {
    cursor: pointer;
  }
  .header__pc-sub-list {
    position: absolute;
    top: 110%;
    left: 0;
    right: auto;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    padding: 10px;
    z-index: 100;
    transition: opacity 0.5s, visibility 0.5s;
    list-style: none;
  }
  .header__pc-sub-item {
    width: max-content;
    border-bottom: 1px solid #e2e8f0;
  }
  .header__pc-sub-link {
    display: block;
    width: auto;
    height: auto;
    padding: 10px 0;
    font-size: 16px;
    color: #59493f;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .header__pc-sub-link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 897px) {
  .header__pc {
    display: none;
  }
}
/* header__sp */
@media (max-width: 897px) {
  .header__sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .header__brand {
    flex: 1;
    min-width: 0;
  }
  .header__menu-toggle {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 44px;
    height: 44px;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .header__menu-toggle:hover {
    opacity: 0.85;
  }
  .header__menu-bar {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background-color: #ff6600;
  }
}
@media (min-width: 898px) {
  .header__sp {
    display: none;
  }
}
/* header__backdrop */
.header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.is-drawer-open .header__backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* header__drawer */
.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  width: min(80vw, 320px);
  height: 90vh;
  height: 90dvh;
  max-height: 90vh;
  max-height: 90dvh;
  padding: 0;
  margin: 0;
  background-color: #ff7800;
  border: none;
  border-bottom-left-radius: 40px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

body.is-drawer-open .header__drawer {
  transform: translateX(0);
}

.header__drawer-inner {
  position: relative;
  padding: 14px 14px 40px 20px;
  min-height: 100%;
}

.header__drawer-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: sticky;
  top: 14px;
  z-index: 1;
  margin: 0 0 0 auto;
  padding: 4px 8px;
  border-radius: 10px;
  border: none;
  background: #ff7800;
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}
.header__drawer-close:hover {
  opacity: 0.9;
}

.header__drawer-close-icon {
  position: relative;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color: #fff;
  box-sizing: border-box;
}
.header__drawer-close-icon::before, .header__drawer-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  border-radius: 1px;
  background-color: #ff7800;
}
.header__drawer-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__drawer-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header__drawer-close-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}

/* header__nav-list */
.header__nav-list {
  margin-top: 5px;
  padding: 0;
  list-style: none;
}

.header__nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.header__nav-link {
  display: block;
  width: auto;
  height: auto;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header__nav-link:hover {
  opacity: 0.9;
}

.header__nav-item--subhead {
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

.header__nav-subtitle {
  display: block;
  padding: 10px 0 0px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.header__nav-sub {
  margin: 0;
  padding: 0 0 8px 0;
  list-style: none;
}

.header__nav-sub li {
  margin: 0;
}

.header__nav-link--sub {
  position: relative;
  padding: 5px 0 5px 1em;
  font-size: 13px;
}
.header__nav-link--sub::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* header__drawer a */
.header__drawer a {
  display: block;
  width: auto;
  height: auto;
}

/* body スクロールロック */
body.is-drawer-open {
  overflow: hidden;
}

/* ---------------
section-title
--------------- */
.section-title {
  height: 80px;
}
@media (min-width: 768px) {
  .section-title {
    height: 115px;
  }
}
.section-title.large {
  height: 110px;
}
@media (min-width: 768px) {
  .section-title.large {
    height: 115px;
  }
}
.section-title img {
  height: 100%;
  object-fit: contain;
}

/* ---------------
cta-btn
--------------- */
.cta-btn {
  text-align: center;
}
.cta-btn__link {
  position: relative;
  width: 100%;
  background-color: #dba930;
  font-size: 20px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}
.cta-btn__link::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(../img/icon/arrow_right.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .cta-btn__link::after {
    width: 20px;
    height: 20px;
    right: 10px;
  }
}

/* ---------------
wave-divider
--------------- */
.c-wave-section {
  --wave-size: 30px;
  --wave-width: 40px;
  background-color: var(--section-bg, transparent);
}
@media (min-width: 768px) {
  .c-wave-section {
    --wave-size: 40px;
    --wave-width: 120px;
  }
}

.c-wave-divider {
  --_wave-height: var(--wave-height, var(--wave-size, 40px));
  --_wave-width: var(--wave-width, 120px);
  position: relative;
  height: var(--_wave-height);
  background-color: var(--next-bg, transparent);
  overflow: hidden;
}

.c-wave-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--section-bg, transparent);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20100%2080%27%20preserveAspectRatio%3D%27none%27%3E%3Cpath%20d%3D%27M0%200H100V46C75%2046%2075%2078%2050%2078C25%2078%2025%2046%200%2046Z%27%20fill%3D%27black%27/%3E%3C/svg%3E");
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: var(--_wave-width) 100%;
  -webkit-mask-position: 0 0;
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20100%2080%27%20preserveAspectRatio%3D%27none%27%3E%3Cpath%20d%3D%27M0%200H100V46C75%2046%2075%2078%2050%2078C25%2078%2025%2046%200%2046Z%27%20fill%3D%27black%27/%3E%3C/svg%3E");
  mask-repeat: repeat-x;
  mask-size: var(--_wave-width) 100%;
  mask-position: 0 0;
}

/* ---------------
page-top
--------------- */
.page-top {
  position: fixed;
  /* SP：floating-cta（約76px + safe-area）の直上に配置して重ならないようにする */
  bottom: calc(76px + env(safe-area-inset-bottom, 0px) + 5px);
  right: 15px;
  z-index: 55;
}
@media (min-width: 768px) {
  .page-top {
    bottom: 20px;
    right: 20px;
  }
}
.page-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-top__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  padding: 0;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #f31a04;
}

.page-top__btn-arrow {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 14px;
}
.page-top__btn-arrow::before, .page-top__btn-arrow::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 12px;
  height: 3px;
  background-color: #f31a04;
  border-radius: 1px;
}
.page-top__btn-arrow::before {
  right: calc(50% - 0.5px);
  transform-origin: right center;
  transform: rotate(-45deg);
}
.page-top__btn-arrow::after {
  left: calc(50% - 0.5px);
  transform-origin: left center;
  transform: rotate(45deg);
}

/* ---------------
kv
--------------- */
.kv {
  width: 100%;
  position: relative;
  z-index: 2;
}

.achievement {
  width: 100%;
  margin-top: -26.6666666667vw;
}
@media (min-width: 768px) {
  .achievement {
    margin-top: 0;
  }
}

/* ---------------
solution 解決できる8つのこと
--------------- */
.solution {
  width: 100%;
  padding-top: 40px;
}

/* ---------------
plan コーティング種類のご紹介
--------------- */
.plan {
  --section-bg: #f4f1eb;
  --next-bg: #fff;
  width: 100%;
  background-color: var(--section-bg);
}

@media (min-width: 768px) {
  .plan__title {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
  }
}

.plan__inner {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .plan__inner {
    max-width: 950px;
  }
}

.plan__inner + .c-wave-divider {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .plan__inner + .c-wave-divider {
    margin-top: 90px;
  }
}

.plan__accordion-list {
  width: 100%;
  display: grid;
  gap: 15px;
}
@media (min-width: 768px) {
  .plan__accordion-list {
    gap: 42px;
  }
}

.plan__accordion {
  width: 100%;
}

.plan__accordion-title {
  position: relative;
  cursor: pointer;
}

.plan__accordion-title-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1px;
  box-sizing: border-box;
  padding: 9px 0 7px;
}
@media (min-width: 768px) {
  .plan__accordion-title-icon {
    right: 46px;
    width: 50px;
    height: 50px;
    padding: 14px 0 11px;
  }
}

.plan__accordion-title-icon-chevron {
  position: relative;
  width: 14px;
  height: 10px;
  flex: 0 0 auto;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease;
}
@media (min-width: 768px) {
  .plan__accordion-title-icon-chevron {
    width: 18px;
    height: 14px;
  }
}
.plan__accordion-title-icon-chevron::before, .plan__accordion-title-icon-chevron::after {
  content: "";
  position: absolute;
  top: 0;
  width: 11px;
  height: 2px;
  background-color: #59493f;
}
@media (min-width: 768px) {
  .plan__accordion-title-icon-chevron::before, .plan__accordion-title-icon-chevron::after {
    width: 14px;
    height: 4px;
  }
}
.plan__accordion-title-icon-chevron::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: left center;
}
.plan__accordion-title-icon-chevron::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: right center;
}

.plan__accordion-title-icon-label {
  position: relative;
  flex: 0 0 auto;
  color: #59493f;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .plan__accordion-title-icon-label {
    font-size: 12px;
  }
}
.plan__accordion-title-icon-label::before {
  content: "開く";
}
.plan__accordion-title-icon-label::after {
  content: "";
  display: none;
}

.plan__accordion-title-icon.premium .plan__accordion-title-icon-chevron::before, .plan__accordion-title-icon.premium .plan__accordion-title-icon-chevron::after {
  background-color: #59493f;
}
.plan__accordion-title-icon.premium .plan__accordion-title-icon-label {
  color: #59493f;
}

.plan__accordion-title-icon.natural .plan__accordion-title-icon-chevron::before, .plan__accordion-title-icon.natural .plan__accordion-title-icon-chevron::after {
  background-color: #576977;
}
.plan__accordion-title-icon.natural .plan__accordion-title-icon-label {
  color: #576977;
}

.plan__accordion-title-icon.pet .plan__accordion-title-icon-chevron::before, .plan__accordion-title-icon.pet .plan__accordion-title-icon-chevron::after {
  background-color: #eb6877;
}
.plan__accordion-title-icon.pet .plan__accordion-title-icon-label {
  color: #eb6877;
}

.plan__accordion-content {
  display: none;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .plan__accordion-content {
    padding: 40px 0 0;
  }
}

.plan__accordion.is-active .plan__accordion-title-icon-chevron {
  transform: rotate(180deg) translateY(50%);
}
.plan__accordion.is-active .plan__accordion-title-icon-label::before {
  display: none;
}
.plan__accordion.is-active .plan__accordion-title-icon-label::after {
  content: "閉じる";
  display: block;
}

.plan__accordion-content-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 768px) {
  .plan__accordion-content-text {
    font-size: 20px;
  }
}
.plan__accordion-content-text .bg-brown {
  background-color: #59493f;
  color: #fff;
  padding: 0 2px;
}
.plan__accordion-content-text .text + .text {
  margin-top: 1em;
}

.plan__accordion-content-point {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .plan__accordion-content-point {
    gap: 20px;
    max-width: initial;
    padding: 20px 15px;
    border: 1px solid #c6b7a2;
    background-color: #fff;
    background-image: url(../img/plan/plan_content-point-bg.png);
    background-position: center;
    background-repeat: repeat;
  }
}

.point-item {
  width: 100%;
}

/* ---------------
comparison 比較表
--------------- */
.comparison {
  --section-bg: #fff;
  --next-bg: #fdf2ec;
  width: 100%;
  background-color: var(--section-bg);
  padding-top: 30px;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .comparison {
    padding-top: 80px;
  }
}

.comparison__title {
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: #515b74;
}
@media (min-width: 768px) {
  .comparison__title {
    font-size: 42px;
  }
}
.comparison__title .num {
  font-size: 50px;
}
@media (min-width: 768px) {
  .comparison__title .num {
    font-size: 52px;
  }
}
.comparison__title .orange {
  color: #ec6941;
}

.comparison__scroll {
  width: 100%;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 18px;
  padding-bottom: 6px;
}
@media (min-width: 768px) {
  .comparison__scroll {
    max-width: 1050px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 0;
    overflow: visible;
  }
}
.comparison__scroll:focus-visible {
  outline: 2px solid rgba(170, 170, 170, 0.45);
  outline-offset: 3px;
  border-radius: 8px;
}

.comparison__scroll + .c-wave-divider {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .comparison__scroll + .c-wave-divider {
    margin-top: 90px;
  }
}

/*--- スクロールバーカスタマイズ ---*/
.scrollbar::-webkit-scrollbar {
  height: 15px;
}

.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: #a0a0a0;
}

.scrollbar::-webkit-scrollbar-track {
  border-radius: 1rem;
  border: 1px solid #e0e0e0;
}

.comparison__table {
  width: 600px;
  margin-left: 10px;
  margin-right: 10px;
  overflow: hidden;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .comparison__table {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
  }
}

.comparison__row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr;
  column-gap: 5px;
}
@media (min-width: 768px) {
  .comparison__row {
    grid-template-columns: 152px 1fr 1fr 1fr;
  }
}

.comparison__row--head .comparison__cell {
  padding: 10px 14px 12px;
  text-align: center;
}
.comparison__row--head .comparison__cell--label {
  background-color: transparent;
}
.comparison__row--head .comparison__cell--product {
  border-radius: 10px 10px 0 0;
}
.comparison__row--head .comparison__cell--premium {
  background-color: #6f6157;
  color: #fff;
}
.comparison__row--head .comparison__cell--natural {
  background-color: #5a6d7b;
  color: #fff;
}
.comparison__row--head .comparison__cell--pet {
  background-color: #eb6877;
  color: #fff;
}

.comparison__product-en {
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .comparison__product-en {
    font-size: 22px;
  }
}

.comparison__product-ja {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .comparison__product-ja {
    font-size: 20px;
  }
}
@media screen and (max-width: 840px) and (min-width: 768px) {
  .comparison__product-ja {
    font-size: 18px;
  }
}

.comparison__cell {
  position: relative;
  padding: 14px 12px;
  text-align: center;
  background-color: #eee;
  color: #313131;
}
.comparison__cell::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background-color: #ff7b41;
}
.comparison__cell.comparison__cell--product::after, .comparison__cell.btn::after, .comparison__cell.last::after {
  display: none;
}
.comparison__cell .premium {
  color: #6f6157;
}
.comparison__cell .natural {
  color: #5a6d7b;
}
.comparison__cell .pet {
  color: #eb6877;
}
.comparison__cell.center {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison__cell.btn {
  background-color: initial;
}

.comparison__cell--label {
  position: relative;
  background-color: #ec6941;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 1px;
  text-align: center;
}
@media (min-width: 768px) {
  .comparison__cell--label {
    font-size: 20px;
  }
}
.comparison__cell--label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background-color: #fff;
}
.comparison__cell--label.first {
  border-radius: 10px 0 0 0;
}
.comparison__cell--label.comparison__cell--product::after {
  display: none;
}
.comparison__cell--label.last {
  border-radius: 0 0 0 10px;
}
.comparison__cell--label.last::after {
  display: none;
}

.comparison__text-strong {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.25;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .comparison__text-strong {
    font-size: 22px;
  }
}
@media screen and (max-width: 840px) and (min-width: 768px) {
  .comparison__text-strong {
    font-size: 18px;
  }
}
.comparison__text-strong:last-child {
  padding-bottom: 6px;
}

.comparison__text-strong + .comparison__text {
  margin-top: 6px;
}

.comparison__text {
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .comparison__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 840px) and (min-width: 768px) {
  .comparison__text {
    font-size: 15px;
  }
}

.comparison__stars {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.comparison__stars + .comparison__text {
  margin-top: 8px;
}

.comparison__bullets {
  display: grid;
  gap: 8px;
  font-size: 13px;
  line-height: 1.35;
}
.comparison__bullets li {
  position: relative;
  padding-left: 14px;
  text-align: left;
}
@media (min-width: 768px) {
  .comparison__bullets li {
    font-size: 16px;
  }
}
.comparison__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2f3547;
}

/* ---------------
movie
--------------- */
.movie {
  width: 100%;
  background-color: #fdf2ec;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .movie {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

.movie__title {
  width: 100%;
}

.movie__list {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 5px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .movie__list {
    max-width: 1000px;
    margin-top: 52px;
    gap: 30px 40px;
  }
}

.movie__item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.movie__item .title {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .movie__item .title {
    font-size: 20px;
  }
}
.movie__item .thumbnail {
  width: 100%;
  aspect-ratio: 3/2;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.movie__item .thumbnail button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.movie__item .thumbnail button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/icon/icon_play.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .movie__item .thumbnail button::after {
    width: 35px;
    height: 35px;
  }
}
.movie__item .thumbnail button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .movie__item .thumbnail {
    border-radius: 20px;
  }
}

.movie__open {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  width: 100%;
  display: block;
}
.movie__open:focus-visible {
  outline: 3px solid rgba(59, 80, 125, 0.6);
  outline-offset: 4px;
  border-radius: 10px;
}

body.is-modal-open {
  overflow: hidden;
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.c-modal.is-open {
  display: flex;
}

.c-modal__inner {
  position: relative;
  width: min(920px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 40px 16px 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.c-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.06);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
}
.c-modal__close:focus-visible {
  outline: 3px solid rgba(59, 80, 125, 0.6);
  outline-offset: 3px;
}

.c-modal__content {
  width: 100%;
  /* closeボタン分の余白 */
  padding-top: 18px;
}

.c-modal__video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: 0;
  border-radius: 10px;
  background: #acacac;
}
.c-modal__video * {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-modal__placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ---------------
voice お客様からの声
--------------- */
.voice {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .voice {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(../img/voice/voice_bg.png);
    background-repeat: repeat;
  }
}

.voice__title {
  width: 100%;
}

.voice__img {
  width: 100%;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .voice__img {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}

.voice__introduction {
  margin-top: 40px;
}

.voice__introduction-title {
  width: 60%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .voice__introduction-title {
    width: 100%;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

.voice__introduction-slider {
  width: 100%;
  margin-top: 20px;
  background-color: #ec6941;
  padding: 10px 0;
  overflow: hidden;
  --voice-marquee-duration: 30s;
}
@media (min-width: 768px) {
  .voice__introduction-slider {
    margin-top: 30px;
    background: linear-gradient(to right, transparent 0%, #ec6941 20%, #ec6941 80%, transparent 100%);
  }
}

.voice__introduction-slider-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  will-change: transform;
  animation: voiceMarquee var(--voice-marquee-duration) linear infinite;
}
@media (min-width: 768px) {
  .voice__introduction-slider-track {
    gap: 20px;
  }
}

.voice__introduction-slider-item {
  flex: 0 0 auto;
  height: clamp(200px, 50vw, 250px);
}

.voice__introduction-slider-item img {
  display: block;
  width: auto;
  height: 100%;
}

@keyframes voiceMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-40%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .voice__introduction-slider-track {
    animation: none;
    transform: none;
  }
}
.voice__hashtags {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .voice__hashtags {
    margin-top: 60px;
  }
}

.voice__hashtags-title {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #515b74;
}
@media (min-width: 768px) {
  .voice__hashtags-title {
    font-size: 28px;
  }
}

.voice__hashtags-text {
  margin: 8px 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #515b74;
}
@media (min-width: 768px) {
  .voice__hashtags-text {
    font-size: 20px;
  }
}

.voice__hashtags-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 25px;
  max-width: 520px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .voice__hashtags-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 990px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 990px) {
  .voice__hashtags-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.voice__hashtags-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 50px;
  background-color: #515b74;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  word-break: keep-all;
  overflow-wrap: anywhere;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
@media (min-width: 768px) {
  .voice__hashtags-link {
    height: 50px;
    font-size: 19px;
  }
}
.voice__hashtags-link:hover {
  opacity: 0.92;
  filter: brightness(1.05);
}
.voice__hashtags-link:focus-visible {
  outline: 2px solid #ff7800;
  outline-offset: 2px;
}

.voice__hashtags-en {
  letter-spacing: 0.04em;
}

/* ---------------
area
--------------- */
.area {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .area {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.area__img {
  width: 100%;
}
@media (min-width: 768px) {
  .area__img {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------------
cta
--------------- */
.cta {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
  background-image: url(../img/cta_bg_sp.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cta__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 30px;
  }
}

.cta__btn {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .cta__btn {
    max-width: 710px;
  }
}

.cta__btn-tel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 65px;
  padding: 0 22px;
  border-radius: 65px;
  background-color: #fff;
  z-index: 2;
  text-decoration: none;
  box-shadow: 0 5px 0 #6a3906;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
@media (min-width: 768px) {
  .cta__btn-tel {
    gap: 26px;
    height: 110px;
    border-radius: inherit;
    box-shadow: none;
    background: linear-gradient(to right, transparent 0%, #fff 20%, #fff 80%, transparent 100%);
  }
}
.cta__btn-tel:hover {
  opacity: 1;
  transform: translateY(4px);
  box-shadow: 0 1px 0 #6a3906;
}
.cta__btn-tel .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.cta__btn-tel .icon img {
  display: block;
  width: 36px;
  height: auto;
}
@media (min-width: 768px) {
  .cta__btn-tel .icon img {
    width: 50px;
  }
}
.cta__btn-tel .num {
  display: inline-block;
  color: #ec6941;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .cta__btn-tel .num {
    font-size: 66px;
  }
}

.cta__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .cta__text {
    font-size: 20px;
  }
}

/* ---------------
showroom
--------------- */
.showroom {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .showroom {
    padding-top: 90px;
    padding-bottom: 50px;
  }
}

.showroom__title {
  width: 100%;
}

.showroom__list {
  width: 100%;
  max-width: 550px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 12px;
}
@media (min-width: 768px) {
  .showroom__list {
    max-width: 990px;
    margin-top: 60px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 50px 16px;
  }
}
@media screen and (max-width: 985px) and (min-width: 768px) {
  .showroom__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.showroom__item {
  width: 100%;
}

.showroom__item--yokohama {
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .showroom__item--yokohama {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}

.showroom__item-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.showroom__item-office {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #ec6941;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .showroom__item-office {
    font-size: 20px;
  }
}

.showroom__item-address {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.45;
  color: #515b74;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .showroom__item-address {
    font-size: 18px;
  }
}

.showroom__item--yokohama .showroom__item-office {
  font-size: 18px;
  text-align: center;
}
@media (min-width: 768px) {
  .showroom__item--yokohama .showroom__item-office {
    font-size: 24px;
  }
}
.showroom__item--yokohama .showroom__item-address {
  text-align: center;
}

.showroom__item-btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .showroom__item-btn {
    margin-top: 12px;
  }
}

.showroom__item-btn-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 150px;
  height: 30px;
  padding-right: 20px;
  border-radius: 5px;
  background-color: #ec6941;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
@media (min-width: 768px) {
  .showroom__item-btn-link {
    max-width: 200px;
    height: 40px;
    padding-right: 26px;
    font-size: 20px;
  }
}
.showroom__item-btn-link:hover {
  opacity: 0.85;
}
.showroom__item-btn-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../img/icon/icon_arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .showroom__item-btn-link::after {
    width: 20px;
    height: 20px;
    right: 10px;
  }
}

/* ---------------
flow
--------------- */
.flow {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #fdf0e9;
}
@media (min-width: 768px) {
  .flow {
    padding-top: 90px;
    padding-bottom: 46px;
  }
}

.flow__title {
  width: 100%;
}

.flow__items {
  width: 100%;
  max-width: 450px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .flow__items {
    max-width: 660px;
    margin-top: 52px;
    gap: 95px;
  }
}

.flow__item {
  position: relative;
  width: 100%;
  padding-top: 22px;
}
@media (min-width: 768px) {
  .flow__item {
    padding-top: 0;
  }
}

.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-image: url(../img/icon/icon_arrow-orange.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .flow__item:not(:last-child)::after {
    bottom: -60px;
    width: 40px;
    height: 40px;
  }
}
.flow__item-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ec6941;
  color: #fff;
  border-radius: 9999px;
  text-align: center;
}
@media (min-width: 768px) {
  .flow__item-head {
    width: 350px;
    height: 45px;
    flex-direction: row;
    gap: 8px;
    border-radius: 0 0 20px 20px;
  }
}

.flow__item-step {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow__item-step .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  color: #ff7800;
  font-weight: 700;
  font-size: 12px;
  padding-left: 1px;
  padding-bottom: 2px;
}
@media (min-width: 768px) {
  .flow__item-step .circle {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
}
.flow__item-step .circle:not(:first-child) {
  margin-left: -2px;
}
@media (min-width: 768px) {
  .flow__item-step .circle:not(:first-child) {
    margin-left: -3px;
  }
}

.flow__item-title {
  margin-top: 2px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 768px) {
  .flow__item-title {
    margin-top: 0;
    font-size: 22px;
  }
}

.flow__item-content {
  padding: 35px 15px 15px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #ec6941;
}
@media (min-width: 768px) {
  .flow__item-content {
    padding: 50px 18px 20px;
    border-radius: 20px;
  }
}

.flow__item-text {
  color: #515b74;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.002em;
}
@media (min-width: 768px) {
  .flow__item-text {
    font-size: 17px;
  }
}
.flow__item-text:not(:first-child) {
  margin-top: 10px;
}
.flow__item-text .orange {
  font-weight: 700;
  color: #ec6941;
}
.flow__item-text .bg-blue {
  display: inline-block;
  padding: 0 2px;
  background-color: #515b74;
  color: #fff;
}

/* ---------------
payment お支払いについて
--------------- */
.payment {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .payment {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.payment__title {
  font-size: 20px;
  font-weight: 900;
  color: #ec6941;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .payment__title {
    font-size: 28px;
  }
}

.payment__text {
  margin-top: 15px;
  font-size: 15px;
  color: #4e5b73;
  text-align: center;
}
@media (min-width: 768px) {
  .payment__text {
    font-size: 18px;
  }
}

.payment__list {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .payment__list {
    max-width: 900px;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}

.payment__item {
  position: relative;
  padding-top: 12px;
}

.payment__item-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  background-color: #576977;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  .payment__item-label {
    font-size: 20px;
  }
}

.payment__item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #576977;
  padding: 15px 10px 10px;
}
@media (min-width: 768px) {
  .payment__item-content {
    padding: 40px 20px 18px;
    height: 100%;
  }
}

.payment__item-text {
  font-size: 14px;
  color: #4e5b73;
  text-align: center;
}
@media (min-width: 768px) {
  .payment__item-text {
    font-size: 18px;
  }
}

.payment__item-card {
  width: 100%;
  max-width: 300px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------
faq よくあるご質問
--------------- */
.faq {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 45px;
}
@media (min-width: 768px) {
  .faq {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.faq__title {
  font-size: 20px;
  font-weight: 900;
  color: #ec6941;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .faq__title {
    font-size: 28px;
  }
}

.faq__list {
  width: 100%;
  max-width: 550px;
  margin: 18px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .faq__list {
    max-width: 900px;
    margin-top: 26px;
  }
}

.faq__category {
  width: 100%;
}

/* ----------------
メイン（カテゴリ）アコーディオン
---------------- */
.faq__main-accordion {
  width: 100%;
}

.faq__main-accordion-title {
  position: relative;
  cursor: pointer;
  background-color: #ec6941;
  padding: 10px 45px 10px 15px;
}
@media (min-width: 768px) {
  .faq__main-accordion-title {
    padding: 15px 55px 15px 20px;
  }
}

.faq__main-accordion-title-text {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .faq__main-accordion-title-text {
    font-size: 24px;
    text-align: center;
  }
}

.faq__main-accordion-title-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1px;
  box-sizing: border-box;
  padding: 9px 0 7px;
}
@media (min-width: 768px) {
  .faq__main-accordion-title-icon {
    right: 30px;
    width: 42px;
    height: 42px;
    padding: 14px 0 11px;
  }
}

.faq__main-accordion-title-icon-chevron {
  position: relative;
  width: 14px;
  height: 10px;
  flex: 0 0 auto;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease;
}
@media (min-width: 768px) {
  .faq__main-accordion-title-icon-chevron {
    width: 18px;
    height: 14px;
  }
}
.faq__main-accordion-title-icon-chevron::before, .faq__main-accordion-title-icon-chevron::after {
  content: "";
  position: absolute;
  top: 0;
  width: 11px;
  height: 2px;
  background-color: #ec6941;
}
@media (min-width: 768px) {
  .faq__main-accordion-title-icon-chevron::before, .faq__main-accordion-title-icon-chevron::after {
    width: 14px;
    height: 4px;
  }
}
.faq__main-accordion-title-icon-chevron::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: left center;
}
.faq__main-accordion-title-icon-chevron::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: right center;
}

.faq__main-accordion-title-icon-label {
  position: relative;
  flex: 0 0 auto;
  color: #ec6941;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .faq__main-accordion-title-icon-label {
    font-size: 10px;
  }
}
.faq__main-accordion-title-icon-label::before {
  content: "開く";
}
.faq__main-accordion-title-icon-label::after {
  content: "";
  display: none;
}

.faq__main-accordion.is-active .faq__main-accordion-title-icon-chevron {
  transform: rotate(180deg) translateY(50%);
}
.faq__main-accordion.is-active .faq__main-accordion-title-icon-label::before {
  display: none;
}
.faq__main-accordion.is-active .faq__main-accordion-title-icon-label::after {
  content: "閉じる";
  display: block;
}

.faq__main-accordion-content {
  display: none;
  padding: 15px 0 15px;
}
@media (min-width: 768px) {
  .faq__main-accordion-content {
    padding: 20px 0 25px;
  }
}

/* ----------------
サブ（Q/A）アコーディオン
---------------- */
.faq__sub-accordion-list {
  width: 100%;
}
@media (min-width: 768px) {
  .faq__sub-accordion-list {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.faq__sub-accordion-title {
  position: relative;
  cursor: pointer;
  padding: 14px 22px 14px 10px;
  border-bottom: 2px solid #515b74;
}
@media (min-width: 768px) {
  .faq__sub-accordion-title {
    padding: 12px 30px 12px 12px;
  }
}

.faq__sub-accordion-title-text {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}
@media (min-width: 768px) {
  .faq__sub-accordion-title-text {
    gap: 10px;
  }
}
.faq__sub-accordion-title-text .icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #4e5b73;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  padding-bottom: 2px;
}
@media (min-width: 768px) {
  .faq__sub-accordion-title-text .icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
}
.faq__sub-accordion-title-text .text {
  color: #4e5b73;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .faq__sub-accordion-title-text .text {
    font-size: 18px;
  }
}

.faq__sub-accordion-title-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .faq__sub-accordion-title-icon {
    right: 0;
    width: 18px;
    height: 18px;
  }
}
.faq__sub-accordion-title-icon::before, .faq__sub-accordion-title-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: #4e5b73;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (min-width: 768px) {
  .faq__sub-accordion-title-icon::before, .faq__sub-accordion-title-icon::after {
    width: 18px;
  }
}
.faq__sub-accordion-title-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__sub-accordion-content {
  display: none;
  background-color: #fdefdb;
  margin-top: 10px;
  padding: 12px 10px;
}
@media (min-width: 768px) {
  .faq__sub-accordion-content {
    padding: 12px;
  }
}

.faq__sub-accordion-content-inner {
  display: flex;
  gap: 5px;
}
@media (min-width: 768px) {
  .faq__sub-accordion-content-inner {
    gap: 10px;
  }
}
.faq__sub-accordion-content-inner > .icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ec6941;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  vertical-align: top;
  padding-bottom: 2px;
}
@media (min-width: 768px) {
  .faq__sub-accordion-content-inner > .icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
}

.faq__sub-accordion-content-text {
  display: inline-block;
  width: calc(100% - 40px);
  vertical-align: top;
}
@media (min-width: 768px) {
  .faq__sub-accordion-content-text {
    width: calc(100% - 56px);
  }
}
.faq__sub-accordion-content-text .text {
  margin: 0;
  color: #4e5b73;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .faq__sub-accordion-content-text .text {
    font-size: 18px;
  }
}
.faq__sub-accordion-content-text .text .link {
  display: inline;
  color: #ec6941;
  text-decoration: underline;
}
.faq__sub-accordion-content-text .link {
  color: #ec6941;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: underline;
  margin-top: 1em;
}
@media (min-width: 768px) {
  .faq__sub-accordion-content-text .link {
    font-size: 18px;
  }
}
.faq__sub-accordion-content-text .text + .text {
  margin-top: 1em;
}

.faq__sub-accordion.is-active .faq__sub-accordion-title-icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* ---------------
floating-cta（SPのみ）
--------------- */
.floating-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 50;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(115%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.floating-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .floating-cta {
    display: none;
  }
}

.floating-cta__inner {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.floating-cta__btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 0 #6a3906;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.floating-cta__btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #6a3906;
}

.floating-cta__btn-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}

.floating-cta__btn--tel {
  background-color: #fb6b01;
  box-shadow: 0 6px 0 #6a3906;
}
.floating-cta__btn--tel:active {
  box-shadow: 0 2px 0 #6a3906;
}

.floating-cta__btn--contact {
  background-color: #253146;
  box-shadow: 0 6px 0 #1b1b1b;
}

/* ---------------
footer
--------------- */
.footer {
  width: 100%;
  padding: 10px 0;
  background-color: #253146;
}
@media (min-width: 768px) {
  .footer {
    padding: 15px 0;
  }
}

.copyright {
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .copyright {
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */
