/* =========================================================

reset style

=========================================================== */



html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
display: block;
}
body {
line-height: 1;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
table, caption, tr, th, td,tbody, tfoot, thead {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
}


/* =========================================================

style

=========================================================== */


*,
*::after,
*::before {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
html,
body {
    height: 100%;
}
body {
    font-size: 15px;
    font-size: 1.5rem;
    font-family: "Helvetica Neue", Arial, 'Noto Sans JP',"Hiragino Kaku Gothic ProN","Hiragino Sans", Meiryo, sans-serif;
    color: #444;
    line-height: 1.6em;
}
body#top {
	
}
div::-webkit-scrollbar {
    width: 10px;
    height: auto;
}
div::-webkit-scrollbar-track {
    background: #ccc;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
div::-webkit-scrollbar-thumb {
    background: #ddd;
}

a {
    color: #333;  /* 黒に変更 */
    text-decoration: none;
    transition: all 0.25s;
}
a:hover {
    opacity: 0.6;
}
img {
    max-width: 100%;
    vertical-align: top;
    margin: 0;
    padding: 0;
}
input {
    font-size: 15px;
    font-size: 1.5rem;
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
.font-min {
    font-family: '游明朝', 'Yu Mincho', 'YuMincho', "Hiragino Mincho ProN", 'HGS明朝', serif;
}
.row {
    display: flex;
    justify-content: space-between;
}
body.fixed {
	position: fixed;
	width: 100% !important;
}
/* =========================================================

Header

=========================================================== */
#header {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    margin: 0 auto;
    padding: 0 35px 12px;  
    line-height: 1;
    box-sizing: border-box;
    z-index: 999;
    color: #FFF;
}
#header .row {
	width: calc(100% - 80px);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header #logo {
    float: left;
    width: 550px;
    margin: 5px 0 0;  /* 既存 */
    padding-top: 10px;  /* 追加：ロゴを少し下げる */
}

#header #logo a {
    display: flex;
    justify-content: flex-start;
}
#logo .logomark {
	width: 125px;
	margin-right: 8px;
}
#logo .logomark img,
#logo h1.logo-txt img {
	width: 100%;
}
#logo h1.logo-txt {
	width: 310px;
	padding: 3px 0 0;
}
#logo h1.logo-txt span{
	font-size: 10px;
	display: block;
	margin-top: 4px;
	padding: 0 0 0 3px;
	color: #333;
	letter-spacing: 0.07em;
}
#contact-telnum {
	background: url('images/icon-tel.png') no-repeat left center;
	background-size: 25px auto;
	font-size: 30px;
	padding-left: 36px;
	flex: none;
}

/* transition */
#header,
#header:after,
#header #logo {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
/* Fixed */

#header.fixed #logo {
	width: 220px;
}
 
#header.fixed:after {
    width: 100%;
    margin-top: 20px;
}
#header.fixed .button_container {
    top: 25px;
}
#header.fixed .button_container span {
    background: #222;
}
#header.fixed .button_container p.toggletxt {
    color: #222;
}
#header.fixed .button_container.active .top {
    background: #FFF;
}
#header.fixed .button_container.active .middle {
    opacity: 0;
    background: #FFF;
}
#header.fixed .button_container.active .bottom {
    background: #FFF;
}
#header.fixed .button_container.active p.toggletxt {
    color: #FFF;
}
#page #header {
    border-bottom:solid 1px #cbcbcb;
    padding: 30px 35px 30px;
}

/* navigation

================================== */

#global-nav {
	position: fixed;
	z-index: 999;
}
#toggle {
    position: fixed;
    z-index: 100;
    top:0;
    right: 0; 	
}
.button_container {
    display: block;
    top: 0;
    right: 0;
    cursor: pointer;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    text-align: center;
    width: auto !important;  /* ← 130px から auto に変更 */
    min-width: 70px;  /* ← 最小幅を追加 */
    padding: 42px 45px;
    box-sizing: border-box;
    background: rgba(42, 42, 42, 0.9);
}
}
.button_container:hover {
    opacity: .7;
}
.button_container.fixed {
    background: rgba(42, 42, 42, 0.9);  /* 黒に変更 */
}
.button_container.active .top {
    -webkit-transform: translateY(6px) translateX(0) rotate(45deg);
    transform: translateY(6px) translateX(0) rotate(45deg);
    background: #FFF;
}
.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}
.button_container.active .bottom {
    -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
    transform: translateY(-9px) translateX(0) rotate(-45deg);
    background: #FFF;
}
.button_container span {
    background: #FFF;
    border: none;
    height: 2px;
    width: 40px;
    top:40px;
    right:45px;
    position: absolute;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    cursor: pointer;
}
.button_container.page-toggle .top,
.button_container.page-toggle .middle,
.button_container.page-toggle .bottom,
.button_container.page-toggle span {
	background: #222 !important;
}
.button_container.page-toggle p.toggletxt {
    color: #222;
}

