@charset "UTF-8";






/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
変数定義
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

:root {
	--maxWidth: 1500px;
	--minWidth: 1000px;
}






/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
ページレイアウト
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/*フレーム*/
#wrapper { min-width: var(--minWidth); position: relative; margin: 0 auto; text-align: left; }
#container { width: 100%; }

/*コンテンツエリア*/
#contentsArea { width: 100%; }

/*メインエリア*/
#mainArea { margin: 0 auto 0 auto; width: 100%; max-width: var(--maxWidth); padding: 0 20px; box-sizing: border-box; }
.pcode-25769 #mainArea { margin: 0; max-width: none; }
.bcontainer-outer { margin: 0 auto; width: 100%; max-width: calc(var(--maxWidth) - 40px); box-sizing: border-box; }
.bcontainer-outer.full { max-width: none; margin-left: -20px; margin-right: -20px; width: calc(100% + 40px); }

/*user-area*/
#user-area { margin-bottom: 60px; }






/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
ヘッダーエリア
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

#headerAreaOuter { width: 100%; position: sticky; top: 0; display: flex; align-items: center; flex-direction: column-reverse; background-color: #FFF; z-index: 2; }
#headerArea { position: relative; width: 100%; padding: 0 20px; box-sizing: border-box; max-width: var(--maxWidth); height: 140px; display: flex; align-items: center; justify-content: space-between; transition: ease height .3s; }
#headerAreaInner { width: 100%; line-height: 1 !important; }
#headerArea.scroll { height: 100px; } /*スクロール時*/

/*ロゴ*/
#logoOuter { z-index: 2; overflow: hidden !important; }
#headerArea .logo { position: relative; margin: 0; }
#headerArea .logo a { width: 523.5px; height: 69.06px; display: block; overflow: hidden; background-position: 0 0; background-repeat: no-repeat; text-indent: -9999px; background-size: 523.5px 69.06px; transition: all ease .3s; }
#headerArea.scroll .logo a { width: calc(523.5px / 1.35); height: calc(69.06px / 1.35); background-size: calc(523.5px / 1.35) calc(69.06px / 1.35); } /*スクロール時*/

/*ご利用案内ボタン*/
.btnInformation { margin-left: auto; margin-right: 35px; display: inline-flex; border: 2px solid var(--headerBtnHoverBorderColor); background-color: var(--headerBtnHoverBgColor); color: var(--headerBtnHoverTxtColor); font-size: 1.6rem; font-weight: bold; padding: 10px 15px 10px 38px; border-radius: 10px; text-decoration: none !important; line-height: 1; transition: ease .3s; }
.btnInformation span { display: inline-flex; position: relative; }
.btnInformation span::before { content: ""; position: absolute; top: 50%; left: -1.5em; transform: translateY(-50%); display: block; width: 1.2em; height: 1.2em; -webkit-mask: url("../common-img/ico_info.svg") no-repeat; -webkit-mask-size: contain; mask: url("../common-img/ico_info.svg") no-repeat; mask-size: contain; background-color: var(--headerBtnHoverTxtColor); transition: ease .3s; }
.btnInformation:hover { background-color: var(--headerBtnBgColor); color: var(--headerBtnTxtColor); border-color: var(--headerBtnBorderColor); }
.btnInformation:hover span::before { background-color: var(--headerBtnTxtColor); }
.btnInformationSp { display: none; }

/*SP用メニュー名 */
#menuSPbox { display: none; }

/*メニューボタン*/
.drawerHidden { display: none; }
#drawerOpen { display: flex; flex-direction: column; width: 100px; height: 100px; font-weight: bold; background-color: var(--btnBgColor); border: 3px solid var(--btnBorderColor); justify-content: center; align-items: center; z-index: 998; cursor: pointer; border-radius: 9999px; box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25); box-sizing: border-box; transition: ease all .3s; }
#drawerOpen:hover { background-color: var(--btnHoverBgColor); border-color: var(--btnHoverBorderColor); }
#drawerOpen .inner { position: relative; width: 30px; height: 21px; display: flex; align-items: center; transition: all ease .3s; }
#drawerOpen .inner span:nth-of-type(1),
#drawerOpen .inner span:nth-of-type(1)::before,
#drawerOpen .inner span:nth-of-type(1)::after { content: ""; display: block; height: 3px; width: 100%; border-radius: 2px; background: var(--btnTxtColor); position: absolute; transition: all ease .3s; }
#drawerOpen:hover .inner span:nth-of-type(1),
#drawerOpen:hover .inner span:nth-of-type(1)::before,
#drawerOpen:hover .inner span:nth-of-type(1)::after { background: var(--btnHoverTxtColor); }
#drawerOpen .inner span:nth-of-type(1)::before { bottom: 8px; }
#drawerOpen .inner span:nth-of-type(1)::after { top: 8px; }
#drawerOpen #menuText { color: var(--btnTxtColor); line-height: 1; margin-top: 6px; font-size: 1.5rem; transition: color ease .3s; }
#drawerOpen:hover #menuText { color: var(--btnHoverTxtColor); }
.navOpen #drawerOpen .inner span,
.navOpen #drawerOpen:hover .inner span { background: rgba(255, 255, 255, 0); }
.navOpen #drawerOpen .inner span:nth-of-type(1)::before { bottom: 0; transform: rotate(45deg); }
.navOpen #drawerOpen .inner span:nth-of-type(1)::after { top: 0; transform: rotate(-45deg); }

/*メニューボタンスクロール時*/
#headerArea.scroll #drawerOpen { width: 70px; height: 70px; }
#headerArea.scroll #drawerOpen .inner { width: calc(30px / 1.5); height: calc(21px / 1.5); }
#headerArea.scroll #drawerOpen .inner span:nth-of-type(1),
#headerArea.scroll #drawerOpen .inner span:nth-of-type(1)::before,
#headerArea.scroll #drawerOpen .inner span:nth-of-type(1)::after { height: 2px; }
#headerArea.scroll #drawerOpen .inner span:nth-of-type(1)::before { bottom: 6px; }
#headerArea.scroll #drawerOpen .inner span:nth-of-type(1)::after { top: 6px; }
#headerArea.scroll #drawerOpen #menuText { margin-top: 4px; font-size: 1.2rem; }
.navOpen #headerArea.scroll #drawerOpen .inner span:nth-of-type(1)::before { bottom: 0; transform: rotate(45deg); }
.navOpen #headerArea.scroll #drawerOpen .inner span:nth-of-type(1)::after { top: 0; transform: rotate(-45deg); }

/*メニュー閉じるボタン*/
.menuBtnClose { display: none; }

