@charset "UTF-8";
* {
  margin: 0;
  word-break: normal;
  overflow-wrap: anywhere;
}
:root {
  --color-blue: #0b1db8;
  --color-text: #333333;
  --color-title: #222222;
  --color-bg: #f5f5f5;
  --color-accent: #e14c11;
  --container: 1200px;
  --text-container: 800px;
  --content-max: 1200px;
  --text-max: 800px;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
  --section-space-pc: 80px;
  --section-space-tb: 60px;
  --section-space-sp: 44px;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  --font-size-heading-pc: 36px;
  --font-size-heading-fluid: clamp(
    20px,
    2.5vw + 12px,
    var(--font-size-heading-pc)
  );
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
}
body.is-drawer-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h2 {
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Header */
.header {
  background: #fff;
  width: 100%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo,
.tel-link {
  flex: 0 0 auto;
}

.header-logo img {
  height: 60px;
  width: auto;
  max-width: 100%;
}

.header-info {
  text-align: right;
}

.address {
  font-size: 12px;
  margin: 0 0 5px;
}

.tel-link img {
  height: 32px;
  width: auto;
  max-width: 100%;
}

/* Navigation (PC Base) */
.global-nav {
  background: #0000b4;
  color: #fff;
  position: relative;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

/* TB / SP Layout */
@media (max-width: 1024px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    margin: 0;
  }

  .header-logo {
    width: 80%;
  }

  .header-logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
  }

  .header-info {
    display: none;
  }

  .nav-container {
    display: none;
  }

  .burger-btn {
    position: absolute;
    top: -60px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #0000b4;
    border: none;
    cursor: pointer;
    z-index: 200;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
  }

  .burger-lines {
    position: relative;
    width: 24px;
    height: 18px;
  }

  .burger-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: 0.3s;
    left: 0;
  }

  .burger-lines span:nth-child(1) {
    top: 0;
  }

  .burger-lines span:nth-child(2) {
    top: 8px;
  }

  .burger-lines span:nth-child(3) {
    top: 16px;
  }
}

/* PC Layout */
@media (min-width: 1025px) {
  .burger-btn {
    display: none;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .nav-list > li {
    position: relative;
  }

  .nav-list > li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background-color: #fff;
  }

  .nav-list > li > a {
    display: block;
    padding: 25px 32px;
    color: #fff;
    font-weight: 500;
    transition: background 0.3s;
    line-height: 1;
  }

  .nav-list > li > a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #fff;
  z-index: 150;
  transition: 0.3s;
  padding-top: 80px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-nav-list li a {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  color: #333;
}

/* ドロワー内のコンタクトエリア */
.mobile-drawer__contact {
  padding: 24px 20px;
  background-color: #f9f9f9;
}

/* 電話ボタン */
.mobile-drawer__tel a {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
  background: #fff;
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  height: 88px;
  width: 258px;
  margin: auto;
}

.mobile-drawer__tel-label {
  display: block;
  font-size: 11px;
  margin-bottom: 2px;
  opacity: 0.9;
}

.mobile-drawer__tel-number {
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* SNSボタン */
.mobile-drawer__sns {
  margin-top: 12px;
}

.mobile-drawer__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #333 !important;
  height: 88px;
}

.mobile-drawer__sns img {
  width: 266px;
  height: 88px;
}

.l-container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.l-text-column {
  width: min(100% - 40px, var(--text-container));
  margin-inline: auto;
}
.l-section {
  padding: var(--section-space-pc) 0;
}

@media (max-width: 599px) {
  .l-section {
    padding: var(--section-space-sp) 0;
  }
}
.c-heading-border__orange,
.c-heading-border__blue {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: fit-content;
  margin: auto;
  margin-bottom: clamp(40px, 8vw, 80px);
  padding-bottom: 12px;
  font-family: sans-serif;
  font-weight: bold;
  font-size: var(--font-size-heading-fluid);
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-text-base);
  text-align: center;
}

.c-heading-border__orange::after,
.c-heading-border__blue::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: clamp(2px, 0.5vw + 2px, 5px);
  background-color: var(--color-accent);
  border-radius: 2px;
}

.c-heading-border__blue::after {
  background-color: #005f91;
}

.c-heading-border__text {
  padding-bottom: clamp(8px, 0.5vw + 2px, 12px);
}

.c-ribbon-heading {
  position: relative;
  display: block;
  width: min(100%, 805px);
  margin: auto;
}

.c-ribbon-heading__bg {
  display: block;
  width: 100%;
  height: auto;
}
.c-ribbon-heading {
  background-image: url("../images/common/ribbon-heading.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 80px;
}

.c-ribbon-heading__title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 32px;
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 1024px) {
  .c-ribbon-heading__title {
    font-size: 30px;
    padding: 0 24px;
  }
}