.button_container span:nth-of-type(2) {
    top: 47px;
}
.button_container span:nth-of-type(3) {
    top: 55px;
}
.button_container p.toggletxt {
    margin-top: 22px;
    border: none;
    font-size: 12px;
    color: #FFF;
    letter-spacing: 0.1em;
}
#page .button_container .top,
#page .button_container .middle,
#page .button_container .bottom {
    background: #222;
}
#page .button_container p.toggletxt {
    color: #222;
}
.overlay {
    position: fixed;
    background: #FFD700;  /* 黄色に変更 */
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
    z-index: 99;
}
.overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.overlay nav {
    position: relative;
    height: 70%;
    top: 30%;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
    text-align: center;
}
.overlay ul {
	width: 100%;
	max-width: 900px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
}
.overlay ul li {
	width: 24%;
	margin: 12px 0;
	box-sizing: border-box;
}
.overlay ul li a {
    display: block;
    color: #333;  /* 黒文字に変更 */
    text-decoration: none;
    font-size: 16px;
	border:solid 1px #333;
	box-sizing: border-box;
	padding: 5px 5px 15px;
}
.overlay ul li a img {
	width: 100%;
	margin-bottom: 15px;
}
.overlay ul li a:hover {
    opacity: 0.8;
}
.overlay ul li.home {
	display: none;
}
.overlay .clinicinfo {
	display: block;
	margin: 30px auto 15px;
}
.overlay .clinicinfo dl {
	width: 100%;
	color: #333;  /* 黒文字に変更 */
}
.overlay .clinicinfo dt {
	text-align: center;
	margin-bottom: 15px;
}
.overlay .clinicinfo dt img {
	width: 70%;
	max-width: 240px;
	margin: 0 auto;
}
.overlay .clinicinfo dd {
	font-size: 28px;
	margin: 10px auto;
}
.overlay .clinicinfo dd a {
	color: #333 !important;  /* 黒文字に変更 */
}
.overlay .clinicinfo dd span {
	font-size: 16px;
	display: inline-block;
	margin: 5px 10px;
	line-height: 1.6em;
}

/* =========================================================

pagetop

=========================================================== */
#pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 11px;
}
#pagetop a {
    background: #DC143C;  /* 赤に変更 */
    text-decoration: none;
    color: #fff;
    width: 60px;
    padding: 20px 0;
    text-align: center;
    display: block;
    border-radius: 0;
}
#pagetop a:hover {
    text-decoration: none;
    background: #B91C3C;  /* 暗い赤 */
}
#pagetop a:visited,
#pagetop a:active {
    background: #DC143C;
}
/* =========================================================

パンくずリスト

=========================================================== */

#breadcrumb {
	margin: 0 20px 20px;
}
#breadcrumb ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#breadcrumb ul li {
  display: inline;
  list-style: none;
  font-size: 12px;
  padding: 0 5px;
  color:#666;
  flex: none;
}
#breadcrumb ul li:first-child {
  padding: 0 5px 0 0;
}
#breadcrumb ul li:after {
  content: '>';
  padding: 0 0 0 10px;
  color: #8e8270;
}
#breadcrumb ul li:last-child:after {
  content: '';
}
#breadcrumb ul li a {
  text-decoration: none;
  color: #666;
  flex: none;
}
#breadcrumb ul li a:hover {
  text-decoration: underline;
}

/* =========================================================

ページネーション

=========================================================== */
.pagenation {
  margin: 40px 0 0;
  clear: both !important;
}
.pagenation ul{
  display: flex;
  justify-content: center;
  list-style-type: none;
  align-items: center !important;
}
.pagenation ul li {
	border:none !important;
	margin: 0 1px !important;
	
}
.pagenation ul li.active{
	background: #FFF;
	display: block;
	padding: 8px 15px;
}
.pagenation a {
	display: block;
	text-decoration: none;
	background: #FFD700;  /* 黄色に変更 */
	padding: 8px 15px;
}
.first,
.prev,
.next,
.last {
	margin-right: 30px;
	padding: 8px 0 0;
}
.next a,
.last a,
.first a,
.prev a {
	padding: 8px 15px;
	background: none !important;
}
/* =========================================================

instagram

=========================================================== */
#instagram {
	position: fixed;
	z-index: 9999;
	right: 30px;
	bottom:30px;
}
#instagram a {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
#instagram a img {
	width: 23px;
	margin-top: 55px;
}
#instagram span {
	letter-spacing: 0.08em;
	position: relative;
}
#instagram span:after {
  position: absolute;
  top: 70px;
  left: 40%;
  height: 60%;
  width: 2px;
  content: '';
  background: #333;  /* 黒に変更 */
}
_:lang(x)+_:-webkit-full-screen-document, #instagram span:after {
  left: 10%;
}
/* =========================================================

topmessage

=========================================================== */  
.announce_info {
	width: 100%;
	max-width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) ;
    z-index: 10000;
}
.announce_info .close-btn {
	color: #000;
	text-align: center;
	display: inline-block;
	font-size: 40px;
	line-height: 1em;
	position: absolute;
	right: 10px;
	top: 0;
	cursor: pointer !important;
}
.announce_info .announce_infobox {
	width: 100%;
	background: #FFF;
	border:solid 4px #FFD700;  /* 黄色に変更 */
	text-align: center;
	padding: 60px;
}
.announce_info input[type=checkbox],
.announce_info .checkbox {
	display: none !important;
}
.announce_info #close:checked ~ .close-btn,
.announce_info #close:checked ~ .announce_infobox,
.announce_info #close:checked ~ .announce_info {
	display: none;
}
.announce_info h2 {
	color:#333;  /* 黒に変更 */
	margin-bottom: 30px;
	font-size: 20px;
}
.announce_info p {
	color:#555;
	text-align: left;
}

