@charset "utf-8";
/* 記事本文 */
@import url("/ssi/css/detail.css");

/* ==================================================
PC
================================================== */

/* var() 関数 */
:root {

	/* コンテンツ幅 */
	--content-width: 1080px;
	/* sidebar1の幅 */
	--sidebar1-width: 300px;
	/* sidebar2の幅 */
	--sidebar2-width: 300px;

	/* フォントサイズ / 行間 / 文字間 */
	--fontsize-main-base: 62.5%;
	--fontsize-main: 1.6rem;
	--lineheight-main: 1.5;
	--letterspacing-main: 0em;
	/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
	--fontsize-main-small: 1.5rem;
	/* 本文（ #main ） */
	--fontsize-detail: 1.8rem;
	--lineheight-detail: 1.75;
	--letterspacing-detail: 0.05em;
	/* 本文の一段階小さいフォントサイズ（日付など） */
	--fontsize-detail-small: 1.6rem;
	/* 見出し */
	--lineheight-detail-midashi: 1.5;
	--letterspacing-detail-midashi: 0.1em;

	/* フォントファミリー */
	--fontfamily-normal: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;
	/* 見出し / 太字 */
	--fontfamily-bold: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;

}
/* var() 関数 ここまで */


/* ========== レイアウト ========== */

/* 全体 */
html {
	font-size: var(--fontsize-main-base, 62.5%);
	scroll-behavior: smooth;
}

body {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

#container {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	min-width: var(--content-width, 1080px);
	background: #fbf4f1;
	min-height: 100vh;
}

/* ヘッダ */
#header {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
}

/* フッタ */
#footer {
	clear: both;
	width: 1080px;
	margin: 0px auto;
	padding: 60px 0 0;
}

/* メイン */
#mymainback {
	clear: both;
	float: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	width: var(--content-width, 1080px);
	height: auto;
	margin: 0px auto;
	padding: 0px;
}

#main {
	float: none;
	-webkit-box-ordinal-group: 12;
	    -ms-flex-order: 11;
	        order: 11;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

#main_a {
	margin: 0px;
	padding: 0px;
}

#main_body {
	margin: 0px;
	padding: 0px;
}

/* サイド */
#sidebar1 {
	float: none;
	-webkit-box-ordinal-group: 11;
	    -ms-flex-order: 10;
	        order: 10;
	width: var(--sidebar1-width, 300px);
	margin: 0px;
	padding: 0px;
}

#sidebar2 {
	float: none;
	-webkit-box-ordinal-group: 13;
	    -ms-flex-order: 12;
	        order: 12;
	width: var(--sidebar2-width, 300px);
	margin: 0px;
	padding: 0px;
}

.tpl_side1 #main {
	width: calc(100% - var(--sidebar1-width, 300px));
}
.tpl_side1 #main_a {
	padding-left: 40px;
}

.tpl_side2 #main {
	width: calc(100% - var(--sidebar2-width, 300px));
}
.tpl_side2 #main_a {
	padding-right: 40px;
}

.tpl_side1.tpl_side2 #main {
	width: calc(100% - var(--sidebar1-width, 300px) - var(--sidebar2-width, 300px));
}
.tpl_side1.tpl_side2 #main_a {
	padding-left: 40px;
	padding-right: 40px;
}

.tpl_side1 hr.hide,
.tpl_side2 hr.hide {
	display: none;
}

/* ========== 基本設定 ========== */

/* フォント */
body,
button,
input[type="button"],
input[type="submit"],
input[type="text"],
textarea,
select {
	font-family: var(--fontfamily-normal, sans-serif);
	font-size: var(--fontsize-main, 1.6rem);
	line-height: var(--lineheight-main, 1.5);
	letter-spacing: var(--letterspacing-main, 0em);
	overflow-wrap: break-word;
}

#main {
	font-size: var(--fontsize-detail, 1.8rem);
	line-height: var(--lineheight-detail, 1.75);
	letter-spacing: var(--letterspacing-detail, 0.05em);
}

h1, h2, h3, h4, h5, h6, strong,
.subsite_menu_ttl,
.site_name {
	font-family: var(--fontfamily-bold, sans-serif);
	line-height: var(--lineheight-detail-midashi, 1.5);
	letter-spacing: var(--letterspacing-detail-midashi, 0.1em);
	font-weight: bold;
}

/* JavaScript挿入箇所のフォントファミリー（webフォント使用時） */
/*
#pankuzu_wrap, #footstep_wrap, #keep_page, #count_down_area,
#important_noticest_area, #important_noticest_area h2,
#osusume_contents_area, #osusume_contents_area h2,
#recommend_tag, #recommend_tag h2,
#ai_recommend_tag, #ai_recommend_tag h2 {
	font-family: Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;
}
*/

em {
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Osaka, 'MS PGothic', sans-serif;
}

.mincho {
	font-family: 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'ヒラギノ明朝 Pro W3', Century, 'BIZ UDPMincho', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', serif;
}

/* 文字色 */
body {
	color: #333333;
}

/* リンク */
a:link {
	color: #333333;
	text-decoration: underline;
}
a:visited {
	color: #333333;
	text-decoration: underline;
}
a:active {
	color: #000000;
	text-decoration: none;
}
a:hover, a:focus {
	color: #000000;
	text-decoration: none;
}

a img {
	border: none;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
a:hover img, a:focus img {
	opacity: 0.75;
}

/* レスポンシブアコーディオン用 */
input[id*="acc_ttl_label"] {
	display: none;
}
.acc_icon {
	display: none;
}

/* レスポンシブアコーディオン用（class付与） */
.acc_title.accordion {
	pointer-events: none;
}
.acc_title.accordion:focus {
	outline: none;
}
.acc_title.accordion a {
	pointer-events: auto;
}

/* ========== ヘッダ ========== */

/* スマートフォン用 */
#spm_wrap {
	display: none;
}
#btn_spm_support {
	display: none;
}

/* ヘッダ */
#header2 {
    border-bottom: 1px solid #ff9999;
}
#header2_box {
	width: var(--content-width, 1080px);
	margin: 0px auto;
	padding: 10px 0px 0px;
	position: relative;
}
#header2_box::after {
    content: "";
    position: absolute;
	width: calc(25% + 4rem);
    height: 4px;
    background: #ff9999;
    bottom: -1px;
}
#he_left {
	position: absolute;
	top: 27px;
	left: 0px;
	z-index: 1;
	max-width: 400px;
}
#logo_txt {
    font-size: 3.8rem;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0px;
	color: #333;
}
#logo_txt span {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.34em;
    color: #6e6e6e;
    margin: 15px 0 0;
}
.font_size_changed #logo_txt {
	font-size: 2.7rem;
}
.font_size_changed #logo_txt span {
    font-size: 1rem;
}
#he_left #logo {
	margin: 0px;
}
#he_left a, #he_left a:hover {
	text-decoration: none;
}
#he_right {
	margin-left: 300px;
	text-align: right;
}

/* ヘッダメニュー */
.header_nav ul {	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    margin: 0px;
	padding: 0px;
	list-style: none;
}
.header_nav ul li {
	margin: 0px 0px 20px 19px;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.03em;
}
.header_nav ul li[class^="h_"] a {
    display: block;
    padding: 3px 0px 3px 30px;
    background-repeat: no-repeat;
    background-position: left center;
    text-decoration: none;
}
.header_nav ul li[class^="h_"] a:hover,
.header_nav ul li[class^="h_"] a:focus {
    text-decoration: underline;
}
.header_nav ul li.h_main a {
    background-image: url("/img/sites/hospital/skip_icon.png");
}
.header_nav ul li.h_lang a {
    background-image: url("/img/sites/hospital/lang_icon.png");
    padding-left: 28px;
}