/*オプション*/
.headerOption { display: flex !important; align-items: center; justify-content: center; width: 100%; background-color: #F5F5F5; }
.headerOptionInner { width: 100%; max-width: var(--maxWidth); height: 70px; padding: 0 20px; box-sizing: border-box; display: flex; align-items: center; }

/*サイト内検索*/
#headerSiteSearch { flex: 1; line-height: 1em; font-size: 16px; margin-right: 30px; }
#headerSiteSearch form { display: flex; justify-content: flex-end; }
input.siteSearchText { flex: 1; -webkit-appearance: none; appearance: none; border-radius: 10px 0 0 10px !important; padding: 0 14px !important; height: 40px !important; font-size: 16px; cursor: text; color: var(--txtColor); border-width: 2px 0 2px 2px; border-style: solid; border-color: var(--borderColor02); vertical-align: middle; box-sizing: border-box; }
input.siteSearchText::placeholder { color: #999; }
.extSiteSearch #searchSubmit { -webkit-appearance: none; appearance: none; border-radius: 0; }
.extSiteSearch table th input { -webkit-appearance: none; appearance: none; border-radius: 0; }
input.siteSearchBtn { flex: 0 0 70px; -webkit-appearance: none; appearance: none; border-radius: 0 10px 10px 0; text-align: center; width: 70px; height: 40px; font-size: 16px; cursor: pointer; font-weight: bold; letter-spacing: .1em; box-sizing: border-box; color: var(--headerBtnTxtColor); border: 2px solid var(--headerBtnBorderColor); background-color: var(--headerBtnBgColor); transition: ease .3s; }
input.siteSearchBtn:hover,
input.siteSearchBtn:focus { color: var(--headerBtnHoverTxtColor); border: 2px solid var(--headerBtnHoverBorderColor); background-color: var(--headerBtnHoverBgColor); }

/*Language*/
#subLang { flex: 0; height: 35px; cursor: pointer; line-height: 1; margin-right: 25px; }
#chgLang { position: relative; }
#chgLang .chgLangTitle { position: relative; cursor: default; display: flex; align-items: center; justify-content: flex-start; width: 115px; height: 35px; padding: 5px 12px 8px; background-color: var(--mainBgColor); font-size: 16px; color: var(--txtColor); font-family: "Noto Sans JP", sans-serif; border: 2px solid var(--borderColor02); text-decoration: none !important; border-radius: 4px; box-sizing: border-box; line-height: 1; }
#chgLang .chgLangTitle::after { content: ""; position: absolute; top: 15px; right: 10px; display: block; width: 10px; height: 6px; background: url("../common-img/ico_arrow_down.svg") no-repeat center; background-size: contain; }
#chgLang ul { display: none; position: absolute; background: var(--mainBgColor); z-index: 999; box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25); }
#chgLang ul li { list-style: none; margin: 0; padding: 0; }
#chgLang ul li a { text-decoration: none; padding: 10px 12px; display: block; font-size: 16px; color: var(--txtColor); font-weight: normal; white-space: nowrap; text-align: left; transition: ease background-color .3s, ease color .3s; }
#chgLang ul li a:hover { background-color: var(--headerBtnBgColor); color: var(--headerBtnTxtColor); }

/*かな*/
.ruby { margin-right: 10px; }
.btnRuby { display: flex; align-items: center; justify-content: center; width: 62px; height: 35px; background-color: var(--headerBtnBgColor); font-size: 16px; color: var(--headerBtnTxtColor) !important; font-weight: bold; letter-spacing: .05em; text-decoration: none !important; box-sizing: border-box; border-width: 2px; border-style: solid; border-color: var(--headerBtnBorderColor); border-radius: 10px; line-height: 1; white-space: nowrap; transition: ease .3s; }
.btnRuby:hover,
.btnRuby:focus { background-color: var(--headerBtnHoverBgColor); color: var(--headerBtnHoverTxtColor) !important; border-color: var(--headerBtnHoverBorderColor); }

/*読上げ*/
p[id^="readspeaker_button"] a { margin-right: 10px; display: flex; align-items: center; justify-content: center; width: 78px; height: 35px; background-color: var(--headerBtnBgColor); font-size: 16px; color: var(--headerBtnTxtColor); font-weight: bold; letter-spacing: .05em; text-decoration: none !important; box-sizing: border-box; border-width: 2px; border-style: solid; border-color: var(--headerBtnBorderColor); border-radius: 10px; line-height: 1; white-space: nowrap; transition: ease .3s; }
p[id^="readspeaker_button"] a:hover,
p[id^="readspeaker_button"] a:focus { background-color: var(--headerBtnHoverBgColor); color: var(--headerBtnHoverTxtColor); border-color: var(--headerBtnHoverBorderColor); }
@media all and (max-width: 1100px) {
	.btnRuby { width: 35px; }
	p[id^="readspeaker_button"] a { width:45px; }
	#chgLang span { width: 95px; }
	#headerSiteSearch { margin-right: 10px; }
}

/*文字サイズ*/
.textSize { flex: 0 0 auto; line-height: 1; margin-right: 15px; }
dl.tsBox { display: inline-flex; }
dl.tsBox dt.ttlTs { font-size: 16px;  margin-right: 10px; cursor: default; line-height: 1; display: flex; align-items: center; position: relative; color: var(--txtColor); }
dl.tsBox dd { line-height: 1; }
dl.tsBox dd a { display: flex; align-items: center; justify-content: center; width: 35px; height: 35px; box-sizing: border-box; border-width: 2px; border-style: solid; border-radius: 50%; text-decoration: none; font-size: 16px; font-weight: bold; line-height: 1; transition: ease .3s; border-color: #CCC; color: #000; background-color: #FFF; }
dl.tsBox dd.tsBtnS { margin-right: 5px; }
dl.tsBox dd.tsBtnM { margin-right: 5px; }
dl.tsBox dd a.active,
dl.tsBox dd a:hover { background-color: var(--headerBtnBgColor); color: var(--headerBtnTxtColor); border-color: var(--headerBtnBorderColor); }

/*電話番号*/
.headerTel { flex-grow: 0; flex-shrink: 0; flex-basis: auto; display: flex; align-items: center; }
.headerTel a { display: flex; align-items: baseline; flex-wrap: wrap; color: var(--thirdTxtColor) !important; text-decoration: none !important; font-size: 32px; font-weight: bold; white-space: nowrap; line-height: 1; font-family: "Noto Sans JP", sans-serif; }
.headerTel a::before { content: ""; position: relative; top: 1px; display: inline-block; margin-right: 5px; width: 26px; height: 26px; -webkit-mask: url(../common-img/ico_tel.svg) no-repeat 0 center; -webkit-mask-size: contain; mask: url(../common-img/ico_tel.svg) no-repeat 0 center; mask-size: contain; background-color: var(--thirdTxtColor); }
.headerTel a .sub { display: inline-block; padding: 0 0 0 3px; font-size: 14px; font-family: 'BIZ UDPGothic', sans-serif; }
.headerTel a:hover { text-decoration: underline !important; }






/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
グローバルナビゲーションエリア
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

#globalNaviAreaSection { display: none; }






/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
メガメニュー
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/*メニュー*/
#megaMenuArea { display: flex; justify-content: center; align-items: flex-start; width: 100%; height: calc(100vh - 210px); opacity: 0; visibility: hidden; z-index: -1; position: fixed; top: 210px; left: 0; background: #FFF; overscroll-behavior: contain; overflow-y: scroll; scrollbar-width: none; -ms-overflow-style: none; touch-action: none; transition: ease all .5s; }
#megaMenuArea > .inner { width: 100%; max-width: var(--maxWidth); padding: 0 20px; box-sizing: border-box; }
#megaMenuArea > .inner .scrollArea { overflow: auto; padding-bottom: 35px; }
#megaMenuArea .cols { display: flex; justify-content: space-between; column-gap: 20px; }
.navOpen #megaMenuArea { top: 210px; left: 0; visibility: visible; opacity: 1; z-index: 998; }
#previewMsgBox + #wrapper #megaMenuArea { top: 250px; height: calc(100vh - 250px); }
.navOpen #megaMenuArea::-webkit-scrollbar { display: none; }
.megaMenuTop { margin: 0 0 35px 0; }
.megaMenuTop .col { flex: 1; padding: 30px; border-radius: 10px; background-color: var(--subBgColor01); }
.megaMenuTop .guide:nth-of-type(n+2) { margin: 30px 0 0 0; }
.megaMenuTop .ttl { margin: 0 0 15px 0; padding: 0 0 10px 0; box-sizing: border-box; font-size: 2rem; font-weight: bold; color: var(--thirdTtlColor); line-height: 1; border-bottom: 1px dotted var(--ttlBorderColor); }
.megaMenuTop .ttlS { margin: 0 0 15px 0; padding: 0 0 14px 0; box-sizing: border-box; font-size: 2rem; font-weight: bold; color: var(--ttlColor); line-height: 1; border-bottom: 1px dotted var(--ttlBorderColor); }
.megaMenuTop .ttlS .sub { display: inline-block; margin-left: .5em; font-size: 1.6rem; }
.megaMenuTop .list { display: flex; align-items: stretch; column-gap: 17px; margin: 0 0 10px; }
.megaMenuTop .term { flex: 0 0 100px; align-self: stretch; display: flex; align-items: center; justify-content: center; padding: 8px; box-sizing: border-box; font-size: 1.8rem; font-weight: bold; color: var(--thirdTtlColor); line-height: 1.1; text-align: center; border: 1px dotted #6D92A3; background-color: var(--mainBgColor); }
.megaMenuTop .desc { flex: 1; align-self: center; font-size: 2rem; font-weight: bold; color: var(--thirdTtlColor); line-height: 1.2; }
.megaMenuTop .desc .note { display: block; margin: 4px 0 0 0; font-size: 1.4rem; }
.megaMenuTop .notes { font-size: 1.5rem; color: var(--thirdTxtColor); line-height: 1.5em; }
.megaMenuTop .tel { display: flex; flex-wrap: wrap; align-items: baseline; position: relative; padding: 0 0 0 2rem; box-sizing: border-box; font-size: 2.2rem; color: var(--subTxtColor); font-weight: bold; line-height: 1; font-feature-settings: "palt"; letter-spacing: -.05em; }
.megaMenuTop .tel::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: 1.8rem; height: 100%; -webkit-mask: url("../common-img/ico_tel.svg") no-repeat left .2rem; -webkit-mask-size: contain; mask: url("../common-img/ico_tel.svg") no-repeat left .2rem; mask-size: contain; background-color: var(--subTxtColor); }
.megaMenuTop .tel .time { margin-top: 5px; padding: 0 0 0 5px; font-size: 1.4rem; color: var(--thirdTxtColor); letter-spacing: normal; }
.megaMenuTop .tel.reserve { color: var(--txtColor); }
.megaMenuTop .tel.reserve::before { background-color: var(--txtColor); }
.megaMenuTop .linkList { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 30px; margin: 20px 0 0 0; }
.megaMenuTop .linkList a { position: relative; display: block; padding: 0 0 0 1.6rem; box-sizing: border-box; font-size: 1.8rem; color: var(--linkTxtColor); line-height: 1.2; }
.megaMenuTop .linkList a::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: .6rem; height: 100%; background: url("../common-img/ico_arrow_menu.svg") no-repeat left .75rem; background-size: contain; }
.megaMenubottom { column-gap: 60px; margin-top: -30px; }
.megaMenubottom nav { margin: 30px 0 0 0; }
.megaMenubottom ul { list-style: none; }
.megaMenubottom .subMenuBlock { display: flex; column-gap: 30px; padding: 0 0 0 1.6rem; }
.megaMenubottom .subMenuBlock > li:not(:last-child) { margin: 0 0 20px 0; }
.megaMenubottom .col:last-of-type .subMenuBlock { display: block; }
.megaMenubottom .menuList { padding: 0 0 0 1.6rem; }
.megaMenubottom .menuList li { margin-bottom: 10px; line-height: 1.2; }
.megaMenubottom .menuList li:nth-last-of-type(1) { margin-bottom: 0; }
.megaMenubottom .menuBlock .ttl { display: inline-block; margin: 0 0 20px 0; font-size: 2rem; line-height: 1.2em; }
.megaMenubottom .menuBlock .ttl:only-child { margin: 0; }
.megaMenubottom .menuBlock span.ttl { position: relative; padding: 0 0 0 1.6rem; box-sizing: border-box; color: var(--ttlColor); }
.megaMenubottom .menuBlock span.ttl::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: .6rem; height: 100%; -webkit-mask: url("../common-img/ico_arrow_menu.svg") no-repeat left .3em; -webkit-mask-size: contain; mask: url("../common-img/ico_arrow_menu.svg") no-repeat left .3em; mask-size: contain; background-color: var(--ttlColor); }
.megaMenubottom .menuBlock .subTtl { display: block; margin: 0 0 15px 0; font-size: 1.6rem; line-height: 1.2em; }
.megaMenubottom .menuBlock span.subTtl { position: relative; padding: 0 0 0 1.6rem; box-sizing: border-box; color: var(--ttlColor); }
.megaMenubottom .menuBlock span.subTtl::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: .6rem; height: 100%; -webkit-mask: url("../common-img/ico_arrow_menu.svg") no-repeat left .3em; -webkit-mask-size: contain; mask: url("../common-img/ico_arrow_menu.svg") no-repeat left .3em; mask-size: contain; background-color: var(--ttlColor); }
.megaMenubottom .menuBlock a { position: relative; display: inline-block; margin: 0 0 0 0; padding: 0 0 0 1.6rem; box-sizing: border-box; font-size: 1.6rem; color: var(--linkTxtColor); line-height: 1.2; }
.megaMenubottom .menuBlock a::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: .6rem; height: 100%; background: url("../common-img/ico_arrow_menu.svg") no-repeat left .3em; background-size: contain; }

/*スクロール時*/
#megaMenuArea.scroll { top: 170px; height: calc(100vh - 170px); }
#previewMsgBox + #wrapper #megaMenuArea.scroll { top: 210px; height: calc(100vh - 210px); }






/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
カバーエリア
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