/* =========================================================

Footer

=========================================================== */
#footer {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	padding-bottom: 20px;
}
#footer .inner {
	width: 100%;
	max-width: 100%;
    background: #333;  /* 黒に変更 */
    padding: 80px 0px;
}
#footer h3 {
	font-size: 12px;
	color: #999;
	margin-top: 20px;
}
#footer .row {
	display: flex;
	justify-content: space-between;
	max-width: 900px;
	margin: 0 auto;
	color: #FFF;
}
.f-address {
	width: 48%;
	text-align: left;
}
.f-contact {
	width: 47%;
	text-align: left;
}
.f-address h2 {
	width: 85%;
}
.f-address p {
	font-size: 14px;
	letter-spacing: 0.04em;
	padding: 0;
	margin: 2px 0 2px 10px;
}

.f-address p:first-of-type {
	margin-top: 12px;
}

/* 営業所名にアクセント */
.f-address p[style*="font-weight: bold"] {
	font-size: 15px;  /* 少しだけ大きく */
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 3px;
	padding-bottom: 3px;
	border-bottom: 1px solid #555;  /* 控えめな下線 */
	display: inline-block;  /* 下線をテキスト幅だけに */
}
.f-address p span {
	display: inline-block;
	margin-right: 10px;
}
.f-contact {
	letter-spacing: 0.04em;
}
.f-contact .contact-tel {
	background: url('images/icon-tooth.png') no-repeat 0 12px;
	background-size: 45px auto;
	padding: 10px 0 6px 60px;
	margin: 0 auto 20px;
    width: 350px;
}
.f-contact .contact-tel span{
	display: block;
	font-size: 38px;
	letter-spacing: 0.08em;
	margin: 5px 0 0;
}
.f-contact .f-reserved {
	margin: 0 0 10px;
}
.f-contact .f-reserved a {
	display: block;
	background: url('images/icon-pc.png') no-repeat 15px center #FFD700;  /* 黄色に変更 */
	background-size: 20px auto;
	padding: 4px 8px 4px 30px;
	border-radius: 0;
	text-align: center;
	font-size: 13px;
	color: #333;  /* 黒文字に変更 */
}
.f-contact .hour {
	background: #FFF;
	padding: 4px 8px;
	color: #333;  /* 黒文字に変更 */
	width: 100%;
	text-align: center;
	font-size: 13px;
	margin: 10px 0 0;
	border-radius: 0;
}
.f-contact .hour span{
	display: inline-block;
	margin-left: 10px;
}
#f-nav {
	width: 100%;
	max-width: 900px;
	text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 40px auto 0;
}
#f-nav li a {
	display: block;
	height: 36px;
	line-height: 36px;
	color: #fff;
}
#f-nav li a:hover {
	opacity: 0.6;
}
#f-sosial-sp {
	display: none;
}
.copy {
    color: #999;
    font-size: 11px;
}


/* =========================================================

フローティングメニュー

=========================================================== */

.floating {
  position: fixed;
  right: 0px;
  top: 118px;
  display: flex;
  flex-direction: column;  /* 縦並び */
  gap: 10px;  /* ボタン間の隙間 */
  z-index: 100;
}

.floating a {
  display: block;
  color: #fff;
  background-color: rgba(220, 20, 60, 0.9);
  background-image: url('images/icon-tel.png');
  background-repeat: no-repeat;
  background-position: center 18px;
  background-size: 35px auto;
  padding: 65px 27px 20px 28px;
  width: 130px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: -0.03em;
  text-align: center !important;
  font-weight: 700;
  line-height: 1.2em;
}

/* 2つ目のボタン（ドライバー募集）を黄色に */
.floating .recruit-btn {
  background-color: rgba(255, 215, 0, 0.9);
  color: #333;
  background-image: url('images/icon-recruit.png');  /* 別アイコン */
}



_:lang(x)+_:-webkit-full-screen-document, .floating a {
  padding: 65px 24px 20px 24.5px;
}
_:lang(x)::-moz-placeholder, .floating a {
  padding: 65px 27px 20px 26.5px;
}
.floating a span {
	display: block;
}
.floating a:hover {
  opacity: 0.8;
}