/* アクセシビリティ機能 */
.moji_size dl,
.haikei_color dl {	
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    margin: 0px;
}
.moji_size dt,
.haikei_color dt {
	margin: 0px 3px 0px 0px;
}
.moji_size dd,
.haikei_color dd {
	margin: 0px 0px 0px 5px;
}
.moji_size dd a,
.haikei_color dd a {
	display: block;
	background: #ffffff;
	border: 1px solid #979797;
	color: #333333;
	text-decoration: none;
	padding: 7px 9px;
	border-radius: 5px;
}
.moji_size dd a {
	padding: 7px 10px;
}
.font_size_limit_max .moji_size dd a#moji_large {
	background: #f6f6f6;
	color: #666666;
}
.haikei_color dd a#haikei_black {
	border-color: #000000;
	background: #000000 !important;
	color: #ffffff !important;
}
.haikei_color dd a#haikei_blue {
	border-color: #0000ff;
	background: #0000ff !important;
	color: #ffee00 !important;
}

/* グローバルナビ */
.gnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.gnav ul li {
	border-right: 1px solid #ff9999;
	margin: 0 0 15px;
}
.gnav ul li a {
	display: block;
	background: transparent;
	color: #333333;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 2.2rem;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-align: center;
	padding: 4px 20px;
	margin: 0px 5px;
	-webkit-transition: background 0.5s ease-out;
	-o-transition: background 0.5s ease-out;
	transition: background 0.5s ease-out;
}
.gnav ul li a:hover,
.gnav ul li a:focus {
	background: #fdbdbc;
}

/* メニューへのリンク（スマートフォン用） */
.link_to_subsitemenu {
	display: none;
}

/* ========== フッタ ========== */

/* フッタ */
#author_info_box > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
#author_box01 {
    padding: 0px 0px 8px;
    border-bottom: 1px solid #ff9999;
	position: relative;
}
#author_box01::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 4px;
    background: #ff9999;
    bottom: 0;
}
p.f_author {
    font-size: 3rem;
    line-height: 1;
    font-weight: bold;
	margin: 5px 0 0;
	letter-spacing: 0.1em;
}
p.f_author span {
    font-size: 1.6rem;
    font-weight: normal;
    display: inline-block;
    vertical-align: bottom;
	letter-spacing: 0.02em;
}
span.f_address {
    margin: 0px 23px 0px 30px;
}
.f_info::after {
    content: "Asakura Municipal Clinic";
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
    margin: 20px 0 0;
    color: #6e6e6e;
    letter-spacing: 0.28em;
}
.font_size_changed p.f_author {
	font-size: 2.3rem;
}
.font_size_changed p.f_author span {
    font-size: 1.4rem;
}
.font_size_changed .f_info::after {
    font-size: 1rem;
	letter-spacing: 0.2em;
}
.access_links_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.access_links_wrap > a {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    line-height: 1;
    color: #333;
    text-decoration: none;
    margin-left: 20px;
	-webkit-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}
a#x_link {
    border-radius: 50%;
    background-color: transparent;    
    padding: 10px;
}
a#x_link:hover,
a#x_link:focus {
    background-color: #fff;
}
a#x_link img {
    display: block;
}
a#access_link {
    padding: 16px 40px 16px 83px;
    border-radius: 25px;
    background: url("/img/sites/hospital/pink_arrow_icon.png") no-repeat right 29px center,
				url("/img/sites/hospital/car_icon.png") no-repeat left 40px center #fff;
    border: 1px solid #ff9999;
    box-sizing: border-box;
	-webkit-box-sizing: border-box;
    width: 240px;
}
a#access_link:hover,
a#access_link:focus {
	background-color: #f0f0f0;
}
#author_info_box #author_box02 {
    padding: 40px 0px 45px;
}

/* フッタメニュー */
.footer_navi ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.footer_navi ul li {
	margin: 0 15px 15px 0;
    padding-right: 15px;
    font-size: 1.5rem;
    line-height: 1;
    position: relative;
}
.footer_navi ul li:not(:last-child):after {
    content: "";
    position: absolute;
    border-right: 1px solid #333;
    height: 100%;
    right: 0;
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg);
}
.footer_navi ul li:last-child {
	padding: 0;
	margin: 0;
}

/* コピーライト */
#copyright {
	margin: 0px;
	padding: 0px;
}
#copyright p {
    font-size: 1.4rem;
    line-height: 1;
    margin: 0px;
	letter-spacing: 0.1em;
}

/* ページトップボタン */
#btn_pagetop {
	display: block;
    width: 80px;
    position: fixed;
    right: 20px;
    bottom: -180px;
    z-index: 70;
    -webkit-transition: bottom 0.5s ease-in-out;
    -o-transition: bottom 0.5s ease-in-out;
    transition: bottom 0.5s ease-in-out;
}
#btn_pagetop.fixed {
	bottom: 20px;
}
#btn_pagetop a {
	display: block;
}
#btn_pagetop img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* サブサイト共通フッタ */
#site_footer {
	clear: both;
	float: none;
	width: var(--content-width, 1080px);
	margin: 0px auto 60px;
	border: none;
	border-radius: 0;
	background: #f6f6f6;
	color: #333333;
}
#site_footer_box {
	padding: 30px;
}
#site_footer_box p {
	margin: 0px 0px 1em;
}
#site_footer_box p:last-child {
	margin-bottom: 0px;
}
#site_footer_box img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}

/* ========== パンくず / 足あと ========== */

/* パンくず・足あと */
#pankuzu_wrap {
	padding: 20px 0px 8px;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#pankuzu_wrap > div {
	width: var(--content-width, 1080px);
	margin: 0px auto 10px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.pankuzu,
#footstep {
	position: relative;
	padding-left: 6rem;
}
.pankuzu .icon_current {
	display: none;
}
.pankuzu:first-child .icon_current,
#footstep_ttl {
	display: block;
	position: absolute;
	top: 1px;
	left: 0px;
	width: 5rem;
	height: 2rem;
	border: none;
	border-radius: 0;
	background: #ff9999;
	color: #333333;
	font-size: 1.4rem;
	line-height: 1.2;
	padding: 0.2rem 0px;
	text-align: center;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
}
#clear_footstep {
	width: 21px;
	height: 20px;
	border: none;
	border-radius: 50%;
	vertical-align: middle;
	margin: 0px 0px 0px 10px;
	color: #333 !important;
	background: url("/img/sites/hospital/icon_clear.png") no-repeat center #fff !important;
}

/* ========== 見出し / 表 ========== */

/* 見出し */
#main_header {
	margin-bottom: 30px;
}
#main_header h1 {
	margin: 0px;
	padding: 33px 35px 29px 30px;
	background: #ff9999;
	font-size: 3.2rem;
	border-radius: 10px;
}

