@charset "UTF-8";

/* Google Fonts - Noto Sans JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* ============================================
   リセット・基本設定
============================================ */
*, *::before, *::after {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", "Noto Sans", sans-serif;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #333;
	background-color: #fff;
}
a {
	color: #044B89;
	text-decoration: none;
	transition: all 0.3s ease;
}
a:hover {
	color: #0667b3;
	text-decoration: underline;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: bold;
}
p {
	margin: 0;
}

/* ============================================
   ヘッダー
============================================ */
.header {
	background: #fff;
	height: 100px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-bottom: 4px solid #c9a227;
}
.headerInner {
	max-width: 1100px;
	height: 100%;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.header h1 {
	margin: 0;
}
.header h1 a {
	display: block;
}
.header h1 img {
	max-height: 60px;
	width: auto;
}
.headInfo {
	text-align: right;
	color: #333;
	line-height: 1.4;
}
.headInfo p {
	font-size: 1.2rem;
	margin-bottom: 2px;
	color: #044B89;
}
.headInfo .zip,
.headInfo .address {
	font-size: 1.1rem;
	margin-right: 8px;
	color: #555;
}
.headInfo .tel {
	font-size: 2.2rem;
	font-weight: bold;
	margin-top: 3px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	color: #044B89;
}
.headInfo .tel img {
	width: 22px;
	height: 22px;
}

/* ============================================
   グローバルナビゲーション
============================================ */
.global {
	background: #f8f8f8;
	border-bottom: 1px solid #e0e0e0;
}
.global ul {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.global ul li {
	flex: 1;
	text-align: center;
	border-right: 1px solid #e0e0e0;
}
.global ul li:first-child {
	border-left: 1px solid #e0e0e0;
}
.global ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px 10px;
	color: #333;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}
.global ul li a .nav-en {
	display: block;
	font-size: 1.0rem;
	font-weight: 400;
	color: #888;
	margin-top: 2px;
	letter-spacing: 0.05em;
}
.global ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: #2e7d32;
	transition: width 0.3s ease;
}
.global ul li a:hover {
	background: #fff;
	color: #2e7d32;
	text-decoration: none;
}
.global ul li a:hover .nav-en {
	color: #2e7d32;
}
.global ul li a:hover::after {
	width: 80%;
}
.global ul li.current a {
	background: #2e7d32;
	color: #fff;
}
.global ul li.current a .nav-en {
	color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   メインビジュアル・スライダー
============================================ */
.mainVisual {
	width: 100%;
	margin: 40px auto 0;
	position: relative;
	overflow: hidden;
}
.mainVisual .swiper.mv {
    text-align: center;
}



.mainVisual .bxslider li {
	position: relative;
	width: 100%;
	/*padding-top: 40%;*/
}
/*.mainVisual img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}*/
/* スライドテキスト */
.slideText {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 10;
	width: 90%;
	max-width: 900px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.slideText .mainCopy {
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 15px;
	letter-spacing: 0.05em;
}
.slideText .subCopy {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.02em;
	opacity: 0.95;
}
/* 画像を少し暗くしてテキストを読みやすく 
.mainVisual .bxslider li::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 5;
}*/
/* bxSlider カスタマイズ */
.bx-wrapper {
	margin: 0 auto;
	box-shadow: none;
	border: none;
	background: transparent;
}
.bx-wrapper .bx-viewport {
	box-shadow: none;
}
.mainVisual .bx-wrapper img {
    margin: 0 auto;
}

/* ============================================
   ラッパー
============================================ */
.wrapper {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}
.bx-wrapper .bx-pager {
	bottom: 15px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
	background: rgba(255, 255, 255, 0.5);
	width: 12px;
	height: 12px;
}
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:hover {
	background: #044B89;
}

/* ============================================
   
============================================ */
.mb-1 {
    margin-bottom: 1em;
}

/* ============================================
   業務内容セクション
============================================ */
.sectionList {
	margin: 40px 0;
	text-align: center;
}
.sectionList > h1 {
	font-size: 2.8rem;
	color: #044B89;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 15px;
}
.sectionList > h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #044B89;
}
.sectionList ul {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}
.sectionList ul li {
	flex: 1;
	min-width: 280px;
	background: #fff;
	border-radius: 8px;
	padding: 30px 25px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #e8e8e8;
}
.sectionList ul li:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(4, 75, 137, 0.15);
}
.sectionList ul li h2 {
	font-size: 2rem;
	color: #044B89;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #044B89;
}
.sectionList .sectionInfo {
	font-size: 1.4rem;
	text-align: left;
	color: #555;
	margin-bottom: 20px;
	line-height: 1.9;
}
.sectionList ul li a img {
	transition: opacity 0.3s ease;
}
.sectionList ul li a:hover img {
	opacity: 0.8;
}

/* ============================================
   コンテンツエリア
============================================ */
.content {
	margin: 40px 0;
}
.totalsupport {
	text-align: center;
	margin-bottom: 40px;
}
.totalsupport a {
	display: inline-block;
	transition: transform 0.3s ease;
}
.totalsupport a:hover {
	transform: scale(1.02);
}
.welcome {
	text-align: center;
	margin: 40px 0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* ============================================
   新着情報・ニュース
============================================ */
.newsContent {
	margin: 50px 0;
}
.sectionNews {
	background: #fff;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border: 1px solid #e8e8e8;
}
.sectionNews h2 {
	text-align: center;
	margin-bottom: 25px;
}
.sectionNews h2 img {
	max-height: 40px;
}
.entryList ul {
	border-top: 1px solid #ddd;
}
.entryList ul li {
	border-bottom: 1px solid #ddd;
}
.entryList ul li dl {
	display: flex;
	align-items: center;
	padding: 15px 10px;
	margin: 0;
	transition: background 0.3s ease;
}
.entryList ul li dl:hover {
	background: rgba(4, 75, 137, 0.05);
}
.entryList ul li dl dt {
	font-size: 1.4rem;
	color: #666;
	min-width: 130px;
	padding-right: 20px;
}
.entryList ul li dl dd {
	margin: 0;
	font-size: 1.5rem;
}
.entryList ul li dl dd a {
	color: #333;
}
.entryList ul li dl dd a:hover {
	color: #044B89;
}
.toArchive {
	text-align: center;
	margin-top: 25px;
}
.toArchive a img {
	transition: opacity 0.3s ease;
}
.toArchive a:hover img {
	opacity: 0.8;
}

/* ============================================
   トップバナー
============================================ */
.topBanner {
	margin: 50px 0;
}
.topBanner ul {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.topBanner ul li {
	flex: 1;
	min-width: 280px;
}
.topBanner ul li a {
	display: block;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.topBanner ul li a:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(4, 75, 137, 0.2);
}
.topBanner ul li a img {
	width: 100%;
	height: auto;
}

/* ============================================
   ページトップボタン
============================================ */
.totop {
	background: #f5f5f5;
	padding: 20px 0;
	text-align: center;
}
.pagetopInner a {
	display: inline-block;
	transition: opacity 0.3s ease;
}
.pagetopInner a:hover {
	opacity: 0.7;
}

/* ============================================
   フッター
============================================ */
.footer {
	background: #fff;
	color: #333;
	padding-top: 0;
	border-top: 4px solid #c9a227;
}
.footNav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 30px;
	padding: 20px 20px 20px;
	border-bottom: 1px solid #e0e0e0;
	max-width: 1100px;
	margin: 0 auto;
	background: #044B89;
}
.footNav li a {
	color: #fff;
	font-size: 1.4rem;
}
.footNav li a:hover {
	color: #c9a227;
	text-decoration: none;
}
.footInfo {
	max-width: 1100px;
	margin: 0 auto;
	padding: 30px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}
.footCompany {
	text-align: left;
}
.footCompany .ci {
	margin-bottom: 15px;
	font-size: 2rem;
	font-weight: bold;
}
.footCompany .ci img {
	max-width: 250px;
}
.footaddress {
	font-size: 1.4rem;
	color: #555;
	margin-bottom: 5px;
}
.foottel {
	font-size: 1.4rem;
	color: #555;
}
.footContact {
	text-align: center;
}
.footContact p {
	font-size: 1.4rem;
	margin-bottom: 15px;
	color: #555;
}
.footContact a {
	display: inline-block;
	background: #c9a227;
	color: #fff;
	padding: 12px 30px;
	border-radius: 5px;
	font-weight: bold;
	transition: all 0.3s ease;
}
.footContact a:hover {
	background: #b8911f;
	text-decoration: none;
	transform: translateY(-2px);
}
.footerCopy {
	background: #044B89;
	padding: 15px 20px;
	text-align: center;
}
.footerCopy p {
	font-size: 1.2rem;
	color: #fff;
}

/* ============================================
   ページヘッダー
============================================ */
.pageHeader {
	background: linear-gradient(135deg, #044B89 0%, #0a6bb8 100%);
	padding: 50px 20px;
	text-align: center;
	color: #fff;
	border-bottom: 4px solid #c9a227;
}
.pageTitle {
	font-size: 3.2rem;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 0.1em;
}
.pageTitle-en {
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.15em;
	opacity: 0.8;
}

/* ============================================
   パンくずリスト
============================================ */
.breadcrumb {
	background: #f5f5f5;
	border-bottom: 1px solid #e0e0e0;
}
.breadcrumbInner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 12px 20px;
}
.breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.breadcrumb ul li {
	font-size: 1.3rem;
	color: #666;
}
.breadcrumb ul li:not(:last-child)::after {
	content: '>';
	margin-left: 8px;
	color: #999;
}
.breadcrumb ul li a {
	color: #044B89;
	text-decoration: none;
}
.breadcrumb ul li a:hover {
	text-decoration: underline;
}

/* ============================================
   2カラムレイアウト
============================================ */
.twoColumn {
	display: flex;
	gap: 40px;
	padding: 40px 0;
}
.mainContent {
	flex: 1;
	min-width: 0;
}
.sidebar {
	width: 280px;
	flex-shrink: 0;
}
/* サイドバー */
.sidebarBox {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	margin-bottom: 25px;
	overflow: hidden;
}
.sidebarTitle {
	background: #044B89;
	color: #fff;
	padding: 12px 15px;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
	border-left: 4px solid #c9a227;
}
.sidebarMenu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebarMenu li {
	border-bottom: 1px solid #e0e0e0;
}
.sidebarMenu li:last-child {
	border-bottom: none;
}
.sidebarMenu li a {
	display: block;
	padding: 12px 15px;
	color: #333;
	text-decoration: none;
	font-size: 1.4rem;
	transition: all 0.3s ease;
}
.sidebarMenu li a:hover {
	background: #f5f5f5;
	color: #044B89;
	padding-left: 20px;
}
.sidebarContact {
	padding: 15px;
}
.sidebarTel {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #044B89;
	margin-bottom: 10px;
}
.sidebarAddress {
	font-size: 1.3rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
}
.sidebarBtn {
	display: block;
	background: #c9a227;
	color: #fff;
	text-align: center;
	padding: 12px 15px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 500;
	transition: all 0.3s ease;
}
.sidebarBtn:hover {
	background: #b8911f;
	color: #fff;
	text-decoration: none;
}

/* ============================================
   会社概要ページ
============================================ */
.companySection {
	margin-bottom: 50px;
}
.companyTable {
	margin: 0;
}
.companyTable table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}
.companyTable table th,
.companyTable table td {
	padding: 18px 20px;
	border-bottom: 1px solid #e0e0e0;
	text-align: left;
	vertical-align: top;
	font-size: 1.5rem;
	line-height: 1.7;
}
.companyTable table th {
	width: 180px;
	background: #f8f9fa;
	color: #044B89;
	font-weight: 600;
	border-right: 3px solid #044B89;
}
.companyTable table td {
	color: #444;
}
.companyTable table tr:last-child th,
.companyTable table tr:last-child td {
	border-bottom: none;
}
/* 写真ギャラリー */
.companyGallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}
.galleryItem {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.galleryItem img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.galleryItem:hover img {
	transform: scale(1.05);
}
/* 沿革 */
.historyList {
	position: relative;
	padding-left: 20px;
	border-left: 3px solid #044B89;
}
.historyItem {
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 15px 0;
	border-bottom: 1px dotted #ddd;
	position: relative;
}
.historyItem:last-child {
	border-bottom: none;
}
.historyItem::before {
	content: '';
	position: absolute;
	left: -26px;
	top: 22px;
	width: 10px;
	height: 10px;
	background: #044B89;
	border-radius: 50%;
}
.historyItem dt {
	min-width: 120px;
	font-weight: 600;
	color: #044B89;
	font-size: 1.5rem;
}
.historyItem dd {
	margin: 0;
	color: #444;
	font-size: 1.5rem;
	line-height: 1.7;
}
.swiper.swiper-company-main {
    margin: 0 0 1em;
    background: #f8f9fa;
    text-align: center;
}
.swiper.swiper-company-main .swiper-button-prev,
.swiper.swiper-company-main .swiper-button-next {
    background: #044B89;
    color: #fff;
    aspect-ratio: 1;
    width: 3em;
    height: auto;
	display: grid;
    place-items: center;
    box-sizing: border-box;
}
.swiper.swiper-company-main .swiper-button-prev {
    left: 0;
}
.swiper.swiper-company-main .swiper-button-next {
    right: 0;
}
.swiper.swiper-company-main .swiper-button-next:after,
.swiper.swiper-company-main .swiper-button-prev:after {
    font-size: 2.0rem;
}
.swiper.swiper-company-main .swiper-pagination-bullet {
    background: #fff;
}
.swiper.swiper-company-main .swiper-pagination-bullet-active {
    background: #044B89;
}
.swiper.swiper-company-thumb .swiper-slide {
    background: #000;
    cursor: pointer;
}
.swiper.swiper-company-thumb .swiper-slide img {
    opacity: .5;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.swiper.swiper-company-thumb .swiper-slide.swiper-slide-thumb-active img {
    opacity: 1;
}
.companyTable.history table tbody tr th {
    color: #fff;
    border-bottom: none;
}
@media screen and (max-width: 768px) {
	.swiper.swiper-company-main .swiper-button-prev,
	.swiper.swiper-company-main .swiper-button-next {
	    width: 2.5em;
	}
}


/* ============================================
   業務内容ページ
============================================ */
.businessSection {
	margin-bottom: 50px;
}
.businessList {
	margin: 0;
}
.businessList h4 {
	margin: 1em 0 0;
	display: block;
}
.businessList ul li {
	padding: 12px 0;
	font-size: 1.5rem;
	color: #444;
	line-height: 1.6;
	border-bottom: 1px dotted #ddd;
	padding-left: 20px;
	position: relative;
}
.businessList ul li::before {
	content: '・';
	position: absolute;
	left: 0;
	color: #044B89;
	font-weight: bold;
}
.businessList ul li:last-child {
	border-bottom: none;
}
.businessTable table {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-collapse: collapse;
}
.businessTable table :is(th, td) {
    padding: .5em;
    border: 1px solid #e0e0e0;
}
.businessTable table thead th {
    color: #fff;
    background: #044B89;
}
.businessTable table tbody :is(th[colspan], th[rowspan]) {
    color: #fff;
    background: #0a6bb8;
}
.businessTable table tbody th {
    color: #044B89;
	background: #f8f9fa;
}
.businessList2 ul {
    padding: 0 0 0 1.5em;
    list-style: disc;
}
@media screen and (max-width: 768px) {
	.businessTable {
	    overflow-x: scroll;
	}
	.businessTable table {
	    width: max-content;
	}
	.businessTable table :is(th, td) {
	    font-size: 13px;
	}
}

/* ============================================
   実績ページ
============================================ */
.performanceSection {
	margin-bottom: 50px;
}
.sectionTitle {
	font-size: 2.2rem;
	font-weight: 700;
	color: #044B89;
	padding-bottom: 12px;
	margin-bottom: 25px;
	border-bottom: 3px solid #044B89;
	position: relative;
}
.sectionTitle::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100px;
	height: 3px;
	background: #c9a227;
	}
	.sectionTitle2 {
	margin: 1em 0;
	padding: .5em 1em;
	background: #f8f9fa;
	border-left: .5em solid #044b89;
}
.performanceList {
	margin: 0;
}
.performanceItem {
	margin: 0;
}
.performanceItem ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.performanceItem ul li {
	padding: 12px 0;
	font-size: 1.5rem;
	color: #444;
	line-height: 1.6;
	border-bottom: 1px dotted #ddd;
	padding-left: 20px;
	position: relative;
}
.performanceItem ul li:last-child {
	border-bottom: none;
}
.performanceItem ul li::before {
	content: '・';
	position: absolute;
	left: 0;
	color: #044B89;
	font-weight: bold;
}
.industryList ul {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.industryList ul li {
	background: #044B89;
	color: #fff;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 1.4rem;
}

/* ============================================
   代表挨拶
============================================ */
.greetingSection {
	margin-bottom: 50px;
}
.greetingContent {
    overflow: hidden;
}
.greetingPhoto {
    margin: 0 2em .5em 0;
    float: left;
}
.greetingPhoto .photoCaption {
    text-align: center;
    background: #f8f9fa;
    font-weight: 500;
    padding: .5em;
}
.greetingText .greetingTitle {
    margin: 0 0 .5em;
}
.greetingText .greetingSign {
    margin: .5em 0 0;
    text-align: right;
}
.profileTable {
	margin: 0;
}
.profileTable table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}
.profileTable table th,
.profileTable table td {
	padding: 18px 20px;
	border-bottom: 1px solid #e0e0e0;
	text-align: left;
	vertical-align: top;
	font-size: 1.5rem;
	line-height: 1.7;
}
.profileTable table th {
	width: 180px;
	background: #f8f9fa;
	color: #044B89;
	font-weight: 600;
	border-right: 3px solid #044B89;
}
.profileTable.history table tbody tr th {
    color: #fff;
    border-bottom: none;
}
.profileTable table td {
	color: #444;
}
.profileTable table tr:last-child th,
.profileTable table tr:last-child td {
	border-bottom: none;
}
@media screen and (max-width: 768px) {
	.greetingPhoto {
	    float: none;
	    margin: 0 auto 1.5em;
	    width: fit-content;
	}
	.profileTable table,
	.profileTable table tbody,
	.profileTable table tr,
	.profileTable table th,
	.profileTable table td {
		display: block;
		width: 100%;
	}
	.profileTable table th {
		background: #044B89;
		color: #fff;
		border-right: none;
		border-bottom: none;
		padding: 12px 15px;
		font-size: 1.4rem;
	}
	.profileTable table td {
		padding: 15px;
		font-size: 1.4rem;
		border-bottom: 1px solid #e0e0e0;
	}
	.profileTable table tr:last-child td {
		border-bottom: none;
	}
}

/* ============================================
   アクセスページ
============================================ */
.accessSection {
	margin-bottom: 50px;
}
.accessTable {
	margin: 0;
}
.accessTable table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}
.accessTable table th,
.accessTable table td {
	padding: 18px 20px;
	border-bottom: 1px solid #e0e0e0;
	text-align: left;
	vertical-align: top;
	font-size: 1.5rem;
	line-height: 1.7;
}
.accessTable table th {
	width: 180px;
	background: #f8f9fa;
	color: #044B89;
	font-weight: 600;
	border-right: 3px solid #044B89;
}
.accessTable table td {
	color: #444;
}
.accessTable table tr:last-child th,
.accessTable table tr:last-child td {
	border-bottom: none;
}
@media screen and (max-width: 768px) {
	.accessTable table,
	.accessTable table tbody,
	.accessTable table tr,
	.accessTable table th,
	.accessTable table td {
		display: block;
		width: 100%;
	}
	.accessTable table th {
		background: #044B89;
		color: #fff;
		border-right: none;
		border-bottom: none;
		padding: 12px 15px;
		font-size: 1.4rem;
	}
	.accessTable table td {
		padding: 15px;
		font-size: 1.4rem;
		border-bottom: 1px solid #e0e0e0;
	}
	.accessTable table tr:last-child td {
		border-bottom: none;
	}
}