/* =========================================================



=========================================================== */
.table {
    margin: 0 0 20px;
}
.table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.table table td,
.table table th {
    padding: 0.6em 1.2em;
    border: none;
    border-bottom: 1px solid #DDD;  /* グレーに変更 */
    text-align: left;
}
.table table.border td,
.table table.border th {
    padding: 0.6em 1.2em;
    border: 1px solid #CCC;
    text-align: center;
}
.table table.border th {
	background: #1A1A1A; color: #FFF;
}
.table table th {
    white-space: nowrap;
    vertical-align: middle;
}
.table table p {
    margin: 0 0 8px !important;
}
.table table thead th {
    text-align: center !important;
}
.table table .txtcenter {
    text-align: center !important;
}
.fb {
    font-weight: 700 !important;
}
.fb-b{
    font-weight: 700 !important;
    color:#333;  /* 黒に変更 */
}
.txt-left {
    text-align: left !important;
}
.txt-right {
    text-align: right !important;
}
.txt-center {
    text-align: center !important;
}
.bg-blue {
	background: #F8F8F8 !important;
}
.bg-white {
	background: #FFF !important;
}
.box-border20 {
	background: #FFF !important;
	border:solid 20px #FFD700 !important;  /* 黄色に変更 */
}
.link {
	display: inline-block;
	width: 70%;
	max-width: 300px;
	margin: 20px 0;
}
.link a {
	display: block;
	color: #FFF;
	padding: 12px 20px;
	background: url('images/icon-arrow2.png') no-repeat 95% center #DC143C;  /* 赤に変更 */
	background-size: 12px;
}
.w600 {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
.font-small {
	font-size: 85%;
}
.mb5 {
    margin-bottom: 5px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb25 {
    margin-bottom: 25px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb35 {
    margin-bottom: 35px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb45 {
    margin-bottom: 45px !important;
}
.mb50 {
    margin-bottom: 50px !important;
}
.mt5 {
    margin-top: 5px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt15 {
    margin-top: 15px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mt25 {
    margin-top: 25px !important;
}
.mt30 {
    margin-top: 30px !important;
}
.mt35 {
    margin-top: 35px !important;
}
.mt40 {
    margin-top: 40px !important;
}
.mt45 {
    margin-top: 45px !important;
}
.mt50 {
    margin-top: 50px !important;
}

/* ページネーション　---------------- */

.pagination span, .pagination a {
    display: inline-block;
    width: auto;
    margin: 4px;
    padding: 8px;
    border: 1px solid #333;  /* 黒に変更 */
    background-color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 16px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 200px 0 50px;
    position: relative;
    font-size: 13px;
}

.pagination a:hover {
    background-color: #FFD700;  /* 黄色に変更 */
    color: #333;
}
.screen-reader-text {
  display: none;
}

/* ========================================== */
/* 先輩ドライバーの声 カスタムスタイル開始      */
/* ========================================== */

/* メインコンテナ */
.driver-voice-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'メイリオ', sans-serif;
}

/* タイトル部分 - 黒帯に白文字 */
.driver-header-title {
    background-color: #0A0A0A;  /* ダークグレー背景 */
    color: #ffffff;              /* 白文字 */
    padding: 20px 40px;
    font-size: 28px;            /* 文字サイズ拡大 */
    font-weight: bold;
    border-bottom: 4px solid #ffd700;  /* 金色のアクセント */
    letter-spacing: 0.1em;
    text-align: center;         /* 中央揃え */
}

/* サブタイトル部分 */
.driver-subtitle {
    background-color: #f5f5f5;
    padding: 20px 40px;
    font-size: 18px;            
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.6;
    text-align: center;         /* 中央揃え */
}

.driver-subtitle .driver-name {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 20px;
}

/* メインラッパー */
.driver-main-wrapper {
    padding: 40px;
}

/* 画像を上部に配置 */
.driver-image-top {
    text-align: center;
    margin-bottom: 40px;
}

.driver-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Q&Aラッパー */
.driver-qa-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Q&Aアイテム */
.driver-qa-item {
    margin-bottom: 35px;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 0;
    border-left: 4px solid #dc143c;
}

/* Qマーク - シンプルデザイン */
.driver-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.driver-q-mark {
    background-color: #dc143c;   /* 赤背景 */
    color: #ffffff;              /* 白文字 */
    width: 40px;
    height: 40px;
    border-radius: 50%;          /* 円形に変更 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;            
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

/* 質問テキスト */
.driver-question-text {
    font-size: 19px;            /* 質問文字サイズ拡大 */
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.6;
    padding-top: 8px;
}

/* 回答部分 */
.driver-answer {
    margin-left: 55px;          
    font-size: 17px;            /* 回答文字サイズ拡大 */
    color: #333333;
    line-height: 1.9;
    letter-spacing: 0.02em;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 0;
}

/* フッター情報 */
.driver-footer-info {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

.driver-name-large {
    display: block;
    font-size: 26px;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 10px;
}

/* ボタンコンテナ */
.driver-button-container {
    display: flex;
    gap: 20px;
    padding: 30px 40px;
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

/* ボタンスタイル */
.driver-btn {
    flex: 1;
    padding: 18px 30px;
    background-color: #dc143c;   
    color: #ffffff;              
    border: none;
    border-radius: 0;         /* 角を丸く */
    font-size: 18px;            
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(220, 20, 60, 0.2);
}

/* ボタンホバー効果 */
.driver-btn:hover {
    background-color: #b91c3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(220, 20, 60, 0.3);
}


/* ========================================
   札幌版トップページ専用CSS
   2025年10月追加
======================================== */

/* ------------------------------------
   1. メインビジュアル（札幌版）
------------------------------------ */
#mainVisual.main-visual {
	background: url('/wp-content/themes/aarreDC/img/sapporo-night.jpg') center center/cover;
	background-color: #1a1a1a;
	padding: 80px 20px 40px;
	text-align: center;
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
}

#mainVisual.main-visual::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.4);
	z-index: 1;
}

#mainVisual .main-visual-inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 2;
}

#mainVisual .main-features {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
}

#mainVisual .feature-badge {
	background: #DC143C;
	color: #fff;
	padding: 15px 40px;
	font-weight: bold;
	font-size: 20px;
	display: inline-block;
}

#mainVisual .main-title {
	font-size: 46px;
	color: #fff;
	text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
	margin-bottom: 30px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.4;
}

#mainVisual .main-contact {
	margin-top: 25px;
}

#mainVisual .main-tel-btn {
	display: inline-block;
	background: #FFD700;
	color: #000;
	padding: 15px 40px;
	text-decoration: none;
	font-weight: bold;
	font-size: 20px;
	transition: all 0.3s;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

#mainVisual .main-tel-btn:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* メインビジュアルSP版 */
#mainVisual_sp.main-visual-sp {
	display: none;
}

