@charset "utf-8";

/*
	* 顧客オリジナルスタイルシート
	* サイト全体に関するスタイル
	* ver1
	* Copyright (C) ●●など
	* 更新履歴
		└ 
*/
/* *{
	border:solid 1px #ccc;
} */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	初期設定（不要なものは削除）
//////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ******************************************************************************************
	root設定（適宜修正）（フォントはベースフォント外を削除してください。）
****************************************************************************************** */
:root{
	--black: #0d122f;
	--mainColor: #002060;
	--accentColor: #e2f0ff;
	--accentYellow: #ffbd00;
	--white: #fff;
	--lightGray: #f8f8f8;
	--gray: #e8e8e8;
	--darkGray: #b1b1b1;
	--pink: #d17389;
	--purple: #a68dae;
	--green: #5eb0ad;
	--headerSpace: 20px;/* ヘッダー統一余白 */
	--hamburgerSpace: 60px;/* ハンバーガーメニュー幅相殺余白 */
	--borderRadius3: 3px;/* 角丸 */

	/* ベースフォントが16pxの場合 */
	--fontSize10: .625rem;
	--fontSize11: .687rem;
	--fontSize12: .75rem;
	--fontSize13: .812rem;
	--fontSize14: .875rem;
	--fontSize15: .937rem;
	--fontSize16: 1rem;
	--fontSize17: 1.062rem;
	--fontSize18: 1.125rem;
	--fontSize19: 1.187rem;
	--fontSize20: 1.25rem;
	--fontSize21: 1.312rem;
	--fontSize22: 1.375rem;
	--fontSize23: 1.437rem;
	--fontSize24: 1.5rem;
	--fontSize25: 1.562rem;
	--fontSize26: 1.625rem;
	--fontSize27: 1.687rem;
	--fontSize28: 1.75rem;
	--fontSize29: 1.812rem;
	--fontSize30: 1.875rem;
	--fontSize31: 1.937rem;
	--fontSize32: 2rem;
	--fontSize33: 2.062rem;
	--fontSize34: 2.125rem;
	--fontSize35: 2.187rem;
	--fontSize36: 2.25rem;
	--fontSize37: 2.312rem;
	--fontSize38: 2.375rem;
	--fontSize39: 2.437rem;
	--fontSize40: 2.5rem;
	--fontSize41: 2.562rem;
	--fontSize42: 2.625rem;
	--fontSize43: 2.687rem;
	--fontSize44: 2.75rem;
	--fontSize45: 2.812rem;
	--fontSize46: 2.875rem;
	--fontSize47: 2.937rem;
	--fontSize48: 3rem;
	--fontSize49: 3.062rem;
	--fontSize50: 3.125rem;

	/* ベースフォント18pxの場合 */
	--fontSize10: 0.555rem;
	--fontSize11: 0.611rem;
	--fontSize12: 0.666rem;
	--fontSize13: 0.722rem;
	--fontSize14: 0.777rem;
	--fontSize15: 0.833rem;
	--fontSize16: 0.888rem;
	--fontSize17: 0.944rem;
	--fontSize18: 1rem;
	--fontSize19: 1.055rem;
	--fontSize20: 1.111rem;
	--fontSize21: 1.166rem;
	--fontSize22: 1.222rem;
	--fontSize23: 1.277rem;
	--fontSize24: 1.333rem;
	--fontSize25: 1.388rem;
	--fontSize26: 1.444rem;
	--fontSize27: 1.5rem;
	--fontSize28: 1.555rem;
	--fontSize29: 1.611rem;
	--fontSize30: 1.666rem;
	--fontSize31: 1.722rem;
	--fontSize32: 1.777rem;
	--fontSize33: 1.833rem;
	--fontSize34: 1.888rem;
	--fontSize35: 1.944rem;
	--fontSize36: 2rem;
	--fontSize37: 2.055rem;
	--fontSize38: 2.111rem;
	--fontSize39: 2.166rem;
	--fontSize40: 2.222rem;
	--fontSize41: 2.277rem;
	--fontSize42: 2.333rem;
	--fontSize43: 2.388rem;
	--fontSize44: 2.444rem;
	--fontSize45: 2.5rem;
	--fontSize46: 2.555rem;
	--fontSize47: 2.611rem;
	--fontSize48: 2.666rem;
	--fontSize49: 2.722rem;
	--fontSize50: 2.777rem;
	--fontSize51: 2.8333333333333rem;
	--fontSize52: 2.8888888888889rem;
}
/* ******************************************************************************************
	ベースフォント設定
****************************************************************************************** */
html{
	font-size: 18px;/* ベースフォント */
}

@media screen and (max-width: 576px){
	html{
		font-size: 14px;/* ベースフォント */
	}
	}

/* ******************************************************************************************
	body設定
****************************************************************************************** */
body{
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100vh;
    color: var(--black);
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    position: relative;
    overflow-x: hidden;
    background-color: #E8F0F5;
    background-color: rgb(241 251 255 / 90%);
    background-blend-mode: lighten;
    background-image: url(../img/water-bg.png);
	background-size: cover;
}
/* reCAPTCHAのアイコンを非表示 */
.base-layout-header {}
.grecaptcha-badge { visibility: hidden; }

/* ******************************************************************************************
	テキスト設定
****************************************************************************************** */
/* pの中にrubyがあれば余白をあける */
p:has(>ruby){
	line-height: 2;
}

.sp-wrap{
	display: none;
}
@media screen and (max-width:576px){
	.sp-wrap{
		display: block;
	}
}
/* ******************************************************************************************
	画像設定
****************************************************************************************** */
img{
	vertical-align: bottom;/* 余白防止 */
	max-width: 100%;/* 画像のデフォルトサイズ */
	height: auto;
	object-fit: cover;
}
/* ******************************************************************************************
	フォーム設定（適宜設定）
****************************************************************************************** */
select{
	-webkit-appearance: auto;
	appearance: auto; /* デフォルトの矢印を表示 */
}
select:hover{
	cursor: pointer;
}
input{
	border: 1px solid rgb(0 0 0 / 20%);
}
[type="button"], [type="reset"], [type="submit"]{
	padding: 0 .5em;
	border: none;
	background-color: var(--mainColor);
	color: var(--black);
	cursor: pointer;
}
/* ******************************************************************************************
	リンク設定
****************************************************************************************** */
a{
	display: inline-block;
	color: var(--black);
	text-decoration: underline;
	text-underline-offset: .2rem;
	text-decoration-thickness: 1px;
	text-decoration-skip-ink: none;
}
a:hover, a:focus{
	text-underline-offset: .2rem;
}
/* ******************************************************************************************
	フォーカス設定
****************************************************************************************** */
a:focus-visible, button:focus-visible, input:focus-visible, input:focus-visible, button:focus-visible, select:focus-visible{
	outline: 3px solid var(--black);
}
/* ******************************************************************************************
	リスト設定
****************************************************************************************** */
ol{
	list-style: decimal;/* リセットCSS打ち消し */
}
/* ******************************************************************************************
	電話番号設定（576px以下タップ有効化）
****************************************************************************************** */
/* タップ電話 */
a[href^="tel:"]{
	display: inline-block;
	text-decoration: none;
	pointer-events: none;
}
@media screen and (max-width:576px){
	a[href^="tel:"]{
		text-decoration: underline;
		cursor: pointer;
		pointer-events: auto;
		/* フォントサイズを変更する場合適宜修正 */
		/* font-size: 1.2rem; */
	}
}
/* ******************************************************************************************
	サイト幅設定（適宜設定）
****************************************************************************************** */
.ly_inner{
	width: 100%;
	max-width: 1220px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
}

.ly_inner-wide{
    width: 90%;
	margin: 0 auto;
	max-width: 1500px;

}

@media screen and (max-width: 576px){
	.ly_inner-wide {
		width: 95%;
	}
}