#coverAreaOuter { z-index: 0; width: 100%; position: relative; }
#coverArea { width: 100%; padding: 0 20px; box-sizing: border-box; }
#coverAreaImage { overflow: hidden; }
#coverWrap { position: relative; text-align: center; width: 100%; margin: 0 auto; overflow: visible !important; }
#coverWrap li { left: 0; background-position: center top; background-repeat: no-repeat; overflow: hidden; background-size: cover; border-radius: 10px; }
#coverWrap li a { display: block; margin: 0 auto; height: auto; width: 100%; overflow: hidden; aspect-ratio: 1640 / 820; }
#coverWrap img { width: 100%; }
#coverWrap li.bjqs-slide { width: 100%; }
#coverWrap ul.bjqs { overflow: visible !important; aspect-ratio: 1640 / 820; }
#coverWrap ul.bjqs li { width: 100%; position: absolute; }
#coverWrap .bx-wrapper { margin-bottom: 0 !important; }
#coverWrap .bx-wrapper .bx-controls { position: absolute; right: 30px; bottom: 20px; display: inline-flex; flex-direction: row-reverse; }
#coverWrap .bx-wrapper .bx-controls-direction { display: inline-flex; }
#coverWrap .bx-wrapper .bx-controls-direction a { position: relative !important; left: 0 !important; top: 0 !important; margin-top: 0 !important; display: block !important; width: 48px !important; height: 48px !important; background-position: center !important; background-repeat: no-repeat !important; background-size: 48px !important; }
#coverWrap .bx-wrapper .bx-controls-direction a.bx-prev { background-image: url("../common-img/btn_control_prev.svg"); margin-right: 10px; }
#coverWrap .bx-wrapper .bx-controls-direction a.bx-prev::after { opacity: 0; content: ""; position: absolute; top: 0; left: 0; display: block; width: 48px; height: 48px; background: url("../common-img/btn_control_prev_on.svg") no-repeat center; background-size: 48px; transition: opacity ease .3s; }
#coverWrap .bx-wrapper .bx-controls-direction a.bx-prev:hover::after { opacity: 1; }
#coverWrap .bx-wrapper .bx-controls-direction a.bx-next { background-image: url("../common-img/btn_control_next.svg"); }
#coverWrap .bx-wrapper .bx-controls-direction a.bx-next::after { opacity: 0; content: ""; position: absolute; top: 0; left: 0; display: block; width: 48px; height: 48px; background: url("../common-img/btn_control_next_on.svg") no-repeat center; background-size: 48px; transition: opacity ease .3s; }
#coverWrap .bx-wrapper .bx-controls-direction a.bx-next:hover::after { opacity: 1; }
#coverWrap .bx-wrapper .bx-controls-auto { position: static !important; bottom: 0 !important; display: inline-flex; margin-right: 10px; }
#coverWrap .bx-wrapper .bx-controls-auto .bx-controls-auto-item a { position: relative; display: block !important; width: 48px !important; height: 48px !important; margin: 0 !important; background-position: center !important; background-repeat: no-repeat !important; background-size: 48px !important; }
#coverWrap .bx-wrapper .bx-controls-auto .bx-controls-auto-item a.bx-start { background-image: url("../common-img/btn_control_play.svg"); margin-right: 10px !important; }
#coverWrap .bx-wrapper .bx-controls-auto .bx-controls-auto-item a.bx-start::after { opacity: 0; content: ""; position: absolute; top: 0; left: 0; display: block; width: 48px; height: 48px; background: url("../common-img/btn_control_play_on.svg") no-repeat center; background-size: 48px; transition: opacity ease .3s; }
#coverWrap .bx-wrapper .bx-controls-auto .bx-controls-auto-item a.bx-start:hover::after,
#coverWrap .bx-wrapper .bx-controls-auto .bx-controls-auto-item a.bx-start.active::after { opacity: 1; }
#coverWrap .bx-wrapper .bx-controls-auto .bx-controls-auto-item a.bx-stop { background-image: url("../common-img/btn_control_pause.svg"); }
#coverWrap .bx-wrapper .bx-controls-auto .bx-controls-auto-item a.bx-stop::after { opacity: 0; content: ""; position: absolute; top: 0; left: 0; display: block; width: 48px; height: 48px; background: url("../common-img/btn_control_pause_on.svg") no-repeat center; background-size: 48px; transition: opacity ease .3s; }
#coverWrap .bx-wrapper .bx-controls-auto .bx-controls-auto-item a.bx-stop:hover::after,
#coverWrap .bx-wrapper .bx-controls-auto .bx-controls-auto-item a.bx-stop.active::after { opacity: 1; }

/*スマホ向け*/
#unit-722068 { display: none; }
.adminView #unit-722068 { display: block; }

/*coverWrap2*/
#coverWrap2 { position: relative; text-align: center; height: 506px; width: 100%; margin: 0 auto 0 auto; overflow: visible !important; }
#coverWrap2 li { left: 0; background-position: center top; background-repeat: no-repeat; overflow: hidden; background-size: cover; }
#coverWrap2 li a { display: block; margin: 0 auto; height: 506px; width: 100%; max-width: 1200px; overflow: hidden; }
#coverWrap2 img { width: 100%; }
#coverWrap2 > p { position: absolute; top: 50%; left: 50%; width: 582px; height: 54px; margin-top: -27px; margin-left: -291px; background: url(../common-img/cover_txt.png) no-repeat 0 0; text-indent: -9999px; z-index: 51; }
#coverWrap2 #itemzoom { height: 506px; }
#coverWrap2 li.bjqs-slide { width: 100%; }
#coverWrap2 ul.bjqs { overflow: visible !important; }
#coverWrap2 ul.bjqs li { width: 100%; height: 506px !important; position: absolute; }
#coverWrap2 .bx-viewport { width: auto !important; }
#coverWrap2 .bx-controls { width: 900px; margin: 0 auto; position: relative; }
#coverWrap2 .bx-wrapper .bx-controls-direction a { z-index: 1 !important; }
#coverWrap2 .bx-wrapper .bx-controls-direction a.bx-prev { display: block; left: -20px; top: -253px; width: 20px; height: 60px; background: url("../common-img/btn_cover_prev.png") no-repeat 0 0; }
#coverWrap2 .bx-wrapper .bx-controls-direction a.bx-next { display: block; right: -20px; top: -253px; width: 20px; height: 60px; background: url("../common-img/btn_cover_next.png") no-repeat 0 0; }
#coverWrap2 .bx-wrapper .bx-controls-auto { width: 7%; bottom: 10px; line-height: 1px; text-align: left; }
#coverWrap2 .bx-wrapper .bx-pager { width: 93%; bottom: 10px; line-height: 1px; text-align: right; }
#coverWrap2 .bx-wrapper .bx-pager .bx-pager-item a { text-indent: 100%; overflow: hidden; }
#coverWrap2 .bx-wrapper .bx-controls-auto .bx-start { width: 10px; height: 10px; margin-left: 10px; }
#coverWrap2 .bx-wrapper .bx-controls-auto .bx-stop { width: 10px; height: 10px; }
#coverWrap2 .bx-wrapper .bx-pager .bx-pager-item,
#coverWrap2 .bx-wrapper .bx-controls-auto .bx-controls-auto-item { background: #FFF; padding: 5px 0px; opacity: .6; }






/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
パンくずリスト
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

.breadcrumbsListOuter { padding: 20px 0 20px 0; }
#breadcrumbsList { width: 100%; max-width: var(--maxWidth); margin: 0 auto 5px auto; padding: 0 20px; box-sizing: border-box; display: flex; }
#breadcrumbsList p { display: flex; align-items: center; justify-content: center; flex: 0 0 calc(6em - 10px); min-height: 25px; padding: 3px; box-sizing: border-box; margin-right: 10px; line-height: 1; background-color: #F4F4F4; color: #111; font-size: 1.4rem; }
#breadcrumbsList ul { list-style: none; line-height: 1.6; }
#breadcrumbsList li { display: inline; margin: 0; padding: 0; line-height: 1; position: relative; }
#breadcrumbsList li:nth-of-type(1) { margin-left: 0; padding-left: 0; }
#breadcrumbsList li::before { content: ""; display: inline-block; width: 5px; height: 10px; margin: 0 8px; -webkit-mask-size: contain; -webkit-mask-image: url(../common-img/ico_arrow.svg); -webkit-mask-repeat: no-repeat; -webkit-mask-position: left .4em; mask-size: contain; mask-image: url(../common-img/ico_arrow.svg); mask-repeat: no-repeat; mask-position: 0 50%; background-color: #616369; }
#breadcrumbsList li:nth-of-type(1)::before { content: none; }
#breadcrumbsList li a { line-height: 1.5; }
@media (max-width: 1100px) {
	#breadcrumbsList { padding-left: 20px; padding-right: 20px; }
}