/* ------------------------------------
   2. お知らせ・バナーエリア（修正版）
------------------------------------ */
.info-banner-section {
    padding: 0 !important;  /* セクション自体のpaddingを0に */
    background: #f0f0f0;
    margin-top: -20px;
    position: relative;
    z-index: 10;
}

/* innerの既存padding上書き */
.info-banner-section .inner {
    padding: 30px 20px !important;  /* 80pxから30pxに削減 */
    max-width: 1240px;
    margin: 0 auto;
}

.info-banner-section .content-wrapper {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.info-banner-section .info-column {
	display: flex;
	flex-direction: column;
}

.info-banner-section .news-box {
	background: #fff;
	padding: 25px;
	border-left: 4px solid #FFD700;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-banner-section .section-title-small {
	font-size: 22px;
	margin-bottom: 20px;
	color: #000;
	border-bottom: 2px solid #FFD700;
	padding-bottom: 10px;
	font-weight: bold;
	letter-spacing: 0.05em;
}

/* ニュースリスト */
.news-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news-item {
	padding: 15px 0;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	align-items: center;
	gap: 15px;
}

.news-item:last-child {
	border-bottom: none;
}

.news-date {
	color: #666;
	font-size: 14px;
	min-width: 80px;
}

.news-category {
	padding: 2px 8px;
	font-size: 12px;
	font-weight: bold;
	display: inline-block;
}

.cat-news {
	background: #333;
	color: #fff;
}

.cat-campaign {
	background: #DC143C;
	color: #fff;
}

.news-title {
	color: #333;
	text-decoration: none;
	flex: 1;
	transition: color 0.3s;
}

.news-title:hover {
	color: #DC143C;
}

.more-link {
	display: inline-block;
	margin-top: 20px;
	color: #333;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s;
}

.more-link:hover {
	color: #DC143C;
}

/* バナーエリア */
.banner-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.banner-item {
	padding: 0;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	position: relative;
	text-align: center;
	min-height: 250px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.banner-overlay {
	background: rgba(0,0,0,0.7);
	padding: 30px;
	height: 100%;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.recruit-banner .banner-overlay {
	background: rgba(0,0,0,0.8);
}

.airport-banner .banner-overlay {
	background: rgba(0,0,0,0.75);
}

.banner-badge {
	position: absolute;
	top: 0;
	right: 0;
	background: #DC143C;
	color: #fff;
	padding: 5px 15px;
	font-size: 12px;
	font-weight: bold;
}

.banner-title {
	font-size: 22px;
	margin-bottom: 10px;
	letter-spacing: 0.05em;
	color: #fff;
}

.banner-highlight {
	font-size: 28px;
	font-weight: bold;
	color: #FFD700;
	margin: 15px 0;
}

.banner-text {
	color: #fff;
	line-height: 1.6;
	margin-bottom: 20px;
}

.price-info {
	margin: 15px 0;
}

.price-from {
	font-size: 24px;
	font-weight: bold;
	color: #FFD700;
}

.banner-btn {
	display: inline-block;
	background: #FFD700;
	color: #000;
	padding: 12px 30px;
	text-decoration: none;
	font-weight: bold;
	margin-top: auto;
	border: 2px solid #FFD700;
	transition: all 0.3s;
}

.banner-btn:hover {
	background: transparent;
	color: #FFD700;
}

/* ------------------------------------
   3. サービスセクション
------------------------------------ */
.service-section {
	padding: 60px 0;
	background: #fff;
}

.service-section .section-title {
	text-align: center;
	font-size: 32px;
	margin-bottom: 40px;
	color: #000;
	font-weight: bold;
	letter-spacing: 0.1em;
	position: relative;
	padding-bottom: 15px;
}

.service-section .section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #FFD700;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	max-width: 1000px;
	margin: 0 auto;
	background: #000;
	padding: 2px;
}

.service-item {
	text-align: center;
	padding: 40px 20px;
	background: #fff;
	text-decoration: none;
	color: #000;
	transition: all 0.3s;
}

.service-item:hover {
	background: #FFD700;
}

.service-icon {
	font-size: 48px;
	margin-bottom: 15px;
}

.service-name {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 8px;
	letter-spacing: 0.05em;
}

.service-desc {
	font-size: 14px;
	color: #666;
}

.service-item:hover .service-desc {
	color: #000;
}

/* ------------------------------------
   4. ホークアイセクション
------------------------------------ */
.hawkeye-section {
	padding: 80px 0;
	background: #000;
}

.hawkeye-content {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.hawkeye-badge {
	display: inline-block;
	background: #DC143C;
	color: #fff;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
}

.hawkeye-title {
	font-size: 32px;
	margin-bottom: 20px;
	color: #fff;
	letter-spacing: 0.05em;
}

.hawkeye-text {
	font-size: 18px;
	line-height: 1.8;
	color: #ccc;
	margin-bottom: 30px;
}

.hawkeye-btn {
	display: inline-block;
	background: transparent;
	color: #FFD700;
	padding: 15px 40px;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	border: 2px solid #FFD700;
	transition: all 0.3s;
	letter-spacing: 0.05em;
}

.hawkeye-btn:hover {
	background: #FFD700;
	color: #000;
}

/* ------------------------------------
   5. 営業所セクション
------------------------------------ */
.office-section {
	padding: 60px 0;
	background: #f0f0f0;
}

.office-section .section-title {
	text-align: center;
	font-size: 32px;
	margin-bottom: 40px;
	color: #000;
	font-weight: bold;
	letter-spacing: 0.1em;
	position: relative;
	padding-bottom: 15px;
}

.office-section .section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #FFD700;
}

.office-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	max-width: 1000px;
	margin: 0 auto;
	background: #000;
	padding: 2px;
}

.office-item {
	padding: 25px;
	background: #fff;
}

.office-name {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #000;
	letter-spacing: 0.05em;
}

.office-address {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
}

.office-tel a {
	color: #DC143C;
	text-decoration: none;
	font-weight: bold;
}

.office-tel a:hover {
	text-decoration: underline;
}

/* ------------------------------------
   6. レスポンシブ対応
------------------------------------ */
@media (max-width: 768px) {
	.info-banner-section {
		margin-top: -40px;
		padding: 20px 0 40px;
	}
	
	.info-banner-section .content-wrapper {
		grid-template-columns: 1fr;  /* モバイルは1カラム */
		padding: 0 15px;
	}
	
	#mainVisual_sp.main-visual-sp {
		display: block;
		background: url('/wp-content/themes/aarreDC/img/sapporo-night-sp.jpg') center center/cover;
		background-color: #1a1a1a;
		padding: 70px 15px 40px;
		text-align: center;
		min-height: 380px;
		position: relative;
	}
	
	#mainVisual_sp.main-visual-sp::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0,0,0,0.4);
		z-index: 1;
	}


	#mainVisual_sp .main-visual-inner {
		position: relative;
		z-index: 2;
	}
	
	#mainVisual_sp .main-title {
		font-size: 28px;
		color: #fff;
		margin-bottom: 25px;
		font-weight: bold;
		text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
		line-height: 1.4;
	}
	
	#mainVisual_sp .main-features {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
		margin-bottom: 25px;
	}
	
	#mainVisual_sp .feature-badge {
		padding: 10px 20px;
		font-size: 14px;
		flex: 0 0 auto;
	}
	
	#mainVisual_sp .main-tel-btn {
		padding: 12px 25px;
		font-size: 16px;
	}
	
	/* お知らせ・バナー */
	.info-banner-section {
		margin-top: -40px;  /* ← モバイル用追加 */
	}
	
	.info-banner-section .content-wrapper {
		grid-template-columns: 1fr;
		padding: 0 15px;
	}
	
	.banner-column {
		margin-top: 20px;
	}
	
	/* サービス */
	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/* 営業所 */
	.office-grid {
		grid-template-columns: 1fr;
	}
}

