@charset "utf-8";
@import "html5reset-1.6.1.css";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* スムーズスクロールを有効にする魔法の1行
html {
  scroll-behavior: smooth;
} */
body {
	font-family: "Noto Serif JP", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
	color: #000;
	height: 100%;
	font-weight: 400;
}
html {
	height: 100%;
}
.gothic {
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, sans-serif;
}
address {
	font-style: normal;
}
.pageTop {
	position: fixed;
	bottom: 20px;
	right: -70px;
	z-index: 99999;
}
.pageTop a {
	display: block;
}
@media(min-width: 768px) {
	body, html {
		min-width: 1280px;
	}
	body {
		font-size: 18px;
	}
	br.sp {
		display: none;
	}
	a, a:hover {
		transition: 0.3s;
	}
}
@media (max-width: 767px) {
	body {
		font-size: 20px;/* 元々のサイズは16pt*/
	}
	.pageTop img {
		width: 40px;
		height: auto;
	}
	.pageTop {
		bottom: 75px;
		right: -40px;
	}
	br.pc {
		display: none;
	}
}
/*---------------------- header ------------------------*/
#header {
	background-color: #28A8E8;
}
#header .headerInner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#header .hLogo a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
	color: #FFF;
}
#header .hLogo .logoText {
	margin-left: 10px;
}
#header .hLogo p:first-of-type {
	font-size: 14px;
	letter-spacing: 0.2em;
	margin: 0 0 5px;
}
#header h1, #header .hLogo p:nth-of-type(2) {
	font-size: 16px;
}
#header h1 span, #header .hLogo p:nth-of-type(2) span {
	font-size: 24px;
}
@media(min-width: 768px) {
	#header .headerInner {
		padding: 0 30px;
		height: 60px;
		box-sizing: border-box;
	}
}
@media (max-width: 767px) {
	#header {
		padding: 10px 15px;
	}
	#header .hLogo .logoMark img {
		height: 50px;
		width: auto;
		display: block;
	}
	#header .hLogo p:first-of-type {
		font-size: 12px;
	}
	#header .hLogo p:nth-of-type(2) {
		font-size: 15px;
	}
	#header .hLogo p:nth-of-type(2) span {
		font-size: 20px;
	}
}
/*---------------------- Global Navi ------------------------*/
#globalNavi ul li a {
	letter-spacing: 0.075em;
}
@media (min-width: 768px) {
	#globalNavi {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		background-color: #FFF;
		padding-left: 50px;
		border: solid 2px #FFF;
		border-radius: 8px;
		box-sizing: border-box;
	}
	#globalNavi ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-right: 25px;
	}
	#globalNavi ul li {
		margin-right: 30px;
	}
	#globalNavi ul li a {
		color: #232584;
		text-decoration: none;
	}
	#globalNavi ul li a:hover {
		color: #28A8E8;
	}
}
@media (max-width: 767px) {
	#globalNavi ul {
		display: none;
	}
}
/*---------------------- globalMenuBtn ------------------------*/
#header .globalMenuBtn div {
	display: block;
	top: 0;
	right: 0;
	width: 24px;
	height: 24px;
	z-index: 2;
	text-align: center;
	position: relative;
	transition: all 0.3s ease-in-out 0.0s;
}
#header .globalMenuBtn.active div {
	background-color: transparent;
}
#header .globalMenuBtn div span {
	display: block;
	position: absolute;
	width: 24px;
	border-bottom: solid 2px #FFF;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	left: 0;
	letter-spacing: normal;
}
#header .globalMenuBtn div span:nth-child(1) {
	top: 2px;
}
#header .globalMenuBtn div span:nth-child(2) {
	top: 11px;
}
#header .globalMenuBtn div span:nth-child(3) {
	top: 20px;
}
#header globalMenuBtn.active div span {
	border-bottom: solid 2px #FFF;
}
/* 最初のspanをマイナス45度に */
#header .globalMenuBtn.active div span:nth-child(1) {
	top: 11px;
	left: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