#main_body :where(h2,h3,h4,h5,h6) {
	clear: both;
	margin: 30px 0px;
}
#main_body :where(h2,h3,h4,h5,h6) a:link {
	color: #333;
}
#main_body h2 {
	padding: 18px 19px 15px 26px;
	background: #ffebeb;
	font-size: 2.6rem;
	border: 4px solid #ffd6d6;
	border-radius: 10px;
}
#main_body h3 {
	padding: 11px 22px 9px 28px;
	background: #fdfaf8;
	font-size: 2.4rem;
	border-radius: 10px;
	border: 2px solid #ee7f2d;
}
#main_body h4 {
	padding: 11px 39px 8px 30px;
	background: #fdfaf8;
	font-size: 2.2rem;
	border-bottom: 1px solid #ee7f2d;
}
#main_body h5 {
	padding: 5px 40px 5px 34px;
	background: #fdfaf8;
	font-size: 2rem;
	position: relative;
}
#main_body h5::before {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #ee7f2d;
	top: 0.7em;
	left: 10px;
}
#main_body h6 {
	padding: 3px 45px 2px 34px;
	background: #fdfaf8;
	font-size: 1.8rem;
	position: relative;
}
#main_body h6::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fdfaf8;
    top: 0.5em;
    left: 10px;
    border: 2px solid #ee7f2d;
}

/* テーブル */
#main_body table {
	border-color: #333333;
	border-collapse: collapse;
	border-style: solid;
	border-width: 2px; /* CMSver5以降は管理画面で枠線の太さを変更することができない（機能が削除された）ためCSSで指定 */
	margin: 0px 0px 1em;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#main_body th {
	background: #ffebeb;
	color: #333333;
	border-color: #333333;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#main_body td {
	border-color: #333333;
	border-collapse: collapse;
	border-style: solid;
	border-width: 1px;
	padding: 0.5em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	text-align: center;
}
/* テーブル内のpタグのマージンを0にする */
#main_body table p {
	margin: 0px 0px 1em;
}
#main_body table p:last-child {
	margin: 0px;
}

/* ========== メイン ========== */

/* メイン */
#mymainback {
	padding-bottom: 30px;
}

/* コンテンツヘッダ */
#content_header {
	margin: 0px 0px 20px;
	text-align: right;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#content_header > span {
	display: inline-block;
	margin-left: 20px;
}

/* コンテンツフッタ */
#content_footer {
	clear: both;
}

/* 印刷 */
#content_header #print_mode_link,
#content_header #print_mode_link_large {
	display: inline-block;
	background: url("/img/sites/hospital/icon_print.png") no-repeat left center;
	padding-left: 22px;
}

/* SDGsアイコン */
.d-flex.f-wrap-wrap,
.sdgs-icons {
	margin: 0px 0px 20px;
	text-align: left;
}
.d-flex.f-wrap-wrap > *,
.sdgs-icons > * {
	display: inline-block;
	vertical-align: top;
	margin: 0px 5px 5px 0px;
	width: 100px;
}

.d-flex.f-wrap-wrap img,
.sdgs-icons img {
	width: 100px;
	height: auto;
	vertical-align: top;
}
.d-flex.f-wrap-wrap > * img,
.sdgs-icons > * img {
	display: block;
	margin: 0px;
	width: 100%;
	height: auto;
}

/* カレンダー登録 */
#content_footer #calendar_button_google,
#content_footer #calendar_button_yahoo {
	display: inline-block;
	vertical-align: top;
	margin: 30px 30px 10px 0px;
}
#content_footer #calendar_button_google a,
#content_footer #calendar_button_yahoo a {
	display: inline-block;
	font-size: 1.6rem;
	padding: 0px 0px 0px 34px;
	background: url("/img/common/icon_calendar.png") no-repeat left center;
}

/* SNSボタン */
.sns_button_wrap {
	margin-top: 40px;
	line-height: 1;
}
.sns_button_wrap > div {
	display: inline-block;
	vertical-align: top;
}

/* PDF・WMPリンク */
.pdf_download,
.wmplayer_download {
	clear: both;
	margin: 30px 0px 0px;
	width: 100%;
	display: table;
}
.pdf_download .pdf_img,
.wmplayer_download .wmplayer_img {
	display: table-cell;
	vertical-align: middle;
	width: 158px;
	margin: 0px;
	padding: 0px;
}
.wmplayer_download .wmplayer_img {
	width: 88px;
}
.pdf_download .pdf_img img,
.wmplayer_download .wmplayer_img img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.tenpu_txt {
	display: table-cell;
	vertical-align: middle;
	margin: 0px;
	padding: 2px 0px 2px 10px;
	font-size: 1.3rem;
	line-height: 1.4;
	letter-spacing: 0em;
}

/* 評価エリア */
#hyouka_area_box {
	clear: both;
	margin: 40px 0px 0px;
	padding: 30px;
	background: #ffffff;
	border-radius: 5px;
} 
#hyouka_area_box h2,
#main_body #hyouka_area_box h2 {
	margin: 0px 0px 15px;
	padding: 0px;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font-size: 2rem;
}
#main_body #hyouka_area_box h2::before,
#main_body #hyouka_area_box h2::after {
	display: none;
}
#main_body #hyouka_area_box hr.cf {
	margin: 0px;
}
 
#hyouka_area_box .hyouka_box_detail {
	border-bottom: 1px solid #dddddd;
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-size: var(--fontsize-main-small, 1.5rem);
}
#hyouka_area_box .hyouka_box_detail:last-child {
	border-bottom: none;
	margin-bottom: 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset {
	border: none;
	margin: 0px;
	padding: 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset legend {
	margin: 0px 0px 5px;
	padding: 0px;
	width: 100%;
}
#hyouka_area_box .hyouka_box_detail fieldset span {
	display: inline-block;
	vertical-align: top;
	margin: 0px 4em 0px 0px;
}
#hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
	min-width: 11em;
}
.font_size_changed #hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
	min-width: auto;
}
#hyouka_area_box .hyouka_box_detail fieldset span input {
	margin: 3px 4px 5px 5px;
	vertical-align: middle;
} 
#hyouka_area_submit {
	margin-top: 10px;
}
#hyouka_area_submit input {
	display: inline-block;
	border: 1px solid transparent;
	background: #ffebeb;
    border-radius: 5px;
	color: #333333;
	margin: 0px;
	padding: 10px;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 1.8rem;
	text-decoration: none;
	text-align: center;
	width: 260px;
	max-width: 90%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#hyouka_area_submit input:hover,
#hyouka_area_submit input:focus {
	text-decoration: underline;
}

/* お問い合わせ先 */
#section_footer {
	clear: both;
	margin: 30px 0px 0px;
	padding: 25px 30px 20px;
	background: #fae8dd;
	border-radius: 10px;
}
#main_body #section_footer h2 {
	margin: 0px 0px 14px;
	padding: 0px;
	border: none;
	background: none;
	font-size: 2rem;
	line-height: 1;
}
#main_body #section_footer hr.cf {
	margin: 0px;
}

#section_footer_detail span {
	display: inline-block;
	vertical-align: top;
	margin-right: 1em;
}
#section_footer_detail span[class*="sf_name"] {
	margin-bottom: 10px;
}

/* おすすめコンテンツ */
#osusume_contents_area {
	clear: both;
}
#osusume_contents_area .second_osusume {
	margin: 40px 0px 0px;
	padding: 30px;
	background: #f6f6f6;
}
#osusume_contents_area .second_osusume h2,
#osusume_contents_area .second_osusume_ttl {
	margin: 0px 0px 20px;
	padding: 0px 0px 0px 25px;
	background: url("/img/common/icon_osusume.png") no-repeat left center transparent;
	color: inherit;
	font-size: 2rem;
}
#osusume_contents_area .second_osusume ul {
	margin: 0px;
	padding: 0px 10px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 30px;
}
#osusume_contents_area .second_osusume ul li {
	width: 200px;
}
#osusume_contents_area .second_osusume ul li div > span {
	display: block;
}
#osusume_contents_area .second_osusume ul li div > span.osusume_img {
	margin-bottom: 10px;
}
#osusume_contents_area .second_osusume ul li div > span.osusume_img img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* ========== サイド ========== */

