@charset "UTF-8";
/* =========================================================
  Color
========================================================= */
/* =========================================================
  Base
========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.a-archives-link {
  color: #1285c5;
}

/* =========================================================
  Header
========================================================= */
.l-header-wrapper {
  display: flex;
  flex-direction: column;
  padding: 15px;
  padding-bottom: 0;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}
.l-header-wrapper__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.l-header-content-top-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
}
.l-header-content-top-group__cta {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.l-header-content-top-group__right {
  display: none;
}

.c-search-confirm-group {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 20px 0;
  background: #75b4d2;
}
.c-search-confirm-group__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.l-header-main-menu-group {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.l-header-main-menu-group__list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  padding: 20px 24px;
  cursor: pointer;
}
.l-header-main-menu-group__list:hover {
  background: #f9f9f9;
}
.l-header-main-menu-group__list::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
  content: "";
}
.l-header-main-menu-group__list#buy {
  padding-right: 0;
}
.l-header-main-menu-group__list#buy::before {
  display: none;
}
.l-header-main-menu-group__list--active::after {
  position: absolute;
  bottom: 0;
  left: 48%;
  z-index: 11;
  width: 0;
  height: 0;
  border-top: 10px solid #f1f1f1;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: rotate(180deg);
  content: "";
}

.c-cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 5px 10px;
  border: 2px solid #75b4d2;
}
.c-cta-button__main {
  color: #75b4d2;
  font-size: 20px;
  font-weight: 600;
}
.c-cta-button__sub {
  color: #929292;
  font-size: 12px;
}
.c-cta-button--no-border {
  border: none;
}
.c-cta-button--white {
  border: 2px solid #fff;
}
.c-cta-button--white__main {
  color: #fff;
}
.c-cta-button--white__sub {
  color: #fff;
}
.c-cta-button--blue {
  border: 2px solid #fff;
  background: #75b4d2;
}
.c-cta-button--blue__main {
  color: #fff;
}
.c-cta-button--blue__sub {
  color: #fff;
}
.c-cta-button:hover {
  text-decoration: none;
  opacity: 0.6;
}

.l-header-menu-active {
  display: none;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  background: #f1f1f1;
}
.l-header-menu-active__title {
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 3px solid #75b4d2;
  font-size: 20px;
  font-weight: 700;
}
.l-header-menu-active--active {
  position: absolute;
  top: 63px;
  right: 0;
  left: 0;
  z-index: 51;
  display: flex;
  margin: 0 auto;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.1));
}

/* =========================================================
  Footer
========================================================= */
.l-footer {
  background: #4e4e4f;
  color: #fff;
  font-size: 14px;
}
.l-footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.l-footer a:hover, .l-footer a:focus-visible {
  opacity: 0.8;
}
.l-footer__widget {
  padding: 40px 0 24px;
}
.l-footer__inner {
  box-sizing: border-box;
  width: min(1120px, 92vw);
  margin: 0 auto;
}
.l-footer__foot {
  padding: 10px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.c-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.c-footer__col {
  width: calc(50% - 20px);
}
.c-footer__col--info {
  position: relative;
}
.c-footer__col--info::after {
  position: absolute;
  top: 12px;
  right: -20px;
  display: inline-block;
  width: 2px;
  height: 100%;
  background: #fff;
  content: "";
}
.c-footer__button-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.c-footer-brand__logo {
  width: 280px;
  height: 80px;
  margin-bottom: 20px;
}
.c-footer-brand__logo a {
  display: inline-block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.c-footer-brand__logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-footer-info {
  display: grid;
  row-gap: 6px;
  margin-top: 12px;
  font-size: 14px;
}
.c-footer-info__row {
  display: grid;
  column-gap: 8px;
  grid-template-columns: 8.5em minmax(0, 1fr);
}
.c-footer-info__dt {
  font-weight: 700;
}
.c-footer-info__dd {
  margin: 0;
}

.c-footer-nav__menu {
  display: flex;
  flex-flow: row wrap;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-footer-nav__menu li {
  position: relative;
  width: calc(50% - 7.5px);
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
}
.c-footer-nav__menu li::before {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  pointer-events: none;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.2s ease;
  content: "";
}
.c-footer-nav__menu a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-bottom: 2px;
  font-size: 16px;
}
.c-footer-nav__menu a:hover::after, .c-footer-nav__menu a:focus-visible::after {
  width: 100%;
}

.c-footer-copyright {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-align: center;
}
.c-footer-copyright__mark {
  margin-right: 2px;
}

/* =========================================================
  Door Card List
========================================================= */
.c-post-content-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 28px;
}
.c-post-content-list__card {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: calc(50% - 15px);
  padding: 15px;
  border: 1px solid #c7c7c7;
  background: #fff;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.1));
}
.c-post-content-list__card:hover {
  scale: 1.01;
  filter: drop-shadow(4px 4px 5px rgba(117, 180, 210, 0.3019607843));
  transition: 0.3s;
}
.c-post-content-list__img {
  width: 120px;
  min-width: 120px;
  height: 100%;
}
.c-post-content-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-post-content-list__text-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 100%;
}
.c-post-content-list__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #75b4d2;
}
.c-post-content-list__label {
  padding: 2px 8px;
  background: #e5787e;
  color: #fff;
}
.c-post-content-list__anchor {
  width: 100%;
  color: #75b4d2;
  font-size: 14px;
  text-align: end;
}
.c-post-content-list p span {
  display: inline-block;
  width: 15%;
}

/* =========================================================
  Buttons
========================================================= */
.c-button-group {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.a-outline-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 50px;
  padding: 5px 8px;
  border: 1px solid #75b4d2;
  color: #75b4d2;
}
.a-outline-button:hover {
  background: #75b4d2;
  color: #fff;
  transition: 0.3s;
}