#header .globalMenuBtn.active div span:nth-child(2), #header .globalMenuBtn.active div span:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
#globalMenu .globalMenuBtn {
	position: absolute;
	top: 10px;
	right: 32px;
}
@media (min-width: 768px) {
	#header .globalMenuBtn {
		background-color: #232584;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		height: 40px;
		width: 200px;
		border-radius: 6px;
		padding: 0 40px;
		transition: 0.3s;
		box-sizing: border-box;
	}
	#header .globalMenuBtn p {
		color: #FFF;
		margin-right: 30px;
	}
	#header .globalMenuBtn:hover {
		background-color: #28A8E8;
	}
}
@media (max-width: 767px) {
	#header .globalMenuBtn {
		background-color: #232584;
		height: 50px;
		width: 50px;
		border-radius: 6px;
		border: 1px solid #FFF;
		box-sizing: border-box;
	}
	#header .globalMenuBtn div span {
		width: 34px;
		left: 7px;
	}
	#header .globalMenuBtn p {
		color: #FFF;
		font-size: 10px;
		text-align: center;
		margin-top: 8px;
	}
	#header .globalMenuBtn div span:nth-child(1) {
		top: 8px;
	}
	#header .globalMenuBtn div span:nth-child(2) {
		top: 16px;
	}
	#header .globalMenuBtn div span:nth-child(3) {
		top: 24px;
	}
	/* 最初のspanをマイナス45度に */
	#header .globalMenuBtn.active div span:nth-child(1) {
		top: 16px;
		left: 7px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	/* 2番目と3番目のspanを45度に */
	#header .globalMenuBtn.active div span:nth-child(2), #header .globalMenuBtn.active div span:nth-child(3) {
		top: 17px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#globalMenu .globalMenuBtn {
		position: absolute;
		top: 10px;
		right: 15px;
	}
}
/*---------------------- globalMenu ------------------------*/
#globalMenu img {
	display: block;
}
#globalMenu ul.mainMenu01 {
	position: relative;
}
#globalMenu ul.mainMenu01 .menu01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#globalMenu ul.mainMenu01 li .icon img {
	width: 100%;
	height: auto
}
#globalMenu ul.mainMenu01 li span, #globalMenu ul.mainMenu01 li a span {
	color: #28A8E8;
	font-weight: 700;
}
#globalMenu ul.mainMenu01 li.recruit a span {
	color: #232584;
}
#globalMenu ul.mainMenu01 li a {
	text-decoration: none;
}
#globalMenu ul.mainMenu02 li a span:not(.icon) {
	letter-spacing: 0.05em;
	font-weight: 700;
}
@media (min-width: 768px) {
	#globalMenu {
		position: fixed;
		min-width: 1280px;
		z-index: 1000;
		top: 0;
		left: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.9);
		box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5);
	}
	#globalMenu .globalMenuInner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		max-width: 1280px;
		box-sizing: border-box;
		padding: 110px 40px;
		margin: auto;
	}
	#globalMenu ul {
		width: 370px;
		box-sizing: border-box;
	}
	#globalMenu ul.mainMenu01 {
		border-top: 1px solid #9B9B9B;
	}
	#globalMenu ul.mainMenu01 > li {
		border-bottom: 1px solid #9B9B9B;
		cursor: pointer;
		padding-right: 15px;
	}
	#globalMenu ul.mainMenu01 li .icon {
		width: 60px;
	}
	#globalMenu ul.mainMenu01 li .text {
		width: calc(100% - 60px - 22px - 40px);
		text-align: left;
	}
	#globalMenu ul.mainMenu01 > li .text {
		transition: 0.3s;
	}
	#globalMenu ul.mainMenu01 > li:hover .text {
		color: #232584;
	}
	#globalMenu ul.mainMenu01 > li.recruit:hover .text {
		color: #28A8E8;
	}
	#globalMenu ul.mainMenu01 > li .linkIcon, #globalMenu ul.mainMenu01 > li.subMenuBtn .subMenuIcon {
		position: relative;
		width: 22px;
		height: 22px;
	}
	#globalMenu ul.mainMenu01 > li > a .linkIcon::after {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 5px;
		margin: auto;
		content: "";
		vertical-align: middle;
		width: 12px;
		height: 12px;
		border-top: 4px solid #28A8E8;
		border-right: 4px solid #28A8E8;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#globalMenu ul.mainMenu01 > li.recruit > a .linkIcon::after {
		border-top: 4px solid #232584;
		border-right: 4px solid #232584;
	}
	#globalMenu ul.mainMenu01 > li > a:hover .linkIcon::after {
		border-top: 4px solid #232584;
		border-right: 4px solid #232584;
	}
	#globalMenu ul.mainMenu01 > li.recruit > a:hover .linkIcon::after {
		border-top: 4px solid #28A8E8;
		border-right: 4px solid #28A8E8;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn .subMenuIcon::before, #globalMenu ul.mainMenu01 > li.subMenuBtn .subMenuIcon::after, #globalMenu ul.mainMenu01 > li.subMenuBtn:hover .subMenuIcon::after {
		position: absolute;
		top: 9px;
		left: 50%;
		content: '';
		display: inline-block;
		width: 22px;
		height: 22px;
		border-top: 4px solid #28A8E8;
		transform: translateX(-50%);
		-webkit-transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn .subMenuIcon:after {
		top: -2px;
		left: 11px;
		transform: rotate(-90deg);
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn:hover .subMenuIcon::after {
		border-top: 4px solid #232584;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn > .subMenu {
		position: absolute;
		visibility: hidden;
		opacity: 0;
		z-index: 10;
		top: 0;
		left: 370px;
		min-height: 305px;
		padding-left: 20px;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn:hover > .subMenu {
		visibility: visible;
		opacity: 1;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn > .subMenu > ul {
		background-color: #FFF;
		padding: 20px 30px;
		box-shadow: 0px 0 15px 0 rgba(0, 0, 0, 0.2);
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn > .subMenu > ul li {
		padding: 10px 0;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn > .subMenu > ul li a {
		color: #28A8E8;
		text-decoration: none;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn > .subMenu > ul li a:hover {
		color: #232584;
	}
	#globalMenu ul.mainMenu02 li {
		margin: 0 0 20px;
	}
	#globalMenu ul.mainMenu02 li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		color: #FFF;
		background-color: #28A8E8;
		line-height: 54px;
		border-radius: 27px;
		text-decoration: none;
		padding-right: 15px;
	}
	#globalMenu ul.mainMenu02 li a:hover {
		background-color: #232584;
	}
	#globalMenu ul.mainMenu02 li a .icon {
		margin-right: 15px;
	}
}
@media (max-width: 767px) {
	#globalMenu {
		width: 100%;
		height: 100%;
		background-color: #FFF;
		transition: all 0.3s ease-in-out 0.0s;
		position: fixed;
		z-index: 1000;
		top: 0;
		right: -100%;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		box-sizing: border-box;
		padding: 70px 0 30px;
	}
	#globalMenu.active {
		right: 0px;
	}
	#globalMenu .globalMenuInner {
		border-top: 1px solid #9B9B9B;
	}
	#globalMenu ul.mainMenu01 > li {
		border-bottom: 1px solid #9B9B9B;
		padding: 5px 30px 5px 15px;
	}
	#globalMenu ul.mainMenu01 li .icon {
		width: 40px;
	}
	#globalMenu ul.mainMenu01 li .text {
		width: calc(100% - 40px - 20px - 30px);
		text-align: left;
	}
	#globalMenu ul.mainMenu01 > li .menu01.active .text {
		color: #232584;
	}
	#globalMenu ul.mainMenu01 > li .linkIcon, #globalMenu ul.mainMenu01 > li.subMenuBtn .subMenuIcon {
		position: relative;
		width: 20px;
		height: 20px;
	}
	#globalMenu ul.mainMenu01 > li > a .linkIcon::after {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 7px;
		margin: auto;
		content: "";
		vertical-align: middle;
		width: 12px;
		height: 12px;
		border-top: 2px solid #28A8E8;
		border-right: 2px solid #28A8E8;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#globalMenu ul.mainMenu01 > li.recruit > a .linkIcon::after {
		border-top: 2px solid #232584;
		border-right: 2px solid #232584;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn .subMenuIcon::before, #globalMenu ul.mainMenu01 > li.subMenuBtn .subMenuIcon::after, #globalMenu ul.mainMenu01 > li.subMenuBtn .menu01.active .subMenuIcon::after {
		position: absolute;
		top: 10px;
		left: 50%;
		content: '';
		display: inline-block;
		width: 20px;
		height: 20px;
		border-top: 2px solid #28A8E8;
		transform: translateX(-50%);
		-webkit-transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn .subMenuIcon:after {
		top: 0;
		left: 10px;
		transform: rotate(-90deg);
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn .menu01.active .subMenuIcon::after {
		border-top: 2px solid #232584;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn > .subMenu > ul {
		padding: 0 35px 5px 55px;
		text-align: left;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn > .subMenu > ul li {
		padding: 10px 0;
	}
	#globalMenu ul.mainMenu01 > li.subMenuBtn > .subMenu > ul li a {
		color: #28A8E8;
		text-decoration: none;
	}
	#globalMenu ul.mainMenu02 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 15px;
	}
	#globalMenu ul.mainMenu02 li {
		width: calc((100% - 5px) / 2);
	}
	#globalMenu ul.mainMenu02 li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		color: #FFF;
		background-color: #232584;
		text-decoration: none;
		height: 50px;
	}
	#globalMenu ul.mainMenu02 li:first-of-type a .icon {
		margin-right: 3px;
	}
	#globalMenu ul.mainMenu02 li a .icon img {
		width: 80%;
		height: auto;
	}
}
/*---------------------- breadcrumbList ---------------------- */
#breadcrumbList {
	margin: 15px 60px 20px;
}
#breadcrumbList ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
}
#breadcrumbList ul li {
	margin-right: 30px;
	font-size:12px;
}
#breadcrumbList ul li a {
	position: relative;
	
	color: #000;
	text-decoration: none;
}
#breadcrumbList ul li a::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: -17px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 5px;
	height: 5px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media(min-width: 768px) {
	#breadcrumbList ul li a {
		transition: 0.3s;
	}
	#breadcrumbList ul li a:hover {
		color: #28A8E8;
		text-decoration: none;
	}
}
@media (max-width: 767px) {
	#breadcrumbList {
		margin: 10px 10px 30px;
	}
	#breadcrumbList ul li {
		margin-right: 25px
	}
	#breadcrumbList ul li a::after {
		right: -15px;
	}
}
/*---------------------- companyBrochure ---------------------- */
.companyBrochure {
	margin: 0 0 100px;
	text-align: center; /* ★追加：aタグ自体を画面の中央に寄せる */
}
.companyBrochure a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: inline-flex; /* ★変更：flex から inline-flex にすることで、幅を文字ぴったりに縮める */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}
.companyBrochure .text {
	text-align: center;
	margin-right: 15px;
}
.companyBrochure p {
	font-size: 24px;
	letter-spacing: 0.2em;
	color: #000;
}
.companyBrochure p::after {
	content: attr(data-en);
	font-size: 9px;
	color: #B6251E;
	letter-spacing: 0.01em;
	display: block;
	margin: 5px 0 0;
	font-family: 'Noto Sans JP', sans-serif;
}
@media(min-width: 768px) {
	.companyBrochure a:hover p {
		color: #28A8E8;
	}
}
@media (max-width: 767px) {
	.companyBrochure {
		margin: 0 0 50px;
	}
	.companyBrochure p {
		letter-spacing: 0.1em;
	}
	.companyBrochure p::after {
		font-size: 14px;
	}
}
/*---------------------- vincedor ---------------------- */
.vincedor {
	max-width: 740px;
	margin: 0 auto 100px;
}
.vincedor .logo {
	float: left;
	margin-right: 15px;
}
.vincedor p {
	text-align: left;
}
.vincedor p:first-of-type {
	font-size: 14px;
	color: #232584;
	letter-spacing: 0.1em;
	font-weight: 700;
	margin: 0 0 10px;
}
.vincedor p:nth-of-type(2) {
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
@media (max-width: 767px) {
.vincedor {
        /* ▼ 修正：塊の幅を制限し、margin: auto で「塊ごと」中央に寄せます */
        max-width: 350px; 
        margin: 0 auto 50px;
        /* レイアウトを整えるため、一旦中身の配置を整理 */
        display: block;
        overflow: hidden; 
    }
	.vincedor .logo {
		margin-right: 10px;
	}
	.vincedor .logo img {
		width: 40px;
		height: auto;
	}
	.vincedor p:first-of-type {
		font-size: 13px;
		line-height: 1.5;
		margin: 0 0 10px;
	}
	.vincedor p:nth-of-type(2) {
		font-size: 10px;
	}
}
/*---------------------- slideBanner ---------------------- */
.slideBanner {
	margin: 15px 0;
}
.slideBanner li img {
	margin: 0 15px;
	width: calc(100% - 30px);
	}

/* マウスをのせたとき、指マーク */
.slideBanner:hover .slick-track {
    cursor: pointer;
}

/* 画像自体のホバー演出（お好みで） */
.slideBanner li img:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
	.slideBanner {
		margin: 10px 0;
	}
	.slideBanner li img {
		margin: 0 10px;
		width: calc(100% - 20px);
	}
}
/*---------------------- footer ------------------------*/
#footer {
	text-align: center;
	padding: 80px 0 0;
}
#footerBottom {
	background-color: #28A8E8;
	padding: 45px 0;
	color: #FFF;
}
#footerBottom .sns ul {
	background-color: #FFF;
	max-width: 950px;
	height: 60px;
	margin: 35px auto 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	list-style: none;
	border-radius: 6px;
}
#footerBottom .sns ul li {
	margin: 0 20px;
}
#footer .copy {
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height:1.2em;
}
#footer .copy a {
    color: inherit; /* 文字色はそのまま */
    text-decoration: none; /* 下線なし */
    display: inline-block; /* ★重要：リンク(aタグ)を拡大させるために必要です */
    transition: all 0.3s ease; /* 色や大きさの変化を0.3秒かけて滑らかに */
}
/* マウスホバー時の設定 */
#footer .copy a:hover {
    transform: scale(1.1); /* ★ここで一回り（1.1倍）大きくします */
}
@media (min-width: 768px) {
	#footerMenu {
		max-width: 900px;
		margin: auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	#footerMenu div {
		width: 280px;
	}
	#footerMenu h2 {
		font-size: 22px;
		letter-spacing: 0.075em;
		font-weight: 700;
	}
	#footerMenu h2::after {
		content: attr(data-en);
		font-size: 9px;
		letter-spacing: 0.01em;
		display: block;
		margin: 10px 0 0;
		font-family: 'Noto Sans JP', sans-serif;
	}
	#footerMenu ul {
		border-top: 1px solid #FFF;
		margin: 15px 0 0;
		padding: 30px 0 0;
	}
	#footerMenu ul li {
		margin: 0 0 15px;
	}
	#footerMenu ul li a {
		font-size: 14px;
		letter-spacing: 0.01em;
		color: #FFF;
		text-decoration: none;
	}
	#footerMenu a::after {
		content: attr(data-en);
		font-size: 9px;
		letter-spacing: 0.01em;
		display: block;
		margin: 5px 0 0;
		font-family: 'Noto Sans JP', sans-serif;
	}
	#footer .floatingBtn {
		display: none;
	}
}
@media (max-width: 767px) {
	#footerBottom {
		padding: 15px 15px 100px;
	}
	#footerMenu {
		display: none;
	}
	#footerBottom .sns ul {
		height: 55px;
		margin: 0 0 15px;
		padding: 0 15px;
	}
	#footerBottom .sns ul li {
		margin: 0 10px;
	}
	#footerBottom .sns ul li img {
		width: 100%;
	}
	#footer .floatingBtn ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 2px;
		background-color: #FFF;
	}
	#footer .floatingBtn ul li {
		width: calc((100% - 2px) / 2);
	}
	#footer .floatingBtn ul li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		color: #FFF;
		font-size: 18px;
		background-color: #232584;
		text-decoration: none;
		height: 50px;
		padding: 0 0 15px;
	}
	#footer .floatingBtn ul li a .icon {
		margin-right: 5px;
	}
	#footer .floatingBtn ul li a .icon img {
		width: 80%;
		height: auto;
	}
}

