@charset "UTF-8";
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
}

/**
 * 共通見出し（英字アウトライン + 日本語サブ）
 * Figma: お知らせ② / H2（News + お知らせ）
 */
.cmn-head1 {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 8px;
  margin: 0;
}
.cmn-head1__en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 3px #0081C0;
  text-shadow: 6px 6px 8px rgba(0, 129, 192, 0.3);
}
@media screen and (max-width: 768px) {
  .cmn-head1__en {
    font-size: 40px;
    -webkit-text-stroke: 2px #0081c0;
    text-shadow: 4px 4px 6px rgba(0, 129, 192, 0.25);
  }
}
.cmn-head1__jp {
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.08em;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .cmn-head1__jp {
    font-size: 16px;
    line-height: 120%;
  }
}

/**
 * 共通見出し②（サブセクション帯・グラデーション背景）
 * Figma: temp_H2_06 / 3311:96735
 */
.cmn-head2 {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  min-height: 60px;
  margin: 0;
  padding: 16px 28px;
  background-color: #eef8ff;
  background-image: linear-gradient(90deg, #0081c0 0%, #1d548c 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* Figma temp_H2_06 / Rectangle 22 — 右上を斜めにカット */
  -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .cmn-head2 {
    min-height: 52px;
    padding: 12px 18px;
    margin-bottom: 24px;
    -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  }
}
.cmn-head2__label {
  display: block;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .cmn-head2__label {
    font-size: 20px;
    line-height: 120%;
  }
}

/**
 * 共通ボタン（オレンジ・アイコン付き）
 * Figma: お知らせ② / LV1 Button「もっと見る」
 */
.cmn-btn1 {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  width: 200px;
  max-width: 100%;
  min-height: 56px;
  padding: 12px 16px;
  background-color: #FF7B00;
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .cmn-btn1 {
    width: 100%;
    min-height: 52px;
    padding: 10px 14px;
    font-size: 18px;
    line-height: 26px;
    max-width: 300px;
  }
}
.cmn-btn1__label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  box-sizing: border-box;
  min-width: 0;
}
.cmn-btn1__icon {
  display: flex;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.cmn-btn1__icon-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.cmn-btn1__icon-svg path {
  stroke: currentColor;
}

/**
 * サブページビジュアル（H1相当）
 * Figma: temp_H1_03 / 3311:87709（News・お知らせ）
 */
.subp-visual {
  width: 100%;
  background-image: url("../assets/images/subp/subp_visual_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 105px;
}
@media screen and (max-width: 768px) {
  .subp-visual {
    background-position: center top;
    margin-top: 80px;
  }
}
.subp-visual__inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  padding-top: 116px;
  padding-bottom: 116px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .subp-visual__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.subp-visual__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  box-sizing: border-box;
  width: 232px;
  max-width: 100%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .subp-visual__heading {
    width: 100%;
    align-items: flex-start;
  }
}
.subp-visual__heading-en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 3px #0081c0;
  text-shadow: 0 0 16px rgba(0, 129, 192, 0.3);
}
@media screen and (max-width: 768px) {
  .subp-visual__heading-en {
    font-size: 44px;
    -webkit-text-stroke: 2px #0081c0;
    text-shadow: 0 0 10px rgba(0, 129, 192, 0.25);
  }
}
.subp-visual__heading-jp {
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.08em;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .subp-visual__heading-jp {
    font-size: 16px;
    line-height: 120%;
  }
}

/**
 * パンくずリスト
 * Figma: 3311:96732（TOP > お知らせ）
 */