@media (max-width: 599px) {
  .c-ribbon-heading {
    width: 80%;
  }

  .c-ribbon-heading__title {
    font-size: 22px;
    padding: 0 16px;
  }
}

.c-section-heading {
  text-align: center;
  margin: 0 auto 60px;
  width: fit-content;
}

.c-section-heading__en {
  display: inline-block;
  background-color: #0000ab;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  line-height: 1;
}

.c-section-heading__ja {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.c-page-hero {
  position: relative;
  color: #111;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-page-hero--rental,
.c-page-hero--kanta,
.c-page-hero--builtin {
  background-position:
    left center,
    right center,
    center center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size:
    52% 100%,
    36% 100%,
    cover;
}

.c-page-hero--rental::before,
.c-page-hero--kanta::before,
.c-page-hero--builtin::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px);
  pointer-events: none;
}

.c-page-hero .l-container {
  width: 100%;
  max-width: 1200px;
}

.c-page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 360px;
  padding: 56px 0 56px 24px;
}

.c-page-hero--rental .c-page-hero__inner {
  background:
    linear-gradient(to right, white 30%, transparent 70%),
    url("../images/rental/rental-hero-bg-01-pc.webp") no-repeat center center /
      cover;
}
.c-page-hero--kanta .c-page-hero__inner {
  background:
    linear-gradient(to right, white 30%, transparent 70%),
    url("../images/kanta/kanta-hero-bg-01-pc.webp") no-repeat center center /
      cover;
}
.c-page-hero--builtin .c-page-hero__inner {
  background:
    linear-gradient(to right, white 30%, transparent 70%),
    url("../images/built-in/built-in-hero-bg-01-pc.webp") no-repeat center
      center / cover;
}
.c-page-hero--services .c-page-hero__inner,
.c-page-hero--lpgas .c-page-hero__inner {
  min-height: 220px;
  color: #fff;
}

.c-page-hero__content {
  max-width: 620px;
}

.c-page-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.c-page-hero__title {
  margin: 0;
  line-height: 1.35;
}

.c-page-hero__title strong,
.c-page-hero__title span {
  display: block;
}

.c-page-hero__title strong {
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 700;
  color: #e94800;
}

.c-page-hero--services .c-page-hero__title strong,
.c-page-hero--lpgas .c-page-hero__title strong {
  color: #fff;
}

.c-page-hero__title span {
  margin-top: 6px;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
}

.c-page-hero__title img {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.c-page-hero__lead {
  margin: 32px 0 0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
}

.c-page-hero__text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.9;
}

.c-page-hero__points {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.c-page-hero__points-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.8;
}

.c-page-hero__points-label {
  font-weight: 700;
  color: #fff;
  background-color: #0b1db8;
  padding: 0.3em 0.5em;
  font-size: 0.875rem;
  text-align: center;
  border-radius: 30px;
  letter-spacing: 0;
}

.c-page-hero__points-text {
  display: block;
}