/*---------------------- Clearfix ------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* =========================================
   フッターメニューのホバーエフェクト
========================================= */

#footerMenu ul li a {
    display: inline-block; /* ★transform（拡大）を効かせるために必須 */
    transition: transform 0.3s ease, color 0.3s ease; /* 0.3秒かけて滑らかに変化 */
    
    /* ★技：左端を「軸」にして拡大させる */
    transform-origin: left center; 
}

/* マウスホバー時の動き */
#footerMenu ul li a:hover {
    transform: scale(1.05); /* ほんの少し（5%）だけ上品に大きくする */
    color: #63b3ed; /* お好みで文字色をアクセントブルーに（不要ならこの行は削除） */
}

/* =========================================
              margin
========================================= */
.mt01 {
	margin-top: 1em;
}
.mt02 {
	margin-top: 2em;
}
.mt03 {
	margin-top: 3em;
}
.mt04 {
	margin-top: 4em;
}
.mt05 {
	margin-top: 5em;
}

/* =========================================
              文字サイズ
========================================= */
.sm50 {
	font-size: 50%;
}
.sm60 {
	font-size: 60%;
}
.sm70 {
	font-size: 70%;
}
.sm80 {
	font-size: 80%;
}
.sm90 {
	font-size: 90%;
}

/* =========================================
   【全ページ共通】スマホ下部の固定ボタン＆フッターを最前面に表示する
========================================= */
#footer {
    position: relative !important;
    z-index: 99999 !important; /* フッター全体を最前面に持ち上げる */
}
.floatingBtn {
    position: fixed !important; 
    bottom: 0 !important; 
    z-index: 99999 !important; /* 固定ボタンをさらに最前面に固定する */
}
/* =========================================
   クッキー同意バナー
========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.95); /* 画像に合わせたダークグレー */
    color: #fff;
    z-index: 9999999; /* 何よりも最前面へ */
    transform: translateY(100%); /* 初期状態は画面下に隠す */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
