@charset "UTF-8";

/* ===========================
   カラー変数定義
   =========================== */
:root {
  /* メインカラー */
  --color-main-dark-blue: #28416e;

  /* グレー系 */
  --color-light-gray-1: #7e8da8;
  --color-light-gray-2: #93a0b6;
  --color-border-gray: #8692ac;
  --color-bg-light-gray: #ccc;
  --color-bg-lighter-gray: #ddd;
  --color-bg-lightest: #e0e0e0;
  --color-bg-off-white: #f8f9fa;

  /* パープル系 */
  --color-light-purple: #837b97;
  --color-dark-purple: #65597d;

  /* ブルー系（背景用） */
  --color-bg-dark-blue: #1b3d63;
  --color-bg-light-blue: #3c95e5;
  --color-bg-darker-blue: #29466e;

  /* ベーシック */
  --color-white: #ffffff;
  --color-black: #000000;

  /* テキストカラー */
  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-text-light: #999999;

  /* アクセントカラー */
  --color-orange: #ef8144;
  --color-red: #e74c3c;

  /* その他 */
  --color-tag-bg: #f0f0f0;
  --color-badge-optional: #95a5a6;

  /* グラデーション */
  --gradient-purple-blue: linear-gradient(90deg, #65597d, #28406e);
}

/* 各ページ共通で使う要素 */

/* Body background transition */
body {
  transition: background-color 1s ease-in-out;
  overflow-x: hidden;
}

* {
  font-family: 'Noto Sans JP', sans-serif;
}

p {
  line-height: 1.8;
  text-align: justify;
}

.section_title span{
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}

.en{
  font-family: 'Lato', sans-serif;
}

.page-item:last-child .page-link,
.page-item:first-child .page-link{
  border-radius: 50%;
  width: 55px;
  height: 55px;
  background-color: inherit;
  border: 1px solid #fff;
}


/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* background-color: rgba(0, 0, 0, 0.3); */
  /* backdrop-filter: blur(10px); */
  transition: all 0.6s ease;
}

.header .navbar {
  padding: 2rem;
  transition: all 0.6s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand .logo {
  height: 40px;
  width: auto;
}

/* Hamburger Menu */
.hamburger-menu {
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-white);
    padding: 15px 10px;
    transition: border-color 0.3s ease;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}

.hamburger-menu:hover span {
  background-color: var(--color-bg-lighter-gray);
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}

.side-menu.active {
  pointer-events: auto;
}

.side-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.6); */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.side-menu.active .side-menu-overlay {
  opacity: 1;
}

.side-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85%;
    height: 100%;
    /* backdrop-filter: blur(20px); */
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-top: calc( 2rem + 49px );
    padding-right: 2.75rem;
}

.side-menu.active .side-menu-content {
  transform: translateX(0);
}
.side-menu-nav {
    background-color: var(--color-main-dark-blue);
    border: 1px solid var(--color-white);
    border-radius: 6px 0 6px 6px;
}
.side-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem;
}

.side-menu-nav li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);

}

.side-menu-nav li:last-child {
  border-bottom: none;
}

.side-menu-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  padding: 18px 15px;
  transition: background-color 0.3s ease;
  position: relative;
}

.side-menu-nav a::before {
    content: '';
    border-bottom: 1px solid var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 7px;
    height: 1px;
    opacity: 0.8;
    position: absolute;
    right: 14px;
    transform: rotate(45deg);
    bottom: 31px;
}
.side-menu-nav a::after {
    content: '';
    border-bottom: 1px solid var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 20px;
    height: 1px;
    opacity: 0.8;
}

.side-menu-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.side-menu-nav a:hover::after{
  transform: translateX(5px);
  opacity: 1;
}
.side-menu-nav a:hover::before {
  transform: translateX(5px)  rotate(45deg);
  opacity: 1;
}

/* リンクボタン */
a.btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    padding: 20px 20px;
    transition: background-color 0.3s ease;
    position: relative;
    border: 1px solid var(--color-white);
    border-radius: 0;
  transition: background-color 0.3s ease;
}
a.btn::before {
    content: '';
    border-bottom: 1px solid var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 7px;
    height: 1px;
    opacity: 0.8;
    position: absolute;
    right: 19px;
    transform: rotate(45deg);
    bottom: 32px;
}
a.btn::after {
    content: '';
    border-bottom: 1px solid var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 17px;
    height: 1px;
    opacity: 0.8;
}
a.btn:hover {
  background-color: var(--color-white);
  color: var(--color-main-dark-blue);
}
a.btn:hover::before, 
a.btn:hover::after{
    border-bottom: 1px solid var(--color-main-dark-blue);
}
a.btn:hover::before {
  transform: translateX(5px) rotate(45deg);
  opacity: 1;
}
a.btn:hover::after {
  transform: translateX(5px);
  opacity: 1;
}



