@charset "UTF-8";
/* CSS Document */

@media screen and (min-width: 1001px) {
/* ===== ヘッダー上部 ===== */
.site-header {
	width: 100%;
	background: #fff;
	position: sticky; /* ヘッダー固定 */
	top: 0;
	z-index: 100;
}
.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	align-items: center;
}

/* ロゴ */
.logo {
	width: 220px;
	height: auto;
}
.logo img {
	width: 220px;
}

/* ===== ナビゲーション ===== */
.global-nav {
	width: 100%;
	background: #01267f;
}
.global-nav ul {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	list-style: none;
}
.global-nav li {
	flex: 1;
	text-align: center;
	position: relative;
}

/* 区切り線 */
.global-nav li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: rgba(255,255,255,1.0);
}
.global-nav .leftline {
	content: "";
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: rgba(255,255,255,1.0);
}
.global-nav .rightline {
	content: "";
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: rgba(255,255,255,1.0);
}

/* リンク */
.global-nav a {
	display: block;
	padding: 14px 10px;
	color: #fff;
	text-decoration: none;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 14pt;
	line-height: 20pt;
	letter-spacing: 2px;
	font-weight: 600;
	transition: background 0.3s;
}
.global-nav a:hover {
	background: rgba(255,255,255,0.1);
}

/* ===== SLIDE-FV ===== */

.topview {
	position: relative;
	top: -260px;
	width: 100%;
	height: auto;
}
.topview img {
	max-height: 540px;
}
/* グラデーション */
.topview::after{
	content:"";
	position: absolute;
	right: 0;
	top: 0;
	width: 55%;
	height: 100%;
	background:linear-gradient(
	90deg,
	rgba(0,0,0,0) 0%,
	rgba(34,92,160,0.7) 40%,
	rgba(16,63,130,0.95) 100%
);
}