/* JSで付与される表示用クラス */
.cookie-banner.is-show {
    transform: translateY(0); 
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    font-family: 'Noto Sans JP', sans-serif;
}

.cookie-link {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s;
}
.cookie-link:hover {
    opacity: 0.7;
}

.cookie-btn {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
}
.cookie-btn:hover {
    background-color: #e0e0e0;
}

/* スマホ用の表示調整（縦並びにする） */
@media (max-width: 767px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 15px;
    }
    .cookie-text {
        font-size: 12px;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* =========================================
   【共通パーツ】 ボトムアイコンエリア（全ページ共通・ベストサイズ版）
========================================= */
.common-bottom-area {
    background-color: #f9f9f9 !important;
    padding: 80px 20px 80px !important; 
}

/* ▼ 1. 「トップページへ」ボタン ▼ */
.common-back-top {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.common-back-top a {
    display: inline-flex !important; 
    align-items: center !important;
    justify-content: center !important;
    /* ★幅と高さを大きくし、ベストなバランスに復元 */
    width: 360px !important; 
    height: 64px !important; 
    border: 1px solid #28A8E8 !important; 
    color: #28A8E8 !important; 
    font-weight: bold !important; 
    border-radius: 40px !important; 
    text-decoration: none !important; 
    transition: all 0.3s ease !important; 
    background: #fff !important;
    letter-spacing: 0.1em !important; 
    font-size: 18px !important; /* ★文字サイズを大きく */
    box-sizing: border-box !important; 
    padding: 0 !important; 
}

.common-back-top a:hover { 
    background: #28A8E8 !important; 
    color: #fff !important; 
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 15px rgba(40, 168, 232, 0.2) !important;
}

/* ▼ 2. 6つの事業部アイコン ▼ */
.biz-icons-inner {
    max-width: 1050px !important; /* ★アイコン同士のゆとりを少し広げる */
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important; 
    flex-wrap: wrap !important;
    gap: 15px !important;
    align-items: flex-start !important; 
}

.b-icon {
    width: 14.5% !important; /* ★円自体の大きさをベストサイズに復元 */
    height: auto !important; 
    aspect-ratio: 1/1 !important; 
    display: flex !important;     
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: #28A8E8 !important; 
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(40, 168, 232, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
    box-sizing: border-box !important; 
    padding: 0 !important;
}

.b-icon-inner {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important; 
}

.b-icon-text {
    color: #fff !important; 
    font-size: 16px !important; /* ★文字サイズを大きく（14px→16px） */
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important; /* ★絵との間隔を少し確保 */
    letter-spacing: 0.1em !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    line-height: 1 !important;
}

.b-icon img {
    /* ★絵を強制的に小さくしていた max-height を削除し、幅を拡大 */
    width: 55% !important; 
    height: auto !important; 
    object-fit: contain !important;
    display: block !important; 
    margin: 0 !important;
    padding: 0 !important;
    filter: none !important; 
}

.b-icon:hover {
    transform: scale(1.1) translateY(-5px) !important;
    background-color: #232584 !important; 
    box-shadow: 0 10px 25px rgba(35, 37, 132, 0.4) !important;
}

/* スマホ用レスポンシブ */
@media (max-width: 767px) {
    .common-bottom-area { padding: 50px 15px !important; }
    .biz-icons-inner { justify-content: center !important; gap: 20px 10px !important; }
    .b-icon { width: 30% !important; }
    .b-icon-text { font-size: 13px !important; margin-bottom: 5px !important; }
    .common-back-top { margin-bottom: 30px !important; }
    .common-back-top a { width: 100% !important; max-width: 280px !important; height: 50px !important; font-size: 15px !important; }
}

/* =========================================
   フローティングバナー（画像版）
========================================= */
.floating-banner {
    position: fixed;
    right: 20px;       /* 画面右からの距離 */
    top: 50%;          /* 画面の高さの50%（真ん中） */
    z-index: 99999;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40%); 
    transition: all 0.5s ease;
    pointer-events: none;
}

/* Javascriptで付与される表示用クラス */
.floating-banner.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%); 
    pointer-events: auto;
}

