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

*{
	margin: 0;
	padding: 0;
    word-break: break-all;
}

html { 
	overflow-y: scroll;
	overflow-x: hidden;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}

:root {	
	--bg-color: #ffffff;	
	--text-color: #333333; /* 白背景に対して十分なコントラスト */	
	--link-color: #0056b3; /* リンク色もコントラストを確保 */	
	--focus-color: #ff9900;	
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;	
	font-size: 1.35rem;
	/*-webkit-text-size-adjust: none;*/
	line-height: 1.5;
	color: var(--text-color);
	background: var(--bg-color);
	overflow-x: hidden;
	overflow-y: auto;
	
	/* ▼ サイト全体の句読点・記号の行頭落ちを防ぐ設定 */
    line-break: strict;
    word-break: normal;
}

html.is-open {
	overflow: hidden;
}

/* Noto Sans JP (各種ウェイト) */
.font-noto-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.font-noto-500 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.font-noto-700 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.klee-one-semibold {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-style: normal;
}

.kodchasan-semibold {
  font-family: "Kodchasan", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.kodchasan-semibold-italic {
  font-family: "Kodchasan", sans-serif;
  font-weight: 600;
  font-style: italic;
}

h2, h3:not(.title), h4, h5, h6{
	transform: rotate(0.05deg);
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	vertical-align: bottom;
}
a {
	/*overflow: hidden;*/
	outline: none;
	color: var(--link-color);
	text-decoration: none;
	opacity: 1;
}

a {
    color: #67BF0C;
    text-decoration: underline;
}

header a,
footer a,
main.toppage a{
	color: #000;
	text-decoration: none;
}


.pc_hide {
}

.sp_hide {
	display: none !important;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}


select::-ms-expand {
    display: none;
}

/* 2.4.1 ブロックスキップ: メインコンテンツへのスキップリンク（視覚的には隠し、フォーカス時に表示） */
.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	padding: 12px 16px;
	background: #000;
	color: #fff;
	z-index: 10000;
	text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
	top: 0;
}

.skip-link {
	transform: translateY(-120%);
	transition: transform 0.2s;
}

.skip-link:focus-visible {
	transform: translateY(0);
}


h1,h2,h3,h4{
	font-weight: 500;
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

#all_wrap,
#contents{
	overflow: hidden;
}

ol, ul {
    list-style: none;
	box-sizing: border-box;
}

#wrapper{
	position: relative;
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* 2.4.7 フォーカスの可視化: キーボード操作時のフォーカス状態を視覚的に明確にする */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--focus-color);
	outline-offset: -1px;
}


:where(figure){
	margin-bottom: 0 !important;
}


#accessibility-ssvw-root button{
	margin-bottom: 115px
}

/*===================================
	仕様
=====================================*/

.fadeUpTrigger{
	opacity: 0;
}


.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