/* =========================================================
  l-page-template - Layout
========================================================= */
.l-page-template {
  background: #fff;
  color: #111;
}
.l-page-template__hero {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, #fafafa, #fff);
}
.l-page-template__hero-inner {
  width: min(1280px, 100% - 40px);
  margin: 0 auto;
}
.l-page-template__main {
  padding: 28px 0 64px;
}
.l-page-template__container {
  width: min(1280px, 100% - 40px);
  margin: 0 auto;
}
.l-page-template__grid {
  display: grid;
  align-items: start;
  gap: 24px;
}
.l-page-template__sidebar {
  position: sticky;
  top: 18px;
}
.l-page-template__content {
  min-width: 0;
}

/* =========================================================
  Page Hero
========================================================= */
.c-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  letter-spacing: 0.14em;
}
.c-page-hero__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
}
.c-page-hero__title--center {
  text-align: center;
}
.c-page-hero__lead p {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.8;
}

/* =========================================================
  Result Summary
========================================================= */
.c-result-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #c7c7c7;
}
.c-result-summary__text {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.c-result-summary__text span {
  color: #75b4d2;
  font-size: 28px;
  font-weight: 700;
}
.c-result-summary__sort {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.c-result-summary__sort-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.c-result-summary__sort-select {
  min-width: 160px;
  height: 40px;
  padding: 0 40px 0 12px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-repeat: no-repeat;
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  appearance: none;
}
.c-result-summary__sort-select:focus-visible {
  border-color: #2b6cb0;
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.15);
}

.c-result-footer {
  margin-top: 18px;
}
.c-result-footer__note {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
  Card Grid
========================================================= */
.c-card-grid-group {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================================================
  Post Card
========================================================= */
.c-post-content-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #c7c7c7;
  border-radius: 8px;
  background: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.1));
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.c-post-content-card:hover {
  scale: 1.01;
  filter: drop-shadow(4px 4px 5px rgba(117, 180, 210, 0.3019607843));
  transition: 0.3s;
}
.c-post-content-card__link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}
.c-post-content-card__thumb {
  position: relative;
  padding: 10px;
  background: #f5f5f5;
}
.c-post-content-card__thumb--archives:not(:root) {
  width: 100%;
}
.c-post-content-card__thumb--archives:not(:root) img {
  width: 100%;
}
.c-post-content-card__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-post-content-card__thumbs {
  padding: 0 10px;
}
.c-post-content-card__thumbs .slick-slide {
  margin-right: 8px;
}
.c-post-content-card__thumbs .slick-list {
  margin-right: -8px;
}
.c-post-content-card__thumb-btn {
  overflow: hidden;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.c-post-content-card__thumb-btn.is-active {
  border-color: #75b4d2;
}
.c-post-content-card__body {
  display: grid;
  gap: 10px;
  padding: 14px 14px 16px;
}
.c-post-content-card__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-post-content-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
}
.c-post-content-card__date {
  white-space: nowrap;
}
.c-post-content-card__title {
  margin: 0;
  color: #75b4d2;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.c-post-content-card__size {
  font-size: 14px;
}
.c-post-content-card__price {
  padding-top: 4px;
  border-top: 1px dashed rgba(0, 0, 0, 0.14);
}
.c-post-content-card__price-text {
  margin: 0;
  color: #e70012;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  text-align: end;
}
.c-post-content-card__price-label {
  margin-right: 6px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
}
.c-post-content-card__price-note {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 13px;
  line-height: 1.6;
}
.c-post-content-card__discount {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 6px 10px;
  border-radius: 4px;
  background: #e5787e;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.c-post-content-card__maker-logo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 3;
}
.c-post-content-card__maker-logo img {
  display: block;
  width: auto;
  height: 32px;
}
.c-post-content-card__features--overlay {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-post-content-card__feature {
  padding: 8px;
  border-radius: 8px;
  background: rgb(117, 180, 210);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: start;
  white-space: nowrap;
}
.c-post-content-card__feature--light {
  background: rgb(210, 204, 117);
}
.c-post-content-card__feature--vent {
  background: rgb(117, 180, 210);
}
.c-post-content-card__feature--insulation-none {
  background: #9e9e9e;
}
.c-post-content-card__feature--insulation, .c-post-content-card__feature--insulation-strong {
  background: #d32f2f;
}
.c-post-content-card__catalog-price {
  margin-top: 4px;
  color: #777;
  font-size: 14px;
  line-height: 1.2;
  text-align: end;
}

.c-empty-message {
  padding: 40px 0;
  font-size: 14px;
  text-align: center;
}

/* =========================================================
  Header Search (component)
========================================================= */
.c-search-confirm-form-group {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.c-search-confirm-form-group__text {
  margin-right: 16px;
  color: #fff;
  font-weight: 700;
}
.c-search-confirm-form-group__input-param {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 240px;
  height: 50px;
  padding: 5px 15px;
  border: none;
  border-right: 1px solid #c7c7c7;
  background: #f5f5f5;
  font-size: 16px;
  cursor: pointer;
}
.c-search-confirm-form-group__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: none;
  background: #4c7a9b;
  cursor: pointer;
}
.c-search-confirm-form-group__submit img {
  width: 28px;
  height: 28px;
  aspect-ratio: 1/1;
  filter: brightness(3.5);
}
.c-search-confirm-form-group__submit p {
  display: none;
}
.c-search-confirm-form-group__submit--disable:not(:root) {
  border: solid 1px #3a5d78;
  background: #fff;
  color: #3a5d78;
}
.c-search-confirm-form-group__submit--disable:not(:root) p {
  color: #3a5d78;
}
.c-search-confirm-form-group__submit--sp:not(:root) {
  border: solid 1px #3a5d78;
  background: #3a5d78;
  color: #fff;
}
.c-search-confirm-form-group__submit--sp:not(:root) p {
  color: #fff;
}
.c-search-confirm-form-group__select {
  position: relative;
}
.c-search-confirm-form-group__select.is-open .c-search-confirm-form-group__input-param {
  background: #fff;
}
.c-search-confirm-form-group__select.is-open .c-search-confirm-form-group__dropdown {
  display: block;
}
.c-search-confirm-form-group__trigger {
  text-align: left;
  cursor: pointer;
}
.c-search-confirm-form-group__trigger::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
  content: "";
}
.c-search-confirm-form-group__dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  z-index: 50;
  display: none;
  width: 100%;
  min-width: 360px;
  max-width: 560px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.c-search-confirm-form-group__dropdown-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  padding: 6px;
}
.c-search-confirm-form-group__dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.c-search-confirm-form-group__dropdown-title {
  margin: 0;
  padding: 4px 6px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  font-weight: 700;
}
.c-search-confirm-form-group__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  user-select: none;
}
.c-search-confirm-form-group__option:hover {
  background: rgba(0, 0, 0, 0.06);
}
.c-search-confirm-form-group__option-input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
}
.c-search-confirm-form-group__option-text {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}
@supports selector(:has(*)) {
  .c-search-confirm-form-group__option:has(.c-search-confirm-form-group__option-input:checked) {
    outline: 1px solid rgba(117, 180, 210, 0.55);
    background: rgba(117, 180, 210, 0.18);
  }
}
.c-search-confirm-form-group__option-input:checked + .c-search-confirm-form-group__option-text {
  color: #75b4d2;
  font-weight: 700;
}
.c-search-confirm-form-group__dropdown-foot {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 6px 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.c-search-confirm-form-group__mini-btn {
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.c-search-confirm-form-group__mini-btn:hover {
  background: #f5f5f5;
}
.c-search-confirm-form-group__mini-btn--primary {
  border-color: transparent;
  background: #75b4d2;
  color: #fff;
}
.c-search-confirm-form-group__mini-btn--primary:hover {
  filter: brightness(0.95);
}

/* =========================================================
  Pagination
========================================================= */
.c-pagination {
  margin-top: 28px;
}
.c-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-pagination .page-numbers li {
  margin: 0;
  padding: 0;
}
.c-pagination .page-numbers a,
.c-pagination .page-numbers span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #fff;
  color: #75b4d2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.c-pagination .page-numbers a:hover {
  border-color: #bdbdbd;
  background: #f7f7f7;
  transform: translateY(-1px);
}
.c-pagination .page-numbers .current {
  border-color: #75b4d2;
  background: #75b4d2;
  color: #fff;
}
.c-pagination .page-numbers .dots {
  min-width: auto;
  padding: 0 6px;
  border: none;
  background: transparent;
}
.c-pagination .page-numbers .prev,
.c-pagination .page-numbers .next {
  padding: 0 14px;
}

/* =========================================================
  SP Menu / Bottom CTA
========================================================= */
.c-hamburger {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.c-hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  border-radius: 2px;
  background: #333;
}

.c-sp-bottom-cta {
  display: none;
}

.c-sp-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.45);
}