/*足跡*/
.footprintListOuter { width: 100%; max-width: var(--maxWidth); margin: 0 auto; padding: 0 20px; box-sizing: border-box; display: flex; }
.footprintListOuter p { display: flex; align-items: center; justify-content: center; flex: 0 0 calc(6em - 10px); min-height: 25px; padding: 3px; box-sizing: border-box; margin-right: 10px; line-height: 1; background-color: #F4F4F4; color: #111; font-size: 1.4rem; }
.footprintListOuter #footprintList { text-align: left; }
.footprintListOuter #footprintList ul { list-style: none; line-height: 1.6; }
.footprintListOuter #footprintList li { display: inline; margin: 0; padding: 0; line-height: 1; position: relative; }
.footprintListOuter #footprintList li:nth-of-type(1) { margin-left: 0; padding-left: 0; }
.footprintListOuter #footprintList li::before { content: ""; display: inline-block; width: 5px; height: 10px; margin: 0 8px; -webkit-mask-size: contain; -webkit-mask-image: url(../common-img/ico_arrow.svg); -webkit-mask-repeat: no-repeat; -webkit-mask-position: left .4em; mask-size: contain; mask-image: url(../common-img/ico_arrow.svg); mask-repeat: no-repeat; mask-position: 0 50%; background-color: #616369; }
.footprintListOuter #footprintList li:nth-child(1)::before { content: none; }
.footprintListOuter #footprintList li a { line-height: 1.5; }
@media (max-width: 1100px) {
	.footprintListOuter { padding-left: 20px; padding-right: 20px; }
}

/* SP用パンくずリスト（フッター) */
#breadcrumbsListF { display: none; padding: 0 0 20px 0; width: 100%; text-align: left; }
#breadcrumbsListF ul { margin: 0; padding: 0; }
#breadcrumbsListF li { margin: 0 4px 0 0; padding: 0; display: inline; }
#breadcrumbsListF li a { margin: 0; padding: 0 13px 0 0; }






/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
フッターエリア
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

#footerArea { position: relative; }
#footerArea::after { content: ""; position: absolute; top: 0; left: 0; display: block; width: 100%; height: 95px; background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); }

/*ページトップボタン*/
#pPageTop { position: fixed; width: 64px; height: 64px; bottom: 24px; right: 24px; z-index: 1; }
#pPageTop a { position: relative; display: block; width: 64px; height: 64px; cursor: pointer; transition: opacity ease .3s; }
#pPageTop a span { position: absolute; width: 58px; height: 58px; z-index: 2; border-radius: 9999px; text-indent: -9999px; background-color: var(--btnBgColor); border: 3px solid var(--btnBorderColor); box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25); transition: background-color ease .3s, border-color ease .3s; }
#pPageTop a span::before { content: ""; position: absolute; right: 21px; top: 24px; width: 15px; height: 15px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); border-right-style: solid; border-right-width: 2px; border-top-style: solid; border-top-width: 2px; border-right-color: var(--btnArrowColor); border-top-color: var(--btnArrowColor); transition: border-right-color ease .3s, border-top-color ease .3s; }
#pPageTop a span:hover { background-color: var(--btnHoverBgColor); border-color: var(--btnHoverBorderColor); }
#pPageTop a span:hover::before { border-right-color: var(--btnHoverArrowColor); border-top-color: var(--btnHoverArrowColor); }
@media screen and (max-width: 750px) {
	#pPageTop { position: static !important; width: calc(100% - 40px); margin-left: auto; margin-right: auto; margin-bottom: 20px; height: auto; }
	#pPageTop a { width: 100%; height: auto; text-decoration: none; }
	#pPageTop a span { position: static; display: block; width: 100%; height: auto; padding: 5px 0; box-sizing: border-box; border-radius: 0; text-indent: 0; color: var(--mainBtnTxtColor); text-align: center; }
	#pPageTop a span::before { content: none; }
	#pPageTop a span:hover { color: var(--linkTxtColor); }
}

/*フッターアドレス*/
#footerAddressArea { display: flex; justify-content: center; padding: 100px 0 40px; box-sizing: border-box; background: url("../common-img/bg_footer.jpg") no-repeat center; background-size: cover; background-position: center; }
#footerAddressArea .inner { width: 100%; max-width: var(--maxWidth); padding: 0 20px; box-sizing: border-box; }
#footerAddress { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; width: 585px; margin-bottom: 20px; }
#footerAddress address { font-style: normal; }
#footerAddress .logo { flex: 0 0 100%; margin-bottom: 10px; }
#footerAddress .logo span { display: block; width: 46.3rem; height: 6rem; background: url(../common-img/logo.svg) no-repeat center; background-size: contain; text-indent: 100%; white-space: nowrap; overflow: hidden; }
#footerAddress .col1 { flex: 1; }
#footerAddress .address { display: block; margin-bottom: 10px; font-size: 1.8rem; line-height: 1.2; font-family: "Noto Sans JP", sans-serif; }
#footerAddress .tel { display: block; }
#footerAddress .tel a { display: block; color: var(--txtColor) !important; text-decoration: underline !important; font-size: 3.8rem; font-weight: 400; white-space: nowrap; line-height: 1; font-family: "Noto Sans JP", sans-serif; }
#footerAddress .tel a::before { content: ""; position: relative; top: .2rem; display: inline-block; margin-right: 5px; width: 3rem; height: 3rem; -webkit-mask: url(../common-img/ico_tel.svg) no-repeat 0 center; -webkit-mask-size: contain; mask: url(../common-img/ico_tel.svg) no-repeat 0 center; mask-size: contain; background-color: var(--txtColor); }
#footerAddress .tel a span { display: inline-block; padding: 0 0 0 3px; font-size: 1.4rem; font-weight: bold; font-family: 'BIZ UDPGothic', sans-serif; }
#footerAddress .tel a:hover { text-decoration: none !important; }
#footerAddress .col2 { flex: 0 0 auto; }
#footerAddress .col2 .access { position: relative; display: flex; align-items: center; width: auto; min-width: 220px; white-space: nowrap; min-height: 42px; padding: 10px 40px 8px 15px; box-sizing: border-box; font-size: 1.6rem; color: var(--mainBtnTxtColor); line-height: 1.2; text-decoration: none; border-radius: 10px; box-shadow: 0 0 6px var(--mainBtnShadowColor); background-color: var(--mainBtnBgColor); transition: background-color ease .3s, color ease .3s; }
#footerAddress .col2 .access::after { content: ""; position: absolute; top: calc(50% - 7px); right: 15px; display: block; width: 15px; height: 15px; -webkit-mask: url("../common-img/ico_arrow_next.svg") no-repeat center; -webkit-mask-size: contain; mask: url("../common-img/ico_arrow_next.svg") no-repeat center; mask-size: contain; background-color: var(--mainBtnArrowColor); transition: background ease .3s; }
#footerAddress .col2 .access:hover { color: var(--mainBtnHoverTxtColor); background-color: var(--mainBtnHoverBgColor); }
#footerAddress .col2 .access:hover::after { background-color: var(--mainBtnHoverTxtColor); }
#footerGuide { width: 585px; padding: 30px; box-sizing: border-box; background-color: var(--mainBgColor); }
#footerGuide .ttl { margin: 0 0 15px 0; padding: 0 0 10px 0; box-sizing: border-box; font-size: 2.2rem; font-weight: bold; color: #111; line-height: 1; border-bottom: 1px dotted #A3A3A3; }
#footerGuide .list { display: flex; align-items: stretch; column-gap: 12px; margin: 0 0 10px; }
#footerGuide .term { flex: 0 0 8rem; align-self: stretch; display: flex; align-items: center; justify-content: center; padding: 5px; box-sizing: border-box; font-size: 1.4rem; font-weight: bold; color: #FFF; line-height: 1.1; text-align: center; border-radius: 3px; background-color: #656565; }
#footerGuide .desc { flex: 1; align-self: center; font-size: 1.8rem; font-weight: bold; color: #111; line-height: 1.2; }
#footerGuide .desc .note { display: inline-block; margin: 4px 0 0 0; font-size: 1.8rem; }
#footerGuide .notes { font-size: 1.4rem; color: #111; line-height: 1.5em; }

/*フッターナビゲーションエリア*/
#footerNaviArea { display: flex; justify-content: center; }
#footerNaviArea .inner { display: flex; justify-content: space-between; width: 100%; max-width: var(--maxWidth); height: 145px; padding: 10px 20px; box-sizing: border-box; }
#footerNaviArea .col1 { flex: 1; padding: 25px 0 20px; box-sizing: border-box; }
#footerNaviArea .footerNavi { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 40px; line-height: 1; }
#footerNaviArea .footerNavi a { font-size: 1.5rem; color: var(--ttlColor); text-decoration: none; }
#footerNaviArea .footerNavi a:hover { text-decoration: underline; }
#footerNaviArea .col2 { flex: 0 0 auto; }
#footerNaviArea .bnrArea { list-style: none; display: flex; justify-content: flex-end; align-items: center; gap: 15px; line-height: 1; }
#footerNaviArea .bnrArea .jcqhc { display: block; width: 114px; height: 126px; background: url(../common-img/bnr_jcqhc.png) no-repeat center; background-size: contain; text-indent: 100%; white-space: nowrap; overflow: hidden; }
#footerNaviArea .bnrArea .zeb { display: block; width: 133px; height: 105px; background: url(../common-img/bnr_zeb.png) no-repeat center; background-size: contain; text-indent: 100%; white-space: nowrap; overflow: hidden; }

/*コピーライト*/
#copyrightArea { position: absolute; bottom: 20px; left: 0; display: flex; justify-content: center; width: 100%; }
.pCopyright { width: 100%; max-width: var(--maxWidth); padding: 0 20px; box-sizing: border-box; }
.pCopyright p { font-size: 1.2rem; color: var(--txtColor); }






/*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---------------------------------------------------------------
カスタム
---------------------------------------------------------------
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/*コンテンツヘッダー*/
#contentsAreaHead { margin: -40px 0 50px 0; width: 100%; font-size: 0; text-align: right; }
#contentsAreaHead > .inner { display: inline-flex; align-items: center; background-color: #F4F4F4; padding: 10px; }

/*最終更新日*/
#lastUpdate { display: inline-block; padding: 0 8px; font-size: 1.4rem; }
#lastUpdate p { margin: 0; }

/*印刷ボタン*/
#pagePrintBtn { display: inline-block; padding: 0 8px; font-size: 1.4rem; }
#pagePrintBtn p { margin: 0; text-align: right; display: flex; align-items: center; }
#pagePrintBtn p a { font-weight: bold; padding: 0 0 0 25px; position: relative; display: inline-block; line-height: 1; }
#pagePrintBtn p a::before { content: ""; display: inline-block; width: 18px; height: 18px; position: absolute; left: 0; top: 50%; transform: translateY(-50%); -webkit-mask: url(../common-img/ico_print.svg) no-repeat left center; -webkit-mask-size: contain; mask: url(../common-img/ico_print.svg) no-repeat left center;  mask-size: contain; background-color: #000; }

/*なぞり検索*/
#pageSearchBtn { display: inline-block; font-size: 1.4rem; padding: 0 8px; line-height: 1; }
#pageSearchBtn p { margin: 0; display: inline-flex; align-items: center; }
#pageSearchBtn p #srch_trc { display: inline-flex; align-items: center; }
#pageSearchBtn p a { padding: 0 0 0 18px; font-weight: bold; }
#pageSearchBtn p a.pageSearchBtnOn,
#pageSearchBtn p a.pageSearchBtnOff { position: relative; padding: 3px 0 3px 23px; display: inline-block; line-height: 1; }
#pageSearchBtn p a.pageSearchBtnOn:before,
#pageSearchBtn p a.pageSearchBtnOff:before { position: absolute; left: 0; top: 0; width: 18px; height: 100%; content: ""; -webkit-mask: url(../common-img/ico_page_search.svg) no-repeat left center; -webkit-mask-size: 17px 17px; mask: url(../common-img/ico_page_search.svg) no-repeat left center; mask-size: 17px 17px; background-color: #000; }
#pageSearchBtn p a.pageSearchHelp { margin: 0 0 0 8px; padding: 0; width: 18px; height: 18px; display: inline-block; text-indent: 100%; white-space: nowrap; line-height: 1; font-size: .1em; overflow: hidden; -webkit-mask: url(../common-img/ico_page_search_help.svg) no-repeat 0 0; -webkit-mask-size: contain; mask: url(../common-img/ico_page_search_help.svg) no-repeat 0 0; mask-size: contain; background-color: #000; }

/*-------------------------------------------------------------
トップ
-------------------------------------------------------------*/

/*共通タイトル*/
.topTtl .main { font-family: "Noto Serif JP", serif; font-optical-sizing: auto; font-size: 4.5rem; font-weight: 400; line-height: 1.4; }
.topTtl .sub { font-family: "Noto Serif JP", serif; font-optical-sizing: auto; font-size: 2.4rem; font-weight: 200; line-height: 1.4; color: #00A4CF; }
.topSubTtl .main { position: relative; font-family: "Noto Serif JP", serif; font-optical-sizing: auto; font-size: 3rem; font-weight: 400; line-height: 1.4; padding-left: 45px; }
.topSubTtl .main::before { content: ""; display: block; width: 30px; height: 3px; background-color: #00A4CF; position: absolute; left: -0; top: 50%; }

/*大切なお知らせ*/
.topImpNewsBox { width: auto !important; max-width: none !important; margin-bottom: 80px; margin-right: 282px !important; background-color: var(--mainBgColor); padding: 20px 20px 0 30px; border-top-right-radius: 10px; box-sizing: border-box; overflow: visible !important; }
.topImpNewsBox::after { content: ""; width: 10px; height: 10px; position: absolute; right: -10px; bottom: 0; background: url("../common-img/top_news_skirt.svg") no-repeat center; background-size: 10px; }
.topImpNewsBox .bExtCatList { display: flex; justify-content: space-between; }
.topImpNewsBox .bExtCatList.type0 ul li { margin-bottom: 15px !important; padding-top: 0 !important; padding-left: 0 !important; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; grid-template-areas: "newsDate newsTtl" "newsDate newsSummary"; border: none !important; padding-bottom: 0 !important; }
.topImpNewsBox .bExtCatList.type0 ul li:nth-last-of-type(1) { margin-bottom: 0 !important; }
.topImpNewsBox .bExtCatList.type0 ul li::before { content: none !important; }
.topImpNewsBox .bExtCatList.type0 ul li p.bExtCatListDate { grid-area: newsDate; width: 10.5em; font-size: 1.5rem !important; }
.topImpNewsBox .bExtCatList.type0 ul li h5 { grid-area: newsTtl; }
.topImpNewsBox .bExtCatList.type0 ul li h5 a { color: #111 !important; line-height: 1.5; padding-left: 0 !important; }
.topImpNewsBox .bExtCatList.type0 ul li p.bExtCatListTxt { grid-area: newsSummary; margin-top: 3px !important; padding-top: 0 !important; padding-left: 0 !important; line-height: 1.5 !important; }
.topImpNewsBox .bExtCatList h2 { margin-top: 15px; padding: 0 0 0 1.5em !important; width: auto; flex: 0 0 11em; color: #BF0618; position: relative; font-size: 2rem !important; border: none; }
.topImpNewsBox .bExtCatList h2::before { content: ""; display: inline-block; width: 2.2rem; height: 100%; background: url("../common-img/ico_caution.svg") no-repeat center 0; background-size: contain; position: absolute; left: 0; top: 0; }
.topImpNewsBox .bExtCatList h2 span { line-height: 1; }
.topImpNewsBox .bExtCatList ul.bExtCatListInner0 { display: block; width: 100%; height: 100%; box-sizing: border-box; }
.topImpNewsBox .bExtCatList > ul.bExtCatListInner0 { padding-top: 15px; padding-bottom: 15px; }
.topImpNewsBox .bExtCatListOption { padding-top: 0 !important; flex: 0 0 16%; margin-left: 30px; }
.topImpNewsBox .bExtCatListOption ul { display: block; width: 100%; height: 100%; box-sizing: border-box; }
.topImpNewsBox .bExtCatListOption ul li { margin: 0 !important; display: block !important; height: 100%; }
.topImpNewsBox .bExtCatListOption ul li a { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; padding: 0; background: none; background-color: #F0F9FF; color: #111 !important; text-decoration: none !important; border-radius: 10px; cursor: pointer; }
.topImpNewsBox .bExtCatListOption ul li a::before { content: none !important; }
.topImpNewsBox .bExtCatListOption ul li a::after { content: ""; display: inline-block; width: 1.5rem; height: 100%; margin-left: 5px; -webkit-mask: url(../common-img/ico_arrow_next.svg) no-repeat 0 50%; -webkit-mask-size: contain; mask: url(../common-img/ico_arrow_next.svg) no-repeat 0 50%; mask-size: contain; background-color: var(--linkArrowColor); }
.fontSizeM .topImpNewsBox,
.fontSizeL .topImpNewsBox { margin-right: 0 !important; padding-right: 0 !important; }
@media screen and (max-width: 1279px) {
	.topImpNewsBox .bExtCatListInner0 li { display: block !important; }
	.topImpNewsBox .bExtCatListInner0 li p.bExtCatListDate { margin-top: 0; padding-left: 0; }
}

/*トップ3列バナー*/
.topBnrBox { padding: 0 20px; max-width: var(--maxWidth) !important; }
.topBnrBox .extBannerMngr .bx-wrapper { margin: 0 auto 60px !important; }
.topBnrBox .extBannerMngr li { height: auto !important; line-height: normal !important; border-radius: 10px; overflow: hidden; border: 1px solid #DDEDF4; box-sizing: border-box; }
.topBnrBox .extBannerMngr li a { cursor: pointer; }
.topBnrBox .extBannerMngr li a img { width: 100% !important; height: auto !important; aspect-ratio: 480 / 150; display: block; pointer-events: none; -webkit-user-drag: none; user-select: none; }
.topBnrBox .extBannerMngr .bx-controls-direction a { position: absolute; display: flex !important; align-items: center; justify-content: center; border: 2px solid var(--btnBorderColor); background-color: #0075AF; background-image: none; border-radius: 9999px; width: 48px; height: 48px; margin-top: -24px; box-sizing: border-box; transition: background-color ease .3s, border-color ease .3s; cursor: pointer; }
.topBnrBox .extBannerMngr .bx-controls-direction a:hover { background-color: var(--btnHoverBgColor) !important; border-color: var(--btnHoverBorderColor) !important; }
.topBnrBox .extBannerMngr .bx-controls-direction a::after { content: ""; display: inline-block; width: 8.49px; height: 14.23px; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: 8.49px 14.23px; mask-repeat: no-repeat; mask-position: center; mask-size: 8.49px 14.23px; }
.topBnrBox .extBannerMngr .bx-controls-direction a.bx-prev { left: -20px; }
.topBnrBox .extBannerMngr .bx-controls-direction a.bx-prev::after { -webkit-mask-image: url(../common-img/ico_btn_arrow_prev.svg); mask-image: url(../common-img/ico_btn_arrow_prev.svg); background-color: var(--btnArrowColor); }
.topBnrBox .extBannerMngr .bx-controls-direction a.bx-prev:hover::after { background-color: var(--btnHoverArrowColor) !important; }
.topBnrBox .extBannerMngr .bx-controls-direction a.bx-next { right: -20px; }
.topBnrBox .extBannerMngr .bx-controls-direction a.bx-next::after { -webkit-mask-image: url(../common-img/ico_btn_arrow_next.svg); mask-image: url(../common-img/ico_btn_arrow_next.svg); background-color: var(--btnArrowColor); }
.topBnrBox .extBannerMngr .bx-controls-direction a.bx-next:hover::after { background-color: var(--btnHoverArrowColor) !important; }

/*トップ診療時間ほか*/
.topInfo .col { flex: 1; padding: 30px; background-color: var(--subBgColor01); }
.topInfo .col:nth-of-type(1) { border-top-left-radius: 10px; border-top-right-radius: 10px; }
.topInfo .col:nth-of-type(2) { padding-top: 0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.topInfo .guide:nth-of-type(n+2) { margin: 30px 0 0 0; }
.topInfo .ttl { margin: 0 0 15px 0; padding: 0 0 10px 0; box-sizing: border-box; font-size: 2rem; font-weight: bold; color: var(--thirdTtlColor); line-height: 1; border-bottom: 1px dotted var(--ttlBorderColor); }
.topInfo .ttlS { margin: 0 0 15px 0; padding: 0 0 14px 0; box-sizing: border-box; font-size: 2rem; font-weight: bold; color: var(--ttlColor); line-height: 1; border-bottom: 1px dotted var(--ttlBorderColor); }
.topInfo .ttlS .sub { display: inline-block; margin-left: .5em; font-size: 1.6rem; }
.topInfo .list { display: flex; align-items: stretch; column-gap: 17px; margin: 0 0 10px; }
.topInfo .term { flex: 0 0 100px; align-self: stretch; display: flex; align-items: center; justify-content: center; padding: 8px 0; box-sizing: border-box; font-size: 1.8rem; font-weight: bold; color: var(--thirdTtlColor); line-height: 1.1; text-align: center; border: 1px dotted #6D92A3; background-color: var(--mainBgColor); }
.topInfo .desc { flex: 1; align-self: center; font-size: 2rem; font-weight: bold; color: var(--thirdTtlColor); line-height: 1.2; }
.topInfo .desc .note { display: block; margin: 4px 0 0 0; font-size: 1.4rem; }
.topInfo .notes { font-size: 1.5rem; color: var(--thirdTxtColor); line-height: 1.5em; }
.topInfo .tel { display: flex; flex-wrap: wrap; align-items: baseline; position: relative; padding: 0 0 0 2rem; box-sizing: border-box; font-size: 2.2rem; color: var(--subTxtColor); font-weight: bold; line-height: 1; font-feature-settings: "palt"; letter-spacing: -.05em; }
.topInfo .tel::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: 1.8rem; height: 100%; -webkit-mask: url("../common-img/ico_tel.svg") no-repeat 0 .2rem; -webkit-mask-size: contain; mask: url("../common-img/ico_tel.svg") no-repeat left .2rem; mask-size: contain; background-color: var(--subTxtColor); }
.topInfo .tel .time { margin-top: 5px; padding: 0 0 0 5px; font-size: 1.4rem; color: var(--thirdTxtColor); letter-spacing: normal; }
.topInfo .tel.reserve { color: var(--txtColor); }
.topInfo .tel.reserve::before { background-color: var(--txtColor); }
.topInfo .linkList { list-style: none; margin: 20px 0 0 0; }
.topInfo .linkList li { background-color: #FFF; border: 1px dotted #6D92A3; margin-bottom: 5px; padding: 15px; display: flex; align-items: center; justify-content: space-between; line-height: 1; }
.topInfo .linkList li:nth-last-of-type(1) { margin-bottom: 0; }
.topInfo .linkList li p { display: inline-block; font-size: 2rem; font-weight: 700; }
.topInfo .linkList li p span { font-size: 1.4rem; }
.topInfo .linkList li a { display: inline-block; }
.topInfo .linkList li a span { display: inline-block; position: relative; font-size: 2.3rem; font-weight: 700; padding-left: 1.15em; text-decoration: underline !important; }
.topInfo .linkList li a:hover span { text-decoration: none !important; }
.topInfo .linkList li:nth-of-type(1) p { color: #0075AF; }
.topInfo .linkList li:nth-of-type(1) a span::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: 21px; height: 21px; mask: url("../common-img/ico_tel.svg") no-repeat 0 50%; mask-size: contain; background-color: #0075AF; }
.topInfo .linkList li:nth-of-type(2) a { color: #004058 !important; }
.topInfo .linkList li:nth-of-type(2) a span::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: 21px; height: 21px; mask: url("../common-img/ico_tel.svg") no-repeat 0 50%; mask-size: contain; background-color: #004058; }

/*トップカテゴリーボタン*/
.bcontainer-outer.topcatListBox { margin-bottom: 140px; overflow: visible !important; }
.bcontainer-outer.topcatListBox .bcontainer-coln { overflow: visible !important; }
.bcontainer-outer.topcatListBox .bcontainer-inner { overflow: visible !important; }
.bcontainer-outer.topcatListBox .coln { overflow: visible !important; }
.bcontainer-outer.topcatListBox .containerInner { height: 100%; overflow: visible !important; }
.bcontainer-outer.topcatListBox .containerInner [id^="unit-"] { height: 100%; }
.bcontainer-outer.topcatListBox .containerInner .bTxtS { height: 100%; }
.bcontainer-outer.topcatListBox .containerInner .bTxtS > .inner { height: 100%; }
.topcatList { height: 100%; }
.topcatList ul { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; height: 100%; }
.topcatList ul li { flex: 1 1 calc((100% / 3) - 10px); display: flex; align-items: flex-end; }
.topcatList ul li a { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; box-sizing: border-box; background-color: #FFF; border: 5px solid transparent; color: #0075AF; text-decoration: none !important; border-radius: 8px; font-size: 1.8rem; font-weight: bold; box-shadow: 0 0 6px 0 rgba(0, 115, 230, .2); transition: border-color .5s ease; }
.topcatList ul li a:hover { border-color: var(--btnHoverBorderColor); }
.topcatList ul li a .imgOuter { display: flex; align-items: center; height: 70px; }
.topcatList ul li a img { max-width: 70px; max-height: 70px; }
.topcatList ul li.cat03 a img { max-width: 60px !important; }
.topcatList ul li a .ttl { line-height: 1.2; margin-top: 12px; }

/*5つの進化*/
.bcontainer-outer.topEvoBox { position: relative; padding-top: 140px; overflow: visible !important; }
.bcontainer-outer.topEvoBox::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 820px; background: linear-gradient(to bottom, #F0F9FF 0%, #FFF 100%); }
.bcontainer-outer.topEvoBox .bcontainer-coln { overflow: visible !important; }
.bcontainer-outer.topEvoBox .bcontainer-inner { margin: 0 auto; padding: 0 20px; width: 100%; max-width: var(--maxWidth); box-sizing: border-box; }
.topEvo { display: flex; align-items: flex-start; justify-content: space-between; position: relative; margin: 0 auto; padding-bottom: 100px; box-sizing: border-box; }
.topEvo .topTtl { margin-top: 50px; margin-bottom: 45px; }
.topEvo .lead { font-size: 2.4rem; margin-bottom: 30px; line-height: 1.5; letter-spacing: .05em; }
.topEvo > .col1 { position: sticky; top: 200px; flex: 1; z-index: 1; padding-right: 30px; }
.topEvo > .col2 { flex: 1; z-index: 1; padding-left: 30px; }
.topEvo .side-scroll-item { position: relative; margin-bottom: 80px; border-radius: 10px; overflow: hidden; }
.topEvo .side-scroll-item img { width: 100%; }
.topEvo .side-scroll-item::after { content: ""; display: block; width: 100%; height: 350px; position: absolute; left: 0; bottom: 0; background-image: linear-gradient(0deg, #007AC3, transparent); mix-blend-mode: multiply; }
.topEvo .side-scroll-item:nth-last-of-type(1) { margin-bottom: 0; }
.topEvo .side-scroll-item .inner { position: absolute; left: 0; bottom: 0; padding: 0 50px 40px; z-index: 1; color: #FFF; }
.topEvo .side-scroll-item .inner .num { font-family: "Marcellus", serif; font-size: 3.8rem; font-weight: 400; line-height: 1; margin-bottom: 15px; color: rgba(255, 255, 255, .5); word-break: keep-all; overflow-wrap: normal; }
.topEvo .side-scroll-item .inner .num span { display: inline-block; margin-right: .2em; font-size: 10rem; }
.topEvo .side-scroll-item .inner .ttl { font-size: 3.2rem; line-height: 1.3; margin-bottom: 18px; font-weight: 400; letter-spacing: .075em; }
.topEvo .side-scroll-item .inner .ttl span { display: block; }
.topEvo .side-scroll-item .inner .txt { line-height: 1.8; }

/*当院の特徴*/
.bcontainer-outer.topFeaturesBox { margin-bottom: 120px; overflow: visible !important; }
.bcontainer-outer.topFeaturesBox .bcontainer-coln { overflow: visible !important; }
.bcontainer-outer.topFeaturesBox .bcontainer-inner { overflow: visible !important; }
.topFeaturesList ul { list-style: none; display: flex; flex-wrap: wrap; gap: 40px; }
.topFeaturesList ul li { flex: 1 1 calc((100% / 2) - 40px); background-color: #FFF; border-radius: 10px; overflow: hidden; box-sizing: border-box; display: flex; flex-direction: row-reverse; box-shadow: 0 0 6px 0 rgba(0, 115, 230, .2); }
.topFeaturesList ul li > div { flex: 1; padding: 30px; }
.topFeaturesList ul li > div .main { font-size: 2rem; line-height: 1.4; margin-bottom: 8px; }
.topFeaturesList ul li > div .main a { display: flex; align-items: center; justify-content: space-between; text-decoration: none !important; }
.topFeaturesList ul li > div .main a::after { content: ""; display: inline-block; width: 18px; height: 18px; -webkit-mask: url(../common-img/ico_arrow_next.svg) no-repeat center; -webkit-mask-size: contain; mask: url(../common-img/ico_arrow_next.svg) no-repeat center; mask-size: contain; background-color: #AFB0B3; }
.topFeaturesList ul li > div .main a span { display: inline-block; position: relative; letter-spacing: .05em; }
.topFeaturesList ul li > div .main a span::after { content: ""; display: block; width: 0; height: 2px; background-color: #0075AF; position: absolute; left: 0; bottom: -3px; transition: width ease .3s; }
.topFeaturesList ul li > div .main a:hover span::after { width: 100%; }
.topFeaturesList ul li > div p { font-size: 1.6rem; line-height: 1.8; }
.topFeaturesList ul li > img { display: block; width: 25%; object-fit: cover; }

/*背景画像コンテナ*/
.bgImage { position: relative; overflow: hidden !important; }
.bgImage .plc { width: 100% !important; }
.bgImage::after { content: ""; position: absolute; left: 0; top: 0; display: block; width: 100%; height: 65px; background-image: linear-gradient(0deg, transparent, rgba(0, 0, 0, .1)); }

/*トップトピックス*/
.topTopicsUpperBox { padding-top: 120px; }
.topTopicsBox.bcontainer-outer { position: relative; overflow: hidden; margin-bottom: 120px; padding-top: 0 !important; overflow: visible !important; } 
.topTopicsBox::after { content: ""; position: absolute; left: 0; right: calc((100% - 1460px) / 2); top: -240px; height: 100%; background: linear-gradient(to bottom, #F4F4F4 0%, #FFF 100%); border-top-right-radius: 10px; max-width: 100%; overflow: hidden; }
.topTopicsBox .topTtl .bTxtS { max-width: var(--maxWidth); text-align: left; margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }
.topTopicsBox .box1 { text-align: right; }
.topTopicsBox .box1 .containerInner { display: flex; align-content: stretch; margin: 0 -50px 0 0; padding: 20px 0 0 0; width: auto; list-style: none; list-style-position: outside; text-align: left; flex-wrap: nowrap !important; overflow: visible !important; justify-content: flex-start; padding-top: 0; }
.topTopicsBox .box1 .containerInner div[id^="unit-"] { position: relative; display: flex; flex-direction: column; flex-grow: 0; height: auto !important; margin: 0; padding: 0 !important; flex-shrink: 0 !important; flex-basis: auto !important; background-color: #FFF; border-radius: 10px; overflow: hidden; width: 380px !important; flex: 0 0 auto !important; }
.topTopicsBox .box1 .containerInner div[id^="unit-"] .bImgS { flex: 1 !important; margin-right: 0 !important; }
.topTopicsBox .box1 .containerInner div[id^="unit-"] .bImgS a { position: relative; display: block; width: 100%; height: 100%; }
.topTopicsBox .box1 .containerInner div[id^="unit-"] .bImgS a::after { content: ""; display: block; width: 100%; height: 240px; position: absolute; left: 0; bottom: 0; background-image: linear-gradient(0deg, #000D12, transparent); mix-blend-mode: multiply; }
.topTopicsBox .box1 .containerInner div[id^="unit-"] .bImgS img { width: 100%; aspect-ratio: 42 / 54; object-fit: cover; }
.topTopicsBox .box1 .containerInner div[id^="unit-"] .bImgS a .caption { position: absolute !important; left: 0; bottom: 0; padding: 0 30px 25px 30px !important; color: #FFF !important; font-size: 1.9rem !important; line-height: 1.6 !important; text-align: left; font-weight: bold; letter-spacing: .05em; z-index: 1; }
.topTopicsBox .box1 .containerInner div[id^="unit-"] .bImgS a .caption::after { content: ""; display: inline-block; width: 18px; height: 18px; -webkit-mask: url(../common-img/ico_arrow_next.svg) no-repeat center; -webkit-mask-size: contain; mask: url(../common-img/ico_arrow_next.svg) no-repeat center; mask-size: contain; background-color: #FFF; position: relative; top: 2px; margin-left: 10px; }
.topTopicsBox .box1 .containerInner div[id^="unit-"] .bImgS a:hover .caption { text-decoration: underline !important; }
.topTopicsBox .swiperButtonOuter { display: flex; position: relative; justify-content: flex-end; max-width: var(--maxWidth); text-align: right; margin: 40px auto 0; padding: 0 20px; width: 100%; box-sizing: border-box; }
.topTopicsBox .swiperButtonOuter > div { position: static !important; display: flex !important; align-items: center; justify-content: center; margin-top: 0 !important; border: 2px solid var(--btnBorderColor); background-color: #0075AF; background-image: none; border-radius: 9999px; width: 48px; height: 48px; box-sizing: border-box; transition: background-color ease .3s, border-color ease .3s; cursor: pointer; }
.topTopicsBox .swiperButtonOuter > div:hover { background-color: var(--btnHoverBgColor) !important; border-color: var(--btnHoverBorderColor) !important; }
.topTopicsBox .swiperButtonOuter > div::after { content: ""; display: inline-block; width: 8.49px; height: 14.23px; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: 8.49px 14.23px; mask-repeat: no-repeat; mask-position: center; mask-size: 8.49px 14.23px; }
.topTopicsBox .swiperButtonOuter .swiper-button-prev { margin-right: 10px; }
.topTopicsBox .swiperButtonOuter .swiper-button-prev::after { -webkit-mask-image: url(../common-img/ico_btn_arrow_prev.svg); mask-image: url(../common-img/ico_btn_arrow_prev.svg); background-color: var(--btnArrowColor); }
.topTopicsBox .swiperButtonOuter .swiper-button-prev:hover::after { background-color: var(--btnHoverArrowColor) !important; }
.topTopicsBox .swiperButtonOuter .swiper-button-next::after { -webkit-mask-image: url(../common-img/ico_btn_arrow_next.svg); mask-image: url(../common-img/ico_btn_arrow_next.svg); background-color: var(--btnArrowColor); }
.topTopicsBox .swiperButtonOuter .swiper-button-next:hover::after { background-color: var(--btnHoverArrowColor) !important; }
.adminView .topTopicsUpperBox { padding-top: 0 !important; }
.adminView .topTopicsBox::after { content: none; }
.adminView .topTopicsBox .box1 .containerInner { display: block !important; }
.adminView .topTopicsBox .box1 .containerInner .bImgS { width: 380px !important; }

/*トップ病院からのお知らせ*/
.topNewsBox { position: relative; }
.topNewsBox::after { content: ""; position: absolute; left: calc((100% - 1460px) / 2); right: 0; top: 0; height: 100%; background: linear-gradient(to bottom, #F4F4F4 0%, #FFF 100%); border-top-left-radius: 10px; overflow: hidden; }
.topNewsBox .bcontainer-inner { padding: 0 20px; max-width: var(--maxWidth) !important; margin-left: auto; margin-right: auto; }
.topNewsBox .bcontainer-inner .bcontainer { padding: 100px; }

/*地域の皆さまへ・医療関係者の方へ*/
.topContBtnBox { margin-bottom: 120px; }
.localResidents { position: relative; border-radius: 10px; background-color: #F0F9FF; overflow: hidden; padding: 250px 50px 50px; }
.localResidents::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: 100%; height: 310px; background: url(../common-img/cont_local_residents_pic.jpg) no-repeat center top; background-size: cover; }
.localResidents::after { content: ""; position: absolute; top: 0; left: 0; display: block; width: 100%; height: 310px; background-image: linear-gradient(0deg, #F0F9FF 25%, transparent); }
.localResidents dl { position: relative; z-index: 1; }
.localResidents dt { text-align: center; font-size: 3rem; color: #0075AF; line-height: 1; margin-bottom: 30px; z-index: 1; }
.localResidents dd ul { list-style: none; }
.localResidents dd ul li { margin-bottom: 10px; box-shadow: 0 0 6px 0 rgba(0, 115, 230, .2); }
.localResidents dd ul li:nth-last-of-type(1) { margin-bottom: 0; }
.localResidents dd ul li a { display: flex; background-color: #FFF; border-radius: 10px; overflow: hidden; padding: 25px 30px; text-decoration: none; line-height: 1; border: 3px solid transparent; transition: border-color ease .3s; }
.localResidents dd ul li a:hover { border-color: #0075AF; }
.localResidents dd ul li a::before { content: ""; display: inline-block; width: 35px; height: 35px; margin-right: 15px; background-repeat: no-repeat; background-position: center; background-size: contain; }
.localResidents dd ul li.item01 a::before { background-image: url(../common-img/cont_local_residents_ico01.svg); }
.localResidents dd ul li.item02 a::before { background-image: url(../common-img/cont_local_residents_ico02.svg); }
.localResidents dd ul li.item03 a::before { background-image: url(../common-img/cont_local_residents_ico03.svg); }
.localResidents dd ul li.item04 a::before { background-image: url(../common-img/cont_local_residents_ico04.svg); }
.localResidents dd ul li a span { flex: 1; display: flex; align-items: center; justify-content: space-between; color: #0075AF; font-size: 2rem; line-height: 1; }
.localResidents dd ul li a span::after { content: ""; display: inline-block; width: 18px; height: 18px; -webkit-mask: url(../common-img/ico_arrow_next.svg) no-repeat center; -webkit-mask-size: contain; mask: url(../common-img/ico_arrow_next.svg) no-repeat center; mask-size: contain; background-color: #AFB0B3; position: relative; top: 2px; }
.medicalPersonnel { position: relative; border-radius: 10px; background-color: #E8FAF8; overflow: hidden; padding: 250px 50px 50px; }
.medicalPersonnel::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: 100%; height: 310px; background: url(../common-img/cont_medical_personnel_pic.jpg) no-repeat center top; background-size: cover; }
.medicalPersonnel::after { content: ""; position: absolute; top: 0; left: 0; display: block; width: 100%; height: 310px; background-image: linear-gradient(0deg, #E8FAF8 25%, transparent); }
.medicalPersonnel dl { position: relative; z-index: 1; }
.medicalPersonnel dt { text-align: center; font-size: 3rem; color: #008475; line-height: 1; margin-bottom: 30px; z-index: 1; }
.medicalPersonnel dd ul { list-style: none; }
.medicalPersonnel dd ul li { margin-bottom: 10px; box-shadow: 0 0 6px 0 rgba(0, 132, 117, .2); }
.medicalPersonnel dd ul li:nth-last-of-type(1) { margin-bottom: 0; }
.medicalPersonnel dd ul li a { display: flex; align-items: center; background-color: #FFF; border-radius: 10px; overflow: hidden; padding: 25px 30px; text-decoration: none; line-height: 1; border: 3px solid transparent; transition: border-color ease .3s; }
.medicalPersonnel dd ul li a:hover { border-color: #008475; }
.medicalPersonnel dd ul li a::before { content: ""; display: inline-block; width: 35px; height: 35px; margin-right: 15px; background-repeat: no-repeat; background-position: center; background-size: contain; }
.medicalPersonnel dd ul li.item01 a::before { background-image: url(../common-img/cont_medical_personnel_ico01.svg); }
.medicalPersonnel dd ul li.item02 a::before { background-image: url(../common-img/cont_medical_personnel_ico02.svg); }
.medicalPersonnel dd ul li.item03 a::before { background-image: url(../common-img/cont_medical_personnel_ico03.svg); }
.medicalPersonnel dd ul li.item04 a::before { background-image: url(../common-img/cont_medical_personnel_ico04.svg); }
.medicalPersonnel dd ul li a span { flex: 1; display: flex; align-items: center; justify-content: space-between; color: #008475; font-size: 2rem; line-height: 1.2; }
.medicalPersonnel dd ul li a span::after { content: ""; flex: 0 0 auto; display: inline-block; width: 18px; height: 18px; -webkit-mask: url(../common-img/ico_arrow_next.svg) no-repeat center; -webkit-mask-size: contain; mask: url(../common-img/ico_arrow_next.svg) no-repeat center; mask-size: contain; background-color: #AFB0B3; position: relative; top: 2px; }

/*トップリクルート*/
.topRecruitBox { margin-bottom: 120px; padding: 150px 80px 50px; border-radius: 10px; overflow: hidden; }
.topRecruit > .inner { background: none !important; }
.topRecruit .main { font-family: "Marcellus", serif; font-size: 10rem; font-weight: 400; line-height: 1; margin-bottom: 10px; color: #FFF; }
.topRecruit .sub { font-size: 2.4rem; color: #FFF; margin-bottom: 10px; }
.topRecruit .txt { font-size: 1.6rem; line-height: 1.6; color: #FFF; margin-bottom: 40px; }
.topRecruit ul { list-style: none; display: flex; gap: 20px; }
.topRecruit ul li { flex: 1; }
.topRecruit ul li a { display: flex; align-items: center; height: 120px; padding: 10px 20px 10px 10px; border: 3px solid transparent; box-sizing: border-box; background-color: #FFF; border-radius: 10px; font-size: 1.8rem; color: #111; line-height: 1.2; text-decoration: none !important; font-weight: bold; box-shadow: 0 0 6px 0 rgba(0, 115, 230, .2); transition: border-color ease .3s; }
.topRecruit ul li a:hover { border-color: #0075AF; }
.topRecruit ul li a img { height: 100%; aspect-ratio: 1 / 1; margin-right: 15px; }
.topRecruit ul li a span { display: flex; width: 100%; justify-content: space-between; align-items: center; }
.topRecruit ul li a span::after { content: ""; flex: 0 0 auto; display: inline-block; width: 18px; height: 18px; -webkit-mask: url(../common-img/ico_arrow_next.svg) no-repeat center; -webkit-mask-size: contain; mask: url(../common-img/ico_arrow_next.svg) no-repeat center; mask-size: contain; background-color: #AFB0B3; position: relative; top: 2px; }
@media screen and (max-width: 1280px) {
	.topRecruit ul { flex-wrap: wrap; }
	.topRecruit ul li { flex: 1 1 calc(50% - 10px); }
}

/*-------------------------------------------------------------
その他
-------------------------------------------------------------*/

/*下層カバー*/
.secCover { margin-top: 70px; margin-bottom: 50px; }
.secCover .inner { margin: 0 auto; padding: 0 20px; max-width: var(--maxWidth) !important; box-sizing: border-box; }
.secCover .inner h1 { position: relative; font-size: 4rem; font-weight: 700; line-height: 1.2; padding-left: 45px; letter-spacing: .05em; }
.secCover .inner h1::before { content: ""; display: block; width: 30px; height: 4px; background-color: #00A4CF; position: absolute; left: -0; top: 2rem; }
.secCover .inner p { margin-top: 5px; font-size: 1.6rem; line-height: 1.5; font-weight: 700; color: var(--thirdTxtColor); padding-left: 45px; }

/*ストリートビュー*/
#container-outer-78482 .bcontainer-inner > .col2-1 { padding-left: calc((100vw - 960px) / 2); padding-right: calc((100vw - 960px) / 2); padding-bottom: 60px; }

/*bVImgBanner*/
.bVImgBanner a { display: block; position: relative !important; padding: 0 !important; box-sizing: border-box; }
.bVImgBanner a::after { content: ""; display: block; width: 100%; height: 64px; margin-top: -64px; position: relative; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; }
.bVImgBanner h5 { position: absolute !important; margin: 0 !important; bottom: 10px !important; width: 100%; text-align: center; z-index: 1; color: #FFF; text-shadow: 1px 1px 5px rgba(0, 0, 0, 1); }
.bVImgBanner p { position: absolute !important; margin: 0 !important; bottom: 32px !important; width: 100%; text-align: center; z-index: 1; color: #FFF; text-shadow: 1px 1px 5px rgba(0, 0, 0, 1); }

/*病院について*/
.pcode-391 #unit-388835 { font-size: 2rem; }
.pcode-391 #unit-388830 ul { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; }
.pcode-391 #unit-388830 ul li { flex: 0 0 calc((100% - 40px) / 3); }
.pcode-391 #unit-388830 ul li:nth-last-of-type(1),
.pcode-391 #unit-388830 ul li:nth-last-of-type(2) { margin-bottom: 0; }
.pcode-391 #unit-388830 ul li a { display: flex; align-items: center; justify-content: center; text-decoration: none; text-align: center; height: 100%; min-height: 70px; padding: 10px; box-sizing: border-box; line-height: 1.4; color: #FFF; font-size: 1.8rem; font-weight: bold; border-radius: 10px; border: 3px solid var(--headerBtnBorderColor); background-color: var(--headerBtnBgColor); transition: all 0.3s; }
.pcode-391 #unit-388830 ul li a:hover { background-color: var(--headerBtnHoverBgColor); color: var(--headerBtnHoverTxtColor); border-color: var(--headerBtnHoverBorderColor); }

/*診療科のご案内*/
.sectionList { display: flex; gap: 50px; }
.sectionList > div{ flex-basis: calc((100% - 100px) / 3); flex-grow: 0; flex-shrink: 0; }
.sectionList > div:nth-of-type(3) dl:nth-of-type(1),
.sectionList > div:nth-of-type(3) dl:nth-of-type(2) { margin-bottom: 30px; }
.sectionList dl dt { position: relative; }
.sectionList dl dt span { display: block; }
.sectionList dl dt span:after { content: ""; display: block; width: 100%; height: 70px; margin-top: -70px; position: relative; background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%); }
.sectionList dl dt span img { width: 100%; }
.sectionList dl dt div { padding: 0 0 15px 0; line-height: 1; color: var(--subTtlColor); font-size: 2.2rem; font-weight: bold; }
.sectionList dl dt .ttl { padding: 0 0 15px 0; line-height: 1; color: var(--subTtlColor); font-size: 2.2rem; font-weight: bold; }
.sectionList dl dd ul { list-style: none; }
.sectionList dl dd ul li { margin-top: 10px; }
.sectionList dl dd ul li:first-of-type { margin-top: 0; }
.sectionList dl dd ul li a { position: relative; word-break: break-all; display: flex; align-items: center; background-color: #FFF; min-height: 60px; border-radius: 10px; padding: 10px 3.5rem 10px 15px; box-sizing: border-box; font-size: 1.6rem; line-height: 1.4; color: #000; text-decoration: none !important; box-shadow: 0 0 6px rgba(0, 123, 194, 0.2); transition: background-color ease .3s, color ease .3s; }
.sectionList dl dd ul li a::after { content: ""; position: absolute; top: 0; right: 15px; display: block; width: 1.2rem; height: 100%; -webkit-mask: url(../common-img/ico_arrow_next.svg) no-repeat center; -webkit-mask-size: contain; mask: url(../common-img/ico_arrow_next.svg) no-repeat center; mask-size: contain; background-color: #0075AF; transition: background-color ease .3s; }

/*病棟紹介*/
.pcode-26319 .bVImgBanner { border: none !important; }
.pcode-26319 .bVImgBanner a { display: block; position: relative !important; padding: 0 !important; box-sizing: border-box; }
.pcode-26319 .bVImgBanner a img { border-radius: 0 !important; }
.pcode-26319 .bVImgBanner a:after { content: ""; display: block; width: 100%; height: 70px; margin-top: -70px; position: relative; background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 100%); border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
.pcode-26319 .bVImgBanner h5 { position: absolute !important; margin: 0 !important; bottom: 10px !important; width: 100%; text-align: left; font-size: 1.3em; font-weight: normal; padding-left: 15px; z-index: 1; color: #FFF; text-shadow: 1px 1px 5px rgba(0, 0, 0, 1); }
.pcode-26319 .bVImgBanner .h5ttl { position: absolute !important; left:0; margin: 0 !important; bottom: 10px !important; width: 100%; text-align: left; font-size: 1.3em; font-weight: normal; padding-left: 15px; z-index: 1; color: #FFF; text-shadow: 1px 1px 5px rgba(0, 0, 0, 1); }
.pcode-26319 #unit-373417 .bVImgBanner,
.pcode-26319 #unit-373419 .bVImgBanner { margin-bottom: 24px; }

/*クロストーク*/
.pcode-26323 .bVImgBanner { border: none !important; }
.pcode-26323 .bVImgBanner a { display: block; position: relative !important; padding: 0 !important; box-sizing: border-box; }
.pcode-26323 .bVImgBanner a img { border-radius: 0 !important; }
.pcode-26323 .bVImgBanner a:after { content: ""; display: block; width: 100%; height: 70px; margin-top: -70px; position: relative; background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 100%); border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
.pcode-26323 .bVImgBanner h5 { position: absolute !important; margin: 0 !important; bottom: 10px !important; width: 100%; text-align: left; font-size: 1.3em; font-weight: normal; padding-left: 15px; z-index: 1; color: #FFF; text-shadow: 1px 1px 5px rgba(0, 0, 0, 1); }
.pcode-26323 .bVImgBanner .h5ttl { position: absolute !important; left:0; margin: 0 !important; bottom: 10px !important; width: 100%; text-align: left; font-size: 1.3em; font-weight: normal; padding-left: 15px; z-index: 1; color: #FFF; text-shadow: 1px 1px 5px rgba(0, 0, 0, 1); }

/*.bTxt内の .color12 対応用*/
.bTxt .color12 { padding: 0 40px 0.8rem; line-height: 1.6; }
.bTxt .color12:first-of-type { padding: 35px 40px 0.8rem; }
.bTxt .color12:last-of-type { padding: 0 40px 35px; }
.bTxt .color12:first-of-type:last-of-type { padding: 35px 40px 35px; }

/*プレビュー、アーカイブ時*/
#archiveMsgBox + #wrapper #headerAreaOuter,
#previewMsgBox + #wrapper #headerAreaOuter { top: 40px; }
#previewMsgBox + #archiveMsgBox + #wrapper #headerAreaOuter { top: 80px; }

/*-------------------------------------------------------------
下層ページ_共通
-------------------------------------------------------------*/

/*関連リンクユニット_ボタンデザイン*/
.linkBtn .bSubTtl.hsNarrow { margin-bottom: 30px; }
.linkBtn .extLinkList ul { display: flex; flex-wrap: wrap; gap: 30px; list-style: none; }
.linkBtn .extLinkList ul li { margin-top: 0 !important; flex: 0 0 calc((100% - 60px) / 3); }
.linkBtn .extLinkList ul li a { display: flex; align-items: center; background-color: var(--mainBtnBgColor); height: 100%; min-height: 80px; border-radius: 10px; padding: 10px 70px 10px 30px; box-sizing: border-box; font-size: 2rem; line-height: 1.4; color: var(--mainBtnTxtColor); text-decoration: none !important; box-shadow: 0 0 6px rgba(0, 123, 194, 0.2); transition: background-color ease .3s, color ease .3s; }
.linkBtn .extLinkList ul li a::before { left: auto; right: 30px; width: 1.5rem; mask-position: center; background-color: var(--mainColor); transition: background-color ease .3s; }
.linkBtn .extLinkList ul li a:hover { background-color: var(--mainBtnHoverBgColor); color: var(--mainBtnHoverTxtColor); }
.linkBtn .extLinkList ul li a:hover::before { background-color: var(--mainBtnHoverArrowColor); }
.linkBtn .extLinkList ul li a[target="_blank"]::after { content: none; }
.linkBtn .extLinkList ul li a[target="_blank"]::before { -webkit-mask: url(../common-img/ico_blank.svg) no-repeat center; -webkit-mask-size: contain; mask: url(../common-img/ico_blank.svg) no-repeat center; mask-size: contain; }
.linkBtn .extLinkList ul li a[target="_blank"] > span { display: contents; }

/*画像ユニット幅調整*/
.w50per .bImg img { max-width: 730px; }
.w50per .bImg2Txt2 { max-width: 730px; margin-right: auto; margin-left: auto; }
.w50per .bVImgTxt .bVImgTxtImg img { max-width: 730px; }
.w60per .bImg img { max-width: 970px; }
.w60per .bImg2Txt2 { max-width: 970px; margin-right: auto; margin-left: auto; }
.w60per .bVImgTxt .bVImgTxtImg img { max-width: 970px; }
.w60per.center .bVImgTxt .bVImgTxtImg img { max-width: 970px; display: block; margin-right: auto; margin-left: auto; }

/*-------------------------------------------------------------
看護部
-------------------------------------------------------------*/

/*看護部リクルートトップ*/
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 { display: flex; justify-content: space-between; gap: 1px; }
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 > div[class^="box"] { flex-grow: 0; flex-shrink: 0; flex-basis: calc((100% - 2px) / 3); }
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 > div:nth-of-type(1),
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 > div:nth-of-type(2),
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 > div:nth-of-type(3) { float: none; margin-bottom: 1px; }
.pcode-25847 .bcontainer-outer:nth-last-of-type(1) .bcontainer-inner > .col3-1 { margin-bottom: 30px; }
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 .containerInner { margin: 0; }
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 .bVImgTxt { position: relative; }
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 .bVImgTxt .bVImgTxtImg { padding: 0; }
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 .bVImgTxt .bVImgTxtImg a { display: block; position: relative; }
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 .bVImgTxt .bVImgTxtImg a:after { content: ""; display: block; width: 100%; height: 70px; margin-top: -70px; position: relative; background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 100%); }
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 .bVImgTxt .bVImgTxtBottom { position: absolute; height: 2.7em; bottom: 15px; left: 20px; font-size: 1.2em; line-height: 1.3em; font-weight: normal; padding: 0; display: inline-flex; align-items: flex-end; z-index: 1; color: #FFF; }
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 .clr { display: none; }

/*看護部リクルートトップ お知らせコンテナ*/
.nurseNewsBox { margin-top: 80px; }

/*看護部リクルートトップ 3x3列メニュー*/
.pcode-228 .bcontainer-inner > .col3-1 { display: flex; justify-content: space-between; gap: 1px; }
.pcode-228 .bcontainer-inner > .col3-1 > div[class^="box"] { flex-grow: 0; flex-shrink: 0; flex-basis: calc((100% - 2px) / 3); }
.pcode-228 .bcontainer-inner > .col3-1 > div:nth-of-type(1),
.pcode-228 .bcontainer-inner > .col3-1 > div:nth-of-type(2),
.pcode-228 .bcontainer-inner > .col3-1 > div:nth-of-type(3) { float: none; margin-bottom: 1px; }
.pcode-228 .bcontainer-outer:nth-last-of-type(1) .bcontainer-inner > .col3-1 { margin-bottom: 30px; }
.pcode-228 .bcontainer-inner > .col3-1 .containerInner { margin: 0; }
.pcode-228 .bcontainer-inner > .col3-1 .bVImgTxt { position: relative; }
.pcode-228 .bcontainer-inner > .col3-1 .bVImgTxt .bVImgTxtImg { padding: 0; }
.pcode-228 .bcontainer-inner > .col3-1 .bVImgTxt .bVImgTxtImg a { display: block; position: relative; }
.pcode-228 .bcontainer-inner > .col3-1 .bVImgTxt .bVImgTxtImg a::after { content: ""; display: block; width: 100%; height: 70px; margin-top: -70px; position: relative; background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 100%); }
.pcode-228 .bcontainer-inner > .col3-1 .bVImgTxt .bVImgTxtBottom { position: absolute; height: 2.7em; bottom: 15px; left: 20px; font-size: 1.2em; line-height: 1.3em; font-weight: normal; padding: 0; display: inline-flex; align-items: flex-end; z-index: 1; color: #FFF; pointer-events: none; }
.pcode-228 .bcontainer-inner > .col3-1 .clr { display: none; }

/*看護部メインコンテンツ3x3列メニュー*/
.nurseContBox .bcontainer-inner div[class^="box"] .containerInner { height: 100%; }
.nurseContBox .bcontainer-inner div[class^="box"] .containerInner div[id^="unit"] { height: 100%; }
.nurseContBox .bcontainer-inner .bVImgTxt { height: 100%; }
.nurseContBox .bcontainer-inner .bVImgTxt .bVImgTxtImg { height: 100%; }
.nurseContBox .bcontainer-inner .bVImgTxt .bVImgTxtImg a { height: 100%; }
.nurseContBox .bcontainer-inner .bVImgTxt .bVImgTxtImg a span { display: block; height: 100%; }
.nurseContBox .bcontainer-inner .bVImgTxt .bVImgTxtImg a span img { display: block; height: 100%; object-fit: cover; }

/*-------------------------------------------------------------
出産をお考えの方へ
-------------------------------------------------------------*/
.pcode-33342 .bImgbtn { text-align: center; }
.pcode-33342 .bImgbtn img { display: inline-block; }

/*-------------------------------------------------------------
コンシェルジュページ
-------------------------------------------------------------*/

/*便利な機能*/
.conciergeItemBox { counter-reset: cnt; display: flex; flex-wrap: wrap; gap: 60px; margin: 0 30px; }
.conciergeItem { list-style: none; counter-increment: cnt; flex: 0 0 calc((100% - 60px) / 2); display: flex; flex-direction: column; }
.conciergeItem .ttl { position: relative; flex: 0 0 auto; padding: 15px 30px 15px calc(30px + 3.5rem); box-sizing: border-box; font-size: 2.4rem; color: #FFF; font-weight: bold; line-height: 1.4; border-top-left-radius: 10px; border-top-right-radius: 10px; background-color: #EFA500; }
.conciergeItem .ttl:before { content: counter(cnt); position: absolute; top: 17px; left: 30px; display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem; border: 2px solid #FFF; border-radius: 50%; font-size: 1.8rem; line-height: 1; }
.conciergeItem .inner { flex: 1; display: flex; flex-direction: column; padding: 20px 30px 0; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; background-color: #FCFAFA; }
.conciergeItem .inner .txt { flex: 0 0 auto; padding-bottom: 20px; box-sizing: border-box; }
.conciergeItem .inner .img { flex: 0 0 auto; margin-top: auto; }
.conciergeItem .inner .img img { display: block; max-width: 350px; height: auto; margin: 0 auto; }

/*ご案内*/
.conciergeInfoBox .inner { display: flex; align-items: center; justify-content: center; padding: 0 80px; box-sizing: border-box; background-color: #F4F4F4; border-radius: 10px; }
.conciergeInfoBox .inner .txt { padding: 10px 50px 10px 0; box-sizing: border-box; }
.conciergeInfoBox .inner img { display: block; width: 100px; height: auto; padding-top: 10px; box-sizing: border-box; }

/*-------------------------------------------------------------
ご利用案内
-------------------------------------------------------------*/

/*外来のご案内*/
.bcontainer-outer.topcatListBox.infoOpd { margin-bottom: 30px; }
.bcontainer-outer.topcatListBox.infoOpd .topInfo .col { border-radius: 10px; }

/*入院のご案内*/
.bcontainer-outer.topcatListBox.infoAdm { margin-bottom: 30px; }
.bcontainer-outer.topcatListBox.infoAdm .topInfo .col { border-radius: 10px; }