/* ヘッダー横並びレイアウト */
#header .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

#logo {
	flex-shrink: 0;
}

/* 横並びメニュー */
.header-menu {
	display: flex;
	flex-grow: 1;
	margin-left: 40px;
	border-left: 1px solid rgba(255,255,255,0.2);
}

.header-menu .menu-item {
	padding: 15px 20px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	border-right: 1px solid rgba(255,255,255,0.2);
	transition: all 0.3s;
	white-space: nowrap;
}

.header-menu .menu-item:hover {
	background: rgba(255,215,0,0.2);
	color: #FFD700;
}

.header-menu .menu-item.recruit {
	background: #DC143C;
}

.header-menu .menu-item.recruit:hover {
	background: #FF0000;
}

/* タブレット以下では非表示 */
@media (max-width: 1024px) {
	.header-menu {
		display: none;
	}
}

/* 
=====================================
  白い統合ロゴ用CSS
  追加CSSに貼り付けるだけ！
=====================================
*/

/* ロゴ画像の基本設定 */
#header #logo .logo-image {
    height: 50px;
    width: auto;
    display: block;
    max-width: 100%;
}

/* ロゴエリアの調整 */
#header #logo {
    display: flex;
    align-items: center;
}

#header #logo a {
    display: inline-block;
    line-height: 1;
}

/* PC版でもう少し大きく */
@media screen and (min-width: 1200px) {
    #header #logo .logo-image {
        height: 55px;
    }
}

/* タブレット */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    #header #logo .logo-image {
        height: 48px;
    }
}

/* スマホ版 */
@media screen and (max-width: 768px) {
    #header #logo .logo-image {
        height: 40px;
    }
}

/* より小さいスマホ */
@media screen and (max-width: 480px) {
    #header #logo .logo-image {
        height: 35px;
    }
}

/* ロゴのホバーエフェクト（オプション） */
#header #logo a:hover .logo-image {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* 
   もしヘッダーが白くなる場合の対策
   （スクロール時など）
*/
#header.scrolled #logo .logo-image,
#header.white-header #logo .logo-image {
    /* 必要に応じて黒いロゴに切り替え */
    /* content: url('/images/kinsei-logo-sapporo-black.png'); */
}