/* ******************************************************************************************
	サイト区切り設定（必要に応じて設定）
****************************************************************************************** */
.ly_section{
	padding-top: 3rem;
	padding-bottom: 3rem;
}
/* ******************************************************************************************
	見出し設定
****************************************************************************************** */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	英語・日本語見出し
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.el_englishJapaneseTitle{
	margin-bottom: 50px;
	padding: 10px 20px;
	text-align: center;
}
.el_englishJapaneseTitle_english{
	display: block;
	font-size: var(--fontSize40);
	font-family: "Times New Roman", Times, "serif";
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	カラーライン見出し
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.el_colorLineTitle{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 50px;
}
.el_colorLineTitle_title{
	position: relative;
	padding: 0 30px;/* 見出しと線の余白 */
	background-color: var(--white);
	font-weight: 600;
	font-size: var(--fontSize21);
	text-align: center;
	z-index: 2;
	font-size: var(--fontSize32);
}
.el_colorLineTitle_line{
	display: inline-block;
	position: relative;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 2px;
	opacity: .5;
	border-radius: var(--borderRadius3);
	background-color: var(--purple);
	z-index: 1;
}
.el_colorLineTitle_line::after, .el_colorLineTitle_line::before{
	content: "";
	display: block;
	position: absolute;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 2px;
}
.el_colorLineTitle_line::before{
	top: calc(50% - 8px);
	left: calc(50% + 10px );
	background-color: var(--pink);
}
.el_colorLineTitle_line::after{
	top: calc(50% + 8px);
	left: calc(50% + 20px );
	background-color: var(--green);
}
.bl_sitelogo a:hover{
	opacity: .7;
	transition: .7s;
}




/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	見出しH1のコメントアウト
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ******************************************************************************************
	見出しH2のコメントアウト
****************************************************************************************** */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	見出しH3のコメントアウト
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ======================================================================
	見出しH4のコメントアウト
====================================================================== */

/* ------------------------------------------------------------
	見出しH5のコメントアウト
------------------------------------------------------------ */

/* -----
	見出しH6のコメントアウト
----- */

/* 説明のみのコメントアウト */

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	ヘッダー
//////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ******************************************************************************************
	グローバルメニュー
****************************************************************************************** */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	全体
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* .bl_sitelogo {
    margin-left: 1rem;
} */
.ly_header {
    /* position: absolute;
    top: 0; */
    width: 100%;
    z-index: 1;
	background-color: var(--mainColor);
    /* backdrop-filter: blur(8px); */
	/* margin-bottom: 3rem; */
}
.bl_sitelogo {
  /* width: 500px; */
  width: clamp(200px, 50vw, 300px);
    height: auto;
}

.bl_header-wrap {
	height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin: 0 1rem;
}
/* 電話番号 */
/* .bl_tel {
    background-color: var(--accentColor);
    padding: .5rem 1rem;
    border-radius: 50vh;
    font-weight: 600;
    box-shadow: 0px 2px 3px rgb(0 0 0 / 3%);
} */
.bl_tel {
    display: flex;
    background-color: #fff;
    align-items: center;
    padding: .25rem 1.5rem;
    border-radius: 50vh;
	color: var(--mainColor);
}
.bl_tel a{
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1rem;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
.bl_tel a::before{
    content: '';
    display: inline-block;
    mask-image: url(../img/tel.svg);
    width: 23px;
    height: 23px;
    aspect-ratio: 1 / 1;
    background-color: var(--accentYellow);
    z-index: 1;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 23px;
    mask-size: 23px;
    -webkit-mask-position: left 50% top 50%;
    mask-position: left 50% top 50%;
}

/* お問い合わせフォームボタン */
.bl_form-btn a{
    background-color: #0aa0b3;
    padding: .5rem 1.5rem;
    border-radius: 50vh;
    font-weight: 600;
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap:5px;
	font-size: .85rem;
    box-shadow: 0px 2px 3px rgb(0 0 0 / 3%);
}

.bl_form-btn a::before{
	content: '';
    display: inline-block;
    mask-image: url(../img/mail.svg);
    width: 23px;
    height: 23px;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    z-index: 1;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 23px;
    mask-size: 23px;
    -webkit-mask-position: left 50% top 50%;
    mask-position: left 50% top 50%;
}

.bl_form-btn a:hover{
	background-color: #09b3c9;
	transition: .6s;
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: ripple-deepblue 1.5s infinite;
	color: #fff;}
	@keyframes ripple-deepblue {
		0% {box-shadow: 0 0 0 0 #097a89;}
		70% {box-shadow: 0 0 0 10px rgba(66, 230, 255, 0);}
		100% {box-shadow: 0 0 0 0 rgba(106, 212, 247, 0);}
	  }
  


.bl_gNavUnit .bl_gNavUnit-info {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}
.bl_gNav_area .bl_sub-contents-head{
	display: none;
}


@media screen and (max-width:992px){
    .bl_gNav_area {
        position: fixed;
        top: 0;
        right: 0;
        overflow: auto;
        transition: .4s;
        width: 100%;
        height: 100vh;
        visibility: hidden;
        background-color: #001b51f0;
        z-index: 3;
    }
	.bl_gNav_area.is_active{
		right: 0;
		visibility: visible;
		z-index: 999;
	}
	/* 電話番号・お問い合わせボタン */
	.bl_gNav_area.is_active .bl_gNavUnit .bl_gNavUnit-info {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.75rem;
        margin-top: 1rem;
	}
	.bl_gNav_area.is_active .bl_gNavUnit .bl_tel a,.bl_gNav_area.is_active .bl_gNavUnit .bl_form-btn{
		flex-grow: 1;
	}
	.bl_gNav_area.is_active .bl_gNavUnit .bl_form-btn a{
		font-size: 1rem;
	}
	.bl_tel{
		display: none;
	}


	.bl_gNav_area.is_active .bl_sub-contents-head{
		display: flex;
		margin-bottom: 1rem;
		font-size: 1.5rem;
		margin-top: 2rem;
		color: #fff;
	}

	.bl_gNav.is_open{
		left: 0;
		transition: all .6s;
	}
	.bl_gNav{
overflow-x: hidden;
        overflow-y: scroll;
        transition: all .6s;
        width: 100%;
        padding: 2rem 1rem 11rem 1rem;
	}
	.bl_gNavUnit{
		display: block;
		margin-bottom: 2rem;
	}

	.bl_header-wrap {
		height: 60px;
		    margin: 0 .5rem;
	}
}
@media screen and (max-width:576px){
	.bl_tel:hover{
		background-color: #b7d0eb;
		transition: .6s;
	}

	.bl_sitelogo {
		width: 280px;
	}
	.hero h2 {
    font-size: 22px;
    margin: 5px 0 0;
    font-weight: 600;
}

}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	個別
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ============================================================
	グローバルメニューのリスト
============================================================ */
.bl_gNav_item{
	position: relative;
}
.bl_gNav_item + .bl_gNav_item::before{
	content: '';
	display: block;
	width: 1px;
	height: 15px;
	background-color: var(--black);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.bl_gNav_link{
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s;
	padding: 0.3rem 1.5rem;
	font-size: 1.1rem;
	color: var(--black);
	font-weight: 600;
	letter-spacing: 2px;
}
.bl_gNav_link:hover, .bl_gNav_link:focus{
	opacity: 1;
	color: var(--black);
	background-color: var(--black);
}
@media screen and (max-width:992px){
	.bl_gNav_item{
		width: 100%;
	}
	.bl_gNav_item + .bl_gNav_item::before{
		content: none;
	}

	.bl_gNav_link{
		position: relative;
		display: block;
		padding: 1rem;
		border-bottom: 1px solid #ccc;
	}
	.bl_gNav_link::after{
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		border: 5px solid transparent;
		border-left: 8px solid var(--black);
		transition: .2s;
	}
	.bl_gNav_link:hover::after,.bl_gNav_link:focus::after{
		right: 7px;
		transition: .2s;
	}
}
/* ============================================================
	ハンバーガーメニュー
============================================================ */
.el_trigger{
	display: none;
}
@media screen and (max-width:992px){
    .el_trigger {
        display: block;
        position: fixed;
        top: 0px;
        right: 0px;
        transition: .2s;
        width: 55px;
        height: 55px;
        margin: 0;
        background-color: var(--mainColor);
        cursor: pointer;
        z-index: 1000;
        border-radius: 0 0 0 10px;
    }

	.el_trigger.is_active .el_trigger_line{
		background-color: transparent;
	}
	.el_trigger.is_active .el_trigger_line::before{
		top: 0;
		transform: rotate(45deg);
	}
	.el_trigger.is_active .el_trigger_line::after{
		top: 0;
		transform: rotate(-45deg);
	}
	.el_trigger.is_active .el_trigger_text::before{
		content: "閉じる";
	}
	.el_trigger_line{
		display: block;
		position: absolute;
		top: 18px;
		left: 50%;
		transform: translateX(-50%);
		transition: .4s;
		width: 25px;
		height: 2px;
		border-radius: 5px;
		background-color: #fff;
	}
	.el_trigger_line::before, .el_trigger_line:after{
		content: "";
		display: block;
		position: absolute;
		transition: inherit;
		width: 100%;
		height: 100%;
		background-color: #fff;
	}
	.el_trigger_line::before{
		top: -10px;
	}
	.el_trigger_line:after{
		top: 10px;
	}
	.el_trigger_text{
		position: absolute;
		bottom: 47x;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		text-align: center;
	}
	.el_trigger_text::before{
		content: "メニュー";
		color: #fff;
		font-weight: 600;
		font-size: 10px;
	}
}

/* ============================================================
	ハンバーガーメニュー内の展開メニュー
============================================================ */
/* デフォルトではサブメニューを非表示にする */
.sub-menu {
  display: none;
}

.sub-menu li a{
	padding: 1rem;
	display: block;
	border-bottom: dashed 1px #fff;
}

/* チェックボックスがチェックされた状態（:checked）のとき、
   直後にある兄弟要素のサブメニューを表示する */
.menu-toggle:checked + .menu-header + .sub-menu {
  display: block;
}

/* プラスボタンのスタイル */
.menu-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-btn {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

/* チェックされたときにプラスボタンを回転させる */
.menu-toggle:checked + .menu-header .toggle-btn {
  transform: rotate(45deg);
}

.menu-item {
    padding:.75rem;
    font-size: 1rem;
    margin-bottom: .5rem;
    font-weight: bold;
    font-size: 1rem;
    /* border: solid 1px #ccc; */
    border-radius: 5px;
    /* border: solid 1px #e5e5e5; */
    background-color: #fff;
}

/* .bl_gNavUnit_block + .bl_gNavUnit_block{
	margin-top: 5rem;
} */
/* PCサイズではメニューを非表示にする */
.bl_gNavUnit_block > ul.accordion-menu {
    display: none;
}

/* 992px以下の画面幅でのみメニューを表示する */
@media screen and (max-width: 992px) {
    .bl_gNavUnit_block > ul.accordion-menu {
        display: block;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	フッター

//////////////////////////////////////////////////////////////////////////////////////////////////// */
footer {
    padding-bottom: 4.5rem;
}
.bl_footer-bg,.bl_footer-bg a{
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}


.eigyou-jikan th,.eigyou-jikan td{
	text-shadow: none;
}

.bl_footer-bg{
	background-image: url(../img/water.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(0 83 97 / 43%);
    background-blend-mode: darken;
}
footer .custom-shape-divider-bottom-1745981199 .shape-fill{
	/* fill: var(--mainColor); */
	fill: #2879a9;
}

footer h2{
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
/* .bl_footer-item-add{
	margin-bottom: 1rem;
} */

.bl_footer-inner {
    width: 100%;
    max-width: 1220px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 2.5rem;
    padding-bottom: 1rem;
}

.bl_footer-flex{
	display: flex;
	gap: 5rem;
}

.bl_footer-item{
	width: 50%;
}

.bl_footer-item-top{
	margin-bottom: 1rem;
}

.bl_footer-item .bl_form-btn a{
	border: solid 1px #fff;
	justify-content: center;
	background-color: #e9f7ff;
	color: var(--mainColor);
	max-width: 300px;
	padding: 1rem;
}

.bl_footer-item .bl_form-btn a::before {
background-color: var(--mainColor);
}
.bl_footer-item .bl_form-btn a:hover{
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: ripple-light 1.5s infinite;
  }
  @keyframes ripple-light {
	0% {box-shadow: 0 0 0 0 #e9f7ff;}
	70% {box-shadow: 0 0 0 10px rgba(243, 248, 255, 0);}
	100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
  }


.bl_footer-link ul {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.bl_footer-link {
    margin-top: 2rem;
}


/* 営業時間の表 */
table.eigyou-jikan{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

table.eigyou-jikan tr{
  border-bottom: solid 2px white;
}

table.eigyou-jikan tr:last-child{
  border-bottom: none;
}

table.eigyou-jikan th{
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #1a5c83;
  color: white;
  text-align: center;
  padding: 10px 0;
      vertical-align: middle;
}

table.eigyou-jikan th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #1a5c83;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table.eigyou-jikan td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
  color: var(--black);
  text-align: start;
padding-left: 1.5rem;
}
footer h3{
	font-size: var(--fontSize20);
    font-weight: bold;
    margin-bottom: .5rem;
    padding-left: .25rem;
}



.copy{
	text-align: center;
	font-size: .85rem;
	padding: .5rem;
}

  .bl_footer-link ul li a{
	text-decoration: none;
	font-size: .85rem;
  }

  .bl_maWrap iframe{
	max-width: 100%;
  }

  /* 営業時間 */
  .business-time {
  display: flex;
  align-items: flex-start;
}

.business-time-label {
  width: 7em;         /* ラベル部分を固定幅 */
  flex-shrink: 0;     /* つぶれないように */
}

.business-time-content {
  flex: 1;
}

  

  @media screen and (max-width: 768px){
	.bl_footer-flex {
		flex-direction: column;
		gap: 2rem;
	}
	.bl_footer-item {
		width: 100%;
	}
}


/* PCではテキストリンクを非表示にする */
.map-sp {
    display: none;
}

/* スマホでは地図を非表示にする */
@media (max-width: 576px) { /* 768pxは一般的なタブレットサイズなので、適宜変更してください */
    .map-pc {
        display: none;
    }
    .map-sp {
        display: inline; /* スマホでテキストリンクを表示 */
        text-align: center; /* 中央寄せにしたい場合 */
    }
    .bl_maWrap {
        height: auto !important; /* スマホで高さの指定をリセット */
    }
}


/* 追従型予約ボタンのコンテナ */
.fixed-reservation-buttons {
    position: fixed; /* 画面に固定 */
    bottom: 0;       /* 画面下部に配置 */
    left: 0;         /* 画面左端に配置 */
    width: 100%;     /* 幅を100%に設定 */
    display: flex;   /* Flexboxを有効にして子要素を横並びにする */
    z-index: 9999;   /* 他の要素より手前に表示 */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1); /* 上部に影を追加 */
	text-align: center;
     height: 4.5rem;
}

/* 各予約ボタンのスタイル */
.reservation-button {
    flex: 1; /* 親要素の幅を均等に分割（1:1のレイアウト） */
    display: flex; /* Flexboxを有効にしてアイコンとテキストを縦並びにする */
    flex-direction: column; /* 子要素を縦方向に配置 */
    align-items: center; /* 水平方向の中央揃え */
    justify-content: center; /* 垂直方向の中央揃え */
    padding: 10px 0; /* 上下のパディング */
    text-decoration: none; /* 下線を非表示 */
    color: #333; /* 文字色 */
    font-weight: bold; /* フォントを太く */
    font-size: var(--fontSize20); /* フォントサイズ */
    transition: background-color 0.3s ease; /* ホバー時のトランジション */
}

/* 電話ボタン固有のスタイル */
 .phone-button {
    background-color: #098f0ef0;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: flex!important;
}

/* フォームボタン固有のスタイル */
.mail-form-button {
    background-color: #0055b1f7; /* 青系の背景色 */
    color: #fff; /* 文字色を白に */
}

/* Font Awesomeアイコンのスタイル */
.reservation-button .fas { /* Font Awesomeのアイコンに適用 */
    font-size: 24px; /* アイコンのサイズ */
    margin-bottom: 5px; /* アイコンとテキストの間隔 */
}

/* ホバー時のスタイル */
.reservation-button:hover {
    opacity: 0.9; /* ホバーで少し透明にする */
}

.fixed-reservation-buttons span{
	text-align: center;
}
.fixed-reservation-buttons-txt{
    text-align: center;
	font-weight: normal;
}
.fixed-reservation-buttons-tel{
	font-size: var(--fontSize24);
}
.fixed-reservation-buttons-uketuke{
	font-weight: normal;
	font-size: var(--fontSize18);
	/* display: flex;
    gap: 2rem; */
    justify-content: center;
}
.reservation-buttons-uketuke-item > .month{
    background-color: #17611a;
    font-weight: bold;
    padding: 0px 6px;
    border-radius: 3px;
    margin-right: 5px;
}


.fixed-reservation-buttons-txt-bold{
	font-weight: bold;
	font-size: var(--fontSiz206);
}

.reservation-button_text_flex{
	display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
}
.svg-inline--fa {
    height: 1.5rem;
}


/* トップページに戻るボタン */
.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.75em 2em;
    background: linear-gradient(135deg, #005eb9, #1594bf);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 2em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.3s;
}
.bl_topBtnArea {
    padding: 1rem;
    text-align: end;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #00bfff, #1e90ff);
}

.back-home-btn .icon {
  font-size: 1.2em;
}



/* スマートフォンでの表示調整 */
@media (max-width: 768px) {
    .reservation-button {
        font-size: 14px; /* スマートフォンでのフォントサイズ */
        padding: 8px 5px;
		text-decoration: none!important;
    }
    .reservation-button .fas { /* Font Awesomeアイコンのサイズを調整 */
        font-size: 20px;
    }
}
@media (max-width: 620px) {
	span.reservation-buttons-uketuke-item {
    display: none;
}
.fixed-reservation-buttons-uketuke {
    display: none;
}
.fixed-reservation-buttons{
	height: initial;
}
footer {
    padding-bottom: 4rem;
}
}




/* ////////////////////////////////////////////////////////////////////////////////////////////////////

	テンプレート別のスタイル

//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ******************************************************************************************
   front-page.php
****************************************************************************************** */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	front-page 共通
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* 共通見出し */
.bl_sectionttl{
	width: fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 3rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    align-items: center;
    display: flex
;
    justify-content: center;
}
/* ボタン */
.bl_btn {
    background-color: var(--mainColor);
    text-decoration: none;
    width: fit-content;
    margin: 0 auto;
    color: #fff;
    font-weight: 600;
    padding: 1rem 6rem;
    width: fit-content;
    margin: 0 auto;
    display: block;
	border-radius: 50vh;
	box-shadow: 0px 3px 10px rgb(0 0 0 / 14%);
}

.bl_btn:hover{
	background-color: #038fe7;
	opacity: initial;
}

.bl_btn:hover {
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: ripple 1.5s infinite;
	color: #fff;
  }


@media screen and (max-width: 567px){
.bl_sectionttl {
    width: 250px;
    margin: 0 auto;
    margin-bottom: 1rem;
}
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	bl_mv
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* .bl_mv{
	width:100%;
	margin: 0 auto;
    height: 40vh;
    background-size: cover;
	background-position: center center;
    background-repeat: no-repeat;
} */

.bl_mv {
    width:100%;
    /* margin: 0 auto; */
    /* margin-top: 1rem; */
    /* border-radius: 10px; */
    margin-bottom: 2rem;
	/* margin-top: 2rem; */
}

.mv-sp{
	display: none;
}
/* 
.bl_mv img{
	border-radius: 10px;
} */
.bl_mv_inner{
    height: 100%;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
	margin-top: 1.5rem;
	background-color: #006571;
    border-radius: 10px;
}

.bl_mv .slick-slider{
	border-radius: 10px;
}

.slick-img.dark_img{
	opacity: .7;
}

.bl_mv_copy{
font-size: 3.3333333333333rem;
font-weight: bolder;
position: absolute;
top: 0;
bottom: 0;
margin: auto;
left: 4rem;
bottom: 0;
margin: auto;
height: fit-content;
z-index: 3;
}

/* キャプション */
.mv_caption{
	color: #fff;
}
.mv_caption {
    color: #fff;
    position: absolute;
    z-index: 1;
    /* border: solid 1px #000; */
    bottom: 0;
    right: 0;
    font-size: var(--fontSize14);
    background-color: #0000009c;
    padding: 5px 10px;
	border-radius: 0 0 10px 0;
}

svg.svg-inline--fa.fa-rotate-left {
    height: .8rem;
}

.slider {
	height: 50vh;
	overflow: hidden;
	min-height: 455px;

  }
  .slick-img img {
	width: 100%;
	border-radius: 10px;
	height: 50vh;
	min-height: 455px;
  }


   .hero {
    color: white;
    position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
    height: fit-content;
    padding-left: 2.5rem;
    }
    .tag {
    display: inline-block;
    background-color: #1a365dc7;
    color: #fff;
    padding: 3px 14px;
    font-size: var(--fontSize18);
    border-radius: 4px;
    margin-bottom: .5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }
    .hero h1, .hero h2, .hero h3, .hero p {
      text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
	  line-height: 1;
    }
    .hero h1 {
      font-size: var(--fontSize52);
      margin: 0 0 10px;
      font-weight: 700;
    }
    .hero h2 {
      font-size: var(--fontSize45);
      font-weight: 600;
    }
    .hero h3 {
      font-size: 60px;
      margin: 0 0 20px;
      font-weight: 700;
	  line-height: 1;
    }
    /* .hero p {
      font-size: var(--fontSize18);
      margin: 4px 0;
    } */
	.registration-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-txt{
	font-size: var(--fontSize40);
      font-weight: 600;
}

.hero-txt-flex-item p{
	font-weight: 500;
	font-size: var(--fontSize20);
}

.hero-txt-flex{
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    gap: 1rem;
    line-height: 1;
    margin-bottom: .75rem;
}
.hero-txt-flex p + p{
	margin-top: .5rem;
}

/* スライドショーの1枚目に戻るボタン */

.slider-controls {
    position: absolute;
    top: 4px;
    left: 5px;
	display: none;
}

button#goToFirst {
    gap: 8px;
    padding: 5px 20px;
    font-size: var(--fontSize14);
    font-weight: 600;
    background: #ffffffb3;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border-radius: 50px;
    font-size: var(--fontSize14);
    color: #3f3f3f;
}




#goToFirst:hover {
  opacity: .8;
  transform: translateY(-2px);
}

#goToFirst:active {
  opacity: .8;;
  transform: translateY(0);
}

#goToFirst i {
  font-size: var(--fontSize14);
}



  /* @keyframes zoomUp {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(1.15); 
	}
  }
  .add-animation {
	animation: zoomUp 10s linear 0s normal both;
  } */

@media screen and (max-width: 1200px){

.bl_mv_inner {
    margin-top: 1rem;
	width: calc(100% - 2rem);
}

.bl_mv .slick-slider {
    border-radius: 10px;
}

}

@media screen and (max-width: 992px){
.hero {
    padding-left: 2rem;
}
}
@media screen and (max-width: 768px){

.hero-txt-flex .sp-wrap{
		display: none;
	}
.hero h1 {
    font-size: var(--fontSize38);
}

.bl_mv_copy {
        position: absolute;
        position: absolute;
        top: 0;
        left: .5rem;
        bottom: 0;
        margin: auto;
        height: fit-content;
        z-index: 3;
        width: 19rem; 
}

.mv-pc{
	display: none;
}
.mv-sp{
	display: block;
}

.bl_mv .slick-slider {
    height: 40vh;
	min-height: initial;
	min-height: 329px;
}
.slick-slide img {
height: 40vh;
min-height: 329px;
}
.hero-txt-flex{
gap: 10px;
margin-bottom: .5rem;
}



.tag {
    margin-bottom: 5px;
}
.hero h3 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

    .hero h2 {
      font-size: var(--fontSize16);
      font-weight: 600;
	  /* margin: 10px 0 0 0; */
    }

	.tag {
    font-size:var(--fontSize16);
    }

	.hero-txt-flex .sp-wrap{
		display: block;
	}
	.hero-txt{
		font-size: var(--fontSize30);
	}
	.hero-txt-flex-item p{
		font-size: var(--fontSize18);
	}

}

@media screen and (max-width: 460px){
.hero-txt-flex{
	gap: 8px;
}
.bl_mv {
    margin-bottom: 1rem;
}
button#goToFirst {
    padding: 2px 10px;
}
.hero {
    padding-left: 1.4rem;
}
.hero p {
    font-size: 12px;
}
p.hero-txt {
    font-size: 18px;
}
.hero-txt-flex {
    margin-bottom: .5rem;
}
.hero h1 {
    font-size: 28px;
	line-height: 1;
}
.tag {
    padding: 4px 10px;
    line-height: 1;
}
.bl_mv .slick-slider {
 height: 33vh;
 min-height: 260px;
}
	
.slick-slide img {
height: 33vh;
min-height: 260px;
}
}




/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	アコーディオン
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* Initially hide the accordion content */
.js-accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out; /* Add a smooth transition */
}

/* Style for when the accordion content is open */
.js-accordion-content.is-active {
    max-height: 1000px; /* Adjust this value to be larger than your content */
    transition: max-height 0.3s ease-in;
}

/* Style the trigger button, for example, to change cursor */
.js-accordion-trigger {
    cursor: pointer;
}
/* アコーディオンのトリガーボタン (h2) のスタイル */
.js-accordion-trigger {
    padding: 10px 5px;
    cursor: pointer;
    position: relative;
    margin-bottom: -1px;
    font-size: var(--fontSize24);
    font-weight: bold;
    border-bottom: solid 1px #ccc;
}

/* アイコンのスタイル */
.bl_accordion_icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.bl_accordion_icon::before,
.bl_accordion_icon::after {
    content: '';
    position: absolute;
    background-color: #333;
    transition: transform 0.3s ease;
}

/* プラス記号 (横線と縦線) の描画 */
.bl_accordion_icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.bl_accordion_icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

/* アコーディオンが展開された時のスタイル */
/* アクティブ時の背景色 */
/* .js-accordion-trigger.is-active {
    background-color: #e8e8e8; 
} */

/* マイナス記号への変化 */
.js-accordion-trigger.is-active .bl_accordion_icon::after {
    transform: translateX(-50%) rotate(90deg); /* 縦線を回転させて隠す */
}

/* アコーディオンコンテンツのスタイル */
.js-accordion-content {
    background-color: transparent;
    /* border: 1px solid #ddd; */
    border-top: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    padding: 0 15px; /* コンテンツのパディングは`max-height`でアニメーションするように0から開始 */
}

.js-accordion-content.is-active {
    max-height: 1000px; /* 十分な高さを確保 */
    padding: 15px; /* アクティブ時にパディングを追加 */
}
/* アコーディオンのコンテナをFlexboxに設定 */
.bl_accordion_container {
    display: flex;
    gap: 20px; /* アコーディオン間の間隔 */
    flex-wrap: wrap; /* 画面幅が狭い場合に折り返しを許可 */
	max-width: 1400px;
    margin: 0 auto;
}

/* 各アコーディオンのスタイル */
.bl_accordion_container section {
    flex: 1; /* 各アコーディオンが均等な幅を占めるように設定 */
    min-width: 300px; /* 最小幅を設定して、小さくなりすぎないようにする */
}

@media (max-width: 576px) {
    .bl_accordion_container {
        width: calc(100% - 2rem);
        margin: 0 auto;
    }
	.js-accordion-trigger {
/* background-color: #fff; */
    font-size: var(--fontSize18);
}
.bl_accordion_container {
    gap: 10px;
}
}










/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	bl_main-menu
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.bl_main-menu_wrap {
    margin-top: -5%;
    box-shadow: 0px 2px 14px rgb(0 0 0 / 21%);
	border-radius: 10px;
}

.bl_main-menu {
    margin-bottom: 10rem;
    z-index: 2;
    position: relative;
}
.bl_main-menu-item{
	width: calc(100% / 4);
	padding: 1.5rem 0	;
    height: 250px;
    background-color: var(--mainColor);
    border: solid 1px #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
	position: relative;
}

.bl_main-menu-item:first-of-type{
	border-radius: 10px 0 0 0;
}
.bl_main-menu-item:nth-of-type(4){
	border-radius: 0 10px 0 0;
}
.bl_main-menu-item:nth-of-type(5){
	border-radius: 0 0 0 10px;
}
.bl_main-menu-item:nth-of-type(8){
	border-radius: 0 0 10px 0;
}

.bl_main-menu-item:hover{
	background-color:#038fe7;
}
.bl_main-menu-item a:hover{
	opacity: initial;
}

.bl_main-menu-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}



.bl_main-menu-item a{
	color: #fff;
	text-align: center;
	font-weight: 600;
	text-decoration: none;
	display: block;
	font-size: 1.1rem;
}

.bl_main-menu-item a::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	}


.bl_main-menu-img.stepup > img{
	width: 100px;
	height: auto;
}

.bl_main-menu-img.correct > img{
	width: 100px;
	height: auto;
}
.bl_main-menu-img.business-license > img{
	height: 100px;
	width: auto;
}
.bl_main-menu-img.touroku-kensa > img{
	width: 90px;
	height: auto;
}
.bl_gNav_area .bl_main-menu{
	display: none;
}


.bl_gNav_area.is_active .bl_main-menu{
	display: flex;
}

@media screen and (max-width: 768px){
	.bl_lsc-type {
		font-size: 2rem;
	}
	.bl_main-menu-img {
		width: 80px;
		height: 80px;
	}
	.bl_main-menu-item {
		width: calc(100% / 4);
		height: 200px;
	}
	.bl_main-menu-img.correct > img {
		width: 65px;
	}
	.bl_main-menu-img.stepup > img {
		height: 70px;
		width: 60px;
	}
	.bl_main-menu-img.business-license > img {
		height: 75px;
		width: auto;
	}
	.bl_main-menu-img.touroku-kensa > img {
		width: 60px;
		height: auto;
	}

	.bl_main-menu {
	justify-content: center;
    margin-bottom: 4rem;
}
	.bl_main-menu-item {
		width: calc(100% / 3);
	}
}


	@media screen and (max-width: 567px){
	.bl_main-menu-item {
        width: calc(100% / 2);
    }
	.bl_main-menu-img {
        width: 60px;
        height: 60px;
    }
	.bl_main-menu-item a {
		font-size: 1rem;
	}
	.bl_main-menu-item {
        height: 150px;
		gap: 5px;
    }
	.bl_main-menu-img.stepup > img {
        height: 50px;
        width: 50px;
    }
	.bl_main-menu-img.correct > img {
        width: 50px;
    }
	.bl_main-menu-img.business-license > img {
        height: 60px;
        width: auto;
    }
	.bl_main-menu-img.touroku-kensa > img {
        height: 48px;
        width: auto;
    }
	.txt-mini{
		font-size: .8rem;
	}
	.bl_main-menu_wrap {
		margin-top: 1rem;
	}

	.bl_main-menu-item:nth-of-type(4){
		border-radius: 0;
	}
	.bl_main-menu-item:nth-of-type(2){
		border-radius: 0 10px 0 0;
	}
	.bl_main-menu-item:nth-of-type(5){
		border-radius: 0;
	}
	.bl_main-menu-item:nth-of-type(7){
		border-radius: 0 0 0 10px;
	}
	.bl_main-menu-item:nth-of-type(8){
		border-radius: 0 0 10px 0;
	}
}

/* 非表示のチェックボックス */
.bl_img_modal_toggle {
    display: none;
}

/* ポップアップのトリガー（画像） */
.bl_img_modal_trigger {
    cursor: pointer;
}

/* ポップアップコンテナの基本スタイル */
.bl_lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1000;
    opacity: 0; /* 初期状態では完全に透明 */
    visibility: hidden; /* 初期状態では非表示 */
    transition: opacity 0.3s, visibility 0.3s;
}

/* チェックボックスがONになったらポップアップを表示 */
.bl_img_modal_toggle:checked ~ .bl_lightbox {
    opacity: 1;
    visibility: visible;
}

/* ポップアップコンテンツのスタイル */
.bl_lightbox_content {
    background-color: #fff;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 20px;
}

/* ポップアップ内の画像 */
.bl_lightbox_img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100vh;
    display: block;
}

/* 閉じるボタン */
.bl_lightbox_close {
    position: absolute;
    top: -30px; /* コンテナ外に配置 */
    right: 0px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

/* 閉じるボタンのホバーエフェクト */
.bl_lightbox_close:hover {
    color: #aaa;
}

@media screen and (max-width:560px){
	
/* ポップアップコンテンツのスタイル */
.bl_lightbox_content {
    width: 100%;
	height: auto;
}
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    bl_mein-menu(新)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.bl_main-menu .tab-container {
    margin-top: 2rem;
    border-radius: 8px;
}

.ly_main-menu-inner {
  width: calc(100% - 2rem);
    margin: 0 auto;
    /* max-width: 1400px; */
    max-width: 1200px;
}


/* ==========================================================================
    タブリストとタブボタンのスタイル
    ========================================================================== */

.bl_main-menu [role="tablist"] {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative; /* 吹き出し部分の z-index 制御のため */
    z-index: 0; /* タブボタンがこの下線の上に浮くように */
    border-radius: 5px;
}

.bl_main-menu .tab-button {
    aspect-ratio: 1 / 1;
    flex: 1; /* ボタンが等幅になるように */
    padding: 1rem; /* パディングを増やす */
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: var(--black); /* 非アクティブ時のデフォルトテキスト色 */
    /* スムーズなアニメーションのためのトランジション */
    transition: background-color 0.3s, color 0.3s, border-bottom 0.3s, box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column; /* テキストを縦に配置 */
    align-items: center;
    justify-content: center;
    gap: 8px; /* テキスト行間の間隔 */
    min-height: 48px; /* WCAG推奨の最小タップターゲットサイズ */
    min-width: 48px;
    border-radius: 10px; /* 角丸を増やして吹き出し感を出す */
    text-align: center;
    position: relative; /* ::after擬似要素（吹き出しのしっぽ）と::before擬似要素（フィルター）の基準点 */
    z-index: 1; /* 他の要素との重なり順を制御 */
    outline: none; /* デフォルトのフォーカスアウトラインを非表示にする（カスタムで代替） */
    /* 背景画像の設定 */
    background-size: cover;
    background-position: center; /* 画像を中央に配置 */
    /* デフォルトの背景色を透明に設定し、フィルターで色を表現 */
    background-color: transparent; 
}

/* 各タブボタンにカラーフィルターを追加するための擬似要素 */
.bl_main-menu .tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px; /* 親要素の角丸に合わせる */
    /* opacity: 0.6;  */
    transition: background-color 0.3s, opacity 0.3s;
    z-index: -1; /* 背景画像のすぐ上に配置 */
}

/* タブ内のテキストをフィルターより前面に表示 */
.bl_main-menu .tab-button .tab-text {
    position: relative;
    z-index: 2; /* フィルターよりも前面に */
    color: white; /* テキスト色を白にして見やすくする */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* 文字の視認性を高める影 */
	gap: 5px;
}

/* タブ内のテキスト */
.tab-text {
    display: flex;
    flex-direction: column;
    font-size: var(--fontSize36); /* カスタムプロパティを使用 */
    line-height: 1.2; /* 行間を調整 */
	font-size: clamp(14px, 2.5vw, 36px);
}

.sub-tab-txt {
    display: block;
    font-size: var(--fontSize24); /* カスタムプロパティを使用 */
	color: #fff;
}
.sp-wrap{
	display: none;
}

@media (max-width: 768px) {
.ly_main-menu-inner {
   width: calc(100% - 2rem);
    margin: 0 auto;
}
.tab-text {
    font-size: 1.5rem;
}
.bl_main-menu .tab-button{
	padding: .5rem;
	aspect-ratio: 1 / 1;
	margin-bottom: 0;
}
.sub-tab-txt{
	/* font-size: 1rem; */
	display: none;
}
.bl_main-menu [role="tablist"] {
	    gap: .25rem;
		margin-bottom: 1rem;
}
.sp-wrap{
	display: block;
}
/* 各タブボタンにカラーフィルターを追加するための擬似要素 */
.bl_main-menu .tab-button::before {
    opacity: 0.9; /* フィルターの透明度（調整可能） */
}

}

@media (max-width: 650px) {
.tab-text {
    font-size: 1.25rem;
}
}



/* ==========================================================================
    各タブボタン固有の色と状態のスタイル
    ========================================================================== */

/* 各タブボタンの背景画像 */
.bl_main-menu .tab-button.tab-button--kyosyu {
    background-image: url(../img/syutoku.png);
}

.bl_main-menu .tab-button.tab-button--kousin {
    background-image: url(../img/koushin.jpg);
}

.bl_main-menu .tab-button.tab-button--kensa {
    background-image: url(../img/kaizi.jpg);
}

/* 各タブボタンのフィルター色 */
.bl_main-menu .tab-button.tab-button--kyosyu::before {
    background-color: #00508C; /* 青系のフィルター */
}

.bl_main-menu .tab-button.tab-button--kousin::before {
    background-color: #36b590; /* 緑系のフィルター */
}

.bl_main-menu .tab-button.tab-button--kensa::before {
    background-color: #cf9321; /* オレンジ系のフィルター */
}


/* ホバー時のスタイル (非選択時のみ) */
.tab-button--kyosyu:not([aria-selected="true"]):hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 軽く影をつける */
    transform: translateY(-3px); /* わずかに浮き上がる */
}


.tab-button--kousin:not([aria-selected="true"]):hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.tab-button--kousin:not([aria-selected="true"]):hover::before {
    /* opacity: 0.7; */
}

.tab-button--kensa:not([aria-selected="true"]):hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.tab-button--kensa:not([aria-selected="true"]):hover::before {
    /* opacity: 0.7; */
}


/* 選択されているタブとフォーカスされているタブの共通吹き出しスタイル */
.tab-button[aria-selected="true"],
.tab-button:focus { /* focusも選択時と同じデザインにするため結合 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* 強めの影 */
    transform: translateY(-5px); /* より大きく浮き上がらせる */
    border-bottom: none !important; /* アクティブ時の下線を削除 */
    z-index: 2; /* 最前面に表示 */
}

/* 選択/フォーカス時のフィルターの透明度を調整 */
.tab-button[aria-selected="true"]::before,
.tab-button:focus::before {
    /* opacity: 0.8;  */
	/* 選択/フォーカス時はフィルターをさらに濃くする */
}

/* 各タブの選択/フォーカス時の具体的な色（フィルターが背景色を兼ねるため、border-bottomのみ調整） */
.tab-button--kyosyu[aria-selected="true"],
.tab-button--kyosyu:focus {
    border-bottom: 3px solid #00508C; /* アクティブ時の下線 (吹き出しの上なので、これはなくても良いかも) */
}

.tab-button--kousin[aria-selected="true"],
.tab-button--kousin:focus {
    border-bottom: 3px solid #36b590;
}

.tab-button--kensa[aria-selected="true"],
.tab-button--kensa:focus {
    border-bottom: 3px solid #cf9321d9;
}


/* ==========================================================================
    吹き出しのしっぽ部分 (::after 擬似要素)
    ========================================================================== */

/* 選択中とフォーカス時にしっぽを表示 */
.tab-button[aria-selected="true"]::after,
.tab-button:focus::after {
    content: '';
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    z-index: 1;
    transition: border-top-color 0.3s;
}

/* 各タブのしっぽの背景色 */
/* しっぽの色もフィルターの色に合わせる */
.tab-button--kyosyu[aria-selected="true"]::after,
.tab-button--kyosyu:focus::after {
    /* background-color: #0056b3; */
	    border-top: 35px solid #00508C; /* アクティブなタブの色と同じにする */

}

.tab-button--kousin[aria-selected="true"]::after,
.tab-button--kousin:focus::after {
    /* background-color: #36b590; */
	border-top: 35px solid #36b590; /* アクティブなタブの色と同じにする */

}

.tab-button--kensa[aria-selected="true"]::after,
.tab-button--kensa:focus::after {
    /* background-color: #cf9321b0; */
		border-top: 35px solid #cf9321d9; /* アクティブなタブの色と同じにする */
}

@media screen and (max-width:560px){
	/* 各タブのしっぽの背景色 */
/* しっぽの色もフィルターの色に合わせる */
.tab-button--kyosyu[aria-selected="true"]::after,
.tab-button--kyosyu:focus::after {
	    border-top: 15px solid #0056b3; /* アクティブなタブの色と同じにする */

}

.tab-button--kousin[aria-selected="true"]::after,
.tab-button--kousin:focus::after {
	border-top: 15px solid #36b590; /* アクティブなタブの色と同じにする */

}

.tab-button--kensa[aria-selected="true"]::after,
.tab-button--kensa:focus::after {
		border-top: 15px solid #cf9321d9; /* アクティブなタブの色と同じにする */
}
.tab-button[aria-selected="true"]::after, .tab-button:focus::after {
    bottom: -15px;
}
.tab-button[aria-selected="true"]::after, .tab-button:focus::after {
    bottom: -15px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

}


/* ==========================================================================
    タブパネルと内部コンテンツのスタイル
    ========================================================================== */

.bl_main-menu [role="tabpanel"] {
    padding: 0 2rem 0 2rem;
    max-width: 1600px;
    margin: 0 auto;
    background-color: transparent;
    line-height: 1.8;
    margin-top: 2rem;
    box-shadow: none;
	max-width: 1600px;
	margin: 0 auto;
    line-height: 1.8;
    /* タブが浮き上がった分、パネルとの間にスペースを確保する調整 */
    margin-top: 2rem; /* しっぽの高さと若干のマージン */
	box-shadow: none;
}

/* タブパネル内のh2要素のスタイル (例として) */
.tab-panel h2 {
    color: #007bff;
    margin-top: 0;
    margin-bottom: 15px;
}

/* タブパネル内のリスト（メニュー）のスタイル */
ul.bl_main-menu-List {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
	/* justify-content: center; */
	/* align-items: center; */
}

ul.bl_main-menu-List li {
    width: calc((100% - 3rem) / 4); /* 4列表示の例 */
	aspect-ratio: 1 / 1;
}

ul.bl_main-menu-List li a {
    display: block;
    text-align: center;
    border-radius: 5px;
    /* padding: 2rem 1rem; */
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1.25rem;
}
.card-link.card-link-bg-lightblue {
    background-color: #6c8495;
}

/* 登録教習所タブ内のメニューリンク */
ul.bl_main-menu-kyosyuList a {
    background-color: #00508C; /* 薄い青 */
}

/* 更新・失効交付タブ内のメニューリンク */
ul.bl_main-menu-kousinList a {
    background-color: #36b590; /* 薄い緑 */
}

/* 海事代理士業務代行タブのメニューリンク */
ul.bl_main-menu-kensaList a {
    background-color: #cf9321; /* 薄いオレンジ */
}

/* 共通のリンクホバースタイル */
ul.bl_main-menu-List li a:hover,
ul.bl_main-menu-List li a:focus {
    transform: translateY(-2px); /* わずかに浮き上がる */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 軽い影 */
    opacity: 0.9; /* わずかに透明度を変更 */
    outline: 2px solid #007bff; /* フォーカス時のアウトライン */
    outline-offset: 2px;
}





/* ==========================================================================
    フォーム要素の基本スタイル 
    ========================================================================== */

.tab-panel form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.tab-panel form input[type="text"],
.tab-panel form input[type="email"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.tab-panel form button[type="submit"] {
    background-color: #36b590;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.tab-panel form button[type="submit"]:hover {
    background-color: #218838;
}

.tab-panel form button[type="submit"]:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* ==========================================================================
    タブ内のメニューリスト
========================================================================== */
.card-list-item {
    list-style: none; /* リストの点をなくす */
    margin-bottom: 20px; /* カード間の余白 */
    width: 250px; /* カードの最大幅を設定 (調整可能) */
    /* 親要素でflexboxやgridを使用している場合は不要な場合もあります */
}

.card-link {
    display: block; /* 全体をクリック可能にする */
    text-decoration: none;
    color: inherit; /* 親要素の色を継承 */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* 影 */
    overflow: hidden; /* 角丸に合わせて内容をクリップ */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* 親要素内で高さが揃うようにする */
    display: flex; /* flexboxで内容を配置 */
    flex-direction: column; /* 縦方向に並べる */
}

.card-link:hover {
    transform: translateY(-5px); /* ホバーで少し浮き上がる */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* 影を濃くする */
}

.card-image-wrapper {
    width: 100%;
    /* 画像のアスペクト比を維持しつつ、はみ出しを防ぐ */
    max-height: 150px; /* 画像の最大高さを設定 (調整可能) */
    overflow: hidden;
    display: flex; /* 画像を中央に配置するためにflexboxを使用 */
    justify-content: center;
    align-items: center;
    background-color: #f8f8f8; /* 画像がない場合の背景色や、余白の色 */
}

.card-image {
    width: 100%; /* 親要素の幅に合わせて画像を拡大縮小 */
    height: auto; /* 高さは自動調整 */
    display: block; /* 余分な下マージンを防ぐ */
    object-fit: cover; /* 画像がコンテナに収まるようにトリミング */
    min-height: 100px; /* 画像が小さすぎる場合に備えて最小高さを設定 */
	aspect-ratio: 16 / 9;
}

.card-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card-title {
    font-size: var(--fontSize28); /* 元のHTMLのh3に合わせて調整 */
    font-weight: bold;
    line-height: 1.3;
	color: #fff;
}

span.card-sub-title {
    font-size: 14px;
    font-weight: initial;
    background-color: #ccc;
    padding: 0px 10px;
    border-radius: 50vh;
    color: var(--mainColor);
    margin-left: 10px;
}

.card-description {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px; /* 価格との間隔 */
    line-height: 1.5;
}

.card-price {
    font-size: 22px; /* 元のHTMLの20pxより少し大きく */
    color: #fff; /* 元のHTMLの色に合わせる */
    font-weight: bold;
    margin-top: auto; /* 常に下部に固定する */
}

/* リンク内の太字は元のHTMLのstrongタグに対応 */
.card-price strong {
    font-weight: bold;
}
.txt-large{
	font-size: var(--fontSize52);
    margin-right: .5rem;
}
span.card-title-flex{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
	align-items: center;
	gap: .5rem;
}
.card-title-flex .txt-large{
	margin-right: 0;
}


/* レスポンシブ対応の例 */
@media (max-width: 768px) {
    .card-list-item {
        width: 48%; /* 2列表示など */
    }

ul.bl_main-menu-List li {
        width: calc((100% - 1rem) / 3);
        aspect-ratio: 1 / 1;
    }
	ul.bl_main-menu-List {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-start;
}
span.card-sub-title {
    margin-left: 0;
    display: block;
    max-width: 60px;
    margin: 0 auto;
    margin-top: 5px;
}
}

@media (max-width: 5760px) {
    .card-list-item {
        width: 95%; /* 1列表示 */
    }
}
	@media screen and (max-width:768px){
.bl_main-menu [role="tabpanel"] {
    padding: 0 .5rem 0 .5rem;
}
.card-content{
	padding: 0;
	flex-direction: column;
    justify-content: center;
}


ul.bl_main-menu-List li a {
    display: flex;
    flex-direction: row;
	padding: .25rem;
}
.card-image-wrapper {
    width: 100px;
	border-radius: 5px;
}
.card-content{
	width: calc(100% - 100px);
}
.card-list-item {
margin-bottom: 0;
}
.card-title {
    font-size:var(--fontSize22);/* 元のHTMLのh3に合わせて調整 */
	margin-bottom: 0;
}

}

@media screen and (max-width:576px){
	    .card-title {
        font-size: 16px;
        margin-bottom: 0;
    }
	.txt-large{
	font-size: var(--fontSize42);
    margin-right: .25rem;
}
}





/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	bl_news
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.bl_news-topics .ly_inner{
	width: calc(100% - 2rem);
    max-width: 1200px;
    margin: 0 auto;
	padding: 0;
}

.bl_news-top {
    width: 6rem;
}

.bl_news-btm {
    width: calc(100% - 6rem);
}
.bl_news-list {
    /* max-width: 700px; */
    margin: 0 auto;
    margin-bottom: 2rem;
}

.bl_news-list-item{
    display: flex;
    gap: 1rem;
    border-bottom: solid 1px #ccc;
    padding: .5rem;
	position: relative;
}

.bl_news-list-item:hover{
	background-color: var(--accentColor);
	transition: .5s;
}

.news_title::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	}

.slick-slide.bl_topics-item{
	margin: 0 10px 30px 10px;
}
.slick-slide.bl_topics-item:hover .bl_topics-thamb > img{
	transform: scale(1.2);/* 拡大 */
}
.slick-slide.bl_topics-item:hover .news_title,.slick-slide.bl_topics-item:hover .bl_topics-top .date{
	color: var(--mainColor);
	opacity: initial;
}

.bl_topics-item{
	position: relative;
}

.bl_topics-list {
    margin-bottom: 3rem;
	display: flex;
	gap: 1rem;
}
.bl_topics-top {
    margin-bottom: .25rem;
}

.bl_topics-thamb {
    margin-bottom: .5rem;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
	border-radius: 10px;
}
.bl_topics-list > li {
   width: calc((100% - 1rem) / 3)
}
span.date {
    font-size: .85rem;
    color: #636363;
}
.news_title{
	font-weight: 600;
	text-decoration: none;
	display: inline;
}
span.new-icon {
    background-color: #ffe500;
    color: #212121;
    font-weight: 600;
    font-size: 12px;
    padding: 0px 10px;
    border-radius: 3px;
}
.bl_news_titleWrap {
    display: flex;
    align-items: center;
	gap: .5rem;
}

.bl_topics-thamb > img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 10px;
	height: auto;
	transition: transform .9s ease;/* ゆっくり変化させる */
	width: 100%;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position:relative;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  /* border: solid 2px var(--mainColor); */

}

.bl_topics{
	overflow: hidden;
	padding-bottom: 7rem;
	max-width: 1400px;
    margin: 0 auto;
}

.bl_topics-list.slick-slider{
	width: 75%;
	margin: 0 auto;
}

.slick-list {
	overflow: visible!important;
}

.prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
  left: -5%;
}
.next-arrow {
  right: -5%;

}

.prev-arrow::before,
.next-arrow::before{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--mainColor);
    border-top: 2px solid var(--mainColor);
    top: 0;
    bottom: 0;
    left: 0;
    right: 5px;
    margin: auto;
    transform: rotate(45deg);
}