/* ボタンサイズ調整用クラス */
.btn_middle{
  width: 350px;
}
.btn_small{
  width: 250px;
}
.btn_exsmall{
  width: 160px;
}
.btn_100per{
  width: 100%;
}
.btn_wrapper.center{
  margin:auto
}
.btn.btn_y-small{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
a.btn.btn_y-small::before{
  bottom: 24px;
}

/* ボタン色調整クラス */
.btn.btn_white{
  border-color: #fff;
  color: #fff;
}
.btn.btn_white::before,
.btn.btn_white::after{
  border-color: #fff !important;
}
.btn.btn_white:hover{
  background-color: var(--color-main-dark-blue);
  border-color: var(--color-main-dark-blue);
}

/*lightblue*/
.btn.btn_lightblue{
  background-color: #53678b;
  color: #fff;
}
.btn.btn_lightblue::before,
.btn.btn_lightblue::after{
  border-color: #fff !important;
}
.btn.btn_lightblue:hover{
  background-color: #fff;
  border-color: var(--color-main-dark-blue);
  color: #53678b;
}
.btn.btn_lightblue:hover::before,
.btn.btn_lightblue:hover::after{
  border-color: #53678b !important;
}
/*darkblue*/
.btn.btn_darkblue{
  background-color: var(--color-main-dark-blue);
  color: #fff;
}
.btn.btn_darkblue::before,
.btn.btn_darkblue::after{
  border-color: #fff !important;
}
.btn.btn_darkblue:hover{
  background-color: #fff;
  border-color: var(--color-main-dark-blue);
  color: var(--color-main-dark-blue);
}
.btn.btn_darkblue:hover::before,
.btn.btn_darkblue:hover::after{
  border-color: var(--color-main-dark-blue) !important;
}

/*darkblue frame*/
.btn.btn_darkblue{
  background-color: var(--color-main-dark-blue);
  color: #fff;
}
.btn.btn_darkblue_frame::before,
.btn.btn_darkblue_frame::after{
  border-color: #fff !important;
}
.btn.btn_darkblue_frame:hover{
  background-color: #fff;
  border-color: var(--color-main-dark-blue);
  color: var(--color-main-dark-blue);
}
.btn.btn_darkblue_frame:hover::before,
.btn.btn_darkblue_frame:hover::after{
  border-color: var(--color-main-dark-blue) !important;
}

/*darkblue beta*/
.btn.btn_dbbeta{
  background-color: #3296d7;
  color: #fff;
}
.btn.btn_dbbeta::before,
.btn.btn_dbbeta::after{
  border-color: #fff !important;
}
.btn.btn_dbbeta:hover{
  background-color: #fff;
  border-color:  #3296d7;
  color:  #3296d7;
}
.btn.btn_dbbeta:hover::before,
.btn.btn_dbbeta:hover::after{
  border-color:   #3296d7; !important;
}
.btn.btn_dbbeta:hover::before,
.btn.btn_dbbeta:hover::after{
  border-color: #3296d7 !important;
}


.btn.btn_dkblue_white{
  border-color: #93a0b6;
  color: var(--color-main-dark-blue);
}
.btn.btn_dkblue_white::before,
.btn.btn_dkblue_white::after{
  border-color: var(--color-main-dark-blue) !important;
}
.btn.btn_btn_dkblue_white:hover{
  background-color: var(--color-main-dark-blue);
  border-color: var(--color-main-dark-blue);
}

/*btn_ltblue_frame*/
.btn.btn_ltblue_frame{
  border-color:#3296d7;
  color: #3296d7;
}
.btn.btn_ltblue_frame::before,
.btn.btn_ltblue_frame::after{
  border-color: #3296d7 !important;
}
.btn.btn_ltblue_frame:hover{
  background-color: #3296d7;
  border-color: #3296d7;
  color: #fff;
}
.btn.btn_ltblue_frame:hover::before,
.btn.btn_ltblue_frame:hover::after{
  border-color: #fff !important;
}


.btn_rounded{
  border-radius: 5px !important;
}
.btn.text-center span{
  text-align: center;
  display: block;
  width: 100%;
}


.btn.btn_gray{
  background-color:#7e8da8;
  border:none;
}
/*ミニボタン*/
.minibtn_wrapper{

}
.minibtn_wrapper.center{
  text-align:center;
}
.minibtn {
    background-color: var(--color-main-dark-blue);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    padding: 2px 14px 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
}
.minibtn:hover{
  opacity: 0.7;
}
.minibtn.left1rem{
  margin-left: 1rem;
}

.img_wrapper img{
    width: 100%;
}

/* 汎用カードスタイル */
.card-link {
  text-decoration: none;
  display: block;
  height: 100%;
  border: 2px solid var(--color-white);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-link:hover {
  /* transform: translateY(-5px); */
}

.card-item {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.contetns_works .card-item{
  background-color: #f4f5f8
}

.card-link:hover .card-item {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-link:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
}

.card-date {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.card-badge {
  display: inline-block;
  padding: 2px 12px 3px;
  font-size: 11px;
  color: var(--color-white);
  background-color: var(--color-light-purple);
  border-radius: 12px;
  right: 0;
  position: absolute;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text-primary);
  margin-bottom: 10px;
  line-height: 1.5;
}
.page_contents .contents_works_swiper .card-title{
  font-size: 14px;
}

.card-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.card-view {
    display: block;
    text-align: end;
    color: var(--color-main-dark-blue);
    font-size: 12px;
    font-weight: bold;
    position: relative;
    padding-right: 30px;
}

.card-view::before {
    content: '';
    border-bottom: 1px solid var(--color-main-dark-blue);
    width: 7px;
    height: 1px;
    position: absolute;
    right: -1px;
    transform: rotate(45deg);
    bottom: 9px;
    transition: transform 0.3s ease;
}

.card-view::after {
  content: '';
  border-bottom: 1px solid var(--color-main-dark-blue);
  width: 20px;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 7px;
  transition: transform 0.3s ease;
}

.card-link:hover .card-view::before {
  transform: translateX(5px) rotate(45deg);
}

.card-link:hover .card-view::after {
  transform: translateX(5px);
}

/* フッター追従ボタン */
.fixed-footer-buttons {
  position: fixed;
  bottom: 0px;
  right: 0px;
  display: flex;
  gap: 0;
  z-index: 900;
}

.fixed-btn {
  display: flex;
  align-items: right;
  justify-content: left;
  padding: 20px 20px 20px 50px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 240px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a.fixed-btn::before {
    content: '';
    border-bottom: 1px solid var(--color-border-gray);
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 7px;
    height: 1px;
    opacity: 0.8;
    position: absolute;
    right: 19px;
    transform: rotate(45deg);
    bottom: 34px;
}
a.fixed-btn::after {
    content: '';
    border-bottom: 1px solid var(--color-border-gray);
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 20px;
    height: 1px;
}

.fixed-btn-recruit {
  background-color: #fafafa;
  border-right: none;
  color: var(--color-bg-darker-blue);
  border-radius: 40px 0 0 0;
}

.fixed-btn-recruit:hover {
  background-color: var(--color-bg-darker-blue);
  color: #fafafa;
}

.fixed-btn-contact {
  background-image: var(--gradient-purple-blue);
}

.fixed-btn-contact:hover {
  background-image: none;
  background-color: #fafafa;
  color: #28406e;
}

a.fixed-btn:hover::before {
  transform: translateX(5px) rotate(45deg);
  opacity: 1;
}
a.fixed-btn:hover::after {
  transform: translateX(5px);
  opacity: 1;
}

h2.section_title {
  font-size: .85rem;
  text-align: left !important;
  margin-bottom: 3rem;
}
h2.section_title.text-center{
  text-align: center !important;
}
h2.section_title span{
  font-size: 3rem;
  display: block;
}
/* footer共通 */
footer{
  margin: 200px 0 100px;
}
.footer_logo_wrapper{
    width: 100%;
    text-align: center;
}
.footer_logo_wrapper .img_wrapper{
    width: 65%;
    margin: auto;
    margin-bottom: 30px;
}
.footer_logo_wrapper p{
  color: var(--color-white);
  font-size: 15px;
  text-align: center;
}
ul.footer_nav {
    list-style: none;
    padding: 0 40px;
    margin: 0;
    text-align: center;
}
ul.footer_nav li{
  display: inline-block;
  margin: 8px 10px;
}
ul.footer_nav li a{
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
}
ul.footer_nav li a:hover{
  opacity: 0.7;
}
ul.footer_nav li:nth-child(5),
ul.footer_nav li:nth-child(6){
  /* width: 50%; */
}
.copyright{
    text-align: center;
    color: #fff;
    font-size: 13px;
    margin-top: 30px;
    font-weight: 300;
}

/* Removed: Old static backgrounds replaced by dynamic background layer system (see .bg-layer styles at bottom of file) */
.sec_header{
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}
.sec_header .title_wrapper {
    width: 80vw;
    text-align: center;
    margin-top: 70px;
    /* height: 150px; */
    /* background: #f00; */
}
.sec_header .title_wrapper img {
    width: auto;
    height: 64px;
    object-fit: cover;
    object-position: center;
}


.sec_header .title_wrapper p{
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  opacity: 0.9;
}
.sec_header .title_wrapper h1{
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}
.breadcrumbs{
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}
.breadcrumbs li{
  display: inline;
}
.breadcrumbs li a{
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.breadcrumbs li a:hover{
  opacity: 0.7;
}
.breadcrumbs li+li::before{
  content: ">";
  margin: 0 8px 0 0px;
  color: #fff;
}

.sec_content {
  min-height: 100vh;
}
.sec_content .content_wrapper{
  background-color: var(--color-white);
}




/* topページで使う要素 */
.page_index{

}

body.page_index.bg-hero {
  background-color: var(--color-bg-dark-blue);
}

body.page_index.bg-intro {
  background-color: var(--color-bg-light-blue);
}

body.page_index.bg-topics {
  background-color: var(--color-orange);
}

body.page_index.bg-works {
  background-color: var(--color-bg-dark-blue);
}

.page_index .sec_hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.hero_lead {
    position: absolute;
    top: 10vw;
    left: 10vw;
    z-index: 10;
    width: 500px;
}

.hero_lead_image {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.hero_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero_logo .logo {
  width: 300px;
  height: auto;
}

.page_index .sec_hero,
.page_index .sec_intro,
.page_index .sec_topics,
.page_index .sec_works{
  min-height: 100vh;
}


/* Intro Section */
.page_index .sec_intro{
  display: flex;
  justify-content: center;
  align-items: center;
}


.page_index .sec_intro .intro_copy{
    color: var(--color-white);
    line-height: 3.5;
    font-size: 1rem;
    margin-bottom: 5rem;
}

.page_index h2.section_title{
    color: var(--color-white);
}
.page_index .topics_title h2.section_title{
  /* background: #f00; */
}

/* Topics Section */
.page_index .sec_topics{
    margin-top: 80px;
    margin-bottom: 80px;
}

.page_index .contents_wrapper{
    margin-top: 150px;
}

.page_index .contents_wrapper .section_title {
    margin-bottom: 70px;
    margin-top: 30px;
}

/* Works Section */
.page_index .sec_works{
    margin-top: 150px;
    margin-bottom: 80px;
}

.page_index .sec_works h2.section_title {
    text-align: center !important;
}

/* Works Grid - PC 5-column layout */
@media (min-width: 768px) {
  .page_index .sec_works .works-grid .col-md-4 {
    flex: 0 0 auto;
    width: 20%;
    max-width: 20%;
  }
}

/* Works Swiper */
.worksSwiper {
    width: 100%;
    max-width: 100%;
    padding: 0;
    position: relative;
}

.worksSwiper .swiper-wrapper {
    padding-bottom: 80px;
}

.worksSwiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
}

.worksSwiper .swiper-slide-active {
    z-index: 2;
}

.top_kaiyu_card{
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.top_kaiyu_card .top_kaiyu_card_inner{
  padding: 80px 50px 50px;
  color: var(--color-main-dark-blue);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.top_kaiyu_card h2{
  font-size: .85rem;
  text-align: center;
  margin-bottom: 2rem;
}
.top_kaiyu_card h2 span{
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  display: block;
  font-size: 2.15rem;
  display: block;
}
.top_kaiyu_card p{
  margin-bottom: 3rem;
  flex: 1;
}


/* ===========================
   2ndページ用コンポーネント
   =========================== */

/* コンテンツブロック - セクション間のスペーシング */
.content_block {
  margin-bottom: 120px;
}
.contents_works_swiper.content_block{
  margin-bottom: 10px;
  overflow:hidden;
}

/* セクション用の白背景ボックス */
.white_box {
  background-color: var(--color-white);
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* セクションタイトル関連 */
.section_title_wrapper {
  margin-bottom: 40px;
}

.section_title_wrapper.section_title_center {
  text-align: center;
}

.section_subtitle {
  font-size: 14px;
  color: var(--color-main-dark-blue);
  margin-bottom: 0;
  letter-spacing: 0.1em;
}

.section_title_wrapper .section_title {
  font-size: 44px;
  font-weight: 900;
  font-family: 'Lato', sans-serif;
  color: var(--color-main-dark-blue);
  margin: 0;
}

.history_table_wrapper dl {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.history_table_wrapper dl::after {
    content: "";
    display: block;
    clear: both;
    border-bottom: 1px solid var(--color-bg-lightest);
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
}
.history_table_wrapper dl::before {
    content: "";
    display: block;
    clear: both;
    border-bottom: 1px solid var(--color-main-dark-blue);
    position: absolute;
    width: 97px;
    height: 1px;
    bottom: 0;
    z-index: 9;
}

.history_table_wrapper dl dd,
.history_table_wrapper dl dt{
  color: var(--color-main-dark-blue);
  font-size: 14px;
}
.history_table_wrapper dl dt{
  font-weight: normal;
  width: 7em
}
/* セクションテキスト */
.section_text {
    line-height: 2;
    color: var( --color-main-dark-blue);
}

.section_text p {
  margin-bottom: 20px;
  font-size: 14px;
}

.message_signature {
    text-align: right;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 70px !important;
    font-size: 16px;
}

/* セクション画像 */
.section_image {
  width: 100%;
}

.section_image img {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
}

/* 会社概要テーブル */
.company_table_wrapper {
  /* max-width: 900px; */
  margin: 0 0 0 2rem;
}

.company_table {
  width: 100%;
  border-collapse: collapse;
  /* background-color: var(--color-white); */
}

.company_table tr {
  /* border-bottom: 1px solid var(--color-bg-lightest); */
}

.company_table tr:last-child {
  border-bottom: none;
}

.company_table th {
  width: 200px;
  padding: 10px;
  text-align: left;
  font-weight: 600;
  color: var(--color-main-dark-blue);
  vertical-align: top;
  /* background-color: var(--color-bg-off-white); */
  font-size: 14px;
  width: 7rem;
}

.company_table td {
  padding: 10px;
  color: var(--color-main-dark-blue);
  line-height: 1.8;
  font-size: 14px;
}

/* フォトギャラリー */
.photo_gallery {
  margin: 60px 0;
}

.gallery_item {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  /* border-radius: 8px; */
  background-color: var(--color-bg-lightest);
}

.gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery_item:hover img {
  transform: scale(1.05);
}

/* Photo Gallery Swiper - PC時のグリッド表示 */
@media (min-width: 768px) {
  .photoGallerySwiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .photoGallerySwiper .swiper-slide {
    width: auto;
    margin: 0;
  }
}

/* 沿革タイムライン */
.history_wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.history_item {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
}

.history_item::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 30px;
  width: 1px;
  height: calc(100% + 40px);
  background-color: var(--color-bg-lightest);
}

.history_item:last-child::before {
  display: none;
}

.history_year {
  flex-shrink: 0;
  width: 80px;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  color: var(--color-main-dark-blue);
  font-size: 18px;
  position: relative;
}

.history_year::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--color-main-dark-blue);
  border-radius: 50%;
}

.history_content {
  flex: 1;
  padding-top: 0;
}

.history_content p {
  color: var(--color-text-primary);
  line-height: 1.8;
  margin: 0;
}

/* Google Maps */
.map_wrapper {
    width: calc( 100% + 120px );
    margin: 60px -60px -65px;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.map_wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
     -webkit-filter: grayscale(100%);
     -moz-filter: grayscale(100%);
     -o-filter: grayscale(100%);
     -ms-filter: grayscale(100%);
     filter: grayscale(100%);
}

/* ボトムナビゲーションカード */
.bottom_nav_cards {
  margin: 80px 50px;
}

.nav_card {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.nav_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav_card_image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.nav_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nav_card:hover .nav_card_image img {
  transform: scale(1.05);
}

.nav_card_content {
  padding: 30px 20px;
  text-align: center;
}

.nav_card_title_en {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--color-main-dark-blue);
  margin-bottom: 8px;
}

.nav_card_title_ja {
  font-size: 16px;
  color: var(--color-text-primary);
  font-weight: bold;
  margin: 0;
}

/* HTML版回遊ナビカード */
.nav_card_html {
  /* border: 1px solid var(--color-main-dark-blue); */
  background-color: var(--color-white);
  padding: 25px 30px;
  box-shadow: none;
  border-radius: 8px;
}
.nav_card_html.has_image {
  padding: 4px;
  overflow: hidden;
}
.nav_card_html:hover {
  background-color: var(--color-main-dark-blue);
  transform: none;
  box-shadow: none;
}
.nav_card_html:hover .nav_card_title_en,
.nav_card_html:hover .nav_card_title_ja {
  color: var(--color-white);
}
.nav_card_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav_card_html.has_image .nav_card_inner {
  height: 100%;
}
.nav_card_html .nav_card_text {
  text-align: left;
  flex: 1;
}
.nav_card_html.has_image .nav_card_text {
  padding: 25px 20px 15px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nav_card_html .nav_card_title_ja {
  font-size: 12px;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  margin-bottom: 5px;
  line-height: 1.2;
}
.nav_card_html .nav_card_title_en {
  font-size: 24px;
  color: var(--color-main-dark-blue);
  padding: 0;
  margin-bottom: 0;
  line-height: 1.2;
}
.nav_card_html .nav_card_image {
  width: 100px;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.nav_card_html .nav_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.nav_card_html:hover .nav_card_image img {
  transform: scale(1.05);
}
.nav_card_link_text {
  font-size: 12px;
  color: var(--color-main-dark-blue);
  margin-top: 10px;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
.nav_card_html:hover .nav_card_link_text {
  color: var(--color-white);
}
.nav_card_arrow {
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--color-main-dark-blue);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.nav_card_arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  border-bottom: 1px solid var(--color-main-dark-blue);
  transform: rotate(45deg);
  transition: border-color 0.3s ease, right 0.3s ease;
}
.nav_card_html:hover .nav_card_arrow {
  background-color: var(--color-white);
  transform: translateX(10px);
}
.nav_card_html:hover .nav_card_arrow::after {
  border-color: var(--color-white);
}

/* Nav Card Responsive - 1200px以下 */
@media (max-width: 1199px) {
  .nav_card_html {
    padding: 20px 20px;
  }
  .nav_card_html.has_image {
    padding: 3px;
  }
  .nav_card_html.has_image .nav_card_text {
    padding: 15px 12px 10px 15px;
  }
  .nav_card_html .nav_card_title_ja {
    font-size: 10px;
  }
  .nav_card_html .nav_card_title_en {
    font-size: 18px;
  }
  .nav_card_html .nav_card_image {
    width: 80px;
  }
  .nav_card_link_text {
    font-size: 10px;
    margin-top: 8px;
    margin-bottom: 3px;
  }
}

/* Nav Card Responsive - 992px以下 */
@media (max-width: 991px) {
  .nav_card_html {
    padding: 15px 15px;
  }
  .nav_card_html.has_image .nav_card_text {
    padding: 12px 10px 8px 12px;
  }
  .nav_card_html .nav_card_title_ja {
    font-size: 9px;
  }
  .nav_card_html .nav_card_title_en {
    font-size: 14px;
  }
  .nav_card_html .nav_card_image {
    width: 70px;
  }
  .nav_card_link_text {
    font-size: 9px;
    margin-top: 6px;
  }
}

/* Banner Link */
.banner_img {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner_img:hover {
  transform: translateY(-5px);
}

.banner_img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 業務内容ページ */
.service_block {
  background-color: var(--color-white);
  padding: 60px;
  border-radius: 8px;
}

.service_text {
  padding: 20px 0;
}

.service_subtitle {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.service_title {
  font-size: 42px;
  font-weight: 900;
  font-family: 'Lato', sans-serif;
  color: var(--color-main-dark-blue);
  line-height: 1.3;
  margin-bottom: 30px;
}

.service_description {
  color: var(--color-text-primary);
  line-height: 2;
  margin-bottom: 40px;
}

.service_description p {
  margin-bottom: 20px;
}

.service_image {
  width: 100%;
}

.service_image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.works_intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--color-text-primary);
  line-height: 2;
}

/* 施工実績詳細ページ */
.works_detail {
  background-color: var(--color-white);
  padding: 60px;
  border-radius: 8px;
}

.works_detail_image {
  margin-bottom: 40px;
  text-align: center;
}

.works_detail_image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.works_detail_header {
  margin-bottom: 40px;
}

.works_detail_meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.works_detail_date {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-family: 'Lato', sans-serif;
}

.works_detail_badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--color-white);
  background-color: var(--color-light-purple);
  border-radius: 12px;
}

.works_detail_title {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-text-primary);
  line-height: 1.6;
  margin: 0;
}

.works_detail_specs {
  margin-bottom: 50px;
  background-color: var(--color-bg-off-white);
  padding: 30px;
  border-radius: 8px;
}

.specs_table {
  width: 100%;
  border-collapse: collapse;
}

.specs_table tr {
  border-bottom: 1px solid var(--color-bg-lightest);
}

.specs_table tr:last-child {
  border-bottom: none;
}

.specs_table th {
  width: 15%;
  padding: 15px 20px;
  text-align: left;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  font-size: 14px;
}

.specs_table td {
  padding: 15px 20px;
  color: var(--color-text-primary);
  font-size: 14px;
}

.works_detail_content {
  margin-bottom: 50px;
}

.works_detail_text {
  color: var(--color-text-primary);
  line-height: 2;
  margin-bottom: 40px;
}

.works_detail_text p {
  margin-bottom: 20px;
}

.works_detail_image_inline {
  margin: 50px 0;
  text-align: center;
}

.works_detail_image_inline img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.works_detail_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 30px;
  border-top: 1px solid var(--color-bg-lightest);
}

.tag_item {
  display: inline-block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--color-main-dark-blue);
  background-color: var(--color-tag-bg);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.tag_item:hover {
  background-color: var(--color-main-dark-blue);
  color: var(--color-white);
}

/* 施工実績ナビゲーション */
.works_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
}

.works_nav a {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  text-decoration: none;
  transition: all 0.3s ease;
}

.works_nav_icon_circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  transition: all 0.3s ease;
}

.works_nav_icon {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 11px;
    color: #fff;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.works_nav a:hover .works_nav_icon_circle {
  background-color: var(--color-main-dark-blue);
}

.works_nav a:hover .works_nav_icon {
  color: var(--color-white);
}

.works_nav_list {
  flex: 1;
  max-width: 200px;
  padding: 15px 30px;
  background-color: var(--color-main-dark-blue);
  border-radius: 50px;
  color: var(--color-white);
  font-size: 14px;
}

.works_nav_list:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.works_nav_text {
  color: var(--color-white);
}

/* スタッフ紹介ページ */
.staff_card {
  display: block;
  text-decoration: none;
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.staff_card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
}

.staff_card_image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 3px solid #FFF;
}

.staff_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 5px 5px 0 0;
}