.c-sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: min(86vw, 360px);
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.c-sp-menu.is-open {
  transform: translateX(0);
}
.c-sp-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.c-sp-menu__title {
  font-weight: 800;
  letter-spacing: 0.08em;
}
.c-sp-menu__close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}
.c-sp-menu__list {
  padding: 10px 0;
}
.c-sp-menu__list li a {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 700;
}
.c-sp-menu__list li a:hover {
  background: #f5f5f5;
}

html.is-sp-menu-open,
html.is-sp-menu-open body {
  overflow: hidden;
}

/* =========================================================
  Header: SP検索ボタン & 検索パネル
========================================================= */
.c-header-search-btn {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-left: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.c-header-search-btn img {
  width: 28px;
  height: 28px;
}

.c-sp-search-panel {
  display: none;
}

/* =========================================================
  Slider / Sections / Article
========================================================= */
.l-top-slider {
  width: 100%;
  background: #fff;
}
.l-top-slider__inner {
  width: 100%;
  max-width: 1080px;
  height: 460px;
  margin: 0 auto;
  padding: 0;
}

.c-slider {
  width: 100%;
  height: 100%;
}
.c-slider__slide {
  height: 460px !important;
  margin: 0 5px;
  opacity: 0.2;
  transition: all ease-in-out 0.3s;
}
.c-slider__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js-slider-top .slick-prev,
.js-slider-top .slick-next {
  z-index: 1;
}
.js-slider-top .slick-prev::before,
.js-slider-top .slick-next::before {
  color: #75b4d2;
  font-size: 40px;
}
.js-slider-top .slick-active,
.js-slider-top .slick-current {
  opacity: 1;
}

.c-slider-thumb {
  margin: 20px 0 0;
}
.c-slider-thumb .slick-slide {
  cursor: pointer;
}
.c-slider-thumb .slick-slide:hover {
  opacity: 0.7;
}

.l-section-container {
  padding: 48px 0;
  background: #fff;
}
.l-section-container--bg-blue {
  background: #75b4d2;
}
.l-section-container--border {
  border-bottom: 1px solid #ddd;
}
.l-section-container__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.l-section-container__inner--sm {
  max-width: 980px;
}

.a-section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
}
.a-section-title--mb-0 {
  margin-bottom: 0;
}
.a-section-title--white {
  color: #f0f8ff;
}
.a-section-title__sub {
  color: #929292;
  font-size: 16px;
  font-weight: 400;
}
.a-section-title__sub--white {
  color: #f0f8ff;
}

.c-vertical-list-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.c-vertical-list-group__text-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.c-vertical-list-group__title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 12px;
  padding-left: 10px;
  border-left: 3px solid #75b4d2;
  font-size: 28px;
  font-weight: 400;
}
.c-vertical-list-group__text {
  padding-left: 16px;
  color: #929292;
}
.c-vertical-list-group__line {
  color: #75b4d2;
  font-weight: 400;
}
.c-vertical-list-group__sub-title {
  color: #75b4d2;
  font-size: 24px;
  font-weight: 400;
}
.c-vertical-list-group__list-parent {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.c-vertical-list-group__list-child a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 12px 8px;
  border-bottom: 1px solid #d9d9d9;
}
.c-vertical-list-group__list-child a:hover {
  background: #e5f7ff;
}
.c-vertical-list-group__date {
  color: #75b4d2;
}