.fadeUp::before,
.fadeUp::after {
    animation: none !important;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(75px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*===================================
	header
=====================================*/

header{
	width: 100%;
	background: #fff;
}

header .head_inner{
	width: 100%;
	height: 87px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 8px;
	box-sizing: border-box;
	position: relative;
/*	position: absolute;*/
}

header .head_inner h1{
	width: 52.92%;/*381*/
	margin-left: 2.92%;/*21*/
}

header .head_inner h1 img{
	width: 100%;
	height: auto;
}

header .head_inner .nav_wrap .head_menu{
	display: none;
}

header .head_inner .sp_tel_area{
	width: 59px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: calc(59px + 8px + 13px);
}

header .head_inner .sp_tel_area a{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 59px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: #fff;
	border: none;
	border-radius: 50%;
	background-image: url("images2026/common/sp-head_tel_ico.webp");
	background-repeat: no-repeat;
	background-size: 25.42% auto;/*30*/
	background-position: center top 12px;
	cursor: pointer;
	box-shadow: 0 0 4px 1px rgba(116, 160, 178, 0.55);
	font-size: 1.05rem;
	line-height: 1;
	color: #4d4d4d;
	padding-bottom: 11px;
	box-sizing: border-box;
	position: relative;
	z-index: 1001; /* メニューより前面に */
}


/* ハンバーガーボタンのスタイリング */
header .head_inner .sp-menu-toggle {
	font: inherit;
	display: block;
	width: 59px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: #39ad4a;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	margin: 0 0 0 auto;
	box-shadow: 0 0 4px 1px rgba(116, 160, 178, 0.55);
	position: relative;
	z-index: 1001; /* メニューより前面に */
}

header .head_inner .sp-menu-toggle::before {
	content: 'MENU';
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 1.05rem;
	line-height: 1;
	color: #fff;
	text-align: center;
	position: absolute;
	bottom: 12px;
	left: 0;
}

header .head_inner .sp-menu-toggle[aria-expanded="true"]::before {
	content: 'CLOSE';
}

header .head_inner .sp-menu-toggle .hamburger-line {
	display: block;
	position: absolute;
	top: 21px;
	left: 50%;
	transform: translateX(-50%);
	width: 40.68%;/*48*/
	height: 1px;
	background: #fff;
	transition: background-color 0.3s ease;
}

header .head_inner .sp-menu-toggle .hamburger-line::before,
header .head_inner .sp-menu-toggle .hamburger-line::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	transition: transform 0.3s ease;
}

header .head_inner .sp-menu-toggle .hamburger-line::before {
	top: -6px;
}

header .head_inner .sp-menu-toggle .hamburger-line::after {
	top: 6px;
}

/* ==========================================
   ボタン展開時の三本線の形状変化（✕印に変形）
   ========================================== */

/* 中央の線を透明にする */
header .head_inner .sp-menu-toggle[aria-expanded="true"] .hamburger-line {
	background-color: transparent !important;
}

header .head_inner .sp-menu-toggle[aria-expanded="true"] .hamburger-line::before {
	transform: translateY(6px) rotate(45deg);
}

header .head_inner .sp-menu-toggle[aria-expanded="true"] .hamburger-line::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* ナビゲーションメニュー：スマホ時は全画面オーバーレイ */
header .head_inner nav {
	position: absolute;
	top: 87px;
	left: 0;
	width: 100%;
	height: calc(100vh - 87px);
	background: #fff;
	padding: 0 0 215px;
	box-sizing: border-box;
	overflow-y: auto;
	z-index: 1000;
	
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

/* ナビゲーション展開時 */
.sp-menu-open header .head_inner nav {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* 背景固定用のクラス（メニューが開いている時は背後のコンテンツをスクロールさせない） */
body.is-menu-open {
	overflow: hidden;
}

/**/

header .head_inner nav ul.menu-root{
	list-style: none;
}

header .head_inner nav ul.menu-root li.menu-item-has-child{
	width: 100%;
	border-top: 1px solid rgba(43,163,45,0.5);
	box-sizing: border-box;
}

header .head_inner nav ul.menu-root li.menu-item-has-child:last-child{
	border-bottom: 1px solid rgba(43,163,45,0.5);
}

header .head_inner nav ul.menu-root li.menu-item-has-child button.menu-trigger{
	display: flex;
	align-items: center;
	width: 100%;
	height: 55px;
	background-color: #fff;
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	color: #333333;
	padding-left: 6.25%;/*45*/
	box-sizing: border-box;
	position: relative;
}

header .head_inner nav ul.menu-root li.menu-item-has-child button.menu-trigger::before,
header .head_inner nav ul.menu-root li.menu-item-has-child button.menu-trigger::after {
	content: '';
	width: 7.92%;/*57*/
	height: auto;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 4.44%;/*32*/
	transition: opacity 0.4s ease; /* ふんわり切り替わるための指定 */
}

/* ::beforeを「横線」、::afterを「縦線」として十字（＋）を作ります */
header .head_inner nav ul.menu-root li.menu-item-has-child button.menu-trigger::before {
	background: url("images2026/common/acc_open.webp")no-repeat;
	background-size: 100% auto;
	opacity: 1; /* 見える状態 */
}

header .head_inner nav ul.menu-root li.menu-item-has-child button.menu-trigger::after {
	background: url("images2026/common/acc_close.webp")no-repeat;
	background-size: 100% auto;
	opacity: 0;
}

header .head_inner nav ul.menu-root li.menu-item-has-child button.menu-trigger[aria-expanded="true"]::before {
	opacity: 0;
}

header .head_inner nav ul.menu-root li.menu-item-has-child button.menu-trigger[aria-expanded="true"]::after {
	opacity: 1;
}

/**/

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu {
	width: 100%;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition:
		max-height 0.33s cubic-bezier(0.25, 1, 0.5, 1), 
		opacity 0.25s ease, 
		visibility 0.25s ease;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu.is-show {
	opacity: 1;
	visibility: visible;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner {
	width: 100%;
	border-top: 1px solid rgba(43,163,45,0.5);
	box-sizing: border-box;
	transform: translateY(-8px);
	transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu.is-show .mega-menu-inner {
	transform: translateY(0);
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner .menu_midashi_area{
	display: none;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner .submenu_list{
	width: 100%;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner .submenu_list p a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 55px;
	background: url("images2026/common/sp_link_ico.webp")no-repeat #ebf7e7 right 6.25% center;/*45*/
	background-size: 3.33% auto;/*24*/
	font-size: 1.3rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #333;
	text-decoration: none;
	padding-left: 6.25%;/*45*/
	box-sizing: border-box;
}

header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner .submenu_list p a.ex_link{
	background: url("images2026/common/ex_ico2.webp")no-repeat #ebf7e7 right 6.25% center;/*45*/
	background-size: 3.89% auto;/*28*/
}


header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner .submenu_list p + p a,
header .head_inner nav ul.menu-root li.menu-item-has-child .mega-menu .mega-menu-inner .submenu_list + .submenu_list p:first-child a{
	border-top: 1px solid rgba(43,163,45,0.5);
}

header .head_inner nav ul.menu-root li.menu-item-has-child > a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 55px;
	background: url("images2026/common/sp_link_ico.webp")no-repeat #fff right 6.25% center;/*45*/
	background-size: 3.33% auto;/*24*/
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #333333;
	text-decoration: none;
	padding-left: 6.25%;/*45*/
	box-sizing: border-box;
}


/**/

/*===================================
	footer
=====================================*/

footer{
	width: 100%;
	background: #f0f9fc;
	padding: 31px 0 0;
	margin-bottom: 70px;
}

footer .foot_inner{
	width: 83.33%;/*600*/
	margin: 0 auto;
}

footer .foot_inner .foot_area01{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .foot_inner .foot_area01 .foot_logo{
	width: 72.33%;/*434*/
}

footer .foot_inner .foot_area01 .foot_logo a{
	display: block;
	width: 100%;
}

footer .foot_inner .foot_area01 .foot_logo a img{
	width: 100%;
	height: auto;
}

footer .foot_inner .foot_area01 .foot_iso{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 5.0%;/*30*/
	margin-top: 24px;
}

footer .foot_inner .foot_area01 .foot_iso .ico{
	width: 23.17%;/*139*/
}

footer .foot_inner .foot_area01 .foot_iso .ico img{
	width: 100%;
	height: auto;
}

footer .foot_inner .foot_area01 .foot_iso p{
	font-size: 1.22rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #4d4d4d;
}

footer .foot_inner .foot_area01 .foot_add{
	width: 100%;
	margin-top: 17px;
	text-align: center;
}

footer .foot_inner .foot_area01 .foot_add p{
	font-size: 1.3rem;
	line-height: 1.85;
	letter-spacing: 0.05em;
	color: #333333;
}

footer .foot_inner .foot_area01 .foot_add p a.tel-link{
	color: #333333;
}

/**/

footer .foot_inner .foot_area02{
	display: none;
}

/**/

footer .foot_inner .foot_area03{
	width: 100%;
	margin: 41px auto 36px;
}

footer .foot_inner .foot_area03 ul.ft_bnr_list{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px 0;
}

footer .foot_inner .foot_area03 ul.ft_bnr_list li{
	width: 47.83%;/*287*/
}

footer .foot_inner .foot_area03 ul.ft_bnr_list li a{
	display: block;
}

footer .foot_inner .foot_area03 ul.ft_bnr_list li a .bnr_img{
	width: 100%;
	
}

footer .foot_inner .foot_area03 ul.ft_bnr_list li a .bnr_img img{
	width: 100%;
	height: auto;
	filter: drop-shadow(0 0 4px rgba(116, 160, 178, 0.55));
}

footer .foot_inner .foot_area03 ul.ft_bnr_list li p.site_name{
	width: 100%;
	font-size: 1.0rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #4d4d4d;
	text-align: center;
	margin-top: 8px;
	position: relative;
}

footer .foot_inner .foot_area03 ul.ft_bnr_list li p.site_name::before{
	content: '';
	background: url("images2026/common/ex_ico.webp")no-repeat;
	background-size: 100% auto;
	width: 7.67%;/*22*/
	height: auto;
	aspect-ratio: 15 / 16;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

/**/

footer .copyright{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 46px;
	background: #67bf13;
}

footer .copyright p{
	font-size: 1.15rem;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
}


/*===================================
	.floatingBnr
=====================================*/

.floatingBnr {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.73);
  z-index: 100;
  
  /* 追加：初期状態を隠す */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 表示条件を満たしている場合 */
.floatingBnr.is-show {
    opacity: 1;
    visibility: visible;
}

/* スクロール中（停止判定待ち）は強制的に消す */
.floatingBnr.is-scrolling {
    opacity: 0;
    visibility: hidden;
}

.floatingBnr .nav_inner{
	width: 97.5%;/*702*/
	margin: 0 auto;
}

.floatingBnr .nav_inner ul.f_bnr_list{
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.floatingBnr .nav_inner ul.f_bnr_list li{
	width: 32.76%;/*230*/
}

.floatingBnr .nav_inner ul.f_bnr_list li.tel_btn{
	display: none;
}

.floatingBnr .nav_inner ul.f_bnr_list li.modal_btn button {
	font: inherit;
	border: none;
	cursor: pointer;
	
	/* レイアウトの基礎 */
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	
	width: 100%;
	height: 64px;
	border-radius: 5px;
	background-color: rgba(233,90,36,0.85);
	position: relative;
}

.floatingBnr .nav_inner ul.f_bnr_list li.modal_btn.btn02 button {
	background-color: rgba(0,113,180,0.85);
}

.floatingBnr .nav_inner ul.f_bnr_list li.modal_btn.btn03 button {
	background-color: rgba(41,163,218,0.85);
}

.floatingBnr .nav_inner ul.f_bnr_list li.modal_btn button::before {
	content: '';
	background: url("images2026/common/mb_ico01.webp")no-repeat;
	background-size: 100% auto;
	width: 27.39%;/*63*/
	height: auto;
	aspect-ratio: 63 / 52;
	position: absolute;
	top: 3px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.floatingBnr .nav_inner ul.f_bnr_list li.modal_btn.btn02 button::before {
	background: url("images2026/common/mb_ico02.webp")no-repeat;
	background-size: 100% auto;
	width: 26.96%;/*62*/
	aspect-ratio: 62 / 43;
	top: 7px;
}

.floatingBnr .nav_inner ul.f_bnr_list li.modal_btn.btn03 button::before {
	background: url("images2026/common/mb_ico03.webp")no-repeat;
	background-size: 100% auto;
	width: 29.13%;/*67*/
	aspect-ratio: 67 / 51;
	top: 4px;
}

.floatingBnr .nav_inner ul.f_bnr_list li.modal_btn button .text-wrapper {
	text-align: center;
	padding-bottom: 4px;
}

.floatingBnr .nav_inner ul.f_bnr_list li.modal_btn button p.jp_txt{
	font-size: 1.3rem;
	line-height: 1;
	color: #fff;
}

.floatingBnr .nav_inner ul.f_bnr_list li.modal_btn button p.en_txt{
	font-size: 0.85rem;
	line-height: 1;
	color: #fff;
	margin-top: 3px;
}


/* モーダル背景（62%透過の黒） */
.modal {
  /* 初期状態 */
  display: flex; /* アニメーションのため常にflexにしておく */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.62);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  
  /* アニメーション設定 */
  opacity: 0;           /* 透明 */
  visibility: hidden;   /* 非表示（マウスイベントも無効） */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 表示された時 */
.modal.is-active {
  opacity: 1;
  visibility: visible;
}

/*
.modal {
  opacity: 1 !important;
  visibility: visible !important;
}
*/

/* モーダルの中身 */
.modal .modal-content {
	width: 83.33%;/*600*/
	min-height: 375px;
	margin: 0 auto;
	padding: 13px 0 18px;
	box-sizing: border-box;
	background: rgba(255,255,255,0.9);
	border-radius: 5px;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
}

/* 閉じるボタン */
.modal .modal-content .close-btn {
	width: 11.83%;/*71*/
	height: auto;
	aspect-ratio: 1 / 1;
	background: url("images2026/common/modal_close.svg")no-repeat;
	background-size: 100% auto;
	cursor: pointer;
	border: none;
	font-size: 0;
	position: absolute;
	top: 1.15rem;
	right: 5.33%;/*32*/
}

.modal#modal-medical .modal-content .close-btn {
	background: url("images2026/common/modal_close02.svg")no-repeat;
	background-size: 100% auto;
}

.modal#modal-recruitment .modal-content .close-btn {
	background: url("images2026/common/modal_close03.svg")no-repeat;
	background-size: 100% auto;
}

.modal .modal-content .close-btn::after {
	content: '閉じる';
	width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;	
	font-size: 1.0rem;
	line-height: 1;
	color: #333333;
	text-align: center;
	position: absolute;
	bottom: -8px;
	transform: translateY(100%);
	left: 0;
}


.modal .modal-content .modal-body{
	width: 89.67%;/*538*/
	margin: 0 auto;
}

.modal .modal-content .modal-body .modal_head{
	display: flex;
	align-items: center;
	width: 84.20%;/*453*/
	height: 6.45rem;
	border-radius: 10px;
	background-color: #e95a24;
}

.modal#modal-medical .modal-content .modal-body .modal_head{
	background-color: #0071b4;
}

.modal#modal-recruitment .modal-content .modal-body .modal_head{
	background-color: #29a3da;
}

.modal .modal-content .modal-body .modal_head .txt_wrap{
	display: flex;
	align-items: center;
	width: 100%;
}

.modal .modal-content .modal-body .modal_head .txt_wrap::before{
	content: '';
	background: url("images2026/common/mb_ico01.svg")no-repeat;
	background-size: 100% auto;
	width: 17.22%;/*78*/
	height: auto;
	aspect-ratio: 184 / 150;
	margin-left: 7.73%;/*35*/
	margin-right: 4.42%;/*20*/
}

.modal#modal-medical .modal-content .modal-body .modal_head .txt_wrap::before {
	background: url("images2026/common/mb_ico02.svg")no-repeat;
	background-size: 100% auto;
	aspect-ratio: 219 / 150;
}

.modal#modal-recruitment .modal-content .modal-body .modal_head .txt_wrap::before {
	background: url("images2026/common/mb_ico03.svg")no-repeat;
	background-size: 100% auto;
	aspect-ratio: 196 / 150;
}



.modal .modal-content .modal-body .modal_head .txt_wrap .txt_inn p.jp_txt{
	font-size: 1.75rem;
	line-height: 1;
	color: #fff;
}

.modal .modal-content .modal-body .modal_head .txt_wrap .txt_inn p.en_txt{
	margin-top: 5px;
	font-size: 0.9rem;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #fff;
}

.modal .modal-content ul.modal_menu{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 14px 0;
	width: 100%;
	margin-top: 16px;
}

.modal .modal-content ul.modal_menu li{
	width: 100%;
}

.modal .modal-content ul.modal_menu li a{
	display: flex;
	align-items: center;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	background-color: #fff;
	background-image: url("images2026/common/md_link_ico01.webp");
	background-repeat: no-repeat;
	background-size: 5.22% auto;/*30*/
	background-position: right 5.22% center;/*30*/
	filter: drop-shadow(0 0 3px rgba(116, 160, 178, 0.55));
	padding-left: 22.61%;/*130*/
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.22;
	color: #000000;
	text-decoration: none;
	position: relative;
}

.modal#modal-medical .modal-content ul.modal_menu li a{
	background-image: url("images2026/common/md_link_ico02.webp");
}

.modal#modal-recruitment .modal-content ul.modal_menu li a{
	background-image: url("images2026/common/md_link_ico03.webp");
}

.modal .modal-content ul.modal_menu li a::before{
	content: '';
	background: url("images2026/common/md_menu_ico01.webp")no-repeat;
	background-size: 100% auto;
	width: 17.39%;/*100*/
	height: auto;
	aspect-ratio: 111 / 81;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 2.61%;/*15*/
	z-index: 1;
}

.modal#modal-outpatient .modal-content ul.modal_menu li:nth-child(2) a::before{
	background: url("images2026/common/md_menu_ico02.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-outpatient .modal-content ul.modal_menu li:nth-child(3) a::before{
	background: url("images2026/common/md_menu_ico03.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-outpatient .modal-content ul.modal_menu li:nth-child(4) a::before{
	background: url("images2026/common/md_menu_ico04.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-outpatient .modal-content ul.modal_menu li:nth-child(5) a::before{
	background: url("images2026/common/md_menu_ico05.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-outpatient .modal-content ul.modal_menu li:nth-child(6) a::before{
	background: url("images2026/common/md_menu_ico06.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-medical .modal-content ul.modal_menu li:nth-child(1) a::before{
	background: url("images2026/common/md_menu_ico07.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-medical .modal-content ul.modal_menu li:nth-child(2) a::before{
	background: url("images2026/common/md_menu_ico08.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-medical .modal-content ul.modal_menu li:nth-child(3) a::before{
	background: url("images2026/common/md_menu_ico09.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-medical .modal-content ul.modal_menu li:nth-child(4) a::before{
	background: url("images2026/common/md_menu_ico10.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-medical .modal-content ul.modal_menu li:nth-child(5) a::before{
	background: url("images2026/common/md_menu_ico11.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-recruitment .modal-content ul.modal_menu li:nth-child(1) a::before{
	background: url("images2026/common/md_menu_ico12.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-recruitment .modal-content ul.modal_menu li:nth-child(2) a::before{
	background: url("images2026/common/md_menu_ico13.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-recruitment .modal-content ul.modal_menu li:nth-child(3) a::before{
	background: url("images2026/common/md_menu_ico14.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-recruitment .modal-content ul.modal_menu li:nth-child(4) a::before{
	background: url("images2026/common/md_menu_ico15.webp")no-repeat;
	background-size: 100% auto;
}

.modal#modal-recruitment .modal-content ul.modal_menu li:nth-child(5) a::before{
	background: url("images2026/common/md_menu_ico16.webp")no-repeat;
	background-size: 100% auto;
}

/*===================================
	.totop
=====================================*/

.totop{
	display: none;
	width: 7.5%;/*54*/
	position: fixed;
	bottom: 101px;
	right: 1.94%;/*14*/
	z-index: 100;
}

.totop img{
	width: 100%;
	height: auto;
	filter: drop-shadow(0 0 3px rgba(116, 160, 178, 0.55));
}

/*===================================
	旧サイトから引継ぎ
=====================================*/


#f_gotop{
	display: none;
}
#breadcrumb{
	display: none;
}

.contents_wrap img{
	width:100%;
	height: auto;
}
ol{
	text-indent:1em;
}

.mb0{
	margin-bottom:0px !important;
}

object {
	display: block;
}

#bn_right{
	width: 100%;
	margin:0px auto;
	list-style:none;
	display:block;
    overflow: hidden;
}

#bn_right li{
	list-style-type:none;
	overflow:hidden;
	margin-bottom:2px;
    padding: 2rem 1rem;
    background-color: #c0db64;
}

#bn_right li a{
	display:block;
	padding:5px 0px 5px 0px;
	line-height:23px;
	background-image:url("tmpl/image/sub_icon_gr.png");
	background-repeat:no-repeat;
	background-position:10px center;
	color:#000;
	background-size:1.2rem 1.2rem; 
}

#bn_right li a span{
	display:block;
	margin-left:28px;
}


/**/

#bn01{
    display: none;    
}

#bn02 {
    display: none;    
}

#bn03{
    display: none;    
}

#bn04{
    display: none;    
}

#bn05{
    display: none;    
}

#bn06{
    display: none;    
}

#bn07{
    display: none;    
}

/*-------------------------------------------------------------------------------*/
.hdl{
	background: linear-gradient(0deg, rgba(91,164,48,1) 0%, rgba(107,194,13,1) 100%);
	color: white;
	font-size: 1.4rem;
	padding: 0.5rem 0.5rem;
	margin-bottom: 0.7rem;
}
#footer_wrap{
	background: none;
}
#footer dl dt{
	margin: 15px auto;
	float: none;
}
#footer dl dd.col02{
	margin-left: 0;
	text-align: center;
	padding-top: 0;
	float: none;
}
#footer dl dd.col03{
	display: none;
}
#copy{
	margin: 2.7rem auto 0;
}
/*-------------------------------------------------------------------------------*/
.page_headline{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #c1db61;
	padding: 2rem 1.5rem;
	font-size: 1.8rem;
	font-weight: bold;
}
.ank_link{
	display: none;
}