.staff_card:hover .staff_card_image img {
  transform: scale(1.05);
}

.staff_card_content {
  padding: 30px 40px;
  padding-top: 80px; /* staff_badge(20px) + margin-bottom(20px) + top(30px) */
  text-align: center;
  position: relative;
}
.staff_name,
.staff_name_en{
  text-align: center;
  color: var(--color-main-dark-blue ) !important;
}
.staff_name_en{
  font-size: 14px;
}

.staff_badge {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    color: var(--color-white);
    background-color: #3296d7;
    border-radius: 12px;
    margin-bottom: 0;
    white-space: nowrap;
}
.
.staff_name {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text-primary);
  margin-bottom: 0px;
  line-height: 1.5;
}

.staff_description {
    font-size: 14px;
    color: var(--color-main-dark-blue);
    line-height: 1.8;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    padding-top: 1.5rem;
    margin-top: 1rem;
    position: relative;
}
.staff_description:after {
    content: '';
    display: block;
    border-top: 1px solid #93a0b6;
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    top: 4px;
}
.staff_description:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-right: 1px solid #93a0b6;
    border-top: 1px solid #93a0b6;
    position: absolute;
    top: 2px;
    right: calc( 50% + -6px );
    z-index: 9999;
    transform: rotate(-45deg);
}
.staff_description_fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}
.staff_view {
  display: block;
  text-align: right;
  color: var(--color-main-dark-blue);
  font-size: 12px;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}