/* サイドバー */
#sidebar1 > div,
#sidebar2 > div {
	margin-bottom: 20px;
}
#sidebar1 > div:last-child,
#sidebar2 > div:last-child,
#sidebar1 > div:empty,
#sidebar2 > div:empty {
	margin-bottom: 0px !important;
}

#sidebar1 img,
#sidebar2 img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

/* 自由編集項目 */
.free_box {
	display: flow-root;
}
.free_box p {
	margin: 0px 0px 1em;
}
.free_box p:last-child {
	margin-bottom: 0px;
}
.free_box img {
	max-width: 100%;
	height: auto !important;
	vertical-align: top;
}

/* 重要なお知らせ */
#important_noticest_area .second_important {
	background: #fdf2f2;
	padding: 30px 20px;
}
#important_noticest_area .second_important a {
	color: #cc0000;
}

#important_noticest_area .second_important h2,
#important_noticest_area .second_important_ttl {
	margin: 0px 0px 15px;
	padding: 0px;
	color: #cc0000;
	font-size: 2rem;
	text-align: center;
}

#important_noticest_area .second_important ul {
	margin: 0px 0px 15px;
	padding: 0px;
	list-style: none;
}
#important_noticest_area .second_important ul li:last-child {
	margin-bottom: 0px;
}
#important_noticest_area .second_important ul li > span {
	display: block;
}
#important_noticest_area .second_important ul li > span.article_date {
	font-size: var(--fontsize-main-small, 1.5rem);
}

#important_noticest_area .second_important .link_box {
	margin-top: 20px;
	text-align: right;
}
#important_noticest_area .second_important .link_box > span {
	display: block;
	margin-top: 5px;
}
#important_noticest_area .second_important .link_box > span a {
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* カウントダウン */
#count_down_area .count_down_box {
	background: #f6f6f6;
	margin: 0px 0px 15px;
	padding: 20px;
	position: relative;
}
#count_down_area .count_down_box:last-child {
	margin-bottom: 0px;
}

#count_down_area .count_down_box2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
#count_down_area .count_down_box2 > span {
	display: inline-block;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

#count_down_area .count_down_box2 > span.count_img {
	width: 100px;
}
#count_down_area .count_down_box2 > span.count_img > span {
	display: block;
}
#count_down_area .count_down_box2 > span.count_img > span img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

#count_down_area .count_down_box2 > span.count_txt {
	width: calc(100% - 120px);
}
#count_down_area .count_down_box2 > span.count_txt:only-child {
	width: 100%;
}
#count_down_area .count_down_box2 > span.count_txt > span {
	display: block;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_comment {
	margin-top: 10px;
	font-size: 1.4rem;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_day {
	margin-top: 10px;
	color: #cc0000;
	font-weight: bold;
	text-align: right;
}
#count_down_area .count_down_box2 > span.count_txt > span.count_day span {
	font-size: 3rem;
	line-height: 1;
	margin-left: 0.5em;
	margin-right: 0.25em;
}

/* カウントダウン クリアボタン */
#count_down_area .count_down_clear {
	display: block;
	width: 24px;
	height: 24px;
	margin: 0px;
	padding: 0px;
	border: 2px solid #ffffff;
	background: url("/img/common/icon_clear.png") no-repeat center center #333333;
	background-size: 10px 10px;
	border-radius: 100%;
	color: #ffffff;
	line-height: 1;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
	cursor: pointer;
	position: absolute;
	top: 0px;
	right: 0px;
}
/* カウントダウン クリアボタンを使用しない */
#count_down_area .count_down_clear {
	display: none;
}

/* レコメンド・AIレコメンド・関連リンク */
#sidebar_recommend,
#sidebar_ai_recommend,
#kanren_link {
	background: #fff;
	margin: 30px 0px;
	border-radius: 10px;
}
#recommend_title,
#ai_recommend_title,
#kanren_link_ttl {
	padding: 20px 30px;
}
#recommend_title h2,
#ai_recommend_title h2,
#kanren_link h2 {
	font-size: 1.8rem;
	line-height: 1;
	margin: 0px;
}
#sidebar_recommend ul,
#sidebar_ai_recommend ul {
	margin: 0px;
	padding: 30px 30px 24px 45px;
	border-top: 1px solid #ff9999;
}
#sidebar_recommend ul li,
#sidebar_ai_recommend ul li {
	font-size: 1.8rem;
	line-height: 1.5;
	margin: 0 0 10px;
}
#sidebar_recommend ul li:last-child,
#sidebar_ai_recommend ul li:last-child {
	margin: 0px;
}

/* レコメンド */
#recommend_title h2 {
	background: url("/img/sites/hospital/recommend_icon.png") no-repeat left center !important;
	padding: 9px 0px 8px 45px;
}

/* AIレコメンド */
#ai_recommend_title h2 {
	background: url("/img/sites/hospital/ai_recommend_icon.png") no-repeat left center !important;
	padding: 9px 0px 5px 45px;
}

/* 関連リンク */
#kanren_link ul {
    padding: 20px 36px 24px;
    margin: 0px;
	border-top: 1px solid #ff9999;
}
#kanren_link ul li {
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 0 0 8px;
}
#kanren_link ul li:last-child {
    margin: 0px;
}

/* 「見つからないときは」「よくある質問」バナー */
.common_banner_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
		justify-content: space-between;
	margin: 30px 0px 0px;
}
.common_banner_link ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.common_banner_link *[class*="common_banner_"] {
	width: calc(50% - 15px);
}
.common_banner_link a {
	display: block;
	background: #ff9999;
	color: #333333;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 2rem;
	letter-spacing: 0.1em;
	padding: 20px 5px;
	text-align: center;
	border-radius: 10px;
}
.common_banner_link a > span {
	display: inline-block;
	padding: 5px 0px 5px 40px;
}
.common_banner_link .common_banner_mitsukaranai a > span {
	background: url("/img/sites/hospital/mitsukaranai_icon.png") no-repeat left center;
	color: inherit;
}
.common_banner_link .common_banner_faq a > span {
	background: url("/img/sites/hospital/faq_icon.png") no-repeat left center;
	color: inherit;
}
.common_banner_link a:hover,
.common_banner_link a:focus,
.common_banner_link a:hover span,
.common_banner_link a:focus span {
	text-decoration: underline;
}

/* サブサイト大小メニュー */
.subsite_menu {
	background: #f6f6f6;
	margin: 0px 0px 20px;
}
.subsite_menu:last-child {
	margin-bottom: 0px;
}

.subsite_menu_ttl {
	background: #e6e6e6;
	margin: 0px;
	padding: 18px 20px;
	font-size: 1.6rem;
	text-align: center;
}
.subsite_menu_ttl a {
	color: inherit;
}

.subsite_menu_list ul {
	margin: 0px;
	padding: 20px 20px 20px 40px;
}
.subsite_menu_list ul li {
	margin: 0px 0px 15px;
}
.subsite_menu_list ul li:last-child {
	margin-bottom: 0px;
}

.subsite_menu_list div.link_ichiran {
	margin: 0px;
	padding: 0px 35px 25px;
	text-align: center;
}
.subsite_menu_list div.link_ichiran a {
	display: block;
}