/* 
=====================================
  ニュースセクション＋スライドバナーCSS
  追加CSSに貼り付け
=====================================
*/

/* ============================
   ニュースセクションの調整
============================ */

/* セクションタイトルを左寄せに */
.news-section .section-title {
    text-align: left !important;
    padding-left: 0;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    display: inline-block;
}

/* お知らせリストの調整 */
.news-list {
    margin-bottom: 40px;
}

.news-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.news-list li:hover {
    background: #f8f8f8;
    padding-left: 10px;
}

.news-list .date {
    color: #666;
    font-size: 14px;
    margin-right: 15px;
    min-width: 100px;
}

.news-list .category {
    background: #333;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    margin-right: 15px;
    border-radius: 0;
    min-width: 80px;
    text-align: center;
}

/* カテゴリー別の色分け */
.news-list .category.campaign {
    background: #DC143C;
}

.news-list .category.info {
    background: #4169E1;
}

.news-list .category.important {
    background: #FF8C00;
}

.news-list .title {
    color: #333;
    text-decoration: none;
    flex: 1;
    font-size: 15px;
}

.news-list .title:hover {
    color: #DC143C;
}

/* もっと見るボタン */
.news-more-link {
    text-align: center;
    margin-top: 20px;
}

.news-more-link a {
    display: inline-block;
    color: #333;
    text-decoration: none;
    padding: 10px 30px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.news-more-link a:hover {
    background: #333;
    color: #fff;
}

/* ============================
   スライドバナー
============================ */

.slider-banner-area {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    padding: 20px 0;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.slide-item {
    flex: 0 0 calc(25% - 15px); /* 4つ表示 */
    min-width: calc(25% - 15px);
}

.slide-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.slide-item:hover img {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* ナビゲーションボタン */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: #FFD700;
    color: #000;
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

/* ============================
   レスポンシブ対応
============================ */

/* タブレット */
@media screen and (max-width: 1024px) {
    .slide-item {
        flex: 0 0 calc(33.333% - 14px); /* 3つ表示 */
        min-width: calc(33.333% - 14px);
    }
}

/* スマートフォン（横向き） */
@media screen and (max-width: 768px) {
    .news-section .section-title {
        font-size: 20px;
    }
    
    .news-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-list .date,
    .news-list .category {
        margin-bottom: 5px;
    }
    
    .slide-item {
        flex: 0 0 calc(50% - 10px); /* 2つ表示 */
        min-width: calc(50% - 10px);
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* スマートフォン（縦向き） */
@media screen and (max-width: 480px) {
    .slide-item {
        flex: 0 0 100%; /* 1つ表示 */
        min-width: 100%;
    }
    
    .slider-wrapper {
        gap: 10px;
    }
    
    .slider-banner-area {
        padding: 15px;
    }
}

/* スライドバナー */
.slider-banner-area {
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide-item {
    min-width: 25%; /* 4個表示 */
    padding: 0 10px;
    box-sizing: border-box;
}

.slide-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* ナビゲーションボタン */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-prev:hover,
.slider-next:hover {
    background: #FFD700;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .slide-item {
        min-width: 50%; /* 2個表示 */
    }
}

@media (max-width: 480px) {
    .slide-item {
        min-width: 100%; /* 1個表示 */
    }
}

/* 2カラムレイアウト */
.info-banner-section .content-wrapper {
    display: flex;
    gap: 30px;
}

.info-column {
    flex: 1.5;
}

.banner-column {
    flex: 1;
}

/* ドライバー募集バナー */
.recruit-big-banner {
    background: #333;
    color: #fff;
    padding: 30px;
    border-radius: 0;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruit-big-banner .badge-red {
    background: #DC143C;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.recruit-big-banner h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.recruit-big-banner .big-text {
    color: #FFD700;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.recruit-big-banner .btn-yellow {
    background: #FFD700;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .info-banner-section .content-wrapper {
        flex-direction: column;
    }
}


/* お知らせタイトルを左寄せ＋黄色線を黒に */
.info-banner-section .section-title-small,
.news-box h2 {
    text-align: left !important;
    padding-left: 0;
    margin-bottom: 20px;
}

/* 黄色い線を黒に変更 */
.news-box {
    border-left: 4px solid #333 !important;  /* 黒い線 */
}

/* または下線の場合 */
.info-banner-section .section-title-small::after,
.news-box h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #333;  /* 黒い線 */
    margin-top: 10px;
}

/* お知らせリストのスタイル調整 */
.news-list {
    margin-top: 20px;
}

.news-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 日付のスタイル */
.news-list .date {
    color: #666;
    font-size: 14px;
    min-width: 100px;
}

/* カテゴリバッジのスタイル */
.news-list .category {
    background: #333;
    color: #fff;
    padding: 3px 12px;
    font-size: 12px;
    border-radius: 0;
}

.news-list .category.campaign {
    background: #DC143C;
}

/* 黒い線を削除（黄色線のみ残す） */
.info-banner-section .section-title-small::after,
.news-box h2::after {
    display: none !important;  /* 黒い線を削除 */
}

/* 左の黒い縦線も削除 */
.news-box {
    border-left: none !important;
}

/* 黄色い線はそのまま（既存のスタイルを活かす） */
.news-box h2 {
    border-bottom: 3px solid #FFD700;  /* 黄色線のみ */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* お知らせ一覧リンクを右寄せ */
.news-more-link,
.more-link {
    text-align: right !important;
    display: block;
    margin-top: 20px;
}

.news-more-link a,
.more-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.news-more-link a:hover,
.more-link:hover {
    text-decoration: underline;
}

/* お知らせリストのタイトルを左寄せ */
.news-list .title,
.news-list a {
    text-align: left !important;
    display: inline-block;
    width: 100%;
}

/* お知らせリスト全体のレイアウト調整 */
.news-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* 左寄せ */
    text-align: left !important;
}

/* 各要素の配置 */
.news-list .date {
    text-align: left;
    margin-right: 15px;
}

.news-list .category {
    text-align: center;
    margin-right: 15px;
}

.news-list .title {
    flex: 1;
    text-align: left !important;
}


/* サービスセクションの背景と文字色調整 */
.service-section {
    background: #333;  /* 濃いグレーの背景 */
    padding: 60px 0;
}

/* セクションタイトルを白に */
.service-section .section-title {
    color: #fff !important;
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

/* サービスアイテムのスタイル */
.service-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    background: #fff;  /* 白背景のカード */
    padding: 30px 20px;
    text-align: center;
    border-radius: 0;
    text-decoration: none;
    color: #333;
    width: 200px;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.service-desc {
    font-size: 14px;
    color: #666;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .service-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-item {
        width: 100%;
        max-width: 300px;
    }
}

/* アイコンの黒枠を削除・絵文字の代替 */
.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    background: none !important;
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
}

/* サービスタイトルの変な線を削除 */
.service-section .section-title {
    color: #fff !important;
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    text-decoration: none !important;
    border: none !important;
    background: none !important;
}

/* 黄色い線が出る可能性のある箇所を全て削除 */
.service-section .section-title::before,
.service-section .section-title::after,
.service-section h2::before,
.service-section h2::after {
    display: none !important;
}

/* サービスカードの黒枠を完全削除 */
.service-item {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 0;
    text-decoration: none;
    color: #333;
    width: 200px;
    transition: transform 0.3s;
    border: none !important;  /* 枠線削除 */
    outline: none !important;  /* アウトライン削除 */
    box-shadow: none !important;  /* 影削除 */
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;  /* ホバー時のみ影 */
}

/* アイコン画像のスタイル */
.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border: none !important;
    background: none !important;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* サービスグリッドの黒枠も削除 */
.service-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    border: none !important;
    outline: none !important;
}

/* リンクのデフォルトスタイルを無効化 */
a.service-item:focus,
a.service-item:active {
    outline: none !important;
    border: none !important;
}

/* サービスセクション全体をグレーに */
.service-section {
    background: #f5f5f5 !important;  /* グレー背景 */
    padding: 60px 0;
}

/* 黒い部分を完全に削除 */
.service-section .inner {
    background: transparent !important;
}

.service-grid {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* サービスカードの調整 */
.service-item {
    background: #fff;
    border: 1px solid #ddd !important;  /* 薄いグレーの枠線 */
}

/* タイトルの色を黒に */
.service-section .section-title {
    color: #333 !important;
}

/* ページ内ナビゲーション */
.page-nav {
    background: #fff;
    border-bottom: 2px solid #FFD700;
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-nav .nav-list {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-nav .nav-link {
    display: block;
    padding: 15px 30px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.page-nav .nav-link:hover {
    background: #f8f8f8;
}

.page-nav .nav-link.active {
    color: #DC143C;
    border-bottom-color: #DC143C;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .page-nav .nav-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .page-nav .nav-link {
        padding: 12px 20px;
        white-space: nowrap;
    }
}

/* 緑線を濃いグレーに変更 */
.section-title-underline::after,
.sub-title-underline::after {
    background: #555 !important;  /* 濃いグレー */
}

/* または下線タイプの場合 */
.section-title-underline,
.sub-title-underline {
    border-bottom: 3px solid #555 !important;
}

/* ページタイトル共通スタイル */
.page-main-title {
    text-align: center;
    font-size: 32px;
    margin: 40px 0;
    position: relative;
    padding-bottom: 20px;
}

/* タイトル下の黄色線 */
.page-main-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #FFD700;
    margin: 15px auto 0;
}

/* サブタイトル（説明文） */
.page-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
}

/* セクションタイトル（h2） */
.section-title {
    font-size: 24px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700;
}

/* サブセクションタイトル（h3） */
.subsection-title {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #333;
}

/* サービスナビゲーション */
.service-nav a:hover {
    background: #FFD700 !important;
    color: #333 !important;
    border-color: #FFD700 !important;
}

/* スムーススクロール（既存のJSで対応済み） */

/* ヘッダー背景を黒に */
#header {
    background: #000 !important;
    position: relative;
    z-index: 1000;
}

.header-inner {
    background: #000 !important;
}

/* メインビジュアルの位置調整 */
#mainVisual,
#mainVisual_sp {
    margin-top: 0;
    padding-top: 0;
}

/* bodyの背景を透明または黒に */
body#page-company {
    background: transparent !important;
}

/* または特定ページだけ黒背景 */
.page-template-page-company body {
    background: #000 !important;
}

/* ページトップ画像の上余白も念のため削除 */
#mainVisual,
.page-header {
    margin-top: 0 !important;
}