.staff_view::before {
  content: '';
  border-bottom: 1px solid var(--color-main-dark-blue);
  width: 7px;
  height: 1px;
  position: absolute;
  right: -1px;
  transform: rotate(45deg);
  bottom: 9px;
  transition: transform 0.3s ease;
}

.staff_view::after {
  content: '';
  border-bottom: 1px solid var(--color-main-dark-blue);
  width: 20px;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 7px;
  transition: transform 0.3s ease;
}

.staff_card:hover .staff_view::before {
  transform: translateX(5px) rotate(45deg);
}

.staff_card:hover .staff_view::after {
  transform: translateX(5px);
}

/* スタッフ詳細ページ */
.staff_detail {
  background-color: var(--color-white);
  padding: 60px 60px 10px;
  border-radius: 8px;
}

.staff_detail_image {
  margin-bottom: 40px;
  text-align: center;
  margin-top: 60px;
}

.staff_detail_image img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

.staff_detail_header {
  text-align: center;
  margin-bottom: 50px;
}

.staff_detail_badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--color-white);
  background-color: var(--color-light-purple);
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Schedule Box */
.staff-schedule-box {
    border: 1px solid #3296d7;
    padding: 30px 60px;
    border-radius: 5px;
    height: 100%;
}

.staff-schedule-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.staff-schedule-table {
    width: 100%;
}

.staff-schedule-table th {
    font-weight: 500;
    color: #3296d7;
    padding: 12px 12px 12px 0;
    /* border-bottom: 1px solid #E0E0E0; */
    vertical-align: top;
    width: 60px;
    text-align: left;
}

.staff-schedule-table td {
    color: var(--color-main-dark-blue);
    padding: 12px 0;
    /* border-bottom: 1px solid #E0E0E0; */
    vertical-align: top;
    font-size: 14px;
    line-height: 1.6;
}
.staff-schedule-table td span{
  font-weight: bold;
  font-size: 16px;

  }

.staff-schedule-table tr:last-child th,
.staff-schedule-table tr:last-child td {
    border-bottom: none;
}

.staff-info-box {
    background-color: #F5F5F5;
    /* padding: 30px; */
    border-radius: 5px;
    /* height: 100%; */
    padding: 60px 60px;
}

.staff-info-table {
    width: 100%;
}