/* コンテンツ */
.topview-inner{
	position: relative;
	top: 500px;
	z-index: 2;
	max-width: 1200px;
	margin: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.topview-content{
	position: relative;
	top: -100px;
	width: 480px;
	margin: 20px 0 40px 0;
}

/* ロゴ */
.topview-logo{
	width: 300px;
	margin-bottom: 20px;
}

/* テキスト */
.topview-text{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 12pt;
	line-height: 24pt;
	font-weight: 500;
	color: #fff;
}

/* slider */
.slideshow-container {
    max-width: 100%;
    width: 100%;
    margin: auto;
}
.slide {
    display: none;
}
.slide img {
    width: 100%;
	height: auto;
	object-fit: cover;
}
.dots-container {
	margin: -250px auto 0 auto;
    text-align: center;
    padding: 20px;
}
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #717171;
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* ===== FV ===== */

.fv{
	position: relative;
	height: 480px;
	background: url(../image/fv_img.jpg) center/cover no-repeat;
}

/* グラデーション */
.fv::after{
	content:"";
	position: absolute;
	right: 0;
	top: 0;
	width: 55%;
	height: 100%;
	background:linear-gradient(
	90deg,
	rgba(0,0,0,0) 0%,
	rgba(34,92,160,0.7) 40%,
	rgba(16,63,130,0.95) 100%
	);
}

/* コンテンツ */
.fv-inner{
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.fv-content{
	width: 480px;
}

/* ロゴ */
.fv-logo{
	width: 300px;
	margin-bottom: 20px;
}

/* テキスト */
.fv-text{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 12pt;
	line-height: 24pt;
	font-weight: 500;
	color: #fff;
}

/* ===== 右固定ナビ ===== */
.side-nav{
	position: fixed;
	right: 0;
	top: 370px;
	transform: translateY(-50%);
	z-index: 999;
}
.side-nav a{
	width: 40px;
	height: 120px;
	writing-mode: vertical-rl;
	text-orientation: upright;
	background: #01267f;
	color: #fff;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	text-align: center;
	font-size: 12pt;
	line-height: 18pt;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background 0.3s;
}
.side-nav a:hover{
	background: rgba(16,63,130,0.8);
}
.side-nav .navline {
	border-bottom: 1px solid rgba(255,255,255,0.8);
}
.news-slider {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}
.inner {
	max-width: 772px;
}
.fb_inner {
	margin-top: 10px;
	max-width: 428px;
}
.fb-page,
.fb-page span,
.fb-page iframe {
	width: 400px;
	height: 300px;
}
.slider-title {
	font-size: 24pt;
	line-height: 32pt;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 600;
	color: #01267f;
	text-align: center;
	letter-spacing: 5px;
	margin-bottom: 20px;
}

/* ===== スライダー ===== */
.slider-wrapper {
	display: flex;
	align-items: center;
	position: relative;
}
.slider-container {
	overflow: hidden;
	width: 100%;
}
.slider-track {
	display: flex;
	transition: transform 0.4s ease;
	gap: 20px;
}

/* ===== カード ===== */
.card {
	min-width: 208px;
	max-height: 245px;
	background: #fff;
	border: 1px solid #ddd;
}

/* 画像 */
.card-img {
	width: 206px;
	height: auto;
	background: #ddd;
}
.card-img img {
	width: 206px;
	max-height: 130px;
}

/* 本文 */
.card-body {
	width: 100%;
	padding: 20px;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 10pt;
	line-height: 15pt;
	font-weight: 500;
	color: #333;
	text-align: left;
}
.date {
	margin: 0;
}
.slidetext {
	height: 50px;
	padding: 5px 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.slidetext a {
	color: #333;
	text-decoration: none;
}
.slidetext a:hover {
	text-decoration: underline;
}
.slidetext_in {
	height: 72.5px;
}

/* ===== 矢印 ===== */
.arrow {
	background: none;
	border: none;
	font-size: 30px;
	font-weight: 100;
	cursor: pointer;
	padding: 10px 20px;
	color: #333;
}
.arrow img {
	width: 15px;
}
.arrow:hover {
	opacity: 0.7;
}

/* ===== セクション全体 ===== */
.news-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 100px;
}
.news-inner {
	max-width: 600px;
}

/* ===== タイトル ===== */
.news-header {padding: 0;}
.news-title {
	font-size: 32pt;
	line-height: 42pt;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #01267f;
	font-weight: 600;
	letter-spacing: 5px;
	margin-bottom: 10px;
}
.news-sub {
	display: flex;
	align-items: center;
	gap: 16px;
}
.link-sub {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 0 8px 0;
}
.news-badge {
	font-size: 10pt;
	line-height: 15pt;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 600;
	color: #fff;
	width: 40px;
	height: 40px;
	background: #01267f;
	padding: 10px 2px;
}
.link-badge {
	font-size: 10pt;
	line-height: 15pt;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 600;
	color: #fff;
	width: 40px;
	height: 40px;
	background: #01267f;
	padding: 10px 6px;
}
.news-text {
	font-size: 14pt;
	line-height: 20pt;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 600;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.link-text {
	padding: 6px 0 0 0;
	font-size: 14pt;
	line-height: 20pt;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 600;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

/* 区切り線 */
.news-line {
	border: none;
	border-top: 2px solid #222;
	margin: 15px 0;
}

/* ===== ニュース一覧 ===== */
.news-list {
	list-style: none;
}

/* 各アイテム */
.news-item {
	padding: 15px 0;
	border-bottom: 1px solid #ccc;
}
.link-item {
	padding: 25px 0;
	border-bottom: 1px solid #ccc;
}

/* メタ情報 */
.news-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
}

/* ラベル */
.news-label {
	border: 1px solid #123a8c;
	color: #01267f;
	padding: 2px 12px;
	font-size: 10pt;
	line-height: 15pt;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 600;
}

/* 日付 */
.news-date {
	font-size: 10pt;
	line-height: 15pt;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 500;
	color: #333;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

/* タイトル */
.news-title-text {
	font-size: 12pt;
	line-height: 18pt;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 500;
	color: #333;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.news-title-text a {
	color: #333;
	text-decoration: none;
}
.news-title-text a:hover {
	text-decoration: underline;
}

/* ===== ボタン ===== */
.news-button-wrap {
	text-align: center;
	margin-top: 20px;
}
.news-button {
	display: inline-block;
	background: #ddd;
	color: #333;
	padding: 5px 45px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 10pt;
	line-height: 15pt;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 600;
}
.news-button:hover {
	background: #ccc;
}

/* ===== セクション全体 ===== */
.member-area {
	max-width: 1160px;
	height: auto;
	padding: 0;
	margin: 50px auto;
	border: 5px solid #eee;
}

/* 内側幅 */
.member-inner {
	max-width: 1000px;
	height: auto;
	padding: 20px 0 40px 0;
	margin: 0 auto;
	text-align: center;
}

/* タイトル */
.member-title {
	font-size: 32pt;
	line-height: 42pt;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 600;
	letter-spacing: 2px;
	color: #01267f;
	margin: 30px 0;
}

/* グリッド */
.member-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 20px;
}

/* ボックス */
.member-box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	border: 3px solid #01267f;
	color: #01267f;
	font-size: 18pt;
	line-height: 24pt;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s;
}

/* ホバー */
.member-box:hover {
	background: #01267f;
	color: #fff;
}

/* ===== フッター全体 ===== */
.site-footer {
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
}

/* 背景 */
.footer-main {
	background-image: url(../image/ft_back.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 60px 20px;
}

/* レイアウト */
.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

/* カラム */
.footer-col {
	flex: 1;
}

/* ===== 左 ===== */
.footer-logo {
	width: 220px;
	height: auto;
	margin-bottom: 20px;
}
.footer-logo img {
	width: 220px;
}
.footer-text {
	width: 300px;
	font-size: 10pt;
	line-height: 18pt;
	margin: 0;
	padding: 0;
}

/* ===== 中央（地図） ===== */
.footer-map {
	width: 100%;
	max-width: 350px;
	height: 200px;
	display: block;
	margin: 0 auto;
	border-radius: 4px;
}

/* ===== 右（リンク） ===== */
.footer-links {
	display: flex;
	gap: 10px;
}
.footer-links ul {
	list-style: none;
}
.footer-links li {
	font-size: 10pt;
	line-height: 18pt;
}
.footer-links li a {
	color: #fff;
	text-decoration: underline;
}
.footer-links li a:hover {
	opacity: 0.7;
}
.footer-links .ft-menu01 {
	width: 100px;
	margin: 5px 0;
	padding: 0;
}
.footer-links .ft-menu02 {
	width: 120px;
	margin: 5px 0;
	padding: 0;
}

/* ===== コピーライト ===== */
.footer-bottom {
	background: #e5e5e5;
	color: #777;
	text-align: center;
	padding: 20px;
	position: relative;
	font-size: 9pt;
}	
.no-tel-link {
	color: #fff;
}
.no-tel-link a {
	pointer-events: none;
	color: #fff;
	text-decoration: none;
}

/* ページトップへ */
.pagetop {
	width: 40px;
	height: auto;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1;
}
.pagetop img {
	width: 40px;
	height: auto;
}
}