.pc-size-content ,.page-box{
    position: relative;
}
.header-overlay {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  padding: 10px 0;
}

.page-content{
    width: 100%;
    display: flex;
}
.logo {
  width: 250px;
}

/* コンタクト */
/* contact us */
.contact {
  background: #fff;
  padding: 100px 0;
}

.contact-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.contact-img {
  position: absolute;
  top: 0;
  right: -5%;
  width: 60%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* 赤グラデーション */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(211, 1, 28, 1) 0%,
    rgba(211, 1, 28, 1) 40%,
    rgba(211, 1, 28, 0.85) 55%,
    rgba(211, 1, 28, 0.7) 65%,
    rgba(211, 1, 28, 0.5) 70%,
    rgba(211, 1, 28, 0.3) 80%,
    rgba(211, 1, 28, 0) 100%
  );
  z-index: 1;
}

/* テキストエリア */
.contact-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 1400px;
  padding: 64px 110px;
}

/* ラベル */
.contact-label {
  font-size: 14px;
  margin-bottom: 8px;
}

/* タイトル */
.contact-title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 24px;
  margin-top: 10px;
  color: #fff;
}

.contact-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ボタン */
.contact .btn {
  display: flex;
  gap: 16px;
}




h1, h2, h3, h4, h5, h6{
    margin: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #111;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}



.hero {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  font-family: "Inter", sans-serif;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.top-fv-box{
  max-height: 700px;
  height: 100vh;
  min-height: auto;
  padding-top: 50px;
  display: flex;
}
/* 赤グラデーション */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #d3011c 0%,
    rgba(211, 1, 28, 0.85) 35%,
    rgba(211, 1, 28, 0.4) 55%,
    rgba(211, 1, 28, 0) 75%
  );
  z-index: 1;
}

.hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .header-overlay {
  position: relative;
  z-index: 3;
  padding: 10px 0;
} */

.nav-inner {
  max-width: 1400px;
  padding: 10px;
  margin: 0 auto;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.12);
  min-height: 60px;
}

.logo {
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.navbar{
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu ul{
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-menu li a {
  color: #d3011c;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
  text-decoration: none;
}

.nav-menu li a:hover {
  opacity: 0.7;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 500;
  color: #d3011c;
  text-decoration: none;
  border-radius: 10px;
}

/* アクティブ */
.current_page_item a{
  background-color: #d3011c;
  color: #fff !important;
  padding: 10px 30px;
}

.has-dropdown {
  position: relative;
  padding-right: 42px;
}

/* 下矢印 */
.has-dropdown::after {
  content: "▼";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-45%);
  font-size: 10px;
  color: currentColor;
  opacity: 0.9;
}

/* hover */
.nav-menu a:hover {
  opacity: 0.7;
}

.nav-contact {
  padding: 14px 34px;
  background-color: #d3011c;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.nav-contact:hover {
  opacity: 0.7;
  color: #fff;
}

.nav-conact::after {
  content: ">";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.fv {
  max-width: 1200px;
  margin: auto 10vw;
  color: #fff;
}

.fv h1 {
  font-size: 52px;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 80px;
  color: #ffff;
}

.fv .strong {
  font-size: 54px;
}

.btn {
  display: flex;
  gap: 16px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 50px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
}

/* 資料請求 */
.cta-btn:first-child {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.cta-btn:first-child:hover {
  background-color: #fff;
  color: #d3011c;
}

/* 相談 */
.cta-btn:last-child {
  background-color: #fff;
  color: #d3011c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.cta-btn:last-child:hover {
  background-color: #d3011c;
  color: #fff;
  border: 1px solid #fff;
}

.has-arrow {
  position: relative;
  padding-right: 56px;
}

.has-arrow1 {
  position: relative;
  padding-right: 30px;
}

.has-arrow::after {
  content: ">";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);

  font-size: 18px;
  font-weight: 600;
  opacity: 0.7;
}

.hero-notice {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  padding: 20px 28px;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);

  text-decoration: none;
  cursor: pointer;
  position: absolute;
  bottom: 40px;
  right: 0;
}

.notice-date {
  font-size: 14px;
  font-weight: 400;
  color: #d3011c;
  white-space: nowrap;
}

.notice-text {
  font-size: 14px;
  color: #111;
  margin: 0;
  white-space: nowrap;
}

.notice-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: auto;
  background-color: #d3011c;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
}



@media (max-width: 1023px) {
  /* hero全体 */

  .top-fv-box{
  max-height: 500px;
  height: 100vh;
  }
  .hero-bg,
  .hero-bg img {
    height: 100%;
  }

  .hero-bg img {
    object-fit: cover;
  }

  .fv h1 {
    font-size: 40px;
    line-height: 1.3;
  }

  .fv .btn {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-top: 30px;
  }

  .hero-page-post .fv{
    width: 100%;
  }
  .fv .cta-btn {
    width: 100%;
    padding: 14px 0;
    text-align: center;
    max-width: none;
  }

  /* お知らせ */
  .hero-notice {
    position: absolute;
    right: 0;
    bottom: 16px;
    max-width: 420px;
    padding: 12px 16px;
    font-size: 14px;
    z-index: 5;
  }

}

/* パンクズ */
.breadcrumb {
    font-size: 14px;
    color: #000;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
    max-width: 1200px;
    margin: 30px auto;
}

.breadcrumb a {
  color: #000;
  text-decoration: none;
}

.breadcrumb .separator {
  margin: 0 8px;
}

.breadcrumb .current {
  font-weight: 500;
}
@media (max-width: 1023px) {
  .breadcrumb {
    margin: 30px 10px;
  }
  
}
@media (max-width: 768px) {
* contact us */
  .contact {
    padding: 64px 0;
  }

  .contact-inner {
    padding: 0 16px;
  }

  .contact-box {
    border-radius: 20px;
  }

  .contact-img {
    position: relative;
    right: auto;
    width: 100%;
    height: 220px;
    object-fit: cover;
    z-index: 1;
  }

  .contact-overlay {
    background: transparent;
  }
  .contact-box{
    background: #d3011c;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.12);
  }

  .contact-content {
    padding: 20px;
    max-width: 100%;
    background-color: #d3011c;
  }

  .contact-content  .cta-btn{
    width: 100%;
    max-width: none;
  }
  .contact-label {
    font-size: 13px;
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .contact-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .contact .btn {
    flex-direction: column;
    gap: 12px;
  }

  .contact .cta-btn {
    width: 100%;
    padding: 14px 0;
    text-align: center;
  }


}



.column-main img {
    width: 100%;
    border-radius: 8px;
    transition: 0.3s ease;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    }
.news-item a{
  transition: 0.3s ease;
}
.news-item a:hover {
    background: #fde6e6;
}