.staff-info-table th {
    font-weight: 500;
    color: #3296d7;
    /* border-bottom: 1px solid #E0E0E0; */
    vertical-align: top;
    width: 6em;
}
.staff-info-table td {
  color: var(--color-main-dark-blue); 
}
.staff-info-table th{
    padding: 10px;
}
.staff-info-table td {
    padding: 10px 10px 10px 0;
}
.wline{
    position: relative;
    font-size: 16px !important;
    margin-top: 20px;
    color: #3296d7;
}
.wline span{
    background-color: #f5f5f5;
    padding-right: .5rem;
    z-index: 9999;
    position: relative;
}
.staff-schedule-table .wline span{
    background-color: #fff;
}
.wline::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #3296d7;
    display: inline;
    position: absolute;
    margin-top: 16px;
    right: 0;
}


/* Message Box */
.staff-message-box {
    background-color: #F5F5F5;
    padding: 30px;
    border-radius: 5px;
    margin-top: 20px;
}

.staff-message-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.staff-message-text {
    color: #666666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 0;
}

.staff_detail_name {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-text-primary);
  margin: 0;
}

.staff_info_box {
  background-color: var(--color-bg-off-white);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
}

.staff_info_table {
  width: 100%;
}

.staff_info_table tr {
  border-bottom: 1px solid var(--color-bg-lightest);
}

.staff_info_table tr:last-child {
  border-bottom: none;
}

.staff_info_table th {
  width: 30%;
  padding: 15px 0;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  vertical-align: top;
}

.staff_info_table td {
  padding: 15px 0;
  color: var(--color-text-primary);
  line-height: 1.8;
}

.staff_section_title {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-main-dark-blue);
}

.staff_section_content {
  color: var(--color-text-primary);
  line-height: 2;
}

.staff_section_content p {
  margin-bottom: 15px;
}


.recruit_banner a{
    transition: transform 0.3s ease;
}
.recruit_banner a:hover{
  /* opacity: 0.7; */
}

.recruit_banner_image {
  text-align: center;
}

.recruit_banner_image img {
  border-radius: 50%;
  max-width: 150px;
  height: auto;
}

.recruit_banner_title {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-white);
  margin: 0;
}

.staff_gallery {
  margin-top: 40px;
}

.staff_gallery .gallery_item {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--color-bg-lightest);
}

.staff_gallery .gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 採用情報ページ */
.recruit_intro {
  background-color: var(--color-white);
  padding: 60px;
  border-radius: 8px;
}

.recruit_intro_content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-primary);
  line-height: 2;
}

.recruit_intro_content p {
  margin-bottom: 20px;
}

/* WORK FLOW */
.workflow_grid {
  margin-top: 40px;
}

.workflow_item {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.workflow_image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.workflow_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow_content {
  padding: 25px 20px;
}

.workflow_title {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  margin-bottom: 15px;
  font-family: 'Lato', sans-serif;
  line-height: 1.4;
}

.workflow_text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Company Features */
.company_features {
  margin-top: 40px;
}

.feature_item {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--color-white);
  border-radius: 8px;
  height: 100%;
}

.feature_icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.feature_title {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  margin-bottom: 20px;
}

.feature_text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Entry Banner */
.entry_banner {
  background: var(--gradient-purple-blue);
  padding: 40px;
  border-radius: 8px;
}

.entry_banner_image {
  text-align: center;
}

.entry_banner_image img {
  border-radius: 50%;
  max-width: 200px;
  height: auto;
}

.entry_banner_title {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-white);
  margin: 0;
}

/* Job Description */
.job_description_box {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  height: 100%;
}

.job_title {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-main-dark-blue);
}

.job_table {
  width: 100%;
}

.job_table tr {
  border-bottom: 1px solid var(--color-bg-lightest);
}

.job_table tr:last-child {
  border-bottom: none;
}

.job_table th {
  width: 30%;
  padding: 20px 0;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  vertical-align: top;
  font-size: 14px;
}

.job_table td {
  padding: 20px 0;
  color: var(--color-text-primary);
  line-height: 1.8;
  font-size: 14px;
}

/* FAQ */
.faq_wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq_item {
  background-color: var(--color-white);
  padding: 30px 40px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq_question {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.faq_question::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--color-main-dark-blue);
}

.faq_answer {
  padding-left: 30px;
  color: var(--color-text-primary);
  line-height: 2;
}

.faq_answer p {
  margin: 0;
}

/* お問い合わせページ */
.contact_form_wrapper {
  background-color: var(--color-white);
  padding: 60px;
  border-radius: 8px;
}

.form_intro {
  /* max-width: 800px; */
  margin: 0 auto 50px;
  color: var(--color-main-dark-blue);
  line-height: 2;
}

.form_intro p {
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 15px;
}
.form_intro ul{
  padding-left: 1rem;
}
.form_intro ul li {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.75;
}
.form_intro ul li::marker{
  content: "※";
}

.contact_form {
  /* max-width: 800px; */
  margin: 0 auto;
}

.form_group {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 180px 1fr;
  place-items: baseline;
}

.recruit_form_wrapper .form_group {
  grid-template-columns: 220px 1fr;
}
  
.recruit_form_wrapper .section_subtitle,
.recruit_form_wrapper .section_title_wrapper .section_title,
.recruit_form_wrapper .form_label_text{
  color: #3296d7
}
.recruit_form_wrapper .form_required{
    background-color: #3296d7;
}

.form_label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.form_radio_label{
  color: var(--color-main-dark-blue) !important;
  
}
.form_label_text {
  font-weight: bold;
  color: var(--color-main-dark-blue);
  font-size: 16px;
}

.form_required {
    display: inline-block;
    padding: 2px 12px 3px;
    background-color: var(--color-main-dark-blue);
    color: var(--color-white);
    font-size: 11px;
    border-radius: 40px;
    font-weight: normal;
}

.form_optional {
  display: inline-block;
    padding: 2px 12px 3px;
  background-color: var(--color-badge-optional);
  color: var(--color-white);
  font-size: 11px;
    border-radius: 40px;
    font-weight: normal;
}

.form_control {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    color: var(--color-main-dark-blue);
    background-color: #f4f5f8;
    transition: all 0.3s ease;
}

.form_control:focus {
  outline: none;
  border-color: var(--color-main-dark-blue);
  background-color: var(--color-white);
}

.form_control_short {
  max-width: 300px;
}

.form_textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}

/* テキストエリアの行はラベルを上揃え */
.form_group:has(.form_textarea) {
  align-items: start;
}
.form_group:has(.form_textarea) .form_label {
  padding-top: 15px;
}

.form_checkbox_group {
  margin: 40px 0;
  text-align: center;
}

.form_checkbox_label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-main-dark-blue);
    cursor: pointer;
}

.form_checkbox_label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form_checkbox_label a {
  color: var(--color-main-dark-blue);
  text-decoration: underline;
}

/* Radio button styling */
.form_radio_group {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 10px;
}

.form_radio_label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--color-text-primary);
  cursor: pointer;
}

.form_radio_label input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-main-dark-blue);
}

.form_submit {
  text-align: center;
  margin-top: 40px;
}

.btn_submit {
  min-width: 300px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 69, 121, 0.3);
}