.c-banner-card-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
}
.c-banner-card-group__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 46%;
  text-decoration: none;
}
.c-banner-card-group__card:hover {
  opacity: 0.6;
}
.c-banner-card-group__img {
  width: 100%;
  height: 240px;
}
.c-banner-card-group__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-banner-card-group__title {
  color: #75b4d2;
  font-size: 24px;
  font-weight: 700;
}
.c-banner-card-group__text {
  font-weight: 400;
}

.l-door-card-slider {
  width: 100%;
  margin-bottom: 28px;
}
.l-door-card-slider__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.c-door-card-slider .slick-slide {
  box-sizing: border-box;
  border: 1px solid #c7c7c7;
}
.c-door-card-slider .slick-list {
  margin: 0 -9px;
  padding: 20px !important;
}
.c-door-card-slider .slick-prev,
.c-door-card-slider .slick-next {
  z-index: 2;
}

.js-door-card-slider .slick-slide {
  margin: 0 10px;
}
.js-door-card-slider .slick-list {
  margin: 0 -10px;
}

.l-single-post-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 15px 70px;
}

.c-single-post-article {
  display: flex;
  flex-direction: column;
}
.c-single-post-article__title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 2px solid #75b4d2;
}
.c-single-post-article__title {
  font-size: 28px;
  font-weight: 700;
}
.c-single-post-article__time {
  color: #929292;
}
.c-single-post-article__content p,
.c-single-post-article__content h2,
.c-single-post-article__content h3,
.c-single-post-article__content .wp-block-preformatted {
  margin-bottom: 20px;
}
.c-single-post-article__content h2 {
  font-size: 24px;
}
.c-single-post-article__content h3 {
  font-size: 20px;
}
.c-single-post-article__content p,
.c-single-post-article__content .wp-block-preformatted {
  font-size: 16px;
  line-height: 2.5;
}
.c-single-post-article__content .wp-block-heading {
  padding-left: 8px;
  border-left: 4px solid #75b4d2;
}
.c-single-post-article__content .wp-block-media-text {
  margin-bottom: 48px;
  padding: 12px;
  border: 1px solid #929292;
  border-radius: 8px;
}
.c-single-post-article__content .wp-block-media-text__media {
  height: 360px;
}
.c-single-post-article__content .wp-block-media-text__media img {
  height: 100%;
  object-fit: contain;
}
.c-single-post-article__content .wp-block-media-text__content {
  align-self: center !important;
  line-height: 2.5;
}
.c-single-post-article__content .wp-block-media-text__content p {
  margin-bottom: 0;
}

/* =========================================================
  Guide
========================================================= */
.c-guide {
  padding: 2rem 0 3rem;
}
.c-guide__inner {
  width: min(1280px, 100% - 40px);
  margin: 0 auto;
}
.c-guide__layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}
.c-guide__tabs {
  position: sticky;
  top: 2rem;
  flex: 0 0 220px;
  max-width: 220px;
}
.c-guide__panels {
  flex: 1 1 0;
  min-width: 0;
}

.c-guide-tabs {
  padding: 0.75rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.c-guide-tabs__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-guide-tabs__item {
  margin: 0;
  padding: 0;
}
.c-guide-tabs__tab {
  display: block;
  width: 100%;
  padding: 0.45rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #1285c5;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  appearance: none;
}
.c-guide-tabs__tab:hover {
  background: #e3eefc;
}
.c-guide-tabs__tab.is-active {
  border-color: #1285c5;
  background: #1285c5;
  color: #fff;
}
.c-guide-tabs__tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 133, 197, 0.25);
}

.c-guide-panels {
  padding: 1.6rem 1.5rem 1.4rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.c-guide-panels__panel {
  display: none;
}
.c-guide-panels__panel.is-show {
  display: block;
}
.c-guide-panels__panel[hidden] {
  display: none !important;
}

.c-guide-step__title {
  margin: 0 0 1.1rem;
  font-size: 1.2rem;
}
.c-guide-step__item {
  margin-bottom: 1rem;
}
.c-guide-step__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
}
.c-guide-step__badge {
  font-weight: 700;
}
.c-guide-step__box {
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  background: #f7f9fc;
  font-size: 0.9rem;
}
.c-guide-step__text {
  margin: 0;
}
.c-guide-step__note {
  margin: 0.35rem 0 0;
  color: #c0392b;
  font-size: 0.8rem;
}

.c-guide-pane {
  font-size: 0.9rem;
}
.c-guide-pane__title {
  margin: 0 0 0.9rem;
  font-size: 1.15rem;
}
.c-guide-pane__lead {
  margin: 0 0 0.8rem;
}
.c-guide-pane__box {
  margin-bottom: 0.7rem;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  background: #f7f9fc;
}
.c-guide-pane__line {
  margin: 0;
}
.c-guide-pane__line + .c-guide-pane__line {
  margin-top: 0.2rem;
}
.c-guide-pane__warn {
  margin: 0.3rem 0 0;
  color: #c0392b;
  font-size: 0.83rem;
}

.c-guide-links {
  margin-top: 0.8rem;
}
.c-guide-links__item {
  margin: 0;
}
.c-guide-links__item + .c-guide-links__item {
  margin-top: 0.3rem;
}
.c-guide-links__link {
  color: #1285c5;
  text-decoration: none;
}
.c-guide-links__link::before {
  content: "› ";
}
.c-guide-links__link:hover {
  text-decoration: underline;
}

.c-privacy-policy-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-privacy-policy-group__title {
  color: #75b4d2;
  font-size: 24px;
  font-weight: 700;
}
.c-privacy-policy-group__list-parent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* =========================================================
  SP only: advanced search toggle (base)
========================================================= */
.js-hds-more {
  display: none;
}