.breadcrumb {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-top: 24px;
    margin-bottom: 48px;
  }
}
.breadcrumb__inner {
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
}
.breadcrumb__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  box-sizing: border-box;
  min-height: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  color: #4c4c4c;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list {
    font-size: 14px;
    line-height: 160%;
    min-height: 24px;
  }
}
.breadcrumb__item {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0;
  padding: 0;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: ">";
  display: inline-block;
  margin: 0 8px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.01em;
  color: #4c4c4c;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item + .breadcrumb__item::before {
    font-size: 14px;
    line-height: 160%;
    margin: 0 6px 0 0;
  }
}
.breadcrumb__item--current {
  margin: 0;
  padding: 0;
}
.breadcrumb__link {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
}
.breadcrumb__link--top {
  color: #25539E;
  font-family: "BIZ UDGothic", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 0.16px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.breadcrumb__link--top:hover {
  opacity: 0.85;
}
@media screen and (max-width: 768px) {
  .breadcrumb__link--top {
    font-size: 14px;
  }
}
.breadcrumb__current {
  color: #4C4C4C;
  font-family: "Rounded Mplus 1c";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__current {
    font-size: 14px;
    line-height: 135%;
    letter-spacing: 0.5px;
  }
}

/**
 * 電話番号リンク — SP（768px以下）のみクリックで発信。PC は無効。
 */
a.tel-link {
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a.tel-link {
    cursor: pointer;
    pointer-events: auto;
  }
}

/**
 * サイトヘッダー
 * Figma: LV2 / Header Component (D) / 3311:41430
 */
.site-header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 105px;
  background-color: transparent;
  transition: background-color 0.28s ease;
  display: flex;
  align-items: center;
}
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.88);
}
.site-header__inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 0px 60px 0px 50px;
}
.site-header__brand {
  margin: 0;
  line-height: 0;
  flex-shrink: 0;
}
.site-header__logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}
.site-header__logo-link:focus-visible {
  outline: 2px solid #0081c0;
  outline-offset: 4px;
}
.site-header__logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 56px;
}
.site-header__pill {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 8px 0 8px 48px;
  border-radius: 100px;
}
.site-header__nav {
  box-sizing: border-box;
  flex: 0 1 auto;
}
.site-header__menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__item {
  margin: 0;
  padding: 0;
}
.site-header__link {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 40px;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  color: #141414;
}
.site-header__link:hover {
  opacity: 0.75;
}
.site-header__link:focus-visible {
  outline: 2px solid #0081c0;
  outline-offset: 4px;
  border-radius: 4px;
}
.site-header__cta {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  min-height: 56px;
  padding: 12px 24px;
  flex-shrink: 0;
  background-color: #ff7b00;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-decoration: none;
  color: #ffffff;
}
.site-header__cta:hover {
  opacity: 0.92;
}
.site-header__cta:focus-visible {
  outline: 2px solid #141414;
  outline-offset: 3px;
}
.site-header__cta-icon {
  display: flex;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  line-height: 0;
}
.site-header__cta-icon-img {
  display: block;
  width: 100%;
  height: 100%;
}
.site-header__cta-label {
  display: inline-block;
  white-space: nowrap;
}
.site-header__toggle {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
}
.site-header__toggle:focus-visible {
  outline: 2px solid #0081c0;
  outline-offset: 2px;
}
.site-header__toggle-lines {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.site-header__toggle-line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  border-radius: 1px;
  background-color: #141414;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
  transform-origin: center;
}
.site-header__toggle-line:nth-child(1) {
  top: 5px;
  transform: rotate(0deg);
}
.site-header__toggle-line:nth-child(2) {
  top: 11px;
  opacity: 1;
  transform: rotate(0deg);
}
.site-header__toggle-line:nth-child(3) {
  top: 17px;
  transform: rotate(0deg);
}
.site-header.is-menu-open .site-header__toggle-line:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.site-header.is-menu-open .site-header__toggle-line:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .site-header__toggle-line:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}
.site-header__backdrop {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 180;
  background-color: rgba(20, 20, 20, 0.35);
}

