@charset "UTF-8";
@page { size: A4 portrait; margin: 0; }






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

: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: 0; }



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

#headerAreaOuter { width: 100%; position: static; 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: 100px; 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: calc(523.5px / 1.35); height: calc(69.06px / 1.35); background-size: calc(523.5px / 1.35) calc(69.06px / 1.35); display: block; overflow: hidden; background-position: 0 0; background-repeat: no-repeat; text-indent: -9999px; 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); } /*スクロール時*/

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

/*メニューボタン*/
.drawerHidden { display: none; }
#drawerOpen { display: none; }

/*オプション*/
.headerOption { display: none; }

/*サイト内検索*/
#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: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; }

/*かな*/
.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; }
.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; }
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; 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 { 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; }






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

#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; }
.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; }






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

#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% !important; position: absolute; }
#coverWrap .bx-wrapper { margin-bottom: 0 !important; }
#coverWrap .bx-viewport { height: auto !important; aspect-ratio: 1640 / 820; }
#coverWrap .bx-wrapper .bx-controls { display: none; }

/*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 { display: none; }






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

#footerArea { position: relative; }
#footerArea::after { content: none; }

/*ページトップボタン*/
#pPageTop { display: none; }

/*フッターアドレス*/
#footerAddressArea { display: flex; justify-content: center; padding: 40px 0 0; box-sizing: border-box; }
#footerAddressArea .inner { width: 100%; max-width: var(--maxWidth); padding: 0 20px; box-sizing: border-box; display: flex; }
#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: calc(46.3rem * .9); 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 .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); }
#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; }
#footerGuide { width: 585px; padding: 30px; box-sizing: border-box; background-color: #F4F4F4; }
#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); padding: 10px 20px; box-sizing: border-box; }
#footerNaviArea .col1 { flex: 1; padding: 25px 0 20px; box-sizing: border-box; }
#footerNaviArea .footerNavi { display: none; }
#footerNaviArea .col2 { flex: 0 0 auto; }
#footerNaviArea .bnrArea { display: none; }

/*コピーライト*/
#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: 0 0 30px 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: none; }

/*なぞり検索*/
#pageSearchBtn { display: none; }

/*問い合わせ窓口*/
.contactInfoArea { display: none; }

/*アンケート*/
.enqArea { display: none; }

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

/*共通タイトル*/
.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-top: 0 !important; margin-bottom: 40px; margin-right: 0 !important; background-color: var(--mainBgColor); padding: 20px 0 0 0; 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 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; }
.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; cursor: pointer; }
.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-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); }

/*トップ診療時間ほか*/
.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: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: 60px; overflow: visible !important; }
.bcontainer-outer.topcatListBox .bcontainer-coln { overflow: visible !important; }
.bcontainer-outer.topcatListBox .bcontainer-inner { overflow: visible !important; }
.topcatListBox .coln { overflow: visible !important; }
.topcatListBox .coln .box1 { width: 50% !important; }
.topcatListBox .coln .box2 { width: 50% !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; color: #0075AF; text-decoration: none !important; border-radius: 8px; font-size: 1.6rem; font-weight: bold; box-shadow: 0 0 6px 0 rgba(0, 115, 230, .2); }
.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.3; margin-top: 12px; text-align: center; }
.topcatList ul li a .ttl .br { display: block; }

/*3つの進化*/
.bcontainer-outer.topEvoBox { position: relative; padding-top: 0; overflow: visible !important; }
.bcontainer-outer.topEvoBox::after { content: none; }
.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: 40px; 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 { 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: 20px; 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 20px 20px; z-index: 1; color: #FFF; }
.topEvo .side-scroll-item .inner .num { font-family: "Marcellus", serif; font-size: 2.5rem; font-weight: 400; line-height: 1; margin-bottom: 15px; color: rgba(255, 255, 255, .5); }
.topEvo .side-scroll-item .inner .num span { display: inline-block; margin-right: .2em; font-size: 6rem; }
.topEvo .side-scroll-item .inner .ttl { font-size: 3.2rem; line-height: 1.3; margin-bottom: 10px; 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: 40px; 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: 20px; }
.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: 20px; }
.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; }
.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 { display: none; }