.ank_link2{
	display: none;
}
/*-------------------------------------------------------------------------------*/
.toggle-page{
	padding: 1.2rem 1rem 1.2rem 5rem;
	font-weight: bold;
	border-top: 1px solid #6bc20d;
	border-bottom: 1px solid #6bc20d;
	position: relative;
}

.toggle-page:before{
	content: '';
	width: 0rem;
	height: 0rem;
	display: block;
	position: absolute;
	border-style: solid;
	border-width: 7px 7.5px 0 7.5px;
	border-color: #6ac20d transparent transparent transparent;	
	left: 2rem;
	top: 30%;
	transform: translateY(-50%);
}

.toggle-page:after{
	content: 'ひらく';
	width: 5.5rem;
	height: 0.5rem;
	display: block;
	position: absolute;
	left: 0rem;
	top: 45%;
	transform: translateY(-50%);
    font-size: 1.2rem;
    text-align: center;
}

.toggle-page.open:before{
	border-width: 0 7.5px 7px 7.5px;
    border-color: transparent transparent #6ac20d transparent;
}
.contents_wrap .toggle-box{
	padding:  0 10px;
}
.scrolltable{
	overflow-x: scroll;-webkit-overflow-scrolling: touch;
}
.scrolltable table{
	width: 652px;
}

#main_container{
	padding-bottom: 2em;
}