/* サブサイト大小メニュー（開閉） */
.subsite_menu summary:only-child {
	display: block;
	list-style-type: none;
	pointer-events: none;
	cursor: auto;
}
.subsite_menu summary:only-child::-webkit-details-marker {
	display: none;
}
.subsite_menu summary:only-child a {
	pointer-events: auto;
}
/* サブサイト大小メニュー（開閉）（PCは開閉しない） */
@media screen and (min-width: 1081px) {
	.subsite_menu summary {
		display: block;
		list-style-type: none;
		pointer-events: none;
		cursor: auto;
	}
	.subsite_menu summary::-webkit-details-marker {
		display: none;
	}
	.subsite_menu summary a {
		pointer-events: auto;
	}
}
/* サブサイト大小メニュー（開閉）（PCは開閉しない） ここまで */

/* ========== リスト ========== */

/* リスト（一覧） */
.info_list ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.tpl_site_list_2 .info_list ul {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
}
.tpl_site_list_2 .info_list ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(50% - 10px);
    font-size: 1.8rem;
    background: #fff;
    padding: 23px 24px 22px 30px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.info_list .article_title:not(.info_list_date .article_title) {
    display: block;
    padding: 2px 0px 2px 40px;
    position: relative;
}
.info_list .article_title:not(.info_list_date .article_title)::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border: 5px solid #ff9999;
    border-radius: 50%;
    left: 0;
    top: 50%;
    translate: 0 -50%;
}

/* リスト（日付） */
.info_list_date ul li {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 25px 30px 24px;
	border-bottom: 1px solid #fdc6c5;
	font-size: 1.6rem;
}
.info_list_date ul li:last-child {
	border-bottom: none;
}
.info_list_date ul li > span {
	display: table-cell;
	vertical-align: top;
}
.info_list_date ul li > span.article_date {
	width: 12em;
}


/* リスト（担当課） */
.article_section:has(span:empty) {
	display: none;
}

/* リスト（サムネイル） */
.list_pack {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding-top: 10px;
	padding-bottom: 10px;
}

.list_pack .article_txt {
	display: table-cell;
	vertical-align: top;
}
.list_pack .article_txt .article_date {
	display: block;
}
.list_pack .article_txt .article_title {
	display: block;
}

.list_pack .article_img {
	display: table-cell;
	vertical-align: top;
	width: 200px;
	padding-right: 20px;
}
.list_pack .article_img span {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 200 / 150;
	overflow: hidden;
	background: #f6f6f6;
}
.list_pack .article_img span:empty {
	background: url("/img/common/noimage.png") no-repeat center center transparent;
	background-size: contain;
}
.list_pack .article_img span img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}

/* ========== Googleカスタム検索結果 ========== */

/* googleカスタム検索結果 */
#main_body #cse_search_result table,
#main_body #cse_search_result table td,
#main_body .gsc-control-cse table,
#main_body .gsc-control-cse table td {
	border: none;
	margin: 0px;
}

.gsc-results .gsc-cursor-box .gsc-cursor-page {
	display: inline-block !important;
	vertical-align: top;
	margin: 0px 0px 5px;
	padding: 10px 15px;
	border: 1px solid #cccccc !important;
	background: #ffffff !important;
	color: #0066cc !important;
	font-size: 1.6rem;
}
.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
	background: #f5f5f5 !important;
	color: #333333 !important;
}

/* ==================================================
PC ここまで
================================================== */


/* ==================================================
背景色変更 / 印刷ページ
================================================== */

/* ========== 背景色変更 ========== */

/* 共通 */
.color_change #header,
.color_change #footer {
    border: none !important;
}
.color_change a#x_link img {
    -webkit-filter: invert(1);
            filter: invert(1);
}
.color_change .haikei_color dd a {
    background-color: #fff !important;
    color: #000 !important;
}
.color_change .tpl_site_list_2 .info_list ul li,
.color_change #sidebar_recommend, 
.color_change #sidebar_ai_recommend, 
.color_change #hyouka_area_box,
.color_change #section_footer, 
.color_change .common_banner_link a,
.color_change #kanren_link {
    outline: 1px solid rgba(255, 255, 255, 0.5) !important;
}
.color_change #author_box.top .f_address_contact,
.color_change #main_body #hyouka_area_box h2,
.color_change #main_body #section_footer h2,
.color_change #kanren_link h2,
.color_change #btn_pagetop {
    background-color: transparent !important;
}
.color_change .footer_navi ul li:not(:last-child):after {
    border-color: rgba(255, 255, 255, 0.5) !important;
}
.color_change .info_list .article_title:not(.info_list_date .article_title)::before {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.7);
}
.color_change #recommend_tag #recommend_title, 
.color_change #ai_recommend_tag #ai_recommend_title
 {
    background: transparent !important;
}
.color_change .header_nav ul li.h_main a {
    background-image: url("/img/sites/hospital/color_skip_icon.png") !important;
}
.color_change .header_nav ul li.h_lang a {
    background-image: url("/img/sites/hospital/color_lang_icon.png") !important;
}
.color_change .common_banner_link .common_banner_mitsukaranai a > span {
    background-image: url("/img/sites/hospital/color_mitsukaranai_icon.png") !important;
}
.color_change .common_banner_link .common_banner_faq a > span {
    background-image: url("/img/sites/hospital/color_faq_icon.png") !important;
}
.color_change #content_header #print_mode_link, 
.color_change #content_header #print_mode_link_large {
    background-image: url("/img/sites/hospital/color_icon_print.png") !important;
}
.color_change #content_footer #calendar_button_google a, 
.color_change #content_footer #calendar_button_yahoo a {
    background-image: url("/img/sites/hospital/color_icon_calendar.png") !important;
}
.color_change .f_info::after {
    color: inherit; !important;
}

/* 黒 */

/* 青 */

/* ========== 印刷ページ ========== */

/* 印刷プレビュー */
.view_print_mode #sidebar_recommend,
.view_print_mode #sidebar_ai_recommend,
.view_print_mode #kanren_link,
.view_print_mode .common_banner_link {
	display: none;
}

/* ==================================================
背景色変更 / 印刷ページ ここまで
================================================== */