/* 閉じるボタン */
.banner-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    padding: 0;
    z-index: 2;
    transition: background-color 0.3s;
}
.banner-close-btn:hover {
    background-color: #00aced;
}
.banner-close-btn svg {
    width: 16px;
    height: 16px;
}

/* バナー画像本体 */
.floating-banner a {
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}
.floating-banner a:hover {
    transform: scale(1.02);
}

/* ▼ 修正：画像が両方出る問題の解消 ▼ */
.floating-banner img {
    width: 100%;
    height: auto;
    /* ここにあった display: block; を削除し、下の個別クラスに任せます */
}

/* PCとスマホでの画像切り替え（!importantで強制的に切り替え） */
.floating-banner .banner-img-pc { display: block !important; }
.floating-banner .banner-img-sp { display: none !important; }

@media (max-width: 767px) {
    .floating-banner {
        width: 150px;  /* スマホのバナー幅 */
        right: 15px;
    }
    .banner-close-btn {
        width: 26px;
        height: 26px;
        top: -10px;
        right: -10px;
    }
    .banner-close-btn svg {
        width: 14px;
        height: 14px;
    }
    /* スマホ時はPC用を消して、スマホ用を出す */
    .floating-banner .banner-img-pc { display: none !important; }
    .floating-banner .banner-img-sp { display: block !important; }
}