/* =========================================================
  Content blocks
========================================================= */
.c-content-table-group {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 0 0 1px #e5e7eb;
  border-collapse: collapse;
}
.c-content-table-group--about-company {
  margin-bottom: 28px;
}
.c-content-table-group--about-contact {
  margin-bottom: 28px;
}
.c-content-table-group__th, .c-content-table-group__td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #edf0f5;
  font-size: 0.9rem;
  text-align: left;
}
.c-content-table-group__th a, .c-content-table-group__td a {
  color: #1285c5;
  text-decoration: underline;
}
.c-content-table-group__th {
  width: 30%;
  background-color: #f7f9fc;
  font-weight: 600;
}
.c-content-table-group__tr:last-child th,
.c-content-table-group__tr:last-child td {
  border-bottom: none;
}

.c-other-info-group {
  padding: 20px;
  background-color: #f7f9fc;
}
.c-other-info-group--about-company {
  margin-bottom: 28px;
}
.c-other-info-group__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.c-other-info-group__text {
  font-size: 16px;
}
.c-other-info-group__text--anchor {
  color: #1285c5;
  text-decoration: none;
}
.c-other-info-group__text--anchor::before {
  content: "› ";
}
.c-other-info-group__text--anchor:hover {
  text-decoration: underline;
}

.c-google-maps-group {
  overflow: hidden;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.c-google-maps-group iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================================
  Product
========================================================= */
.c-product__grid {
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 28px;
}
.c-product__media {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #f3f3f3;
}
.c-product__summary {
  min-width: 0;
  background: #fff;
}
.c-product__summary h1 {
  margin-bottom: 8px;
}
.c-product__summary-group {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  padding-left: 0;
  border-bottom: 2px solid #e5e7eb;
  list-style: none;
}
.c-product__summary-group p {
  padding-left: 16px;
}
.c-product__summary-group:last-of-type {
  margin-bottom: 0;
}
.c-product__title {
  padding-left: 10px;
  border-left: 3px solid #75b4d2;
  font-size: 20px;
  font-weight: 700;
}
.c-product__door-size {
  display: flex;
  flex-direction: row;
  gap: 16px;
  font-size: 18px;
}
.c-product__price {
  color: #e70012;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  text-align: start;
}
.c-product__price-sub {
  color: #333;
  font-size: 20px;
}
.c-product__price-gray {
  color: #777;
  font-size: 16px;
  line-height: 1.2;
  text-align: start;
}

.c-product-thumbs__list {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  padding-left: 10px;
}
.c-product-thumbs__item img {
  display: block;
  width: 52px;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
}

.c-product-options-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-left: 16px;
}
.c-product-options-group__feature {
  padding: 8px;
  border-radius: 8px;
  background: rgb(117, 180, 210);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: start;
  white-space: nowrap;
}
.c-product-options-group__feature--light {
  background: rgb(210, 204, 117);
}
.c-product-options-group__feature--vent {
  background: rgb(117, 180, 210);
}
.c-product-options-group__feature--insulation-none {
  background: #9e9e9e;
}
.c-product-options-group__feature--insulation, .c-product-options-group__feature--insulation-strong {
  background: #d32f2f;
}

.c-product-button-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}
.c-product-button-group__button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 50%;
  height: 70px;
  border: 1px solid #000;
  font-size: 20px;
  font-weight: 700;
  box-shadow: rgba(0, 0, 0, 0.06) 0 8px 20px;
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 4px 4px 5px);
}
.c-product-button-group__button img {
  width: 28px;
  height: 28px;
}
.c-product-button-group__button--catalog {
  border-color: #75b4d2;
  background: #fff;
  color: #75b4d2;
}
.c-product-button-group__button--catalog:hover {
  scale: 1.01;
  filter: drop-shadow(rgba(117, 180, 210, 0.3) 4px 4px 5px);
  transition: 0.3s;
}
.c-product-button-group__button--simulation {
  border-color: #75b4d2;
  background: #75b4d2;
  color: #fff;
}
.c-product-button-group__button--simulation:hover {
  scale: 1.01;
  filter: drop-shadow(rgba(117, 180, 210, 0.3) 4px 4px 5px);
  transition: 0.3s;
}

/* =========================================================
  Estimator / Result / Forms (問い合わせ系)
========================================================= */
.c-door-estimator-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 28px;
}
.c-door-estimator-group__inner {
  width: 100%;
}

.c-estimator-step {
  margin-bottom: 1.3rem;
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.c-estimator-step--result {
  position: sticky;
  top: 30px;
  width: 100%;
  max-width: 380px;
  height: fit-content;
}
.c-estimator-step__head {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 40px;
  margin-bottom: 28px;
}
.c-estimator-step__label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #75b4d2;
  font-size: 18px;
  font-weight: 700;
}
.c-estimator-step__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.c-estimator-step__title--estimate {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-bottom: 16px;
  background: #75b4d2;
  color: #fff;
}
.c-estimator-step__caption {
  margin: 0 0 0.5rem;
  color: #666;
  font-size: 0.82rem;
}
.c-estimator-step__body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.c-estimator-step__media {
  width: 100%;
  max-width: 320px;
  height: 240px;
}
.c-estimator-step__media div {
  height: 100%;
}
.c-estimator-step__media div img {
  display: block;
  max-width: 260px;
  height: 100%;
  margin: 0 auto;
}
.c-estimator-step__control {
  width: 50%;
}

.parent-iro,
#kagi,
#iro,
#handle-select,
#card-key,
#xe-color,
#xe-frame,
#xe-handle,
#xe-supply,
#xe-keyset,
#xe-cardkey,
#xe-option {
  box-sizing: border-box;
  width: 100%;
  padding: 0.55rem 0.9rem;
  border: 1px solid #d1dbe8;
  border-radius: 999px;
  background-color: #f8fafc;
  font-size: 0.9rem;
}
.parent-iro:focus,
#kagi:focus,
#iro:focus,
#handle-select:focus,
#card-key:focus,
#xe-color:focus,
#xe-frame:focus,
#xe-handle:focus,
#xe-supply:focus,
#xe-keyset:focus,
#xe-cardkey:focus,
#xe-option:focus {
  border-color: #1285c5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(18, 133, 197, 0.16);
}