@media screen and (max-width:1200px){
	.prev-arrow {
  left: -1%;
}
.next-arrow {
  right: -1%;

}
}
@media screen and (max-width:650px){
  .content_area{
    padding: 0 30px;
  }
  .slick-item p {
    font-size: 15px;
    line-height: 80px;
    margin: 5px;
    padding: 1.5%;
  }

  .arrow_box {
    margin: 10px 0 0;
  }

  .prev-arrow,
  .next-arrow {
    width: 25px;
    height: 25px;
  }

  .prev-arrow::before, .next-arrow::before {
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--mainColor);
    border-top: 1px solid var(--mainColor);
}
  .bl_news-btm
 {
width: 100%;}

	.prev-arrow {
  left: -3%;
}
.next-arrow {
  right: -3%;

}

@media (max-width: 576px) {
    .bl_topics {
        width: calc(100% - 2rem);
        margin: 0 auto;
    }
}
}




@media screen and (max-width: 576px){

	.bl_topics-list {
		flex-direction: column;
	}
	.bl_topics-list > li{
		width: 100%;
	}
	.bl_news-list-item {
    flex-direction: column;
}
.bl_news-list-item {
    gap: .25rem;
}

}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	bl_lsc
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.bl_bg-lsc {
    margin-bottom: 7rem;
    background-color: #e9f7ff;
    padding-top: 6rem;
    padding-bottom: 6rem;
	position: relative;
}