@media screen and (max-width: 1249px) {
  .site-header {
    z-index: 200;
    overflow: visible;
  }
  .site-header__backdrop {
    top: 0;
    z-index: 205;
  }
  .site-header__toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .site-header__inner {
    flex-wrap: nowrap;
    align-items: center;
    padding: 16px 24px;
  }
  .site-header__pill {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 220;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    width: min(360px, 100%);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    max-height: none;
    padding: calc(24px + env(safe-area-inset-top, 0px)) 24px calc(32px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 24px 0 0 24px;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: visibility 0.25s ease, transform 0.25s ease;
  }
  .site-header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .site-header__link {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 8px 4px;
  }
  .site-header__cta {
    justify-content: center;
    width: 100%;
  }
  .site-header.is-menu-open .site-header__inner {
    position: relative;
    z-index: 215;
  }
  .site-header.is-menu-open .site-header__toggle {
    position: relative;
    z-index: 230;
  }
  .site-header.is-menu-open .site-header__pill {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .site-header.is-menu-open .site-header__backdrop {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .site-header {
    height: 80px !important;
  }
  .site-header__logo-img {
    height: 35px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
  .site-header__toggle-line {
    transition: none;
  }
}
@media screen and (prefers-reduced-motion: reduce) and (max-width: 1249px) {
  .site-header__pill {
    transition: none;
  }
}
/**
 * Sliding strip images（施工写真バナー・無限横スクロール）
 * Figma 3311:50789 ph_slide — 同一ストリップ画像を2枚並べ translateX(-50%)
 */
.sliding-imgs {
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
}
.sliding-imgs__viewport {
  overflow: hidden;
  width: 100%;
}
.sliding-imgs__mover {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  width: max-content;
  animation: sliding-imgs-scroll 90s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .sliding-imgs__mover {
    animation: none;
    transform: translateX(0);
  }
}
.sliding-imgs__img {
  display: block;
  flex-shrink: 0;
  height: 380px;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .sliding-imgs__img {
    height: min(380px, 52vw);
  }
}

@keyframes sliding-imgs-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/**
 * サイトフッター Figma FOOTER / 3311:50847
 */
.site-footer {
  box-sizing: border-box;
  width: 100%;
}
.site-footer__band {
  box-sizing: border-box;
  width: 100%;
  min-height: 245px;
  background-color: #0081c0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .site-footer__band {
    min-height: 0;
  }
}
.site-footer__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-block: 40px;
}
@media screen and (max-width: 768px) {
  .site-footer__inner {
    padding-block: 28px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.site-footer__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px 101px;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .site-footer__row {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
}
.site-footer__company {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  box-sizing: border-box;
  flex: 0 1 354px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .site-footer__company {
    flex: 1 1 auto;
    max-width: 100%;
  }
}
.site-footer__logo {
  margin: 0;
  line-height: 0;
}
.site-footer__logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}
.site-footer__logo-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
.site-footer__logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .site-footer__logo-img {
    height: 36px;
  }
}
.site-footer__address {
  box-sizing: border-box;
  margin: 0;
  padding: 10px 0;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  text-align: left;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .site-footer__address {
    padding: 8px 0;
    font-size: 14px;
    line-height: 22px;
  }
}
.site-footer__tel {
  color: inherit;
  text-underline-offset: 2px;
}
.site-footer__tel:hover {
  opacity: 0.9;
}
.site-footer__tel:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.site-footer__nav {
  box-sizing: border-box;
  flex: 0 1 auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .site-footer__nav {
    margin-left: 0;
    width: 100%;
  }
}
.site-footer__menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .site-footer__menu {
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }
}
.site-footer__menu-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  min-height: 40px;
}
.site-footer__menu-item:not(:first-child)::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1px;
  height: 24px;
  margin-inline: 4px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .site-footer__menu-item {
    min-height: 0px;
  }
  .site-footer__menu-item:not(:first-child)::before {
    display: none;
  }
}
.site-footer__link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 40px;
  padding: 2px 12px;
  border-radius: 8px;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
}
.site-footer__link:hover {
  opacity: 0.9;
}
.site-footer__link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
@media screen and (max-width: 768px) {
  .site-footer__link {
    justify-content: flex-start;
    width: 100%;
    min-height: 0px;
    padding: 0px;
    font-size: 15px;
    line-height: 160%;
    text-align: left;
  }
}
.site-footer__bottom {
  box-sizing: border-box;
  width: 100%;
  min-height: 54px;
  padding: 18px 24px;
  background-color: #fefcf7;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .site-footer__bottom {
    min-height: 0;
    padding: 14px 16px;
  }
}
.site-footer__copy {
  margin: 0;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.04em;
  text-align: center;
  color: #353535;
}
@media screen and (max-width: 768px) {
  .site-footer__copy {
    font-size: 12px;
    line-height: 140%;
  }
}/*# sourceMappingURL=commons.css.map */