.c-balloon {
  margin-top: 0.5rem;
}
.c-balloon__text {
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  background-color: #e8f3ff;
}

.a-estimate-result-title {
  margin-bottom: 28px;
  padding: 0.75rem 1.25rem;
  background: #1285c5;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.a-estimate-result-title--black {
  background: #4e4e4f;
}

.c-estimate-result {
  margin-bottom: 54px;
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  background: #fff;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.c-estimate-result__grid {
  display: grid;
  align-items: start;
  gap: 1rem 1.25rem;
  grid-template-columns: 1fr 1fr;
}
.c-estimate-result__left {
  box-sizing: border-box;
  padding: 1rem 1.1rem 0.9rem;
  border-radius: 0.8rem;
  background-color: #f7f9fc;
}
.c-estimate-result__right {
  box-sizing: border-box;
  height: 100%;
  padding-top: 0.2rem;
}

.c-spec-row {
  display: grid;
  align-items: center;
  gap: 8px;
  grid-template-columns: 8.5em minmax(0, 1fr);
  padding: 0.45rem 0;
  border-bottom: 1px dashed #d1dbe8;
}
.c-spec-row:last-of-type {
  margin-bottom: 0.4rem;
  border-bottom: none;
}
.c-spec-row__label {
  color: #555;
  font-size: 0.85rem;
  font-weight: 600;
}

.c-note {
  margin-top: 0.4rem;
  color: #777;
  font-size: 0.8rem;
  line-height: 1.6;
}
.c-note + .c-note {
  margin-top: 0.3rem;
}

.c-price-row,
.c-price-total {
  display: grid;
  align-items: center;
  gap: 10px;
  grid-template-columns: 1fr auto;
  padding: 0.45rem 0;
  font-size: 16px;
}

.c-price-row {
  border-bottom: 1px solid #edf0f5;
}
.c-price-row--dash {
  border-bottom: 1px dashed #d1dbe8;
}
.c-price-row__label {
  color: #333;
  font-weight: 600;
}
.c-price-row__value {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.c-price-total {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 2px solid #75b4d2;
  font-size: 20px;
  font-weight: 700;
}
.c-price-total__label {
  font-size: 16px;
}
.c-price-total__value {
  color: #1285c5;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}

.a-text--danger {
  color: #d62828;
  font-weight: 600;
}

.a-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 780px;
  padding: 20px;
  border: none;
  background: #75b4d2;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.06) 0 8px 20px;
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 4px 4px 5px);
}
.a-button:hover {
  scale: 1.01;
  filter: drop-shadow(rgba(117, 180, 210, 0.3) 4px 4px 5px);
  transition: 0.3s;
}
.a-button--secondary {
  border: 2px solid #75b4d2;
  background: #fff;
  color: #75b4d2;
}
.a-button--secondary:hover {
  scale: 1.01;
  filter: drop-shadow(rgba(117, 180, 210, 0.3) 4px 4px 5px);
  transition: 0.3s;
}