/* ============================================
   お問い合わせ
============================================ */
.contactSection {
	margin-bottom: 50px;
}
.contactSection .formNote {
    margin: 0 0 1em;
}
.contactSection .required {
    color: #ca3636;
}
.formItem {
    margin: 0;
    display: flex;
}
.formItem :is(dt, dd) {
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
}
.formItem dt {
    width: 180px;
    background: #f8f9fa;
    color: #044B89;
    font-weight: 600;
    border-right: 3px solid #044B89;
    flex-shrink: 0;
}
.formItem dd {
    width: 100%;
    margin: 0;
}
.formItem dd :is(input, select) {
    width: 100%;
    height: 45px;
    padding: 0 1em;
}
.formItem dd textarea {
    width: 100%;
    height: auto;
    min-height: 200px;
    padding: 1em;
}
.formPrivacy {
    margin: 2em 0 1em;
    text-align: center;
}
.formPrivacy a {
    text-decoration: underline;
}
.formSubmit button {
    border: none;
    color: #fff;
    background: #2e7d32;
    width: 100%;
    max-width: 200px;
    height: 45px;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: .3em;
    margin: 0 auto;
    display: grid;
    place-items: center;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
	.formItem {
	    flex-direction: column;
	}
	.formItem dt {
	    width: 100%;
	    background: #044B89;
	    color: #fff;
	    border-right: none;
	    border-bottom: none;
	    padding: 12px 15px;
	    font-size: 1.4rem;
	}
	.formItem dd {
	    padding: 15px 0;
	    font-size: 1.4rem;
	    border-bottom: 1px solid #e0e0e0;
	}
}