/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1080px) {

	/* var() 関数 */
	:root {
		/* フォントサイズ */
		--fontsize-main: 1.4rem;
		/* 一段階小さいフォントサイズ（一覧をみるボタンなど） */
		--fontsize-main-small: 1.3rem;
		/* 本文（ #main ） */
		--fontsize-detail: 1.5rem;
		/* 本文の一段階小さいフォントサイズ（日付など） */
		--fontsize-detail-small: 1.4rem;

		/* #mymainbackの左右余白 */
		--mymainback-margin-side: 20px;
	}
	@media screen and (max-width: 370px) {
		:root {
			/* 本文（ #main ） */
			--fontsize-detail: 1.4rem;
			/* 本文の一段階小さいフォントサイズ（日付など） */
			--fontsize-detail-small: 1.3rem;
			/* #mymainbackの左右余白 */
			--mymainback-margin-side: 10px;
		}
	}
	/* var() 関数 ここまで */

	/* ========== レイアウト ========== */

	/* 全体 */
	body {
		min-width: 320px;
		margin: 0px;
		padding: 0px;
		-webkit-text-size-adjust: none;
		   -moz-text-size-adjust: none;
		    -ms-text-size-adjust: none;
		        text-size-adjust: none;
	}

	#container {
		float: none;
		width: 100%;
		min-width: 320px;
		min-height: auto;
		margin: 0px;
		padding: 0px;
		overflow: hidden;
	}

	/* ヘッダ */
	#header {
		width: auto;
		height: auto;
		margin: 0px;
		padding: 0px;
	}

	/* フッタ */
	#footer {
        clear: both;
        width: auto;
        height: auto;
        margin: 0px 20px;
        padding: 50px 0 0;
    }

	/* メイン */
	#mymainback {
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}

	#main,
	.tpl_side1 #main,
	.tpl_side2 #main,
	.tpl_side1.tpl_side2 #main {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}
	#main_a,
	.tpl_side1 #main_a,
	.tpl_side2 #main_a,
	.tpl_side1.tpl_side2 #main_a {
		margin: 0px;
		padding: 0px;
	}

	/* サイド */
	#sidebar1 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}

	#sidebar2 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
		clear: both;
		float: none;
		width: auto;
		margin: 0px;
		padding: 0px;
	}

	/* パンくずをフッタ上に表示 */
	#mymainback_bg {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
	}
	#mymainback_bg > * {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	#mymainback_bg > #pankuzu_wrap {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	/* ========== 基本設定 ========== */

	/* フォント */
	body,
	button,
	input[type="button"],
	input[type="submit"],
	input[type="text"],
	textarea,
	select {
		font-size: var(--fontsize-main, 1.4rem);
	}

	#main {
		font-size: var(--fontsize-detail, 1.5rem);
	}

	/* レスポンシブアコーディオン用 */
	input[id*="acc_ttl_label"] + *,
	input[id*="acc_ttl_label"] + .acc_title + * {
		display: none;
	}
	input[id*="acc_ttl_label"] + .acc_title,
	input[id*="acc_ttl_label"]:checked + *,
	input[id*="acc_ttl_label"]:checked + .acc_title + * {
		display: block;
	}

	label[for*="acc_ttl_label"] {
		display: block;
		cursor: pointer;
		background: url("/img/sp/acc_open.png") no-repeat right 20px top 50% transparent;
		background-size: 15px 15px;
		padding-right: 40px;
	}
	.acc_open label[for*="acc_ttl_label"] {
		background-image: url("/img/sp/acc_close.png");
	}

	.color_change label[for*="acc_ttl_label"] {
		background-image: url("/img/sp/acc_open_white.png");
	}
	.color_change .acc_open label[for*="acc_ttl_label"] {
		background-image: url("/img/sp/acc_close_white.png");
	}

	.no_acc_title label[for*="acc_ttl_label"] {
		background: none !important;
		padding-right: 0px;
	}

	/* レスポンシブアコーディオン用（class付与） */
	.acc_title.accordion {
		pointer-events: auto;
	}
	.acc_title.accordion:focus {
		outline: auto;
	}

	.acc_title.accordion + * {
		display: none;
	}
	.acc_title.accordion.acc_open + * {
		display: block;
	}

	.acc_title.accordion .accordion_icon {
		display: block;
		cursor: pointer;
		background: url("/img/sp/acc_open.png") no-repeat right 20px top 50% transparent;
		background-size: 15px 15px;
		padding-right: 40px;
	}
	.acc_title.accordion.acc_open .accordion_icon {
		background-image: url("/img/sp/acc_close.png");
	}

	.color_change .acc_title.accordion .accordion_icon {
		background-image: url("/img/sp/acc_open_white.png");
	}
	.color_change .acc_title.accordion.acc_open .accordion_icon {
		background-image: url("/img/sp/acc_close_white.png");
	}

	/* レスポンシブアコーディオン用（index2） */
	.index-2 .section_information input[id*="acc_ttl_label"] + *,
	.index-2 .section_information input[id*="acc_ttl_label"] + .acc_title,
	.index-2 .section_information input[id*="acc_ttl_label"] + .acc_title + *,
	.index-2 .section_information input[id*="acc_ttl_label"]:checked + *,
	.index-2 .section_information input[id*="acc_ttl_label"]:checked + .acc_title + *,
	.index-2 .section_information .acc_title.accordion + *,
	.index-2 .section_information .acc_title.accordion.acc_open + * {
		display: block;
	}
	.index-2 .section_information label[for*="acc_ttl_label"],
	.index-2 .section_information .acc_title.accordion .accordion_icon {
		background: none !important;
		padding-right: 0px;
		pointer-events: none;
	}

	/* ========== ヘッダ ========== */

	/* ヘッダ */
	#header {
		position: relative;
	}
	#header2_box {
		width: auto;
		margin: 0px;
		padding: 0px;
	}
	#he_left {
        position: static;
        margin: 0px;
        padding: 25px 10px 10px 20px;
		line-height: 1;
    }
	#logo_txt {
		display: inline-block;
		font-size: 2.6rem;		
	}
	#logo_txt span {
		font-size: 1rem;
		margin: 10px 0 0;
		letter-spacing: 0.2em;
	}
	.font_size_limit_max #logo_txt {
		font-size: 1.6rem;		
	}
	.font_size_limit_max #logo_txt span {
		font-size: 0.55rem;		
	}
	#he_right {
        margin: 0px;
        position: fixed;
        z-index: 99;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        -ms-scroll-chaining: none;
        overscroll-behavior: none;
        -webkit-transition: left 0.4s ease;
        -o-transition: left 0.4s ease;
        transition: left 0.4s ease;
        background: #ffe9d8;
        text-align: left;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }
	.spm_menu_open #he_right {
        left: 0;
        padding: 90px 0px;
    }
	#header2_box::after {
		width: 170px;
		left: 20px;
	}

	/* ボトムナビゲーション */
	#spm_wrap {
		display: block;
	}
	#spm_wrap button,
	#spm_wrap a {
        display: block;
        width: 80px;
        height: 60px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0px;
        padding: 0px;
        border: none;
        border-radius: 5px;
        text-align: left;
        text-indent: -9999em;
        overflow: hidden;
        position: absolute;
        top: 10px;
    }
	#spm_wrap #btn_spm_flan {
        right: 95px;
        z-index: 2;
        border: 1px solid #333;
        color: #333;
        background: url("/img/sites/hospital/sp_foreign_lang.png") no-repeat center #fff;
    }
	#btn_spm_menu {
        right: 10px;
        background: url("/img/sites/hospital/sp_menu_btn.png") no-repeat center #ee7f2d;
        color: #333;
        z-index: 999;
    }
	.spm_menu_open #btn_spm_menu {
		background-image: url("/img/sites/hospital/sp_close_btn.png");
	}

	/* ヘッダメニュー */
	.header_nav ul {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 0px 47px;
    }
	@media screen and (max-width: 1080px) {
		.header_nav ul {
			gap: 0px 20px;
		}
	}
	.header_nav ul li {
		margin: 0 0 30px;
		letter-spacing: 0;
	}
	.header_nav ul li.h_main,
	.header_nav ul li.h_lang {
		display: none !important;
	}

	/* アクセシビリティ機能 */
	.moji_size dl,
	.haikei_color dl {
		display: block;
	}
	.moji_size dt,
	.haikei_color dt {
		margin: 0 0 14px;
	}
	.moji_size dd,
	.haikei_color dd {
		display: inline-block;
		margin: 0px 2px 0 0;
	}
	.moji_size dd:last-child,
	.haikei_color dd:last-child {
		margin: 0;
	}
	.moji_size dd a,
	.haikei_color dd a {
		border-radius: 3px;
		border-color: transparent;
        padding: 12px 0px;
		-webkit-box-sizing: border-box;
				box-sizing: border-box;
		text-align: center;
		width: 50px;
	}
	.moji_size dd a {
		padding: 12px 0px;
		width: 60px;
	}
	@media screen and (max-width: 320px) {
		#spm_wrap #btn_spm_flan {
			right: 69px;
		}
		#spm_wrap button,
		#spm_wrap a {
			width: 55px;
        	height: 55px;
			background-size: 86% auto !important;
		}
	}

	/* グローバルナビ */
	#top_search {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0px;
        padding: 0 20px;
    }
	.gnav ul {
		display: block;
	}
	.gnav ul li {
        border: none;
        border-bottom: 2px solid #ff9999;
        padding: 20px 0px;
        margin: 0px;
    }
	.gnav ul li a {
        font-size: 2.4rem;
        letter-spacing: 0;
        padding: 0;
        margin: 0;
		background: transparent !important;
    }

	/* メニューへのリンク */
	.link_to_subsitemenu {
		display: block;
		margin: var(--mymainback-margin-top, 15px) var(--mymainback-margin-side, 15px);
	}
	.link_to_subsitemenu a {
		display: block;
		font-size: var(--fontsize-main-small, 1.3rem);
		border: 1px solid #333333;
		border-radius: 5px;
		background: #eeeeee;
		color: #333333;
		text-decoration: none;
		padding: 10px;
		text-align: center;
	}
	.link_to_subsitemenu a span {
		display: inline-block;
		padding-right: 20px;
		position: relative;
	}
	.link_to_subsitemenu a span::before {
		content: '';
		width: 0px;
		height: 0px;
		border: 7px solid transparent;
		border-bottom-width: 0px;
		border-top-width: 9px;
		border-top-color: #333333;
		position: absolute;
		top: 50%;
		right: 0px;
		-webkit-transform: translateY(-50%);
		    -ms-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
	.color_change .link_to_subsitemenu a span::before {
		border-top-color: #ffffff;
	}

	/* ========== フッタ ========== */

	/* フッタ */
	#author_info_box > div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	p.f_author {
		font-size: 2.2rem !important;
		margin: 0;
	}
	p.f_author span {
		font-size: 1.4rem;
		line-height: 1.5;
		margin: 0;
		display: block;
		letter-spacing: 0.1em;
	}
	p.f_author span.f_address {
		margin: 10px 0 0;
	}
	.f_info::after {
		font-size: 1rem;
		letter-spacing: 0.22em;
		margin: 9px 0 0;
	}
	.access_links_wrap {
		width: 100%;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
		margin: 0 0 23px;
	}
	a#access_link {
		font-size: 1.2rem;
		padding: 14px 47px 13px 64px;
		width: auto;
		border-radius: 20px;
		background-position: right 19px center, left 29px center;
	}
	#author_box01::after {
		width: 170px;
	}
	#author_info_box #author_box02 {
		display: block;
		padding: 30px 0px 70px !important;
	}
	.footer_navi ul li {
		font-size: 1.2rem;
		margin: 0 14px 20px 0;
		padding-right: 14px;
	}
	#copyright {
		margin: 40px 0 0;
	}
	#copyright p {
		font-size: 1rem;
	}

	/* ページトップ（フローティング表示） */
	#btn_pagetop {
		width: 60px;
    	right: 20px;
	}
	#btn_pagetop.fixed {
		bottom: 60px;
	}

	/* 回遊ボタン（表示位置） */
	#kaiyu_banner {
		bottom: 70px;
	}

	/* サブサイト共通フッタ */
	#site_footer {
		width: auto;
		margin: 0px var(--mymainback-margin-side, 15px) 40px;
	}
	#site_footer_box {
		padding: 20px;
	}

	/* ========== パンくず / 足あと ========== */

	/* パンくず・足あと */
	#pankuzu_wrap > div {
		width: auto;
        padding-left: 5rem;
		margin-left: var(--mymainback-margin-side, 20px);
		margin-right: var(--mymainback-margin-side, 20px);
	}
	.pankuzu:first-child .icon_current,
	#footstep_ttl {
		width: 4rem;
		top: 0;
        font-size: 1.1rem;
        line-height: 1.5;
	}

	/* 足あとを非表示 */
	#footstep_wrap {
		display: none !important;
	}

	/* ========== 見出し ========== */

	/* 見出し */
	#main_header {
		margin-bottom: 20px;
	}
	#main_header h1 {
		padding: 17px 20px;
		font-size: 2.4rem;
		border-radius: 5px;
	}
	#main_body h2 {
		padding: 16px 20px 15px;
        font-size: 2rem;
        border-width: 2px;
        border-radius: 5px;
	}
	#main_body h3 {
        padding: 13px 20px;
        font-size: 1.8rem;
        border-width: 1px;
        border-radius: 5px;
	}
	#main_body h4 {
		padding: 13px 20px 12px;
        font-size: 1.6rem;
	}
	#main_body h5 {
        padding: 12px 25px 10px;
        font-size: 1.5rem;
	}
	#main_body h5::before {
		width: 10px;
    	height: 10px;
		top: 1.1em;
    	left: 10px;
	}
	#main_body h6 {
		padding: 9px 25px 9px;
        font-size: 1.5rem;
	}
	#main_body h6::before {
		width: 6px;
	    height: 6px;
	    top: 1em;
	    left: 10px;
	    border-width: 2px;
	}
	#main_body :where(h2,h3,h4,h5,h6) {
	   	margin: 20px 0;
	}

	/* ========== メイン ========== */

	/* メイン */
	#mymainback {
		margin: 20px var(--mymainback-margin-side, 20px) 10px;
	}

	/* コンテンツヘッダ */
	#content_header {
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	#content_header > span {
		margin-left: 1em;
	}

	/* 印刷 */
	#content_header > span.link_print,
	#content_header #print_mode_link,
	#content_header #print_mode_link_large {
		display: none !important;
	}

	/* SDGsアイコン */
	.d-flex.f-wrap-wrap > *,
	.sdgs-icons > *,
	.d-flex.f-wrap-wrap img,
	.sdgs-icons img,
	.d-flex.f-wrap-wrap > * img,
	.sdgs-icons > * img {
		width: 60px;
	}

	/* カレンダー登録 */
	#content_footer #calendar_button_google,
	#content_footer #calendar_button_yahoo {
		display: block;
		text-align: center;
		margin: var(--content-margin-narrow, 20px) 20px 0px 0px;
	}

	/* SNSボタン */
	.sns_button_wrap {}

	/* PDF・WMPリンク */
	.pdf_download,
	.wmplayer_download {
		display: block;
		width: auto;
	}
	.pdf_download .pdf_img,
	.wmplayer_download .wmplayer_img {
		display: block;
	}
	.tenpu_txt {
		display: block;
		padding: 10px 0px 0px;
		font-size: 1.2rem;
		line-height: 1.5;
	}

	/* 評価エリア */
	#hyouka_area_box {
		padding: 30px 20px;
	}
	#hyouka_area_box h2,
	#main_body #hyouka_area_box h2 {
		font-size: 1.8rem;
		letter-spacing: 0em;
	}
	@media screen and (max-width: 370px) {
		#hyouka_area_box h2,
		#main_body #hyouka_area_box h2 {
			font-size: 1.6rem;
		}
	}
	#hyouka_area_box .hyouka_box_detail {
		font-size: var(--fontsize-main-small, 1.3rem);
	}
	#hyouka_area_box .hyouka_box_detail fieldset span {
		margin-right: 2em;
	}
	#hyouka_area_box .hyouka_box_detail fieldset span:first-of-type {
		min-width: auto;
	}
 
	#hyouka_area_submit {
		margin: 10px 10px 0px;
	}
	#hyouka_area_submit input {
		display: block;
		width: 100%;
		max-width: 100%;
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	/* お問い合わせ先 */
	#section_footer {
		padding: 20px;
		margin: 20px 0px 0px;
	    border-radius: 5px;
	}
	#main_body #section_footer h2 {
		font-size: 1.8rem;
		letter-spacing: 0em;
	}
	@media screen and (max-width: 370px) {
		#section_footer h2,
		#main_body #section_footer h2 {
			font-size: 1.6rem;
		}
	}

	/* おすすめコンテンツ */
	#osusume_contents_area .second_osusume {
		padding: 30px 20px;
	}
	#osusume_contents_area .second_osusume h2,
	#osusume_contents_area .second_osusume_ttl {
		font-size: 1.8rem;
		margin: 0px 0px 20px;
	}
	#osusume_contents_area .second_osusume ul {
		padding: 0px;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		gap: 20px;
	}
	#osusume_contents_area .second_osusume ul li {
		width: calc(50% - 10px);
		max-width: 200px;
	}

	/* ========== サイド ========== */

	/* サイドバー */
	#sidebar1,
	#sidebar2 {
		margin-top: 40px;
	}

	/* 重要なお知らせ */
	#important_noticest_area .second_important {}

	#important_noticest_area .second_important h2,
	#important_noticest_area .second_important_ttl {
		font-size: 1.8rem;
	}

	#important_noticest_area .second_important ul {
		margin: 0px;
		padding: 0px;
		list-style: none;
	}
	#important_noticest_area .second_important ul li {
		margin: 0px;
		padding: 15px 0px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
	}
	#important_noticest_area .second_important ul li a {
		display: block;
		background: url("/img/sp/arrow_r.png") no-repeat right center transparent;
		background-size: 8px auto;
		padding-right: 15px;
		text-decoration: none;
	}

	#important_noticest_area .second_important .link_box {
		text-align: center;
	}
	#important_noticest_area .second_important .link_box > span a {
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	/* カウントダウン */
	#count_down_area .count_down_box {}

	/* レコメンド・AIレコメンド */
	#sidebar_recommend, #sidebar_ai_recommend, #kanren_link {
	    border-radius: 5px;
        margin: 20px 0px;
	}
	#recommend_title, #ai_recommend_title {
		padding: 12px 10px 11px 20px;
	}
	#recommend_title h2, #ai_recommend_title h2 {
		line-height: 1.3;
		letter-spacing: 0.05em;
		padding: 0px 0px 0px 45px;
	}
	@media screen and (max-width: 370px) {
		#recommend_title h2,
		#ai_recommend_title h2 {
			font-size: 1.6rem;
			letter-spacing: 0.04em;
		}
	}
	#recommend_title h2 span, #ai_recommend_title h2 span {
		display: block;
	}
	#sidebar_recommend ul, #sidebar_ai_recommend ul {
		padding: 25px 20px 20px 35px;
	}
	#sidebar_recommend ul li, #sidebar_ai_recommend ul li {
		font-size: 1.6rem;
	    margin: 0 0 15px;
	}

	/* 関連リンク */
	#kanren_link ul li {
		font-size: 1.6rem;
	}
	
	/* 「見つからないときは」「よくある質問」バナー */
	.common_banner_link {
        gap: 10px 0;
	}
	.common_banner_link *[class*="common_banner_"] {
	    width: 100%;
	}
	.common_banner_link a {
	    padding: 15px 5px;
	    border-radius: 5px;
	}

	/* サブサイト大小メニュー */
	.subsite_menu {
		margin-bottom: 10px;
	}

	.subsite_menu_ttl {
		font-size: 1.6rem;
		text-align: left;
	}

	.subsite_menu_list ul {
		margin: 0px;
		padding: 20px 20px 30px;
		list-style: none;
	}
	.subsite_menu_list ul li {
		margin: 0px;
		padding: 15px 0px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
	}

	.subsite_menu_list div.link_ichiran {
		margin: 0px;
		padding: 0px 30px 30px;
	}

	/* サブサイト大小メニュー（開閉） */
	.subsite_menu summary {
		display: list-item;
		pointer-events: auto;
		cursor: pointer;
	}
	.subsite_menu summary a {
		pointer-events: auto;
	}

	.subsite_menu summary:only-child {
		display: block;
		list-style-type: none;
		pointer-events: none;
		cursor: auto;
	}
	.subsite_menu summary:only-child::-webkit-details-marker {
		display: none;
	}
	.subsite_menu summary:only-child a {
		pointer-events: auto;
	}

	/* サブサイト大小メニュー（開閉） ＋－ */
	.subsite_menu summary {
		display: block;
		list-style-type: none;
	}
	.subsite_menu summary::-webkit-details-marker {
		display: none;
	}
	.subsite_menu summary .tti_icon {
		margin: -18px -20px; /* .subsite_menu_ttl の padding の値をマイナスにして指定する */
		padding: 18px 20px;  /* .subsite_menu_ttl の  padding と同じ値を指定する */
		padding-right: 40px;
		display: block;
		background: url("/img/sp/acc_open.png") no-repeat right 20px top 50%;
		background-size: 15px 15px;
	}
	.subsite_menu details[open] summary .tti_icon {
		background-image: url("/img/sp/acc_close.png");
	}

	.subsite_menu summary:only-child .tti_icon,
	.subsite_menu details[open] summary:only-child .tti_icon {
		background: none !important;
	}

	.color_change .subsite_menu summary .tti_icon {
		background-image: url("/img/sp/acc_open_white.png");
	}
	.color_change .subsite_menu details[open] summary .tti_icon {
		background-image: url("/img/sp/acc_close_white.png");
	}

	/* ========== リスト ========== */

	/* リスト（一覧） */
	.tpl_site_list_2 .info_list ul li {
		width: 100%;
		padding: 14px 15px;
		font-size: 1.6rem;
	    border-radius: 5px;
	}

	/* リスト（日付） */
	.info_list_date ul li {
		padding: 14px 15px;
	}
	.info_list_date ul li > span {
		display: block;
		width: auto !important;
	}

	/* リスト（担当課） */
	.article_section {
		display: block;
		text-align: right;
	}
	.article_section a {
		display: inline !important;
		background: none !important;
		padding-right: 0px !important;
		text-decoration: underline !important;
	}

	/* リスト（サムネイル） */
	.list_pack {
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.list_pack .article_img {
		width: 120px;
	}
	@media screen and (max-width: 370px) {
		.list_pack .article_img {
			width: 100px;
		}
	}

	/* ========== 背景色変更 ========== */

	/* 共通 */
	.color_change #spm_wrap #btn_spm_flan {
        background-image: url("/img/sites/hospital/color_sp_foreign_lang.png") !important;
    }
    .color_change #btn_spm_menu {
        background-image: url("/img/sites/hospital/color_sp_menu_btn.png") !important;
    }
    .color_change .spm_menu_open #btn_spm_menu {
        background-image: url("/img/sites/hospital/color_sp_close_btn.png") !important;
    }
	/* 黒 */
	.color_black * {

	}
	/* 青 */
	.color_blue * {

	}

}
/* ==================================================
スマートフォン ここまで
================================================== */