/* Contact Form 7 Styles */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  color: var(--color-main-dark-blue);
  background-color: #f4f5f8;
  transition: all 0.3s ease;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-main-dark-blue);
  background-color: var(--color-white);
}
.wpcf7 .form_control_short {
  max-width: 300px;
}
.wpcf7 textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}
/* CF7 チェックボックスグループ - 全リセット */
.wpcf7 .form_checkbox_group {
  margin: 40px 0 !important;
  display: block !important;
  grid-template-columns: unset !important;
  text-align: center !important;
  font-size: 14px !important;
  color: var(--color-main-dark-blue) !important;
}
.wpcf7 .form_checkbox_group > * {
  display: inline !important;
  vertical-align: middle !important;
}
.wpcf7 .form_checkbox_group .wpcf7-form-control-wrap {
  display: inline !important;
}
.wpcf7 .form_checkbox_group .wpcf7-acceptance {
  display: inline !important;
}
.wpcf7 .form_checkbox_group .wpcf7-list-item {
  display: inline !important;
  margin: 0 !important;
}
.wpcf7 .form_checkbox_group .wpcf7-list-item label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
}
.wpcf7 .form_checkbox_group .wpcf7-list-item-label {
  display: inline !important;
}
.wpcf7 .form_checkbox_group input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  cursor: pointer !important;
  margin: 0 5px 0 0 !important;
  flex-shrink: 0 !important;
  position: static !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.wpcf7 .form_checkbox_group a {
  color: var(--color-main-dark-blue) !important;
  text-decoration: underline !important;
}
/* Submit button wrapper */
.wpcf7 .form_submit {
  text-align: center !important;
  margin-top: 60px !important;
}
.wpcf7 .form_submit .wpcf7-form-control-wrap {
  display: inline-block !important;
}
.wpcf7 .btn_submit_wrapper {
  display: inline-flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background-color: var(--color-main-dark-blue) !important;
  border: 1px solid var(--color-main-dark-blue) !important;
  border-radius: 0 !important;
  padding: 0 20px 0 0 !important;
  position: relative !important;
  min-width: 300px !important;
  transition: all 0.3s ease !important;
}
.wpcf7 .btn_submit_wrapper::before {
  content: '' !important;
  border-bottom: 1px solid var(--color-white) !important;
  width: 7px !important;
  height: 1px !important;
  position: absolute !important;
  right: 10px !important;
  transform: rotate(45deg) !important;
  top: calc(50% - 2.5px) !important;
  transition: all 0.3s ease !important;
}
.wpcf7 .btn_submit_wrapper::after {
  content: '' !important;
  border-bottom: 1px solid var(--color-white) !important;
  width: 17px !important;
  height: 1px !important;
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transition: all 0.3s ease !important;
}
.wpcf7 .btn_submit_wrapper:hover {
  background-color: var(--color-white) !important;
  border-color: var(--color-main-dark-blue) !important;
}
.wpcf7 .btn_submit_wrapper:hover::before,
.wpcf7 .btn_submit_wrapper:hover::after {
  border-color: var(--color-main-dark-blue) !important;
}
.wpcf7 .btn_submit_wrapper:hover input[type="submit"] {
  color: var(--color-main-dark-blue) !important;
}
.wpcf7 input[type="submit"] {
  display: inline-block !important;
  min-width: 260px !important;
  padding: 20px 30px !important;
  background-color: transparent !important;
  color: var(--color-white) !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  font-weight: normal !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: left !important;
}
.wpcf7 input[type="submit"]:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
.wpcf7 .wpcf7-acceptance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.wpcf7 .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
}
.wpcf7 .wpcf7-response-output {
  margin: 20px 0;
  padding: 15px 20px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border-color: #28a745;
  color: #28a745;
}
.wpcf7 .wpcf7-validation-errors {
  border-color: #dc3545;
  color: #dc3545;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

/* プライバシーポリシーページ */
.privacy_wrapper {
  background-color: var(--color-white);
  padding: 60px;
  border-radius: 8px;
}

.privacy_intro {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-bg-lightest);
  color: var(--color-text-primary);
  line-height: 2;
}

.privacy_section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-bg-lightest);
}

.privacy_section:last-of-type {
  border-bottom: none;
}

.privacy_section_title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  margin-bottom: 20px;
}

.privacy_section_content {
  color: var(--color-text-primary);
  line-height: 2;
}

.privacy_section_content p {
  margin-bottom: 15px;
}

.privacy_list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.privacy_list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.privacy_list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--color-main-dark-blue);
  font-weight: bold;
  font-size: 18px;
}

.privacy_contact {
  margin-top: 30px;
  padding: 30px;
  background-color: var(--color-bg-off-white);
  border-radius: 8px;
}

.privacy_contact_company {
  font-weight: bold;
  font-size: 16px;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.privacy_contact_address,
.privacy_contact_tel {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 5px;
}

.privacy_back_btn {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-bg-lightest);
}

/* 記事詳細ページ */
.article_detail {
  background-color: var(--color-white);
  padding: 100px 180px;
  border-radius: 8px;
}

.article_header {
  margin-bottom: 40px;
}

.article_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.article_date {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-family: 'Lato', sans-serif;
  margin-right: 1rem;
}

.article_badge {
    display: inline-block;
    padding: 2px 12px 3px;
    font-size: 12px;
    color: var(--color-white);
    background-color: var(--color-light-purple);
    border-radius: 12px;
}

.article_badge.c-darkblue{
  color: #fff;
  background-color: var(--color-main-dark-blue);
  border-color:  var(--color-main-dark-blue);
}
.article_badge.c-white{
  color: var(--color-main-dark-blue);
  background-color: #fff;
  border:1px solid  var(--color-main-dark-blue);
}

.article_title {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  line-height: 1.6;
  margin: 70px 0 70px;
}

.article_content {
  margin-top: 40px;
}

.article_image {
  margin: auto 100px 80px;
}

.article_image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.article_lead {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-bg-lightest);
}
.outlinBox{
  background-color: #f4f5f8;
  padding: 30px 60px;
  margin: 50px 0;
}
.outlinBox dl {
    display: grid;
    gap: 20px;
    grid-template-columns: 5rem 1fr 5rem 1fr;
    margin: 0;
}
.outlinBox dl dt,
.outlinBox dl dd{
  color: var(--color-main-dark-blue);
  font-weight: normal;
  margin: 0;
}

.article_body {
  color: var(--color-text-primary);
  line-height: 2;
}

.article_body p {
  margin-bottom: 30px;
  color:var(--color-main-dark-blue);
}

.article_body h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-main-dark-blue);
  margin: 50px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-main-dark-blue);
}

.article_body ul {
  margin: 20px 0 30px;
  padding-left: 25px;
}

.article_body ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.article_image_inline {
  margin: 40px 0;
}
.article_image_inline.small {
  margin: 40px 150px;
}

.article_image_inline img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 記事ナビゲーション */
.article_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}

.article_nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 15px 30px;
  color: var(--color-white);
  background-color: var(--color-main-dark-blue);
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  gap: 10px;
}

.article_nav a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.article_nav_list {
  flex: 1;
  max-width: 200px;
}

.article_nav_icon {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
}
.page_works_detail .content_block,
.page_topics_detail .content_block {
    margin-bottom: 50px !important;
}

/* ページネーション */
.pagination_wrapper {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px;
  align-items: center;
}

.page-item {
  margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    color: #fff;
    background-color: transparent !important;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
}

.page-link img {
  width: 12px;
  height: auto;
}

.page-item.active .page-link{
  background-color:#93a0b6 !important;
}

.page-link:hover {
  background-color: var(--color-main-dark-blue);
  color: var(--color-white);
}

.page-item.active .page-link {
  background-color: var(--color-main-dark-blue);
  color: var(--color-white);
}