/* ============================================
   プライバシーポリシー
============================================ */
.privacySection {
	margin-bottom: 50px;
}

/* ============================================
   ハンバーガーメニュー
============================================ */
.hamburger {
  display: none;
  width: 40px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #044B89;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ハンバーガーメニュー開いた時 */
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* PC表示時は閉じるボタン非表示 */
.navClose {
  display: none;
}

/* ============================================
   レスポンシブ対応
============================================ */
@media screen and (max-width: 768px) {
  /* ヘッダー */
  .header {
    height: auto;
    padding: 10px 0;
  }

  .headerInner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .header h1 img {
    max-height: 45px;
  }

  .headInfo {
    display: none;
  }

  /* ハンバーガーメニュー表示 */
  .hamburger {
    display: block;
  }

  /* グローバルナビ */
  .global {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #044B89;
    z-index: 1000;
    transition: right 0.3s ease;
    padding-top: 70px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .global.active {
    right: 0;
  }

  /* 閉じるボタン */
  .navClose {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: none;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .navClose:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .global ul {
    flex-direction: column;
  }

  .global ul li {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .global ul li:first-child {
    border-left: none;
  }

  .global ul li a {
    padding: 18px 25px;
    font-size: 1.6rem;
    text-align: left;
  }

  .global ul li a::after {
    display: none;
  }

  /* オーバーレイ */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .overlay.active {
    display: block;
  }

  /* ページヘッダー */
  .pageHeader {
    padding: 35px 15px;
  }

  .pageTitle {
    font-size: 2.4rem;
  }

  .pageTitle-en {
    font-size: 1.2rem;
  }

  /* 2カラム → 1カラム */
  .twoColumn {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }

  .sidebar {
    width: 100%;
  }

  /* 会社概要ページ */
  .companyTable table,
  .companyTable table tbody,
  .companyTable table tr,
  .companyTable table th,
  .companyTable table td {
    display: block;
    width: 100%;
  }

  .companyTable table th {
    background: #044B89;
    color: #fff;
    border-right: none;
    border-bottom: none;
    padding: 12px 15px;
    font-size: 1.4rem;
  }

  .companyTable table td {
    padding: 15px;
    font-size: 1.4rem;
    border-bottom: 1px solid #e0e0e0;
  }

  .companyTable table tr:last-child td {
    border-bottom: none;
  }

  /* 写真ギャラリー */
  .companyGallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .galleryItem img {
    height: 120px;
  }

  /* 沿革 */
  .historyItem {
    flex-direction: column;
    gap: 5px;
    padding-left: 15px;
  }

  .historyItem::before {
    left: -21px;
    top: 20px;
    width: 8px;
    height: 8px;
  }

  .historyItem dt {
    font-size: 1.4rem;
    min-width: auto;
  }

  .historyItem dd {
    font-size: 1.4rem;
  }

  /* 実績ページ */
  .sectionTitle {
    font-size: 1.9rem;
  }

  .performanceItem ul li {
    font-size: 1.4rem;
    padding: 10px 0 10px 18px;
  }

  .industryList ul li {
    font-size: 1.3rem;
    padding: 6px 15px;
  }

  /* メインビジュアル */
  .mainVisual .bxslider li {
    padding-top: 50%; /* スマホでは50%の高さ = 2:1の比率 */
  }

  .slideText .mainCopy {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }

  .slideText .subCopy {
    font-size: 1.3rem;
  }

  /* ラッパー */
  .wrapper {
    padding: 0 15px;
  }

  /* セクションリスト */
  .sectionList > h1 {
    font-size: 2rem;
  }

  .sectionList ul {
    flex-direction: column;
    gap: 20px;
  }

  .sectionList ul li {
    min-width: auto;
    padding: 20px;
  }

  /* コンテンツ */
  .content {
    margin: 30px 0;
  }

  .totalsupport {
    margin-bottom: 30px;
  }

  .welcome {
    margin: 30px 0;
  }

  /* ニュース */
  .newsContent {
    margin: 30px 0;
  }

  .sectionNews {
    padding: 20px 15px;
  }

  /* バナー */
  .topBanner {
    margin: 30px 0;
  }

  .topBanner ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .topBanner ul li {
    min-width: auto;
    width: 90%;
  }

  .topBanner ul li img {
    width: 100%;
    height: auto;
  }

  /* フッター */
  .footNav {
    gap: 8px 15px;
    padding: 15px 15px;
  }

  .footNav li a {
    font-size: 1.2rem;
  }

  .footInfo {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    gap: 20px;
  }

  .footCompany {
    text-align: center;
  }

  .footCompany .ci img {
    max-width: 200px;
  }

  .footContact a {
    padding: 10px 20px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 56.25%;
  }

  .header h1 img {
    max-height: 35px;
  }
	.mainVisual {
	    margin: 0;
	}
  .mainVisual .bxslider li {
    padding-top: 0; /* 超小型スマホでは16:9の比率 */
  }

  .slideText .mainCopy {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .slideText .subCopy {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .sectionList > h1 {
    font-size: 1.8rem;
  }

  .sectionList ul li h2 {
    font-size: 1.7rem;
  }

  .sectionList .sectionInfo {
    font-size: 1.3rem;
  }

  .entryList ul li dl {
    flex-direction: column;
    align-items: flex-start;
  }

  .entryList ul li dl dt {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }

  .entryList ul li dl dd {
    font-size: 1.4rem;
  }

  .footNav {
    flex-direction: column;
    gap: 10px;
  }
}