/*トップトピックス*/
.topTopicsBox { position: relative; overflow: hidden; margin-bottom: 40px; padding: 0 20px !important; } 
.topTopicsBox::after { content: none; }
.topTopicsBox .topTtl { margin-bottom: 20px !important; }
.topTopicsBox .topTtl .bTxtS { max-width: var(--maxWidth); text-align: left; margin: 0 auto; padding: 0; width: 100%; box-sizing: border-box; }
.topTopicsBox .bExtCatList { text-align: right; }
.topTopicsBox .bExtCatList:after { clear: none !important; }
.topTopicsBox .bExtCatList:before,
.topTopicsBox .bExtCatList:after { content: none !important; }
.topTopicsBox .bExtCatList ul { display: flex; margin: -20px -20px 0 0; padding: 0; list-style: none; text-align: left; flex-wrap: wrap; justify-content: flex-start; transform: none !important; width: auto !important; }
.topTopicsBox .bExtCatList ul li { position: relative; display: flex; flex-direction: column; flex-grow: 0; height: auto !important; margin: 20px 20px 0 0 !important; padding: 0 !important; flex-shrink: 0 !important; flex-basis: auto !important; background-color: #FFF; border-radius: 10px; overflow: hidden; width: calc((100% / 3) - 20px) !important; flex: 0 0 calc((100% / 3) - 20px) !important; }
.topTopicsBox .bExtCatList ul li.noData { width: 1158px !important; background-color: #F9F9F9; border: none !important; display: flex; align-items: center; justify-content: center; padding: 0 !important; }
.topTopicsBox .bExtCatList ul li .bExtCatListImgLeft { flex: 1 !important; margin-right: 0 !important; }
.topTopicsBox .bExtCatList ul li .bExtCatListImgLeft::after { content: ""; display: block; width: 100%; height: 240px; position: absolute; left: 0; bottom: 0; background-image: linear-gradient(0deg, #027FC9, transparent); mix-blend-mode: multiply; }
.topTopicsBox .bExtCatList ul li .bExtCatListImgLeft img { width: 100%; aspect-ratio: 42 / 54; object-fit: cover; }
.topTopicsBox .bExtCatList ul li .bExtCatListInner { position: absolute; left: 0; bottom: 0; padding: 20px 20px 20px 20px; }
.topTopicsBox .bExtCatList ul li .bExtCatListDate { color: #FFF !important; }
.topTopicsBox .bExtCatList ul li h5 { margin-bottom: 0 !important; }
.topTopicsBox .bExtCatList ul li h5,
.topTopicsBox .bExtCatList ul li h5 a { color: #FFF !important; font-size: 1.9rem !important; line-height: 1.6 !important; text-decoration: none !important; letter-spacing: .05em; }
.topTopicsBox .bExtCatList ul li h5 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: #FFF; position: relative; top: 2px; margin-left: 10px; }
.topTopicsBox .bExtCatListOption { display: none; }
.topTopicsBox .swiperButtonOuter { display: none; }

/*トップ病院からのお知らせ*/
.topNewsBox { position: relative; margin-bottom: 40px; }
.topNewsBox::after { content: none; }
.topNewsBox .topTtl { margin-bottom: 20px; }
.topNewsBox .bcontainer-inner { padding: 0 20px; max-width: var(--maxWidth) !important; margin-left: auto; margin-right: auto; }
.topNewsBox .bcontainer-inner .bcontainer { padding: 0; }
.topNewsBox .bExtCatTabList ul { margin-bottom: 30px; }
.topNewsBox .bExtCatList.bCatListTab_0 ul li.bExtCatListSpace { padding: 15px 0 !important; }
.topNewsBox .bExtCatTabListBox .bExtCatListOption { display: none; }

/*地域の皆さまへ・医療関係者の方へ*/
.topContBtnBox { margin-bottom: 40px; }
.topContBtnBox .col2-1 .box1 .containerInner { margin-right: 15px !important; }
.topContBtnBox .col2-1 .box2 .containerInner { margin-left: 15px !important; }
.localResidents { position: relative; border-radius: 10px; background-color: #F0F9FF; overflow: hidden; padding: 150px 20px 20px; }
.localResidents::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: 100%; height: 200px; 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: 200px; 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: 20px; 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: 10px 20px; text-decoration: none; line-height: 1; border: 3px solid transparent; }
.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:nth-of-type(1) a::before { background-image: url(../common-img/cont_local_residents_ico01.svg); }
.localResidents dd ul li:nth-of-type(2) a::before { background-image: url(../common-img/cont_local_residents_ico02.svg); }
.localResidents dd ul li:nth-of-type(3) a::before { background-image: url(../common-img/cont_local_residents_ico03.svg); }
.localResidents dd ul li:nth-of-type(4) 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: 150px 20px 20px; }
.medicalPersonnel::before { content: ""; position: absolute; top: 0; left: 0; display: block; width: 100%; height: 200px; 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: 200px; 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: 20px; 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; background-color: #FFF; border-radius: 10px; overflow: hidden; padding: 10px 20px; text-decoration: none; line-height: 1; border: 3px solid transparent; }
.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:nth-of-type(1) a::before { background-image: url(../common-img/cont_medical_personnel_ico01.svg); }
.medicalPersonnel dd ul li:nth-of-type(2) a::before { background-image: url(../common-img/cont_medical_personnel_ico02.svg); }
.medicalPersonnel dd ul li:nth-of-type(3) a::before { background-image: url(../common-img/cont_medical_personnel_ico03.svg); }
.medicalPersonnel dd ul li:nth-of-type(4) 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; }
.medicalPersonnel 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; }

/*トップリクルート*/
.topRecruitBox { margin-bottom: 0; overflow: hidden; padding: 0; background: none !important; border-radius: 0; }
.topRecruit > .inner { position: relative; background-repeat: no-repeat; background-position: center top; background-size: cover; margin-bottom: 20px; padding: 100px 30px 20px; }
.topRecruitBox.bcontainer-outer { overflow: visible !important; }
.topRecruit .main { font-family: "Marcellus", serif; font-size: 6rem; font-weight: 100; line-height: 1; margin-bottom: 5px; color: #FFF; }
.topRecruit .sub { font-size: 2rem; color: #FFF; margin-bottom: 0; }
.topRecruit .txt { font-size: 1.6rem; line-height: 1.6; color: #FFF; }
.topRecruit ul { list-style: none; display: flex; flex-wrap: wrap; gap: 15px; }
.topRecruit ul li { flex: 0 0 calc(50% - calc(15px / 2)); }
.topRecruit ul li a { display: flex; align-items: center; height: 100px; 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; 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 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: ""; 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; }

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

/*下層カバー*/
.secCover { margin-top: 40px; margin-bottom: 30px; }
.secCover .inner { margin: 0 auto; padding: 0 20px; max-width: var(--maxWidth) !important; box-sizing: border-box; }
.secCover .inner p:nth-of-type(1) { position: relative; font-size: 4rem; font-weight: 700; line-height: 1.2; padding-left: 45px; letter-spacing: .05em; }
.secCover .inner p:nth-of-type(1)::before { content: ""; display: block; width: 30px; height: 3px; background-color: #00A4CF; position: absolute; left: -0; top: 50%; }
.secCover .inner p:nth-of-type(2) { 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: 1.6em; line-height: 1.4em; }
.pcode-391 #container-outer-63680 .bcontainer-inner > .col1 { position: relative; padding-top: 60px; }
.pcode-391 #container-outer-63679 .bcontainer-inner > .col1 { position: relative; padding-top: 40px; padding-bottom: 60px; }
.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; min-height: 70px; padding: 10px; box-sizing: border-box; line-height: 1.2; color: #FFF; font-size: 18px; font-weight: bold; border-radius: 3px; border: 3px solid var(--headerBtnBorderColor); background-color: var(--headerBtnBgColor); }

/*診療科のご案内*/
.pcode-390 .sectionList { display: flex; margin-right: -30px; }
.pcode-390 .sectionList > div{ flex-basis: calc((100% / 3) - 30px); flex-grow: 0; flex-shrink: 0; margin-right: 30px; }
.pcode-390 .sectionList > div:nth-of-type(3) dl:nth-of-type(1),
.pcode-390 .sectionList > div:nth-of-type(3) dl:nth-of-type(2) { margin-bottom: 30px; }
.pcode-390 .sectionList dl { border: 1px #ddd solid;  }
.pcode-390 .sectionList dl dt { position: relative; }
.pcode-390 .sectionList dl dt span { display: block; }
.pcode-390 .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%); }
.pcode-390 .sectionList dl dt span img { width: 100%; }
.pcode-390 .sectionList dl dt div { padding: 20px 20px 0 20px; line-height: 1; color: #333; font-size: 1.3em; }
.pcode-390 .sectionList dl dd { padding: 20px 20px 0 20px; }
.pcode-390 .sectionList dl dd ul { list-style: none; }
.pcode-390 .sectionList dl dd ul li { border-bottom: 1px dotted #999; }
.pcode-390 .sectionList dl dd ul li:nth-of-type(1) { border-top: 1px dotted #999; }
.pcode-390 .sectionList dl dd ul li:nth-last-of-type(1) { border-bottom: none; }
.pcode-390 .sectionList dl dd ul li a { display: block; padding: 20px 0 20px 20px; line-height: 1; background: url(../common-img/ico_arrow.gif) no-repeat 0 1.3em; }

/*病棟紹介*/
.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-26319 .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); }

/*看護部リクルートトップ*/
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 { display: flex; justify-content: space-between; margin-right: -1px; }
.pcode-25847 .bcontainer-outer .bcontainer-inner > .col3-1 > div[class^="box"] { margin: 0 1px 0 0; flex-grow: 0; flex-shrink: 0; flex-basis: calc((100% / 3) - 1px); }
.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; }

/*看護部リクルートトップ お知らせコンテナ*/
.pcode-228 .bcontainer-inner > .col2-2 { padding-left: calc((100vw - 960px) / 2); padding-right: calc((100vw - 960px) / 2); padding-top: 30px; background-color: #F4F4F4; margin-bottom: 30px; }

/*看護部リクルートトップ お知らせタイトル*/
.pcode-228 #user-area .bTtl { border-bottom: 2px solid #DDD; font-size: 1.2em; }

/*看護部リクルートトップ 3x3列メニュー*/
.pcode-228 .bcontainer-inner > .col3-1 { display: flex; justify-content: space-between; margin-right: -1px; }
.pcode-228 .bcontainer-inner > .col3-1 > div[class^="box"] { margin: 0 1px 0 0; flex-grow: 0; flex-shrink: 0; flex-basis: calc((100% / 3) - 1px); }
.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; }
.pcode-228 .bcontainer-inner > .col3-1 .clr { display: none; }

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