.bl_lsc .ly_inner{
	width: calc(100% - 2rem);
	max-width: 100%;
    margin: 0 auto;
}

.bl_lsc .custom-shape-divider-bottom-1745981199 .shape-fill {
    fill: #e9f7ff;
}
.bl_lsc_item {
    display: flex;
    justify-content: flex-end;
	align-items: center;
}

.bl_lsc_flex + .bl_lsc_flex{
	margin-top: 3rem;
}

.bl_lsc_flex:nth-of-type(2n) > .bl_lsc_item{
	flex-direction: row-reverse;
	justify-content: flex-start;
}

.bl_lsc_item_inner {
    margin: 0 2rem;
	text-align: center;
}


.bl_lsc_item-img,.bl_lsc_item-txt{
	width: 50%;
}

.bl_lsc_item-img{
	object-fit: cover;
}

.desc{
	margin-bottom: 1rem;
	text-align: center;
}


.bl_lsc-type{
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.bl_lsc .bl_btn_wrap + .bl_btn_wrap,.bl_extend .bl_btn_wrap + .bl_btn_wrap{
	margin-top: 2rem;
}

.bl_lsc_item-img figure{
	height: 600px;
}

.bl_lsc_item-img figure img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 20px;
}


/* 更新失効・再公布 */
.bl_extend{
	background-color: #e9e9e9;
	padding-top: 4rem;
	padding-bottom: 6rem;
	margin-bottom: 5rem;
}
.bl_extend .ly_inner {
    /* max-width: 1000px; */
    /* border: solid 1px var(--mainColor); */
    padding: 3rem;
    border-radius: 20px;
    /* background-color: #fff; */
}
.bl_extend_flex{
	display: flex;
	flex-direction: column;
	align-items: center;
}