/* =========================================
   YouTubeセクション・可変レイアウト
========================================= */
#top-youtube { 
    background: #f9f9f9; 
    padding: 80px 20px; 
    text-align: center; 
}

.youtube-inner { 
    max-width: 1000px; /* 全体の最大幅を固定 */
    margin: 0 auto; 
}

.yt-section-title { 
    font-size: 32px; 
    font-weight: bold; 
    color: #232584; 
    margin-bottom: 50px; 
    letter-spacing: 0.1em; 
    font-family: "Noto Serif JP", serif;
}

.yt-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center; /* 少ない時も中央に寄せる */
}

/* --- 個数に応じたサイズ調整 --- */

/* 1個の時：最大幅（1000px）いっぱいに表示 */
.yt-grid.cols-1 .yt-item { 
    width: 100%; 
}

/* 2個の時：横に2つ並ぶ（約500pxずつ） */
.yt-grid.cols-2 .yt-item { 
    width: calc(50% - 10px); 
}

/* 3個の時：横に3つ並ぶ（約333pxずつ） */
.yt-grid.cols-3 .yt-item { 
    width: calc(33.333% - 14px); 
}

/* 4個の時：横に4つ並ぶ（約250pxずつ） */
.yt-grid.cols-4 .yt-item { 
    width: calc(25% - 15px); 
}

/* ビデオコンテナ（16:9比率を維持） */
.yt-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.yt-video-container iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: none;
}

/* レスポンシブ：スマホでは見やすさ重視で1〜2列に強制変更 */
@media (max-width: 767px) {
    .yt-grid.cols-2 .yt-item,
    .yt-grid.cols-3 .yt-item,
    .yt-grid.cols-4 .yt-item {
        width: calc(50% - 10px); /* スマホは基本2列 */
    }
}
@media (max-width: 480px) {
    .yt-grid .yt-item {
        width: 100% !important; /* 小さいスマホは1列 */
    }
}
/* =========================================
   YouTubeセクション・行間余白の追加
========================================= */

/* 各グリッド（行）の間に余白を追加 */
.yt-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: center;
    /* ★追加：行と行の間に40pxのスペースを作る */
    margin-bottom: 40px; 
}

/* 最後の行だけは下の余白を不要にする設定 */
.yt-grid:last-child {
    margin-bottom: 0;
}

/* 念のため、動画アイテム自体の下にも余白を持たせておくと安全です */
.yt-item {
    margin-bottom: 0; /* 基本はgridのgapで制御 */
}
/* =========================================
   「ページトップへ戻る」ボタンを最前面に（フッター隠れ防止）
========================================= */
.pageTop { 
    z-index: 9999999 !important; 
}
/* =========================================
   ローカルナビゲーション（ページ内リンクメニュー）
========================================= */
.local-nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 50px auto; /* 画像との余白 */
    padding: 0 20px;
    list-style: none;
}

.local-nav-menu li {
    width: calc(25% - 15px); /* PCは4列のタイル状に */
    min-width: 200px;
}

.local-nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: #fff;
    color: #1a1c6a; /* アースのネイビー */
    border: 1px solid #1a1c6a;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

/* 右側に小さな矢印をつけてボタンっぽさを強調 */
.local-nav-menu a::after {
    content: "〉";
    position: absolute;
    right: 15px;
    font-size: 12px;
    transition: right 0.3s ease;
}

/* ホバー時のアクション */
.local-nav-menu a:hover {
    background-color: #1a1c6a;
    color: #fff;
    box-shadow: 0 4px 10px rgba(26, 28, 106, 0.2);
    transform: translateY(-2px);
}
.local-nav-menu a:hover::after {
    right: 10px; /* ホバーで矢印が少し右に動く */
}

/* =========================================
   スマホ用（767px以下は2列にする）
========================================= */
@media (max-width: 767px) {
    .local-nav-menu {
        gap: 10px;
        margin: 30px auto;
    }
    .local-nav-menu li {
        width: calc(50% - 5px); /* スマホは2列 */
        min-width: auto;
    }
    .local-nav-menu a {
        font-size: 13px;
        height: 50px;
        padding: 0 10px;
    }
    .local-nav-menu a::after {
        right: 8px;
        font-size: 10px;
    }
}
/* =========================================
   お知らせ記事本文（news-single-content）専用スタイル
========================================= */

.news-single-content {
    line-height: 1.8;
    color: #333;
    font-size: 16px; /* 標準的な読みやすいサイズ */
}

/* --- 段落（改行・余白） --- */
.news-single-content p {
    margin-bottom: 2em; /* 段落のあとに広めの余白をあけます */
}

/* --- 太字 --- */
.news-single-content strong,
.news-single-content b {
    font-weight: bold !important;
    display: inline;
}

/* --- 見出し（シンプルで高級感のあるデザイン） --- */
.news-single-content h1,
.news-single-content h2,
.news-single-content h3 {
    color: #1a237e; /* 紺色 */
    line-height: 1.4;
}

/* 中見出し（h2相当：背景グレーに左線） */
.news-single-content h2 {
    font-size: 22px;
    font-weight: bold;
    margin: 2.5em 0 1.2em;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-left: 6px solid #1a237e;
}

/* 小見出し（h3相当：下線） */
.news-single-content h3 {
    font-size: 19px;
    font-weight: bold;
    margin: 2em 0 1em;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

/* --- 画像（はみ出し防止） --- */
.news-single-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5em;
    display: block;
}

/* --- 水平線 --- */
.news-single-content hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 3em 0;
}
/* =========================================
   reCAPTCHAバッジの表示と位置調整（左下＆絶対に最前面）
========================================= */
.grecaptcha-badge {
    visibility: visible !important; /* 表示させる */
    z-index: 999999 !important; /* CSSで指定できる最大値（約21億）で絶対に一番手前へ！ */
    left: 20px !important;    /* 画面の左側に移動（右側のUPボタンとの被り回避） */
    right: auto !important;   /* 右側の固定を解除 */
    bottom: 20px !important;  /* 下からの余白 */
}
/* スマホ表示時にGM内のお問い合わせ・電話ボタンを非表示にする */
@media screen and (max-width: 768px) {
    #globalMenu .mainMenu02 {
        display: none !important;
    }
}
/* スマホ表示時、reCAPTCHAバッジを上にズラす */
@media screen and (max-width: 768px) {
    .grecaptcha-badge {
        bottom: 80px !important; /* ボタンの高さに合わせて数値を調整してください */
    }
}