.page-item.disabled .page-link {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.page-item-prev .page-link,
.page-item-next .page-link {
  border-radius: 50%;
}
.page-item-prev{
  margin-right: 3rem;
}
.page-item-next{
  margin-left: 3rem;

}

/* ===========================
   ページ固有のスタイル
   =========================== */

/* わたしたちについてページ */
.page_contents .content_block,
.page_aboutus .content_block,
.page_privacy .content_block,
.page_recruit .content_block{
  background-color: var(--color-white);
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.page_recruit .content_block{
padding-bottom: 100px;
}
.page_contents .content_block{
    padding: 60px 60px 90px;
}
.page_contents_public .content_block{
  /* padding-top: 600px; */
  padding: 5px 5px 110px 5px;
}
.page_contents_residential .content_block{
  /* padding-top: 600px; */
  padding: 5px 5px 80px 5px;
  overflow: visible;
}

.content_block.w-full{
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    overflow: visible;
}
.content_block.w-full .photo_gallery {
    margin: 60px -40px;
}
.content_block.w-full .works_gallery_swiper {
    margin: 60px 0 0;
    position: relative;
}
.page_contents .content_block.w-full .works_gallery_swiper {
    margin: 0 0;
    position: relative;
}
.works_gallery_swiper .swiper {
    padding: 0;
    overflow: visible;
}
.works_gallery_swiper .swiper-slide {
    height: auto;
}
.works_gallery_swiper .swiper-button-prev,
.works_gallery_swiper .swiper-button-next {
    color: var(--color-main-dark-blue);
}
.works_gallery_swiper .swiper-button-prev {
    left: -50px;
}
.works_gallery_swiper .swiper-button-next {
    right: -50px;
}
.works_gallery_swiper .swiper-button-prev:after,
.works_gallery_swiper .swiper-button-next:after {
    font-size: 30px;
}

/* Works gallery swiper card styles */
.works_gallery_swiper .card-item {
  border-radius: 5px;
  box-shadow: none;
}
.works_gallery_swiper .card-link:hover .card-item {
  box-shadow: none;
}
.works_gallery_swiper .card-view {
  margin-top: auto;
}

/* Hide navigation buttons on PC (768px and above) */
@media (min-width: 768px) {
  .works_gallery_swiper .swiper-button-prev,
  .works_gallery_swiper .swiper-button-next {
    display: none;
  }
}


.section_image.concept_image{
    position: absolute;
    width: 50%;
    top: -5px;
    right: -5px;
    bottom: -5px;
    height: max-content;
}
.section_image.concept_image.public {
    position: absolute;
    width: 102%;
    top: -5px;
    right: -6px;
    bottom: -5px;
    left: -5px;
}
.section_image.concept_image img{
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
}
.section_image.img_ceo{
    width: 85%;
}
.content_img_bgger{
  MIN-HEIGHT: 550px;
}
.page_recruit .content_img_bgger{
  MIN-HEIGHT: 420px;
}
.content_public_text {
    z-index: 999;
    position: absolute;
    top: 5rem;
    left: 5rem;
    color: #fff;
    font-size: 16px;
    width: 50%;
}

.public_card_wrapper {
    background-color: #f4f5f8;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.public_cards_area{
  margin: 30px 0 20px;
}
.public_card_text_wrapper{
  margin: 0 55px;
  padding: 70px 0 60px;
}
.public_card_text_wrapper *{
  color: var(--color-main-dark-blue);
}
.public_card_text_wrapper .en {
  font-weight: 600;
  text-align: center;
  margin: 0 0 8px !important;
  padding: 0 !important;
  font-size: 15px;
}
.public_card_text_wrapper h3{
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.public_card_text_wrapper .text{
  font-size: 15px;
  margin-bottom: 0;
}
.public_card_img {
  margin-top: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.public_card_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.content_line {
    border-bottom: 1px solid #93a0b6;
    margin: 150px 0 100px;
}
.content_line2 {
    border-bottom: 1px solid #93a0b6;
    margin: 0px 0 100px;
}
.content_line3 {
    border-bottom: 1px solid #93a0b6;
    margin: 120px 0 120px;
}
.content_line4 {
    border-bottom: 1px solid #93a0b6;
    margin: 40px 0 50px;
}
.content_line5 {
    border-bottom: 1px solid #93a0b6;
    margin: 40px 0 50px;
}
.content_line6 {
    border-bottom: 1px solid #93a0b6;
    margin: 80px 0 50px;
}
.content_line7 {
    border-bottom: 1px solid #93a0b6;
    margin: 100px 0 100px;
}

.page_aboutus .photo_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 60px 0;
}

.page_aboutus .photo_grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.page_topics .card-content,
.page_works .card-content{
      padding: 30px 30px 20px;
}
.card-meta{
  margin-bottom: 22px;
}
.card-date,
.card-title,
.card-text{
  color:  var(--color-main-dark-blue);
}
.page_works .card-title {
    margin-bottom: 30px !important;
}
.page_works .card-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.page_works .card-view {
    margin-top: auto;
}
.card-meta.badge2 .card-badge {
    display: inline-block;
    padding: 2px 12px 3px;
    font-size: 11px;
    color: var( --color-main-dark-blue);
    background-color: #fff;
    border-radius: 12px;
    /* right: 0; */
    position: relative;
    border: 1px solid var(--color-main-dark-blue);
}

/* 新着情報詳細ページ */
.page_topics_detail .content_block > div {
}

/* 業務内容ページ */
.page_contents .content_block > div {
  /* background-color: var(--color-white); */
  /* padding: 60px; */
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

/* 施工実績詳細ページ */
.page_works_detail .content_block > div {
  /* background-color: var(--color-white); */
  /* padding: 60px; */
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

/* スタッフ詳細ページ */
.page_staff_detail .content_block > div {

}
.page_staff_detail .content_block.w-full{
  margin-bottom: 60px;
}
.page_staff_detail .content_block.w-full .photo_gallery{
    margin: 60px -60px;
}
.page_staff_detail .content_block{
  margin-bottom: 50px;
}

/* 採用情報ページ */
.page_recruit .content_block > div {
  /* background-color: var(--color-white); */
  /* padding: 60px; */
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}
.recruit_flow_card{
  background-color: #f4f5f8;
  border-radius: 5px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.recruit_card_img_wrapp{
  margin: 0;
  padding: 0
}
.recruit_card_img_wrapp img{
  width: 100%;
}
.recruit_card_body{
  padding: 30px 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.recruit_card_body .num,
.recruit_card_body h3{
  text-align: center;
  color: #3296d7;
}
.recruit_card_body .num{
  font-size: 30px;
  font-weight: normal;
}
.recruit_card_body h3{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 35px;
}

.recruit_card_body .card_text{
  font-size: 15px;
  color: var(--color-main-dark-blue);
  margin-bottom: 0;
}
.job_desc_title{
  margin-bottom: 0;
}

/* Align recruit flow cards */
.page_recruit .row.align-items-end.flow_cards {
  align-items: stretch !important;
}

.page_recruit .flow_cards .col-md-4 {
  display: flex;
}

.recruit_circle_card{
  /* background: #f00; */
  position: relative;
}
.recruit_circle_card::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #f5fafd;
    position: absolute;
    top: 0;
    left: calc( 50% - 125px );
    z-index: 0;
    border-radius: 500px;
    height: 250px;
    width: 250px;
}
.recruit_circle_card .card_text {
    z-index: 3;
    position: relative;
    padding: 80px 30px 30px;
    margin: 30px auto 30px;
    width: 220px;
    font-size: 15px;
    color: #3296d7;
    /* background: #f0f; */
    line-height: 1.5;
}


.job_descri_box div.wrapper{
  border-radius: 5px;
  padding: 60px 50px;
}

.job_descri_box .box-left > div.wrapper{
  background: #f4f5f8;
}
.job_descri_box .box-right > div.wrapper{
  background: #fff;
  border: 1px solid #98caeb;
}

.job_descri_box div.wrapper dl{
  display: grid;
  grid-template-columns: 90px 1fr;
  position: relative;
}
.job_descri_box div.wrapper dl::before {
    content: "";
    display: block;
    clear: both;
    border-bottom: 1px solid #3296d7;
    position: absolute;
    width: 90px;
    height: 1px;
    bottom: 0;
    z-index: 9;
}
.job_descri_box div.wrapper dl::after {
    content: "";
    display: block;
    clear: both;
    border-bottom: 1px solid #c4e1f3;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
}

.job_descri_box div.wrapper dl dt,
.job_descri_box div.wrapper dl dd {
    font-size: 15px;
    padding: 5px 0;
    margin-bottom: 16px;
}
.job_descri_box div.wrapper dl dt{
  font-weight: 500;
  color: #3296d7;
}
.job_descri_box div.wrapper dl dd{
  color: var(--color-main-dark-blue);
}

.job_descri_box div.wrapper dl.nbder::before,
.job_descri_box div.wrapper dl.nbder::after{
  display: none;
  margin-bottom: 50px;
}
.job_descri_box div.wrapper dl ul li::marker{
  color: #3296d7;
}

.page_recruit .section_subtitle,
.page_recruit .section_title_wrapper .section_title{
  color: #3296d7;

}
.recruit_circle_card::after {
    content: '';
    width: 70px;
    height: 70px;
    position: absolute;
    /* background: #ff0; */
    top: -10px;
    left: calc( 50% - 35px );
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.recruit_circle_card.circle_01::after {
    background-image: url(../img/recruit/icon_01.svg);
}
.recruit_circle_card.circle_02::after {
    background-image: url(../img/recruit/icon_02.svg);
}
.recruit_circle_card.circle_03::after {
    background-image: url(../img/recruit/icon_03.svg);
}
.recruit_circle_card.circle_04::after {
    background-image: url(../img/recruit/icon_04.svg);
}
.recruit_circle_card.circle_05::after {
    background-image: url(../img/recruit/icon_05.svg);
}
.recruit_circle_card.circle_06::after {
    background-image: url(../img/recruit/icon_06.svg);
}
.recruit_circle_card.circle_07::after {
    background-image: url(../img/recruit/icon_07.svg);
}

/* Recruit page staff card customization */
.page_recruit .staff_card {
  box-shadow: none;
}

.page_recruit .staff_card_image {
  border: none;
}

.page_recruit .staff_card_content {
  background-color: #f4f5f8;
}

/* Recruit FAQ Accordion */
.page_recruit .faq_intro_text {
  color: var(--color-main-dark-blue);
  font-size: 14px;
  margin-bottom: 20px;
  text-align: left;
}

.page_recruit .accordion {
  /* border-top: 1px solid #ddd; */
}

.page_recruit .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  margin-bottom: 0;
}

.page_recruit .accordion-button {
  background-color: transparent;
    color: #3296d7;
  font-weight: 400;
  font-size: 16px;
  padding: 50px 0;
  border: none;
  box-shadow: none;
  position: relative;
  padding-right: 60px;
}

.page_recruit .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #3296d7;
}

.page_recruit .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.page_recruit .accordion-button::after {
  content: '+';
  background-image: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3296d7;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.page_recruit .accordion-button:not(.collapsed)::after {
  content: '−';
  background-color: #a8bcd4;
  color: white;
}

.page_recruit .accordion-body {
    background-color: #f5f5f5;
    padding: 25px 50px;
    color: var(--color-main-dark-blue);
    line-height: 1.8;
    margin-bottom: 0;
    margin: 20px 0px 50px;
}

.page_recruit .faq_question_text {
  flex: 1;
  padding-right: 20px;
}

/* お問い合わせページ */
.page_contact .content_block > div {
  background-color: var(--color-white);
  padding: 140px 60px 110px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* プライバシーポリシーページ */
.page_privacy .content_block > div {
  /* background-color: var(--color-white); */
  /* padding: 60px; */
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}
.page_privacy ul li{
  font-size: 14px;
  margin-bottom:5px;
}
.page_privacy ul li::marker{
  color: #93a0b6;
  font-size: 14px;
}
.page_privacy dl dt,
.page_privacy dl dd{
  font-size: 14px;
  margin-bottom: 5px;
}
.page_privacy .honbun{
  margin-left: 1em;
}
/* 所有機器 */
.page_ownedmachinery .staff_description::after,
.page_ownedmachinery .staff_description::before{
  display: none !important;
}
.page_ownedmachinery .staff_description {
  position: relative;
  margin: 0 auto 0;
  overflow: visible;
  max-height: none;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
}
.page_ownedmachinery .staff_card {
  cursor: default;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page_ownedmachinery .staff_card_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: none;
  padding-top: 30px;
}
.page_ownedmachinery .staff_card:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.page_ownedmachinery .staff_card:hover .staff_card_image img {
  transform: none;
}
.page_ownedmachinery .staff_view {
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
    text-align: center;
    padding: 10px;
    background: var(--color-main-dark-blue);
    color: #fff;
    font-weight: normal;
}

.page_ownedmachinery .staff_view.staff_view--close{
  background-color: #93a0b6;
}
.page_ownedmachinery .staff_view:hover {
  opacity: 0.7;
}
.page_ownedmachinery .staff_view::before,
.page_ownedmachinery .staff_view::after {
  transition: transform 0.3s ease;
}
.page_ownedmachinery .staff_view::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    transform: rotate(0deg);
    border-radius: 50%;
    right: .75rem;
}
.page_ownedmachinery .staff_view::after {
    content: '＋';
    width: 20px;
    height: 20px;
    right: 12px;
    top: 9.25px;
    border: none;
}
.page_ownedmachinery .staff_view.staff_view--close::after {
    content: '−';
    width: 20px;
    height: 20px;
    right: 12px;
    top: 9.5px;
    border: none;
}
.page_ownedmachinery .staff_view:hover::before,
.page_ownedmachinery .staff_view:hover::after,
.page_ownedmachinery .staff_card:hover .staff_view::before,
.page_ownedmachinery .staff_card:hover .staff_view::after {
  transform: translateX(0px);
}
.page_ownedmachinery .staff_name{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
.staff_name{
  font-size: 20px;
}
.page_contents_residential .residential_wrap p.residential_lead{
  font-size: 13px;
  color: var(--color-main-dark-blue);
}
.page_contents_residential .residential_img_wrap{
  margin-right: -17px;
}
.page_contents_residential .residential_img_wrap img{
  width: 100%;
}
.page_contents_residential .residential_wrap {
    margin-top: 70px;
    margin-bottom: 60px;
}
.page_contents_residential .works_gallery_swiper .swiper {
    padding: 0;
    overflow: hidden;
}
.img_wrapper.job_descri img{
      height: 200px;
    width: auto;
    object-fit: unset;
    max-width: unset;
}
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .content_block {
    margin-bottom: 80px;
  }

  .section_title_wrapper .section_title {
    font-size: 28px;
  }

  .company_table {
    display: block;
  }

  .company_table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border: 1px solid var(--color-bg-lightest);
    border-radius: 8px;
    overflow: hidden;
  }

  .company_table th,
  .company_table td {
    width: 100%;
    display: block;
  }

  .company_table th {
    border-bottom: 1px solid var(--color-bg-lightest);
  }

  .history_item {
    gap: 20px;
  }

  .history_item::before {
    left: 70px;
  }

  .history_year {
    width: 60px;
    font-size: 16px;
  }

  .history_year::after {
    right: -14px;
  }

  .map_wrapper iframe {
    height: 300px;
  }

  .pagination {
    gap: 5px;
  }

  .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 14px;
  }

  /* Hero section responsive */
  .hero_lead {
    top: 60px;
    right: 20px;
  }

  .hero_lead_image {
    max-width: 200px;
  }

  .hero_logo .logo {
    width: 200px;
  }

}

/* ===========================
   Staff Pages - White Hamburger Menu
   =========================== */
.page_staff .hamburger-menu,
.page_staff_detail .hamburger-menu {
  border-color: var(--color-white);
}

.page_staff .hamburger-menu span,
.page_staff_detail .hamburger-menu span {
  background-color: var(--color-white);
}

.page_staff .hamburger-menu:hover,
.page_staff_detail .hamburger-menu:hover {
  border-color: var(--color-white);
}

.page_staff .hamburger-menu:hover span,
.page_staff_detail .hamburger-menu:hover span {
  background-color: var(--color-bg-lighter-gray);
}

/* ===========================
   Background Layers (for all pages except index)
   =========================== */
.bg-layers {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.bg-layer.active {
  opacity: 1;
}

/* SP: background-attachment fixed doesn't work on mobile */
@media (max-width: 767px) {
  .bg-layer {
    background-attachment: scroll;
  }
}

/* Footer background (common for all pages) */
.bg-layer-footer {
  background-image: var(--bg-image);
}

/* Default backgrounds for each page */
.page_aboutus .bg-layer-default {
  background-image: var(--bg-image);
  background-position: center -290px;
  background-color: #28416e;
}

.page_contents .bg-layer-default,
.page_contents_public .bg-layer-default {
  background-image: var(--bg-image);
  background-position: center;
  background-color: #28416e;
}

.page_works .bg-layer-default,
.page_works_detail .bg-layer-default {
  background-image: var(--bg-image);
  background-position: center;
  background-color: #28416e;
}

.page_staff .bg-layer-default,
.page_staff_detail .bg-layer-default {
  background-image: var(--bg-image);
  background-position: center;
  background-color: #28416e;
}

.page_topics .bg-layer-default,
.page_topics_detail .bg-layer-default {
  background-image: var(--bg-image);
  background-position: center;
  background-color: #28416e;
}

.page_ownedmachinery .bg-layer-default {
  background-image: var(--bg-image);
  background-position: center;
  background-color: #28416e;
}

.page_contents_residential .bg-layer-default {
  background-image: var(--bg-image);
  background-position: center;
  background-color: #28416e;
}

.page_recruit .bg-layer-default,
.page_entryform .bg-layer-default {
  background-image: var(--bg-image);
  background-position: center;
  background-color: #3296d7;
}

.page_contact .bg-layer-default,
.page_privacy .bg-layer-default {
  background-color: #28416e;
  background-position: center;
}