.c-page-hero--rental {
  background-image:
    linear-gradient(to right, #fff 0%, #fff 78%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.58) 48%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../images/rental/rental-hero-bg-01-pc.webp");
}

.c-page-hero--kanta {
  background-image:
    linear-gradient(to right, #fff 0%, #fff 78%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.58) 48%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../images/kanta/kanta-hero-bg-01-pc.webp");
}

.c-page-hero--builtin {
  background-image:
    linear-gradient(to right, #fff 0%, #fff 78%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.58) 48%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../images/built-in/built-in-hero-bg-01-pc.webp");
}
.c-page-hero--lpgas {
  background-image: url("../images/lp-gas/lp-gas-hero-bg-01-pc.webp");
}

.c-page-hero--services {
  background-image: url("../images/services/services-hero-bg-01-pc.webp");
}

@media (min-width: 600px) and (max-width: 1024px) {
  .c-page-hero__inner {
    min-height: 300px;
    padding: 44px 0 44px 20px;
  }

  .c-page-hero__content {
    max-width: 560px;
  }
}

@media (max-width: 599px) {
  .c-page-hero {
    background-position: center top;
    background-size: cover;
  }
  .c-page-hero__inner {
    min-height: 220px;
    padding: 32px 12px;
    background: none;
  }

  .c-page-hero--rental .c-page-hero__inner,
  .c-page-hero--kanta .c-page-hero__inner,
  .c-page-hero--builtin .c-page-hero__inner {
    background: none;
    padding-top: 280px;
  }

  .c-page-hero__content {
    max-width: 100%;
  }

  .c-page-hero__eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .c-page-hero__title strong {
    font-size: 28px;
  }

  .c-page-hero__lead {
    margin-top: 12px;
    font-size: 16px;
  }

  .c-page-hero__text {
    font-size: 14px;
    line-height: 1.8;
  }

  .c-page-hero__points {
    gap: 8px;
    margin-top: 12px;
  }
  .c-page-hero__points-label {
    font-size: 0.65rem;
    padding: 0.2em 0.4em;
  }

  .c-page-hero__points-item {
    grid-template-columns: 62px 1fr;
    gap: 10px;
    font-size: 14px;
    line-height: 1.7;
  }

  .c-page-hero__title img {
    width: min(100%, 220px);
  }
  .c-page-hero--rental {
    background-image: url("../images/rental/rental-hero-bg-01-sp.webp");
  }

  .c-page-hero--kanta {
    background-image: url("../images/kanta/kanta-hero-bg-01-sp.webp");
  }

  .c-page-hero--builtin {
    background-image: url("../images/built-in/built-in-hero-bg-01-sp.webp");
  }

  .c-page-hero--lpgas {
    background-image: url("../images/lp-gas/lp-gas-hero-bg-01-sp.webp");
  }

  .c-page-hero--services {
    background-image: url("../images/services/services-hero-bg-01-sp.webp");
  }
  .c-page-hero--rental::before,
  .c-page-hero--kanta::before,
  .c-page-hero--builtin::before {
    backdrop-filter: none;
  }
}
.u-text-pc-center {
  text-align: center;
}
.u-text-center {
  text-align: center;
}
.u-m-auto {
  margin: auto;
}
.u-br-pc {
  display: inline;
}
.u-marker_yellow {
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.u-text-red {
  color: #e60012;
}
.u-text-bold {
  font-weight: bold;
}

@media (max-width: 599px) {
  .u-text-pc-center {
    text-align: left;
  }
  .u-br-pc {
    display: none;
  }
}

/* Footer */
.site-footer-custom {
  background: #fff;
  padding: 56px 0 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer-custom__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.site-footer-custom__brand {
  flex: 0 0 auto;
}

.site-footer-custom__brand img {
  width: min(100%, 444px);
  height: auto;
}

.site-footer-custom__content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.site-footer-custom__address {
  width: stretch;
  font-style: normal;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
  margin: 0 1.5em 0 0;
}

.site-footer-custom__address a {
  text-decoration: none;
}

.site-footer-custom__nav {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.site-footer-custom__nav,
.site-footer-custom__address {
  width: stretch;
  flex: 1;
}

.site-footer-custom__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.site-footer-custom__nav li {
  position: relative;
  width: 100%;
}
.site-footer-custom__nav li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer-custom__nav a {
  display: block;
  position: relative;
  padding: 14px 28px 14px 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  transition: opacity 0.3s;
}

.site-footer-custom__nav a::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 12px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
}

.site-footer-custom__nav a:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .site-footer-custom {
    padding: 48px 0 0;
  }

  .site-footer-custom__inner {
    flex-direction: column;
    gap: 32px;
  }

  .site-footer-custom__brand img {
    width: min(100%, 320px);
  }
}

@media (max-width: 599px) {
  .site-footer-custom {
    padding: 40px 0 0;
  }

  .site-footer-custom__inner {
    gap: 24px;
  }

  .site-footer-custom__address {
    font-size: 13px;
    line-height: 1.9;
  }

  .site-footer-custom__nav {
    margin-top: 28px;
  }

  .site-footer-custom__nav ul {
    display: block;
  }

  .site-footer-custom__nav a {
    padding: 14px 28px 14px 4px;
    font-size: 14px;
  }

  .site-footer-custom__nav a::after {
    right: 4px;
  }
  .site-footer-custom__nav,
  .site-footer-custom__address {
    width: 100%;
    flex: none;
  }
}

/* -----------------------------------------------------
  p-sns-banner (Common Parts)
----------------------------------------------------- */

.p-sns-banner {
  padding-bottom: var(--section-space-pc);
}

.p-sns-banner__grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.p-sns-banner__item {
  flex: 0 1 475px;
}

.p-sns-banner__item a {
  display: block;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.p-sns-banner__item a:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

.p-sns-banner__item img {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .p-sns-banner__grid {
    gap: 20px;
  }
}

@media (max-width: 599px) {
  .p-sns-banner {
    padding-bottom: var(--section-space-sp);
  }

  .p-sns-banner__grid {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    display: block;
    padding: 0 20px;
  }

  .p-sns-banner__item {
    width: 100%;
    max-width: 475px;
    margin: 0 auto 15px;
    flex: none !important;
    height: auto !important;
  }
  .p-sns-banner__item:last-child {
    margin-bottom: 0;
  }
  .p-sns-banner__item img {
    width: 100% !important;
    height: auto !important;
    display: block;
    aspect-ratio: auto !important;
  }
}
/* -----------------------------------------------------
  Copyright Band
----------------------------------------------------- */
.site-footer__copyright {
  background-color: #0000b4; /* 既存のナビと同じ濃い青 */
  color: #fff;
  padding: 15px 0;
  text-align: center;
}

.site-footer__copyright p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 599px) {
  .site-footer__copyright p {
    font-size: 12px;
  }
}