.c-form {
  max-width: 960px;
  margin: 0 auto;
}
.c-form__row {
  display: grid;
  align-items: center;
  gap: 12px;
  grid-template-columns: 220px minmax(0, 1fr);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.c-form__row--last {
  margin-bottom: 32px;
  border-bottom: none;
}
.c-form__th {
  font-size: 14px;
  font-weight: 600;
}
.c-form__td {
  font-size: 0.9rem;
}
.c-form__td div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.c-form__td div .date-in,
.c-form__td div .date-tm {
  width: 50%;
}
.c-form__td div .date-in p,
.c-form__td div .date-tm p {
  width: 100%;
}
.c-form__td div .date-in select,
.c-form__td div .date-tm select {
  width: 100%;
}
.c-form__td--end {
  font-size: 0.9rem;
}
.c-form input[type=text],
.c-form input[type=number],
.c-form input[type=tel],
.c-form input[type=email],
.c-form input[type=date],
.c-form select,
.c-form textarea {
  box-sizing: border-box;
  width: 100%;
  height: 44px;
  padding: 0.45rem 0.6rem;
  border: 1px solid #d1dbe8;
  border-radius: 4px;
  font-size: 0.9rem;
}
.c-form input[type=date] {
  padding-right: 40px;
  background-image: url("/wp-content/themes/door-reno/assets/img/icon/icon_calendar.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}
.c-form input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.c-form input[type=date]::-webkit-inner-spin-button {
  appearance: none;
}
.c-form input[type=date]::-webkit-clear-button {
  appearance: none;
}
.c-form select {
  width: fit-content;
  cursor: pointer;
}
.c-form textarea {
  resize: vertical;
  min-height: 160px;
}
.c-form__privacy {
  margin-bottom: 24px;
  font-size: 0.9rem;
  text-align: center;
}
.c-form__privacy label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.c-form__privacy label input {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
}
.c-form__privacy a {
  color: #1285c5;
  text-decoration: underline;
}
.c-form__privacy a:hover {
  opacity: 0.7;
}
.c-form__privacy .wpcf7-list-item {
  margin: 0;
}
.c-form__actions {
  text-align: center;
}
.c-form__actions p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.c-form__actions--back {
  margin-top: 16px;
}

.cf7-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  background: rgba(0, 0, 0, 0.65);
}

.cf7-loading-overlay.is-active {
  display: block;
}

.cf7-loading-overlay .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0 !important;
  transform: translate(-50%, -50%);
}

body.is-cf7-loading {
  overflow: hidden;
}

.loader {
  position: relative;
  width: 1em;
  height: 1em;
  margin: 100px auto;
  border-radius: 50%;
  font-size: 25px;
  transform: translateZ(0);
  animation: load5 1.1s infinite ease;
  text-indent: -9999em;
}

@keyframes load5 {
  0%, 100% {
    box-shadow: 0 -2.6em 0 0 #fff, 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0 #fff, 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.7), 2.5em 0 0 0 #fff, 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.5), 2.5em 0 0 0 rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0 #fff, 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.7), 0 2.5em 0 0 #fff, -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.2), -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.5), 0 2.5em 0 0 rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0 #fff, -2.6em 0 0 0 rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.7), -2.6em 0 0 0 #fff, -1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0 -2.6em 0 0 rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0 rgba(255, 255, 255, 0.2), 2.5em 0 0 0 rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0 rgba(255, 255, 255, 0.2), 0 2.5em 0 0 rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0 rgba(255, 255, 255, 0.5), -2.6em 0 0 0 rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0 #fff;
  }
}
.c-supply-content-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.c-supply-content-group__button-group {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 18px;
}
.c-supply-content-group__button-group a {
  width: 100%;
  max-width: 500px;
}

.a-badge--required {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.05rem 0.45rem;
  border-radius: 999px;
  background-color: #d62828;
  color: #fff;
  font-size: 0.75rem;
}

.c-alert {
  margin-top: 0.3rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid #fc9;
  border-radius: 8px;
  background-color: #fff7f2;
  font-size: 0.85rem;
}
.c-alert__title {
  margin: 0 0 0.4rem;
  color: #c05621;
  font-weight: 600;
}
.c-alert__list {
  margin: 0;
  padding-left: 1.1rem;
}
.c-alert__item {
  margin-bottom: 0.25rem;
}

.splide__list:not(:root) {
  height: 440px;
}
.splide__list:not(:root) img {
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.wpcf7-spinner:not(:root),
.wpcf7-response-output:not(:root) {
  display: none;
}

/* =========================================================
  Responsive (media queriesまとめ)
========================================================= */
@media (width >= 769px) {
  .c-sp-search-panel--pc {
    display: block;
  }
}
@media (width <= 1280px) {
  .c-search-confirm-group {
    padding: 14px 0;
  }
  .c-search-confirm-group__inner {
    padding: 0 15px;
  }
  .c-search-confirm-form-group {
    justify-content: center;
    width: 100%;
  }
  .c-search-confirm-form-group__text {
    margin-right: 12px;
  }
  .c-search-confirm-form-group__input-param {
    width: 200px;
  }
}
@media (width <= 1100px) {
  .c-card-grid-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 1024px) {
  .c-search-confirm-form-group {
    justify-content: flex-start;
  }
  .c-search-confirm-form-group__text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6px;
  }
  .c-search-confirm-form-group__input-param {
    border-right: none;
  }
  .c-search-confirm-form-group__dropdown {
    left: 0;
    width: min(560px, 92vw);
    min-width: 0;
    max-width: 92vw;
  }
}
@media (width <= 980px) {
  .l-header-wrapper {
    padding: 10px;
  }
  .l-header-content-top-group {
    padding-bottom: 0;
  }
  .l-header-content-top-group__img {
    width: 140px;
  }
  .l-header-content-top-group__cta {
    display: none;
  }
  .l-header-content-top-group__right {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .l-header-main-menu-group {
    display: none;
  }
  .c-search-confirm-group {
    padding: 12px 0;
  }
  .c-post-content-list {
    flex-direction: column;
  }
  .c-post-content-list__card {
    max-width: 100%;
  }
  .c-post-content-list__text-group {
    gap: 4px;
  }
  .c-post-content-list__title {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 4px;
  }
  .c-post-content-list__label {
    font-size: 14px;
  }
  .c-post-content-list p {
    font-size: 14px;
  }
  .c-post-content-list p span {
    width: 30%;
  }
  .c-button-group {
    justify-content: center;
  }
  .l-page-template__grid {
    grid-template-columns: 1fr;
  }
  .l-page-template__sidebar {
    position: static;
  }
  .c-result-summary {
    flex-direction: row;
    align-items: flex-start;
  }
  .c-result-summary__sort {
    justify-content: flex-start;
    width: 50%;
  }
  .c-result-summary__sort-select {
    width: 100%;
    min-width: 0;
  }
  .c-result-summary__text {
    font-size: 14px;
  }
  .c-result-summary__text span {
    font-size: 24px;
  }
  .c-pagination .page-numbers a,
  .c-pagination .page-numbers span {
    min-width: 50px;
    height: 50px;
    border-radius: 9px;
    font-size: 13px;
  }
  .c-search-confirm-form-group {
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
  }
  .c-search-confirm-form-group__text {
    width: 100%;
    margin: 0 0 6px;
    text-align: left;
  }
  .c-search-confirm-form-group__select, .c-search-confirm-form-group__input-param, .c-search-confirm-form-group__keyword {
    width: 100%;
    border-radius: 0;
  }
  .c-search-confirm-form-group__input-param {
    width: 100%;
    height: 46px;
    border-right: none;
    font-size: 15px;
  }
  .c-search-confirm-form-group__keyword {
    width: 100%;
    height: 46px;
  }
  .c-search-confirm-form-group__submit {
    flex-direction: row;
    gap: 8px;
    width: calc(50% - 2px);
    height: 46px;
  }
  .c-search-confirm-form-group__submit img {
    width: 24px;
    height: 24px;
  }
  .c-search-confirm-form-group__submit p {
    display: inline-block;
    color: #75b4d2;
    font-size: 16px;
    font-weight: 700;
  }
  .c-search-confirm-form-group__dropdown {
    left: 50%;
    width: 100%;
    max-width: 100%;
    transform: translateX(-50%);
  }
  .c-search-confirm-form-group__dropdown-grid {
    grid-template-columns: 1fr;
  }
  .c-post-content-card {
    padding: 5px;
  }
  .c-post-content-card__link {
    display: flex;
    flex-flow: row wrap;
  }
  .c-post-content-card__thumb {
    width: 60%;
    padding: 5px;
    background: #fff;
  }
  .c-post-content-card__thumbs {
    width: 40%;
    padding: 8px;
  }
  .c-post-content-card__thumb-btn {
    width: 48%;
    height: 60px;
  }
  .c-post-content-card__body {
    width: 100%;
  }
  .c-post-content-card__discount {
    top: -5px;
    left: -5px;
    font-size: 20px;
  }
  .c-post-content-card__feature {
    padding: 4px;
    border-radius: 4px;
  }
  .c-post-content-card__maker-logo {
    bottom: 5px;
    left: 5px;
  }
  .c-post-content-card__features--overlay {
    right: 5px;
    bottom: 5px;
  }
  .c-hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .c-sp-bottom-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9997;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
  }
  .c-sp-bottom-cta__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 60px;
    font-weight: 800;
  }
  .c-sp-bottom-cta__btn img {
    width: 22px;
    height: 22px;
  }
  .c-sp-bottom-cta__btn--tel {
    background: #75b4d2;
    color: #fff !important;
  }
  .c-sp-bottom-cta__btn--tel img {
    border: 2px solid #fff;
    border-radius: 50%;
  }
  .c-sp-bottom-cta__btn--mail {
    border: 2px solid #75b4d2;
    background: #fff;
    color: #75b4d2 !important;
  }
  body {
    padding-bottom: 60px;
  }
  .js-hds-more {
    display: flex;
  }
  .c-search-confirm-form-group .js-hds-advanced {
    display: none;
  }
  .c-search-confirm-form-group.is-advanced-open .js-hds-advanced {
    display: block;
  }
  .c-header-search-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .c-header-search-btn[aria-expanded=true]::after {
    position: absolute;
    bottom: -12px;
    left: 33%;
    z-index: 11;
    width: 0;
    height: 0;
    border-top: 10px solid #75b4d2;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    transform: rotate(180deg);
    content: "";
  }
  .c-sp-search-panel {
    margin-top: 10px;
  }
  #js-sp-search-panel {
    display: none;
  }
  #js-sp-search-panel.is-open {
    display: block;
  }
  .js-slider-top .slick-prev {
    left: 30px;
  }
  .js-slider-top .slick-next {
    right: 30px;
  }
  .l-section-container {
    padding: 24px 10px;
  }
  .a-section-title {
    font-size: 24px;
  }
  .a-section-title__sub {
    font-size: 14px;
  }
  .c-vertical-list-group__text-group {
    margin-bottom: 24px;
  }
  .c-vertical-list-group__title {
    font-size: 24px;
  }
  .c-vertical-list-group__text {
    padding-left: 0;
    font-size: 14px;
  }
  .c-vertical-list-group__list-child a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .c-banner-card-group {
    flex-direction: column;
  }
  .c-banner-card-group__card {
    width: 100%;
  }
  .c-banner-card-group__title {
    font-size: 20px;
  }
  .c-banner-card-group__text {
    font-size: 14px;
  }
  .c-guide__layout {
    flex-direction: column;
  }
  .c-guide__tabs {
    position: relative;
    top: 0;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .c-guide-tabs__list {
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .c-guide-tabs__tab {
    flex: 1 0 33%;
    font-size: 12px;
    text-align: center;
  }
  .a-estimate-result-title {
    margin-bottom: 20px;
  }
  .c-product__door-size {
    flex-direction: column;
    gap: 8px;
  }
  .c-product__price {
    font-size: 32px;
  }
  .c-product-button-group {
    flex-direction: column;
    gap: 16px;
  }
  .c-product-button-group__button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }
  .c-door-estimator-group {
    flex-direction: column;
  }
  .c-estimator-step--result {
    position: static;
    max-width: 100%;
  }
  .splide__list:not(:root) {
    height: 320px;
  }
}
@media (width <= 900px) {
  .c-product__grid {
    grid-template-columns: 1fr;
  }
  .c-estimate-result__grid {
    grid-template-columns: 1fr;
  }
}
@media (width <= 768px) {
  .c-sp-search-panel--sp {
    display: block;
  }
  .l-footer__widget {
    padding: 24px 0 16px;
  }
  .c-footer-nav__menu a {
    font-size: 12px;
  }
  .c-footer__grid {
    flex-direction: column;
    gap: 24px;
  }
  .c-footer__col {
    width: 100%;
  }
  .c-footer__col--info, .c-footer__col--nav {
    max-width: 100%;
  }
  .c-footer-info__row {
    grid-template-columns: 6.5em minmax(0, 1fr);
  }
  .c-estimator-step {
    padding: 1rem 0.9rem;
  }
  .c-estimator-step__body {
    flex-direction: column;
  }
  .c-estimator-step__media {
    max-width: 100%;
    margin-bottom: 16px;
  }
  .c-estimator-step__media div {
    width: 100%;
  }
  .c-estimator-step__control {
    width: 100%;
    margin-top: 1rem;
  }
  .c-estimate-result__head {
    margin-top: 1.8rem;
    margin-bottom: 0.7rem;
    padding: 0.65rem 1rem;
    font-size: 1rem;
  }
  .c-estimate-result {
    margin-bottom: 2rem;
    padding: 1.1rem 1rem 1rem;
  }
  .c-product-thumbs__item img {
    width: 46px;
  }
  .c-form__row {
    gap: 6px;
    grid-template-columns: 1fr;
    padding: 0.6rem 0;
  }
  .c-spec-row {
    grid-template-columns: 6.5em minmax(0, 1fr);
  }
  .c-price-total__value {
    font-size: 1.05rem;
  }
  .c-content-table-group--about-contact {
    margin-bottom: 28px;
  }
  .c-content-table-group--about-contact tr {
    display: flex;
    flex-direction: column;
  }
  .c-content-table-group--about-contact tr th {
    width: 100%;
  }
  .c-other-info-group__inner {
    flex-direction: column;
    gap: 16px;
  }
}
@media (width <= 640px) {
  .c-card-grid-group {
    grid-template-columns: 1fr;
  }
  .c-guide-panels {
    padding: 1.2rem 1rem;
  }
}
@media (width <= 360px) {
  .c-search-confirm-form-group__input-param {
    padding: 6px 12px;
    font-size: 14px;
  }
  .c-search-confirm-form-group__option-text {
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */