body {
  color: #333;
}
.alignL{text-align:left;}
.alignC{text-align:center;}
.alignR{text-align:right;}
.bold{font-weight:700;}
.fnFade{transition: opacity 0.3s ease;}
.fnFade:hover{opacity: 0.7;}
.noteList{
 padding-left: 0;
}
.noteList li {
  position: relative;
  padding-left: 1.5em; 
}
.noteList li::before {
  content: "※"; 
  position: absolute; 
  left: 0; 
}
.Supervisor{
	color:#999 !important;
	font-size:16px;
}
/* ===== Header ===== */
.site-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #ccc;
  z-index: 1000;
}

/* PC / TAB：追従用アニメーション */
body.is-pc .site-header,
body.is-tab .site-header {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* 下スクロール中：非表示 */
body.is-pc .site-header.is-hidden,
body.is-tab .site-header.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

/* 上スクロール中：表示 */
body.is-pc .site-header.is-visible,
body.is-tab .site-header.is-visible {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===== Header inner ===== */
.header-inner {
  min-width: 960px;
  margin: 0 auto;
	padding:0 10px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img{
	width:200px;
	heighgt:auto;
}

/* ===== Global Nav ===== */
.global-nav ul {
  display: flex;
  gap: 32px;
}

.global-nav a {
  position: relative;
  font-weight: 600;
  padding: 4px 0;
}

/* ===== Nav Line (base) ===== */
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -24px;
  width: 100%;
  height: 4px;
  background: #ffa500;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* hover：左 → 右にフェードイン */
body.is-pc .global-nav a:hover::after,
body.is-tab .global-nav a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* active：常時表示 */
.global-nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

/* パンクズ */
.breadcrumb {
	padding:5px 10px;
  font-size:0.875rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li + li::before {
  content: ">";
  margin: 0 8px;
  color: #999;
}
.breadcrumb a {
  text-decoration: none;
  color: #333;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== MainVisual ===== */
.mvTop{
  width: 100%;
	height: 520px;	
  padding: 0 0 50px;
	position: relative;
}
.mvTop img{
  width:100%;
}
.mv{
	height: 520px;
  overflow: hidden;
}
.mv img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.headingBlock{
	position: relative;
	margin:0 auto;
	max-width:1200px;
}
.headingBlock .headingInner{
	position: absolute;
	top:-100px;
	right:0;
	width: 720px;
	padding:30px;
	z-index:2;
  background: #fff;	
}
.headingBlock .headingInner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: -1;
  width: 100vw;
  margin-right: calc(-100vw + 100%);
}
.headingBlock .headingTit{
	font-size:3rem;
	font-weight: 900;
	color:#003f6e;
	line-height:1.2;
}
.headingBlock p{
	margin-top:10px;
}
/* ===== Main ===== */
.container {
	position: relative;
  width:100%;
	padding:0 0 50px 0;
}
.section{
	padding:0 10px 100px;
	min-width:960px;
}
.inner {
	position: relative;
  max-width:1200px;
	width:100%;
	margin:0 auto;
}
.titBlock{
	position: relative;
	margin: 0 -10px 70px;
	padding:0 10px;
	border-bottom:1px solid #ccc;
}
.titBlock_first{
	padding-top:150px;
}
.titBlock .bgEn{
	position: absolute;
	bottom:-9rem;
	right:-10px;
	color:#efefef;
	font-size:8rem;
	font-weight:700;
	z-index: -1;
}
.titBlock .tit02{
	max-width:1200px;
	margin:0 auto;
}
.titBlock .tit02 span{
	position: relative;
	color:#004a80;
	font-size:1.875rem;
	display: inline-block;
	padding-bottom:5px;
}
.titBlock .tit02 span::before{
	content: " ";
	position:absolute;
	bottom:-3px;
	left:0;
	width:100%;
	height:7px;
	background:#004a80;
}
a.btn{
  position: relative;
  display: block;
  border: 2px solid #000;
  padding: 12px 40px 12px 12px;
  width: 260px;
  font-weight: 500;
	margin:0 auto;
}

/* 矢印 */
.arrow {
  position: absolute;
  left: calc(100% - 40px); /* ← ボタン内右寄せ */
  top: 50%;
  width: 32px;
  height: 2px;
  background-color: #ffa500;
  border-radius: 9999px;
  transform: translateY(-50%);
  transition: width 0.3s ease;
}
.arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #ffa500;
  border-radius: 9999px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.colAbout:hover h3 .arrow,
a.btn:hover .arrow {
  width: 55px;
}



/* ===== Footer ===== */
.pre-footer {
  background: #000;
  text-align: center;
  cursor: pointer;
}

.pre-footer .inner {
  margin: 0 auto;
  max-width: 1200px;
  min-width: 960px;
  color: #fff;
  text-align: right;
}

.pre-footer .inner span {
  position: relative;
  display: inline-block;
  padding: 15px 10px 5px;
  font-size: 10px;
}

.pre-footer .inner span::before {
  position: absolute;
  top: 8px;
  left: 50%;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-top: 2px solid #e69500;
  border-right: 2px solid #e69500;
  transform: rotate(-45deg);
}

.site-footer {
  background: #003f6e;
  color: #fff;
  padding: 80px 20px 40px;
  text-align: center;
	min-width:960px;
}

.footer-logo {
  margin-bottom: 40px;
}
.footer-logo img{
	max-width:300px;
	height:auto;
	margin:0 auto;
}
.footer-nav {
  margin-bottom: 40px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  font-size: 14px;
}
.footer-nav li {
	padding:0 30px;
	border-right: 1px solid #fff;
}
.footer-nav li:last-child {
  border-right: none;
}
.copyright {
  margin: 20px 10px;
  font-size: 12px;
  text-align: center;
}




.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
/* PC・タブレット表示 */
.devSmp {display: none;}
.devPcTbl{display: block;}