.bl_extend .bl_lsc-type{
	font-size: 1.5rem;
}

.bl_extend .desc{
	margin-bottom: 2rem;
}

.bl_extend .bl_main-menu-img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.bl_more {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    width: fit-content;
    margin: 0 auto;
}
.bl_more:hover{
	color: var(--mainColor);
	transition: .6s;
}

.bl_more::before {
    content: '';
    background-image: url(../img/more.png);
    width: 25px;
    height: 25px;
    margin-right: .75rem;
    display: inline-block;
    background-size: contain;
}

@media screen and (max-width: 1000px){
	.bl_lsc-type {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 768px){

	.bl_lsc_item_inner {
		margin: 0 1rem;
	}
}
@media screen and (max-width: 576px){

	.bl_lsc_item {
		flex-direction: column;
	}
	.bl_lsc_item-img, .bl_lsc_item-txt {
		width: 100%;
	}
	.bl_lsc_item-img figure img {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}
	.bl_lsc_item,.bl_lsc_flex:nth-of-type(2n) > .bl_lsc_item {
        flex-direction: column;
        gap: 1rem;
    }
	.bl_lsc_item-img figure {
		height: initial;
	}


	.bl_lsc_flex + .bl_lsc_flex::before{
		display: block;
        content: '';
        width: 80%;
        margin: 0 auto;
        margin-top: 2rem;
        margin-bottom: 2rem;
        border-top: dashed 1px var(--mainColor);
	}
	.bl_lsc_flex::after:last-child{
         border: none;
	}
	.bl_lsc_flex:last-child::after {
		border-top: none;
	}

}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	bl_schedule
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.bl_schedule{
	margin-bottom: 7rem;
}

.bl_schedule .ly_inner{
     width: 100%;
	 max-width: calc(100% - 2rem);
}

.bl_schedule-list{
	width: 100%;
}
.bl_schedule-list th,.bl_schedule-list td{
	border-collapse: collapse;
	border: solid 1px #ccc;
	background-color: #fff;
	padding: 1rem .5rem;
	vertical-align: middle;
	text-align: center;
}

.bl_schedule-list .border + tr {
	border-bottom: solid 3px #ccc; 
}



.bl_schedule-list th{
	background-color: var(--mainColor);
	color: #fff;
	text-align: center;
}
.bl_schedule-list td.start{
	text-align: start;
}
.type-tag {
    background-color: #e5e5e5;
    font-size: 14px;
    padding: 3px 6px;
    margin-right: .25rem;
}

.text_flex + p {
		margin-top:.5rem
}

/* タブ */
.tab {
	width: 100%;
  }
  
  div[role="tablist"] {
	display: flex;
	gap: .75rem;
  }
  
  button[role="tab"] {
    font-weight: 700;
    padding: 1.5rem 3rem;
    border-radius: 5px 5px 0 0;
}
  
  
  button[role="tab"][aria-selected="false"]:hover {
	cursor: pointer; 
  }
  
  div[role="tabpanel"] {
	border-radius: 0 10px 10px 10px;
	padding:2rem;
	box-shadow: 0px 9px 20px rgb(117 117 117 / 14%);
  }
  

  /* テーブル */

  .bl_schedule-list .end{
	color: red;
	font-size: .85rem;
  }
  .bl_schedule-list .number{
	font-size: .85rem;
  }
  .table_box{
	overflow-y: auto;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-height: 800px;
  }

  .table_box th, .table_boxtd{
	white-space: nowrap;
  }

  .sticky{
	position: sticky;
	top: 0;
	left: 0;
	border-top: none;
	z-index: 1;
  }

  .bl_search{
	text-align: center;
	font-weight: 600;
	font-size: 1.25rem;
	max-width: 1220px;
	margin: 0 auto;
  }
  a.form-button ,.st_editor a.form-button {
    background-color:#04BF8D;
    color: #fff;
    padding: .25rem .5rem .25rem 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: .85rem;
    border-radius: 50vh;
    width: 100%;
    max-width: 150px;
    min-width: 90px;
    gap: 10px;
    align-items: center;
	text-decoration: none;
	box-shadow: 0px 2px 4px rgb(0 0 0 / 14%);
	position: relative;
}
a.form-button::before {
    content: '';
    background-image: url(../img/mail.svg);
    width: 15px;
    height: 15px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 15px;
	background-repeat: no-repeat;
}

a.form-button:hover ,.st_editor a.form-button:hover{
	background-color: #10cd9b;
		background-position: right center;
		background-size: 200% auto;
		-webkit-animation: pulse 2s infinite;
		animation: ripple-green 1.5s infinite;
		color: #fff;
	  }
	  @keyframes ripple-green {
		0% {box-shadow: 0 0 0 0 #59d9b7;}
		70% {box-shadow: 0 0 0 10px rgba(27, 251, 94, 0);}
		100% {box-shadow: 0 0 0 0 rgba(27, 251, 109, 0);}
	  }
  

@media screen and (max-width: 992px){
	.bl_schedule-list th, .bl_schedule-list td {
	white-space: nowrap;
	}
	div[role="tabpanel"]{
		padding: .5rem;
	}
	button[role="tab"] {
		border: none;
		background-color: #d9d9d9;
		font-weight: 600;
		padding: 5px;
		font-size: 12px;
	}
	.table_box {
		height: 500px;
	}
}
  /*　Googleカレンダー（PC表示） */
  @media (max-width: 960px) {	
  .bl_schedule_calendar iframe {
  height:600px;
   }
}

@media screen and (max-width: 576px){
	.bl_schedule .ly_inner{
		width: 100%;
		max-width: 100%;
   }
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	bl_staff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

	.bl_staff{
		margin-bottom: 7rem;
	}
	.bl-staff-grid {
		display: flex;
		gap: 1rem;
		flex-wrap: wrap;
	}
	

	.bl_staff-item {
		width: calc((100% - 1rem) / 4);
		display: flex;
		flex-direction: column;
		align-content: center;
		align-items: center;
		gap: .5rem;
		font-weight: 600;
	}

	.staff-img img{
		/* border-radius: 50vh; */
		aspect-ratio: 1 / 1;
	}
	.staff-name{
		text-align: center;
	}
	.staff-name{
		font-size: 1.25rem;
	}
	.position{
		font-size: 1rem;
	}
	.staff-list-item {
		border: solid 1px #d3d3d3;
		/* padding: 1rem; */
		width: calc((100% - 1rem) / 2);
		border-radius: 10px;
		background-image: url(../img/staff-bg.png);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
	}

	.staff-list-item:hover{
		box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
		transform: translateY(-4px);
		transition: .5s;
	}
    .staff-list-item-layout{
		display: flex;
		align-items: center;
		gap: 2rem;
		text-decoration: none;
		position: relative;
	}

	.staff-list-item-txt{
		display: flex;
		flex-direction: column;
		position: relative;
		font-weight: 600;
	}
	.staff-list-item-layout:after {
		content: "";
		display: inline-block;
		position: absolute;
		right: 10px;
		bottom: 10px;
		width: 0;
		height: 0;
		border-bottom: 14px solid var(--mainColor);
		border-left: 14px solid transparent;
	}
	.staff-name{
		font-size: 2rem;
	}
	.staff-en-name{
		color: var(--mainColor);
		font-weight: 600;
		letter-spacing: 1px;
	}

	@media screen and (max-width: 576px){
		.bl-staff-grid {
			flex-direction: column;
		}
		.staff-list-item{
			width: 100%;
		}

		.staff-list-item-img {
			max-width: 100px;
		}
		.staff-list-item-layout:after {
			right: 5px;
			bottom: 5px;
		}
	}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	bl_sub-contents
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.bl_sub-contents{
	margin-bottom: 7rem;
}

/* 左右に横線 */
.bl_sub-contents-head{
	margin-bottom: 2rem;
	font-size: 2rem;
	font-weight: 700;
	align-items: center; /* 横線を上下中央 */
	display: flex; /* 文字と横線を横並び */
	justify-content: center; /* 文字を中央寄せ */

  }
  .bl_sub-contents-head::before,
  .bl_sub-contents-head::after {
	background-color:#fff; /* 横線の色 */
	content: "";
	height: 1px; /* 横線の高さ */
	flex-grow: 1; /* 横線の長さ */
  }
  .bl_sub-contents-head::before {
	margin-right: 15px; /* 文字との余白 */
  }
  .bl_sub-contents-head::after {
	margin-left: 15px; /* 文字との余白 */
  }


.bl_link_flex{
	display: flex;
	flex-wrap: wrap;
	gap:1rem;
	justify-content: center;
}

.bl-link-item {
    width: calc((100% - 2rem) / 3);
    border: solid 2px var(--mainColor);
    position: relative;
    border-radius: 5px;
    border: solid 1px #d3d3d3;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
	background-color: #fff;
}

.bl-link-item:hover .link-item-ttl{
	color: var(--mainColor);
}

.bl-link-item:hover .bl-link-item_img > img{
	transform: scale(1.1);
	transition: .7s;
}

.bl-link-item::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 6px;
    bottom: 10px;
    width: 0px;
    height: 0px;
    border-bottom: 10px solid var(--mainColor);
    border-left: 10px solid transparent;
}

.bl-link-item a {
	display: flex;
	text-decoration: none;
	flex-direction: column;
}
.bl-link-item p {
    padding: .5rem .75rem;
    position: relative;
}
.bl-link-item_img{
	overflow: hidden;
}

.bl-link-item img{
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 4px 4px 0 0;
}
.link-item-ttl {
    font-weight: 600;
    font-size: 1rem;
    display: block;
    padding-bottom: .5rem;
}
.link-item-desc{
	font-size: .85rem;
	display: block;
}

.bl_gNav_area .bl-link-item{
	display: none;
}
.bl_gNav_area.is_active .bl-link-item{
	display: block;
}

@media screen and (max-width: 768px){
	.bl_link_flex{
		gap:.5rem;
	}
	.bl-link-item{
		width: calc((100% - .5rem) / 2);
	}
    .bl-link-item a {
        font-size: 1rem;
    }
}
@media screen and (max-width: 576px){
	.bl-link-item::after {
		content: "";
		display: inline-block;
		position: absolute;
		right: 5px;
		bottom: 5px;
		width: 0px;
		height: 0px;
		border-bottom: 10px solid var(--mainColor);
		border-left: 10px solid transparent;
	}
	.link-item-ttl{
		font-size: 1rem;
	}
	
	
}


/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	印刷用スタイル
//////////////////////////////////////////////////////////////////////////////////////////////////// */
@media print{
	body{
		/* 背景色反映のため */
		-webkit-print-color-adjust: exact;
	}
}