@charset "UTF-8";

/* -- @important set -- */
@import "cmn.css";
@import "temp.css";


/* ------------------------------------------------------------------------------------------
	HOME Styles '/'
------------------------------------------------------------------------------------------ */

/* ---------------------------------------------
	#firstView Styles ‐ HOME
--------------------------------------------- */

body#home #firstView {
	position: relative;
	overflow: hidden;
	margin-top: 80px;
}
#firstView .inner {
  padding: 0 30px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
body#home #firstView .inner > header {
	flex-shrink: 0;
	width: 30%;
	z-index: 2;
}
body#home #firstView .inner > div {
	flex-shrink: 0;
	width: 70%;
	z-index: 1;
	position: relative;
	right: -3%;
}

body#home #firstView .inner > header div.hgrp {
	margin: 40px 0;
}
body#home #firstView .inner > header div.hgrp h2,
body#home #firstView .inner > header div.hgrp p.catch {
	font: 700 clamp(25px, 4.0vw, 54px)/1.36 var(--fmG);
	white-space: nowrap;
	text-shadow: 0 0 4px #fff,
               0 0 4px #fff,
               0 0 4px #fff,
               0 0 4px #fff,
               0 0 4px #fff;
}
body#home #firstView .inner > header div.hgrp + p {
	font: 400 clamp(14px, 1.3vw, 18px)/1.72 var(--fmG);
	margin-bottom: 20px;
	white-space: nowrap;
}
body#home #firstView .inner > header > p a {
	font: 700 clamp(13px, 1.3vw, 16px)/1.0 var(--fmG);
	color: #FF1F54;
}
body#home #firstView .inner > header > p a:hover {
	opacity: 0.80;
}
body#home #firstView .inner > div .doctor {
	position: relative;
	aspect-ratio: 1000 / 768;
	object-fit: cover;
	overflow: hidden;
	padding: 2px;
	transition: opacity 1.2s ease-out;
	opacity: 0;
}
body#home #firstView .inner > div .doctor.is-ready {
	opacity: 1;
}
body#home #firstView .inner > div .doctor::before {
	position: absolute;
	content: '';
	aspect-ratio: 1000 / 768;
	object-fit: cover;
	z-index: 10;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(../img/fv_mask.png) no-repeat 0 0 / 100%;
}
body#home #firstView .inner > div .doctor .swiper-wrapper {
	overflow: hidden;
}
body#home #firstView .inner > div .doctor figure {
	position: relative;
	margin: 0;
  	height: 100%;
}
body#home #firstView .inner > div .doctor img {
	width: 100%;
  	height: 100%;
	aspect-ratio: 1000 / 768;
	object-fit: cover;
	transform: scale(1.15);
	transition: all 8s ease-out;
}
body#home #firstView .inner > div .doctor.is-ready .swiper-slide-active img,
body#home #firstView .inner > div .doctor.is-ready .swiper-slide-duplicate-active img,
body#home #firstView .inner > div .doctor.is-ready .swiper-slide-prev img {
  /*animation: doctorZoomOut 7.5s linear 0s normal both;*/
  transform: scale(1.0);
}
@keyframes doctorZoomOut {
	0% { transform: scale(1.15);}
	100% { transform: scale(1.0);}
}

@media screen and (min-width:1501px) {}
@media screen and (max-width:1280px) {
	body#home #firstView .inner > header div.hgrp + p {
		font-size: 14px;
		white-space: normal;
	}
	body#home #firstView .inner > header div.hgrp + p br {
		display: none;
	}
}
@media screen and (max-width:768px) {
	body#home #firstView {
		margin-top: 60px;
	}
	#firstView .inner {
		padding: 0 10px;
	}
	body#home #firstView .inner {
		flex-direction: column-reverse;
	}
	body#home #firstView .inner > div {
		width: 100%;
		right: -4%;
	}
	body#home #firstView .inner > header {
		margin-top: -57px;
		width: 100%;
		z-index: 11;
	}
	body#home #firstView .inner > header .logo {
		display: none;
	}
	body#home #firstView .inner > header div.hgrp {
		margin: 20px 0;
	}
	body#home #firstView .inner > header > p a {
		font: 700 13px/1.0 var(--fmG);
	}
	body#home #firstView .inner > header div.hgrp p.catch {
		font: 700 clamp(25px, 7vw, 54px)/1.36 var(--fmG);
	}
}


/* ---------------------------------------------
	#topics Styles ‐ HOME
--------------------------------------------- */

body#home #topics {
  padding: 2em 0 4em 0;
}
body#home #topics div.content-block > header {
	display: none;
}
body#home #topics div.content-block > div {
	background: #FFEBF0;
	padding: 20px 20px;
}
body#home #topics div.content-block > div ul {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	gap: 3px;
}
body#home #topics div.content-block > div ul li {
	padding: 10px 20px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px;
	cursor: pointer;
}
body#home #topics div.content-block > div ul li:hover {
	background: #FFD8E2;
}
body#home #topics div.content-block > div ul li.active {
	background: #FFD8E2;
}
body#home #topics div.content-block > div ul li > p {
	flex-shrink: 0;
	width: 15vw;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 0;
}
body#home #topics div.content-block > div ul li > p::after {
	content: '';
	height: 1px;
	flex: 1;
	background: #707070;
}
body#home #topics div.content-block > div ul li > p time {
	font: 600 15px/1.0 var(--fmG);
	color: #FF1F54;
}
body#home #topics div.content-block > div ul li > div {
	flex: 1;
}
body#home #topics div.content-block > div ul li > div h3 {
	position: relative;
	font: 600 17px/1.0 var(--fmG);
	color: #FF1F54;
	padding-right: 1.2em;
}
body#home #topics div.content-block > div ul li > div h3::after {
	position: absolute;
	content:'';
	top: .3em;
	right: 0;
	background: url(../img/icon_topicsarrow.svg) no-repeat center center / 12px;
	width: 12px;
	height: 7px;
	transition: all .2s;
}
body#home #topics div.content-block > div ul li.active > div h3::after {
	background: url(../img/icon_topicsarrow.svg) no-repeat center center / 12px;
	transform: rotate(180deg);
}
body#home #topics div.content-block > div ul li > div > div {
	display: none;
	padding-top: 10px;
	width: 80%;
	padding: 10px 15px;
	border-radius: 10px;
	font: 400 15px/1.8 var(--fmG);
	cursor: auto;
	background-color: #ffe2e9;
}


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

	body#home #topics div.content-block > div {
    background: #FFEBF0;
    padding: 10px 10px;
	}
  body#home #topics div.content-block > div ul li {
    gap: 10px;
    padding: 10px 10px;
  }
  body#home #topics div.content-block > div ul li > p {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  	font: 400 13px/1.8 var(--fmG);
		margin-bottom: 0;
  }
  body#home #topics div.content-block > div ul li > div h3 {
    font: 600 15px/1.42 var(--fmG);
  }
  body#home #topics div.content-block > div ul li > div > p::after {
    content: '';
    height: 1px;
    flex: 1;
    background: #333333;
  }
  body#home #topics div.content-block > div ul li > div > p time {
    font: 600 13px/1.42 var(--fmG);
    color: #FF1F54;
  }
  body#home #topics div.content-block > div ul li > div > div {
	width: 90%;
  }
}


/* ---------------------------------------------
	#medical Styles ‐ HOME
--------------------------------------------- */

body#home #medical {
	background: #FFECF2 url(../img/medical_bkg.svg) repeat-x center top / auto 100px;
}
body#home #medical div.content-block > header {
	display: none;
}

/* infoSet */
body#home #medical div.content-block > div.infoSet {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 50px;
	margin-top: 60px;
}
body#home #medical div.content-block > div.infoSet div {
	flex-shrink: 0;
	width: calc(33.3333% - 33.3333px);
	background: #fff;
}
body#home #medical div.content-block > div.infoSet div a {
	display: block;
}
body#home #medical div.content-block > div.infoSet div figure {
	position: relative;
	overflow: hidden;
}
body#home #medical div.content-block > div.infoSet div figure::before {
  position: absolute;
	z-index: 3;
  content: '';
  bottom: -1px;
  left: -20px;
  width: 35%;
  height: 20px;
  background: #fff;
  transform: skewX(45deg);
}
body#home #medical div.content-block > div.infoSet div figure img {
	transition: all .2s;
	height: auto;
}
body#home #medical div.content-block > div.infoSet div a:hover figure img {
	transform: scale(1.1);
}
body#home #medical div.content-block > div.infoSet div nav {
	padding: 16px 20px 32px 20px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 20px;
}
body#home #medical div.content-block > div.infoSet div nav h3 {
	font: 700 20px/1.42 var(--fmG);
	flex-shrink: 0;
	width: 120px;
}
body#home #medical div.content-block > div.infoSet div nav ul {
	flex: 1;
}
body#home #medical div.content-block > div.infoSet div nav ul li {
	margin-bottom: 7px;
	font: 400 14px/1.42 var(--fmG);
	background: url(../img/icon_infoSet.svg) no-repeat left top .4em / 8px;
	padding-left: 14px;
	transition: all .2s;
}


@media screen and (max-width:1280px) {
	body#home #medical div.content-block > div.infoSet {
		gap: 30px;
		margin-top: 30px;
	}
	body#home #medical div.content-block > div.infoSet div {
		width: calc(33.3333% - 20px);
	}
	body#home #medical div.content-block > div.infoSet div nav {
		display: block;
		padding: 14px 14px 18px 14px;
	}
	body#home #medical div.content-block > div.infoSet div nav h3 {
		width: 100%;
		margin-bottom: 15px;
	}
	body#home #medical div.content-block > div.infoSet div nav h3 br {
		display: none;
	}

}
@media screen and (max-width:768px) {
	body#home #medical div.content-block > div.medicalSet {
		margin-bottom: 30px;
	}
	body#home #medical div.content-block > div.medicalSet ul.tab {
		gap: 10px;
	}
	body#home #medical div.content-block > div.medicalSet ul.tab li {
		font: 700 16px/1.0 var(--fmG);
	}
	body#home #medical div.content-block > div.infoSet {
		flex-direction: column;
	}
	body#home #medical div.content-block > div.infoSet div {
		width: 100%;
	}
	body#home #medical div.content-block > div.infoSet div figure::before {
		width: 35%;
		height: 15px;
	}
}


/* ---------------------------------------------
	#relatedNav Styles ‐ HOME
--------------------------------------------- */

/* hospitalSet moved --> temp.css */

/* -- hospitalBanner -- */
#relatedNav div.content-block > div.hospitalBanner ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}
@media screen and (max-width:768px) {
	/* -- hospitalBanner -- */
	#relatedNav div.content-block > div.hospitalBanner ul {
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}
}


/* ---------------------------------------------
	#news Styles ‐ HOME
--------------------------------------------- */

body#home #news div.content-block > div.newsSet {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 50px;
}
body#home #news div.content-block > div.newsSet div {
	flex-shrink: 0;
	width: calc(33.3333% - 33.3333px);
}
body#home #news div.content-block > div.newsSet div h3 {
	font: 600 18px/1.0 var(--fmG);
	margin-bottom: 0;
}
body#home #news div.content-block > div.newsSet div h3 a {
	display: block;
	padding: 15px 10px;
	border-bottom: 2px solid #888;
	background: url(../img/icon_h3_arr.svg) no-repeat right 10px center;
	transition: all .2s;
}
body#home #news div.content-block > div.newsSet div.crucial h3 a {
	color: #FF1F54;
}
body#home #news div.content-block > div.newsSet div h3 a:hover {
	color: #FF1F54;
	background: url(../img/icon_h3_arr.svg) no-repeat right 7px center;
}

#news div.content-block > div.newsSet {
	margin-bottom: 60px;
}
#news div.content-block > div.newsSet ul li {
	border-bottom: 1px solid #ccc;
}
#news div.content-block > div.newsSet ul li.no-article {
	border-bottom: none;
	text-align: center;
	padding: 20px 0;
	font: 400 15px/1.42 var(--fmG);
}
#news div.content-block > div.newsSet ul li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 15px 15px 15px 70px;
	min-height: 70px;
	font: 400 15px/1.42 var(--fmG);
}
#news div.content-block > div.newsSet div.crucial ul li a {
	color: #FF1F54;
}
#news div.content-block > div.newsSet ul li a:hover {
	background-color: #FBF2F9;
}
#news div.content-block > div.newsSet ul li a time {
	position: absolute;
	left: 15px;
	top: 18px;
	font: 400 15px/1.2 var(--fmG);
	text-align: center;
}
#news div.content-block > div.newsSet ul li a p {
	margin: 0;
}



@media screen and (max-width:1280px) {
	body#home #news div.content-block > div.newsSet div {
		flex-shrink: 0;
		width: calc(50% - 25px);
	}
}
@media screen and (max-width:768px) {
	body#home #news div.content-block > div.newsSe {
		flex-direction: column;
	}
	body#home #news div.content-block > div.newsSet div {
		flex-shrink: 0;
		width: 100%;
	}
}





/* ------------------------------------------------------------------------------------------
	'/concept/' PAGE Styles
------------------------------------------------------------------------------------------ */

/* ---------------------------------------------
	#pageHeader ‐ '/concept/'
--------------------------------------------- */

body.concept #pageHeader {
  background: url(../img/ph_bkg_concept.png) no-repeat center center / cover;
}
@media screen and (max-width:768px) {
  body.concept #pageHeader {
    background: url(../img/ph_bkg_concept_sp.jpg) no-repeat center center / cover;
  }
}

/* -- #pageHeader -- */
body.concept #pageHeader div.hgrp::before {
  content: 'Concept';
}


/* -- teamBox -- */
section.teamBox div.content-block > div figure {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
section.teamBox div.content-block > div .detail {
  padding: 20px;
}
section.teamBox div.content-block > div .detail p {
  font: 400 16px/1.42 var(--fmG);
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
section.teamBox div.content-block > div .detail h3 {
  font: 700 28px/1.42 var(--fmG);
  color: #0C488B;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width:768px) {
  section.teamBox div.content-block > div .detail {
    padding: 10px;
  }
  section.teamBox div.content-block > div .detail h3 {
    font: 700 18px/1.42 var(--fmG);
  }
}

/* -- introduction -- */
body#contents #globalBody section#introduction div.content-block header {
  border: none;
  margin: 0 0 0 0;
  padding: 0;
}
body#contents #globalBody section#introduction div.content-block header h2 {
  font: 700 41px/1.42 var(--fmM);
  text-align: center;
  margin: 0 auto 20px auto;
  background: none;
  padding-left: 0;
}
#globalBody #introduction div.content-block > div p {
  font: 700 23px/1.68 var(--fmM);
  text-align: center;
}

@media screen and (max-width:768px) {
  #globalBody #introduction div.content-block > div p br {
    display: none;
  }
  body#contents #globalBody section#introduction div.content-block header h2 {
    font: 700 18px/1.42 var(--fmM);
  }

  #globalBody #introduction div.content-block > div p {
    font: 400 16px/1.42 var(--fmM);
  }

}

/* -- teamBox -- */
#reception div.content-block > div .detail    {background: #FFEED3;}
#animal div.content-block > div .detail       {background: #FBF2F9;}
#veterinarian div.content-block > div .detail {background: #EFF8FF;}



/* ------------------------------------------------------------------------------------------
	'/medical-info/' PAGE Styles
------------------------------------------------------------------------------------------ */

/* ---------------------------------------------
	#pageHeader ‐ '/medical-info/'
--------------------------------------------- */

body.medical #pageHeader {
  background: url(../img/ph_bkg_medical.png) no-repeat center center / cover;
}

@media screen and (max-width:768px) {
  body.medical #pageHeader {
    background: url(../img/ph_bkg_medical_sp.jpg) no-repeat center center / cover;
  }
}

/* -- #pageHeader -- */
body.medical #pageHeader div.hgrp::before {
  content: 'Medical Info';
}

/* -- common -- */

/*
consultation-info.html
surgery-guide.html
medical-results.php */


#globalBody section.visitBox div.content-block > div p {
	font: 400 16px/1.42 var(--fmG);
}
#globalBody section.visitBox div.content-block > div p.download a {
	display: block;
	background: #E0F1FF url(../img/icon_download.svg) no-repeat left 20px top 10px / 30px;
	padding: 15px 20px 15px 60px;
	font: 600 18px/1.42 var(--fmG);
	width: fit-content;
	box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.2);
	margin-bottom: 3em;
	transition: all .3s;
}
#globalBody section.visitBox div.content-block > div p.phone a {
	display: block;
	width: fit-content;
	background: url(../img/icon_phone.svg) no-repeat left bottom / 26px;
	font: 600 32px/1.0 var(--fmG);
	color: #FC7CC6;
	padding-left: 35px;
}

#globalBody section.visitBox div.content-block > div p.download a:hover {
	filter: brightness(1.03);
	background: #E0F1FF url(../img/icon_download.svg) no-repeat left 20px top 12px / 30px;
}
section.visitBox div.content-block > div dl {
	background: #fff;
	border: 2px solid #E0F1FF;
	border-radius: 10px;
	margin-bottom: 1em;
	padding: 20px;
	box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.2);
}
section.visitBox div.content-block > div dl dt {
	font: 600 26px/1.42 var(--fmG);
	color: #0C488B;
	margin-bottom: 5px;
}
section.visitBox div.content-block > div dl dd {
	margin-bottom: 5px;
}
section.visitBox div.content-block > div dl dd.notes {
	font: 400 12px/1.42 var(--fmG);
}
section.visitBox div.content-block > div dl dd figure img {
	max-width: fit-content;
	width: 100%;
}
section.visitBox div.content-block > div dl dd.neutering {
	margin-top: .5em;
}
section.visitBox div.content-block > div dl dd.neutering strong {
	display: inline-block;
	border-radius: 2em;
	padding: 5px 10px;
	background: #E0F1FF;
	margin-right: .5em;
	font: 500 16px/1.0 var(--fmG);
}
section.visitBox div.content-block > div dl dd.spaying {
	margin-bottom: 1em;
}
section.visitBox div.content-block > div dl dd.spaying strong {
	display: inline-block;
	border-radius: 2em;
	padding: 5px 10px;
	background: #F8E7F3;
	margin-right: .5em;
	font: 500 16px/1.0 var(--fmG);
}
section.visitBox div.content-block > div ul {
	background: #E0F1FF;
	padding: 15px 20px;
	margin: 30px 0;
}
section.visitBox div.content-block > div ul li {
	padding: 3px 0 3px 15px;
	background: url(../img/icon_circle_pink.svg) no-repeat left top .7em / 8px;
}
section.visitBox div.content-block > div h4 {
	font: 500 22px/1.42 var(--fmG);
	color: #0C488B;
	margin-bottom: .5em;
}
section.visitBox div.content-block > div .imgSet {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 3em;
}
section.visitBox div.content-block > div .imgSet figure {
	flex-shrink: 0;
	width: calc(50% - 16px);
}
section.visitBox div.content-block > div .imgSet figure:nth-last-child(1),
section.visitBox div.content-block > div .imgSet figure:nth-last-child(2) {
	flex-shrink: 0;
	width: calc(25% - (48px / 3));
}
section.visitBox div.content-block > div .imgSet figure figcaption {
	padding: 5px 0;
}

section.visitBox div.content-block > div.flow figure {
	width: 40%;
	margin-bottom: .5em;
}

section.visitBox div.content-block > div.flow figure img {
	width: 37px;
	margin: 0 auto;
}

@media screen and (max-width:768px) {
section#waiting.visitBox div.content-block > div .imgSet:nth-of-type(1) figure:nth-of-type(1),
section#waiting.visitBox div.content-block > div .imgSet:nth-of-type(2) figure {
	flex-shrink: 0;
	width: 100%;
}
section#waiting.visitBox div.content-block > div .imgSet:nth-of-type(1) figure:nth-of-type(2),
section#waiting.visitBox div.content-block > div .imgSet:nth-of-type(1) figure:nth-of-type(3) {
	flex-shrink: 0;
	width: calc(50% - 16px);
}

}


section.resultBox div.content-block aside.selectYear {
	padding-bottom: 30px;
}
section.resultBox div.content-block aside.selectYear label {
	display: block;
	text-align: right;
}
section.resultBox div.content-block aside.selectYear label span {
	display: inline-block;
	vertical-align: middle;
	padding-top: 3px;
}
section.resultBox div.content-block aside.selectYear select {
	min-width: 100px;
	text-align: right;
	padding-right: 5px;
	margin-left: 5px;
}
section.resultBox div.content-block > div canvas {
	width: 100% !important;
	height: auto;
	object-fit: cover;
}
section.resultBox div.content-block > div table {
	width: 100%;
	border: 1px solid #707070;
	margin: 1.5em 0 3em 0;
	caption-side: bottom;
}
section.resultBox div.content-block > div table th,
section.resultBox div.content-block > div table td {
	border: 1px dotted #707070;
	padding: 5px;
  font: 400 16px/1.0 var(--fmG);
}
section.resultBox div.content-block > div table thead th {
	text-align: center;
}
section.resultBox div.content-block > div table tbody td {
	text-align: right;
}
section.resultBox div.content-block > div table td:first-child,
section.resultBox div.content-block > div table th:first-child {
	border-right: 1px solid #707070;
	text-align: center;
}
section.resultBox div.content-block > div table td:last-child,
section.resultBox div.content-block > div table th:last-child {
	border-left: 1px solid #707070;
}
section.resultBox div.content-block > div table + p.notes {
	font: 400 14px/1.42 var(--fmG) !important;
	text-align: right;
	padding-top: 5px;
  	margin-top: -40px;
}
section.resultBox div.content-block > div .surgeryList {
	padding: 30px 0px;
}
section.resultBox div.content-block > div .surgeryList h3 {
	font-size: 22px !important;
	color: #333 !important;
}
section.resultBox div.content-block > div .surgeryList .surgeryListInner {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 20px;
	width: 96%;
	margin: 30px auto 0 auto;
}
section.resultBox div.content-block > div .surgeryList .surgeryListInnerItem {
	flex-shrink: 0;
	width: calc((100% / 7) - (120px / 7));
	min-width: 160px;
}
section.resultBox div.content-block > div .surgeryList .surgeryListInnerItem h4 {
	font-size: 17px !important;
	color: #1A69C4 !important;
	letter-spacing: -1px;
}
section.resultBox div.content-block > div .surgeryList .surgeryListInnerItem ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
section.resultBox div.content-block > div .surgeryList .surgeryListInnerItem ul li {
	font-size: 16px;
}

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


	#globalBody section.visitBox div.content-block > div p.download a {
		font: 600 16px/1.42 var(--fmG);
	}
	section.visitBox div.content-block > div dl dt {
		font: 600 18px/1.42 var(--fmG);
	}
	section.visitBox div.content-block > div.flow figure {
		width: 100%;
		margin-bottom: .5em;
	}
  section.resultBox div.content-block > div table {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0;
  }
  section.resultBox div.content-block > div table thead {
    flex-shrink: 0;
    width: 50%;
    display: block;
  }
  section.resultBox div.content-block > div table tbody {
    flex-shrink: 0;
    width: 50%;
    display: block;
  }
  section.resultBox div.content-block > div table tr {
    display: block;
  }
  section.resultBox div.content-block > div table th,
  section.resultBox div.content-block > div table td {
    border: none;
    border-bottom: 1px dotted #707070;
    padding: 5px;
    display: block;
  }
  section.resultBox div.content-block > div table thead th {
    text-align: center;
  }
  section.resultBox div.content-block > div table tbody td {
    text-align: right;
    border-left: 1px dotted #707070 ;
  }
  section.resultBox div.content-block > div table td:first-child {
    border: none;
    border-bottom: 1px solid #707070;
    border-left: 1px dotted #707070 ;
    text-align: center;
  }
  section.resultBox div.content-block > div table th:first-child {
    border: none;
    border-bottom: 1px solid #707070;
    text-align: center;
  }
  section.resultBox div.content-block > div table th:last-child {
    border: none;
  }
  section.resultBox div.content-block > div table td:last-child {
    border: none;
    border-left: 1px dotted #707070 ;
  }
  section.resultBox div.content-block > div table td:nth-last-child(2),
  section.resultBox div.content-block > div table th:nth-last-child(2) {
    border-bottom: 1px solid #707070;
  }
  section.resultBox div.content-block > div table + p.notes {
	font-size: 12px !important;
  }
  section.resultBox div.content-block > div .surgeryList .surgeryListInnerItem {
	width: calc(50% - 10px);
	min-width: auto;
  }
  section.resultBox div.content-block > div .surgeryList .surgeryListInnerItem h4 {
	font-size: 16px !important;
  }
  section.resultBox div.content-block > div .surgeryList .surgeryListInnerItem ul li {
	font-size: 14px;
  }
}







/* ------------------------------------------------------------------------------------------
	'hospital-info' PAGE Styles
------------------------------------------------------------------------------------------ */

/* ---------------------------------------------
	#pageHeader ‐ 'hospital-info'
--------------------------------------------- */

body.hospital-info #pageHeader {
  background: url(../img/ph_bkg_hospital.png) no-repeat center center / cover;
}

@media screen and (max-width:768px) {
  body.hospital-info #pageHeader {
    background: url(../img/ph_bkg_hospital_sp.jpg) no-repeat center center / cover;
  }
}

/* -- #pageHeader -- */
body.hospital-info #pageHeader div.hgrp::before {
  content: 'Hospital Info';
}


/* -- common -- */
body.director-message #pageHeader,
body.facility-info #pageHeader,
body.medical-equipment #pageHeader,
body.transportation-access #pageHeader {
  background: url(../img/gh_bkg.svg) no-repeat center center / cover;
}




/* -- indexSet -- */
/* SEOの観点より、.visually-hiddenに置き換える
.indexSet div.content-block > header h2,
.indexSet div.content-block > header p {
  display: none;
}
*/
.indexSet div.content-block > .notice,
.indexSet div.content-block > nav > p {
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  font: 400 16px/1.42 var(--fmG);
  margin-bottom: 4em;
}
@media screen and (max-width:768px) {
	.indexSet div.content-block > .notice,
  .indexSet div.content-block > nav > p {
  text-align: left;
  }
  .indexSet div.content-block > .notice br,
  .indexSet div.content-block > nav > p br {
    display: none;
  }
}

.characterBox {
	margin-top: 60px;
	background: url(../img/characterBox_bkg.svg) no-repeat left center / cover;
	aspect-ratio: 1440 / 388;
	object-fit: cover;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 40px;
}
.characterBox figure {
	flex-shrink: 0;
	width: fit-content;
}
.characterBox figure img {
	aspect-ratio: 198 / 347;
	object-fit: cover;
	width: 198px;
	margin: 1em 2em 0 2em;
}
.characterBox dl {
	flex: 1;
}
.characterBox dl dt {
	font: 600 22px/1.42 var(--fmG);
}
.characterBox dl dd {
	font: 700 32px/1.42 var(--fmG);
	margin-bottom: .5em;
}
.characterBox dl dd:nth-of-type(2),
.characterBox dl dd:nth-of-type(3),
.characterBox dl dd:nth-of-type(4),
.characterBox dl dd:nth-of-type(5) {
	font: 400 16px/1.42 var(--fmG);
}
.characterBox dl dd:nth-of-type(2) strong,
.characterBox dl dd:nth-of-type(3) strong,
.characterBox dl dd:nth-of-type(4) strong,
.characterBox dl dd:nth-of-type(5) strong {
	font: 400 14px/1.0 var(--fmG);
	display: inline-block;
	background: #DBE1DF;
	padding: 4px 8px;
}

@media screen and (max-width:768px) {
	.indexSet div.content-block > nav > p {
		margin-bottom: 2em;
	}
	.characterBox {
		margin-top: 60px;
		background: url(../img/characterBox_bkg_sp.svg) no-repeat left center;
		background-size: cover;
		aspect-ratio: 1440 / 388;
		object-fit: cover;
		width: 100%;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		align-items: flex-end;
		gap: 40px;
	}
}

/* -- .imgSet -- */
.imgSet {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 1.5em;
}
.imgSet iframe {
	width: 100% ;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.imgSet figcaption {
	margin-top: .5em;
	font: 400 12px/1.42 var(--fmG);
	color: #747474;
}
.imgSet figcaption.v1 {
	margin-top: calc(-10px + .5em);
}

.imgSet.set1 figure {
	flex-shrink: 0;
	width: 100%;
	max-width: 720px;
}
.imgSet.set2 figure {
	flex-shrink: 0;
	width: calc(50% - 5px);
}
.imgSet.set3 figure {
	flex-shrink: 0;
	width: calc(33.3333% - (20px / 3));
}
.imgSet.set4 figure {
	flex-shrink: 0;
	width: calc(25% - (30px / 4));
}
.imgSet.set5 figure {
	flex-shrink: 0;
	width: calc(20% - (40px / 5));
}
.imgSet.set6 figure {
	flex-shrink: 0;
	width: calc(16.6666% - (50px / 6))
}
.imgSet.set7 figure {
	flex-shrink: 0;
	width: 200px;
}

.imgSet.setlsss figure {
	flex-shrink: 0;
	width: calc(16.6% - (30px / 4));
}
.imgSet.setlsss figure:nth-of-type(1) {
	width: calc(50% - (30px / 4));
}

.imgSet.setlss figure,
.imgSet.setlss div {
	flex-shrink: 0;
	width: calc(25% - (20px / 3));
}
.imgSet.setlss figure:nth-of-type(1) {
	width: calc(50% - (30px / 4));
}

.imgSet.setlss div.videoSet iframe {
	aspect-ratio: 560 / 315;
	width: 100%;
	height: auto;
}

/* -- .floarMap -- */
.floarMap {
	max-width: 550px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 3em;
}

/* -- .mapSet -- */
.mapSet {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 30px;
}
.mapSet > div {
	flex-shrink: 0;
	width: calc(50% - 15px);
}
.mapSet > div iframe {
	width: 100%;
}
.mapSet > div a:hover {
	background-position: left 2px center;
	color: #FF1F54;
}
.mapSet > div address {
	font: 500 22px/1.42 var(--fmG);
	margin-bottom: 1.5em;
}
.mapSet > div ul {
	margin-bottom: 3em;
}
.mapSet > div ul li {
	margin-bottom: 1em;
}
.mapSet > div ul li img {
	display: inline-block;
	vertical-align: middle;
}
.mapSet > div ul li a {
	display: block;
	width: fit-content;
	height: 60px;
	padding-left: 65px;
	display: flex;
	align-items: center;
	font: 500 16px/1.0 var(--fmG);
	transition: all .2s;
}
.mapSet > div ul li.googlemap a {
	background: url(../img/icon_googlemap.png) no-repeat left center / 55px;
}
.mapSet > div ul li.applemap a {
	background: url(../img/icon_applemap.png) no-repeat left center / 55px;
}
.mapSet > div ul li a:hover {
	background-position: left 2px center;
	color: #FF1F54;
}

/* -- erecord -- */
#erecord {
	padding-top: 0 !important;
}

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

	/* -- .characterBox -- */
	.characterBox {
		margin-top: 40px;
		gap: 20px;
	}
	.characterBox figure {
		width: 40%;
	}
	.characterBox figure img {
		margin-left: 4.5vw;
	}
	.characterBox dl dt {
		font: 600 13px/1.42 var(--fmG);
	}
	.characterBox dl dd {
		font: 700 18px/1.42 var(--fmG);
		margin-bottom: .5em;
	}
  #globalBody	.characterBox dl dd:has(> strong) {
		font: 400 12px/1.42 var(--fmG);
	}
	#globalBody	.characterBox dl dd:has(> strong) strong {
		font: 400 10px/1.0 var(--fmG);
		display: block;
		width: fit-content;
		background: #DBE1DF;
		padding: 4px 4px;
	}

	/* -- .imgSet -- */
	.facility-info .imgSet {
		gap: 20px 10px;
		margin-bottom: 20px;
	}
	.imgSet.set1 figure {
		flex-shrink: 0;
		width: 100%;
	}
	.imgSet.set2 figure {
		width: 100%;
	}
	.imgSet.set3 figure {
		flex-shrink: 0;
		width: calc(50% - 5px);
	}
	.imgSet.set4 figure {
		flex-shrink: 0;
		width: calc(50% - 5px);
	}
	.imgSet.set4 figure.spfull {
		width: 100%;
	}
	.imgSet.set5 figure {
		flex-shrink: 0;
		width: calc(50% - 5px);
	}
	.imgSet.set6 figure {
		width: calc(33.3333% - (20px / 3));
	}
  .imgSet.set7 figure {
    flex-shrink: 0;
    width: calc(50% - 5px);
  }

	.imgSet.setlsss figure {
		width: calc(33.3333% - (20px / 3));
	}
	.imgSet.setlsss figure:nth-of-type(1) {
		width: 100%;
	}

	.imgSet.setlss figure {
		flex-shrink: 0;
		width: calc(50% - 5px);
	}
	.imgSet.setlss figure:nth-of-type(1) {
		width: 100%;
	}

	#floor1 .imgSet.set5 figure:nth-of-type(1),
	#floor1 .imgSet.set5 figure:nth-of-type(2),
	#floor1 .imgSet.set5 figure:nth-of-type(3) {
		width: calc(33.3333% - (20px / 3));
	}
	#floor1 .imgSet.set5 figure:nth-of-type(4),
	#floor1 .imgSet.set5 figure:nth-of-type(5) {
		width: calc(50% - 5px);
	}

	#terrace .imgSet.set4:nth-of-type(2) figure:nth-of-type(1) {
		width: 100%;
	}
	#terrace .imgSet.set4:nth-of-type(2) figure:nth-of-type(2),
	#terrace .imgSet.set4:nth-of-type(2) figure:nth-of-type(3),
	#terrace .imgSet.set4:nth-of-type(2) figure:nth-of-type(4) {
		width: calc(33.3333% - (20px / 3));
	}

  .imgSet.setslss {
    justify-content: center;
  }
  .imgSet.setslss figure:nth-of-type(1) {
		flex-shrink: 0;
    width: 100%;
  }
  .imgSet.setslss figure:nth-of-type(1) figcaption,
  .imgSet.setslss figure:nth-of-type(1) img {
		width: calc(50% - 5px);
    margin: 0 auto;
  }
  .imgSet.setslss {
    justify-content: center;
  }
  .imgSet.setslss figure:nth-of-type(1) {
		flex-shrink: 0;
    width: 100%;
  }
  .imgSet.setslss figure:nth-of-type(1) figcaption,
  .imgSet.setslss figure:nth-of-type(1) img {
		width: calc(50% - 5px);
    margin: 0 auto;
  }

  #ct .imgSet.setlss figure,
  #ct .imgSet.setlss div {
    width: 100%;
  }

  #xray .imgSet.set4 {
    justify-content: center;
  }
  #xray .imgSet.set4 figure:first-child {
    width: 100%;
  }
  #xray .imgSet.set4 figure:first-child img,
  #xray .imgSet.set4 figure:first-child figcaption {
    width: calc(33.33% - (20px / 3));
    margin: 0 auto;
  }
  #examination .imgSet.set3 figure {
    width: 100%;
  }
  #consultation .imgSet.set3 figure {
    width: 100%;
  }
  #terrace .imgSet.set4:nth-of-type(2) figure:first-child {
    width: 100%;
  }
  #terrace .imgSet.set4:nth-of-type(2) figure:first-child img,
  #terrace .imgSet.set4:nth-of-type(2) figure:first-child figcaption {
		width: calc(50% - 5px);
    margin: 0 auto;
  }

	/* -- .mapSet -- */
	.mapSet > div {
		flex-shrink: 0;
		width:100%;
	}
	.mapSet > div address {
		font: 500 16px/1.42 var(--fmG);
		margin-bottom: 1.5em;
	}
}




/* ------------------------------------------------------------------------------------------
	'beginning-of-the-suetsugu-ah' PAGE Styles
------------------------------------------------------------------------------------------ */

/* -- #intro -- */

#intro .thought {
  position: relative;
  height: auto;
  display: flex;
  align-items: flex-end;
  margin-top: 60px;
  overflow: hidden;
}
#intro .thought .inner {
  width: 100%;
  max-width: 1440px;
  padding: 40px 30px 40px 420px;
  margin: 160px auto 50px auto;
  
  position: relative;
}
#intro .thought .inner::before {
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url(../img/gh_bkg.svg) no-repeat center center / cover;
}
#intro .thought .inner figure {
  position: absolute;
  top: -160px;
  bottom: 0;
  left: 30px;
}
#intro .thought .inner figure img {
  width: auto;
  height: 400px;
}
#intro .thought .inner p {
  position: relative;
  font: 600 24px/1.68 var(--fmM);
}
#intro .thought .inner p::before {
  position: absolute;
  content: '';
  top: 20px;
  left: -80px;
  width: 65px;
  height: 1px;
  background: #333;
}
#intro .thought .inner p strong {
  display: block;
  text-align: right;
  margin-top: 1.5em;
  font: 600 19px/1.0 var(--fmM);
}

@media screen and (max-width:720px) {
  #intro .thought {
    height: auto;
    display: block;
    height: 100vw;
    position: relative;
	margin-top: 0px;
  }
  #intro .thought .inner {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 1440px;
    padding: 120px 30px 40px 50px;
    margin: 0 auto 50px auto;
    background: url(../img/gh_bkg.svg) no-repeat center center / cover;
  }
  #intro .thought .inner figure {
    position: absolute;
    top: -50vw;
    bottom: 0;
    left: 10px;
    right: 10px;
  }
  #intro .thought .inner figure img {
    width: 50%;
    height: auto;
  }
  #intro .thought .inner p {
    font: 600 15px/1.68 var(--fmM);
  }
  #intro .thought .inner p::before {
    position: absolute;
    content: '';
    top: 12px;
    left: -30px;
    width: 25px;
    height: 1px;
    background: #333;
  }
  #intro .thought .inner p strong {
    font: 600 14px/1.0 var(--fmM);
  }

}

@media screen and (max-width:610px) {
  #intro .thought {
    height: 120vw;
  }
  #intro .thought .inner {
    padding: 120px 30px 40px 50px;
    margin: 0 auto 50px auto;
  }
  #intro .thought .inner figure {
    position: absolute;
    top: -50vw;
    bottom: 0;
  }
  #intro .thought .inner figure img {
    width: 50%;
    height: auto;
  }
}

@media screen and (max-width:500px) {
  #intro .thought {
    height: 130vw;
  }
  #intro .thought .inner {
    padding: 120px 30px 40px 50px;
    margin: 0 auto 50px auto;
  }
  #intro .thought .inner figure {
    position: absolute;
    top: auto;
    bottom: 180px;
  }
  #intro .thought .inner figure img {
    width: 50%;
    height: auto;
  }
}

@media screen and (max-width:400px) {
  #intro .thought {
    height: 140vw;
  }
  #intro .thought .inner {
    padding: 120px 30px 40px 50px;
    margin: 0 auto 50px auto;
  }
  #intro .thought .inner figure {
    top: auto;
    bottom: 190px;
  }
  #intro .thought .inner figure img {
    width: 50%;
    height: auto;
  }
}

@media screen and (max-width:350px) {
  #intro .thought {
    height: 150vw;
  }
  #intro .thought .inner {
    padding: 120px 30px 40px 50px;
    margin: 0 auto 50px auto;
  }
  #intro .thought .inner figure {
    top: auto;
    bottom: 210px;
  }
  #intro .thought .inner figure img {
    width: 50%;
    height: auto;
  }
}



/* -- #next -- */

#next div.content-block > div p.catch {
  font: 600 22px/1.42 var(--fmM);
  margin: 100px 0 50px;
}
#next div.content-block > div aside.sign {
  font: 600 20px/1.42 var(--fmM);
}
#next div.content-block > div aside.sign strong {
  font: 600 16px/1.42 var(--fmM);
}
@media screen and (max-width:768px) {
	#next div.content-block > div p.catch {
		margin: 50px 0 25px;
	}
  #next div.content-block > div aside.sign {
    font: 600 18px/1.42 var(--fmM);
  }

}


/* ------------------------------------------------------------------------------------------
	'recruit' PAGE Styles
------------------------------------------------------------------------------------------ */

/* -- common -- */
body#contents #globalBody section.recruit div.content-block header {
	border-top: 1px solid #2680EB;
	margin-bottom: 30px;
}
body#contents #globalBody section.recruit div.content-block header h2,
body#contents #globalBody section.recruit div.content-block header h3 {
	background-image: url(../img/icon_h3_circle_recruit.svg)
}

/* ---------------------------------------------
	'recruit' ‐ Styles
--------------------------------------------- */

body.recruit #pageHeader {
  background: url(../img/ph_bkg_recruit.png) no-repeat center center / cover;
}

@media screen and (max-width:768px) {
  body.recruit #pageHeader {
    background: url(../img/ph_bkg_recruit_sp.jpg) no-repeat center right / cover;
  }
}
body.recruit #pageHeader div.hgrp {
	max-width: 1350px;
}
body.recruit #pageHeader h1 {
	font: 700 16px/1.42 var(--fmG);
}
body.recruit #pageHeader p {
	font: 700 20px/1.68 var(--fmG);
	text-shadow: 0 0 3px #333;
}
body.recruit #pageHeader p.catch {
	margin: 30px 0;
	font: 700 44px/1.42 var(--fmG);
}
@media screen and (max-width:1280px) {
	body.recruit #pageHeader p {
		font-size: 16px;
	}
	body.recruit #pageHeader p.catch {
		font-size: 38px;
	}
}
@media screen and (max-width:768px) {
	body.recruit #pageHeader h1 {
		font-size: 14px;
	}
	body.recruit #pageHeader p {
		font-size: 14px;
	}
	body.recruit #pageHeader p.catch {
		margin: 20px 0;
		font-size: 32px;
	}
}


/* -- relatedNav -- */
body#contents.recruit #globalBody #relatedNav div.content-block header {
	display: none;
}

body#contents #recruitNotice div.content-block > div.newsSet ul li {
	border-bottom: 1px solid #ccc;
}
body#contents #recruitNotice div.content-block > div.newsSet ul li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 15px 15px 15px 70px;
	min-height: 70px;
	font: 400 15px/1.42 var(--fmG);
}
body#contents #recruitNotice div.content-block > div.newsSet ul li a:hover {
	color: #2680EB;
}
body#contents #recruitNotice div.content-block > div.newsSet ul li a time {
	position: absolute;
	left: 15px;
	top: 15px;
	font: 400 15px/1.2 var(--fmG);
	text-align: center;
}
body#contents #recruitNotice div.content-block > div.newsSet ul li a p {
	flex:1;
	font: 700 13px/1.42 var(--fmG);
	margin: 0;
	padding-right: 30px;
	background: url(../img/icon_h3_arr.svg) no-repeat right 3px center / 20px;
	transition: all .2s;
}
body#contents #recruitNotice div.content-block > div.newsSet ul li a:hover p {
	background: url(../img/icon_h3_arr.svg) no-repeat right 0px center / 20px;
}
body#contents #recruitNotice div.content-block > div.newsSet ul li a p em {
	display: block;
	font-style: normal;
	font: 400 15px/1.42 var(--fmG);
}



@media screen and (max-width:768px) {
	body#contents #recruitNotice div.content-block > div.newsSe {
		flex-direction: column;
	}
}





/* ---------------------------------------------
	'recruit/message-from-senior/' ‐ Styles
--------------------------------------------- */

body.message-from-senior #pageHeader {
  background: url(../img/ph_bkg_senior.png) no-repeat center center / cover;
}
@media screen and (max-width:768px) {
  body.message-from-senior #pageHeader {
    background: url(../img/ph_bkg_senior_sp.jpg) no-repeat center center / cover;
  }
}

/* -- #pageHeader -- */
body.message-from-senior #pageHeader div.hgrp::before {
  content: 'Message From Senior';
}






/* ---------------------------------------------
	'recruit/a-day-in-the-staff/' ‐ Styles
--------------------------------------------- */

body.a-day-in-the-staff #pageHeader {
  background: url(../img/ph_bkg_staff.png) no-repeat center center / cover;
}
@media screen and (max-width:768px) {
  body.a-day-in-the-staff #pageHeader {
    background: url(../img/ph_bkg_staff_sp.jpg) no-repeat center center / cover;
  }
}

/* -- #pageHeader -- */
body.a-day-in-the-staff #pageHeader div.hgrp::before {
  content: 'A day in the staff';
}



/* ---------------------------------------------
	'recruit/a-day-in-the-staff/kiji' ‐ Styles
--------------------------------------------- */

/* -- profile -- */
#profile div.content-block > div .catchImage {
	position: relative;
	margin-bottom: 30px;
}
#profile div.content-block > div .catchImage > div {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 4vw;
	height: fit-content;
	margin: auto 0;
}
#profile div.content-block > div .catchImage > div p {
	background: rgba(255,255,255,.7);
	font: 700  clamp(12px, 2vw, 18px)/1.42 var(--fmG);
	width: fit-content;
	padding: 1vw;
	margin-bottom: 0;
}
#profile div.content-block > div .catchImage > div p.catch {
	font: 700 clamp(20px, 5vw, 48px)/1.68 var(--fmG);
	margin-bottom: 3vw;
}

#profile div.content-block > div table {
	margin-bottom: 3em;
}
#profile div.content-block > div table caption {
	white-space: nowrap;
}
#profile div.content-block > div table th {
	position: relative;
	padding: 0 20px 0 0;
	font-weight: normal;
	text-align: left;
	white-space: nowrap;
}
#profile div.content-block > div table th::after {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	bottom: 0;
	content:'：';
}
#profile div.content-block > div table caption {
	padding-top: .5em;
	text-align: left;
}
#profile div.content-block > div table caption a {
	font: 400 14px/1.42 var(--fmG);
	color: #0D478C;
}

@media screen and (max-width:768px) {
	#profile div.content-block > div .catchImage img {
		position: relative;
		aspect-ratio: 320 / 440;
		object-fit: cover;
		object-position: center center;
	}
	#profile div.content-block > div .catchImage > div {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 4vw;
		left: 4vw;
		height: fit-content;
		margin: auto 0 0 0;
	}
	#profile div.content-block > div table td,
	#profile div.content-block > div table th {
		font: 400 14px/1.42 var(--fmG);
		vertical-align: top;
	}

}


/* -- timeFlow -- */

#timeFlow {
  background: url(../img/timeFlow_bkg_02.svg) no-repeat  center top 20vw / contain;
  background-attachment: fixed;
}
#timeFlow div.content-block > header {
	margin-bottom: 50px !important;
}
#timeFlow div.content-block > div > div {
	padding-left: 50px;
	padding-bottom: 40px;
	background: url(../img/timeFlow_bkg.svg) repeat-y left 12px top / 3px;
}
#timeFlow div.content-block > div > div h4 {
	position: relative;
  width: fit-content;
	font: 400 40px/1.0 var(--fmG);
	color: #FC7CC6;
	margin: -20px 0 20px 0;
}
#timeFlow div.content-block > div > div p {
	font: 400 16px/1.68 var(--fmG);
}
#timeFlow div.content-block > div > div:last-child {
	background: none;
}
#timeFlow div.content-block > div h4 strong {
  position: absolute;
  z-index: 4;
  top: -2.2em;
  right: -8em;
  font: 400 16px/1.3 var(--fmG);
  text-align: center;
  background: url(../img/note_pop.svg) no-repeat center center / 113px;
  width: 116px;
  height: 78px;
  padding-top: 16px;
  color: #45ABFF;
}
#timeFlow div.content-block > div > div h4::before {
	position: absolute;
	content: '';
	top: -6px;
	bottom: 0;
	left: -65px;
	width: 60px;
	height: 60px;
}
#timeFlow div.content-block > div > div h5 {
	position: relative;
  width: fit-content;
	font: 600 22px/1.42 var(--fmG);
	margin: 0 0 10px 0;
}
#timeFlow div.content-block > div h5 strong {
  position: absolute;
  z-index: 4;
  top: -3.2em;
  right: -8em;
  font: 400 16px/1.3 var(--fmG);
  text-align: center;
  background: url(../img/note_pop.svg) no-repeat center center / 113px;
  width: 116px;
  height: 78px;
  padding-top: 16px;
  color: #45ABFF;
}

#timeFlow div.content-block > div > div h5:has(strong) {
  margin-top: 4.5em;
}

#timeFlow div.content-block > div > div h4.t0800::before {background: url(../img/timeflow_time_0800.svg) no-repeat center center / 60px;}
#timeFlow div.content-block > div > div h4.t0830::before {background: url(../img/timeflow_time_0830.svg) no-repeat center center / 60px;}
#timeFlow div.content-block > div > div h4.t0900::before {background: url(../img/timeflow_time_0900.svg) no-repeat center center / 60px;}
#timeFlow div.content-block > div > div h4.t1300::before {background: url(../img/timeflow_time_1300.svg) no-repeat center center / 60px;}
#timeFlow div.content-block > div > div h4.t1400::before {background: url(../img/timeflow_time_1400.svg) no-repeat center center / 60px;}
#timeFlow div.content-block > div > div h4.t1700::before {background: url(../img/timeflow_time_1700.svg) no-repeat center center / 60px;}

@media screen and (max-width:768px) {
	#timeFlow div.content-block > div > div {
		padding-left: 35px;
		background: url(../img/timeFlow_bkg.svg) repeat-y left 12px top;
		background-size: 2px;
	}
	#timeFlow div.content-block > div > div h4 {
		font: 400 25px/1.0 var(--fmG);
		margin: -20px 0 20px 0;
	}
	#timeFlow div.content-block > div > div h4::before {
		left: -42px;
		width: 40px;
		height: 40px;
	}
	#timeFlow div.content-block > div > div h4.t0800::before {background: url(../img/timeflow_time_0800.svg) no-repeat center center / 40px;}
	#timeFlow div.content-block > div > div h4.t0830::before {background: url(../img/timeflow_time_0830.svg) no-repeat center center / 40px;}
	#timeFlow div.content-block > div > div h4.t0900::before {background: url(../img/timeflow_time_0900.svg) no-repeat center center / 40px;}
	#timeFlow div.content-block > div > div h4.t1300::before {background: url(../img/timeflow_time_1300.svg) no-repeat center center / 40px;}
	#timeFlow div.content-block > div > div h4.t1400::before {background: url(../img/timeflow_time_1400.svg) no-repeat center center / 40px;}
	#timeFlow div.content-block > div > div h4.t1700::before {background: url(../img/timeflow_time_1700.svg) no-repeat center center / 40px;}

  #timeFlow div.content-block > div h5 strong,
  #timeFlow div.content-block > div h4 strong {
    position: absolute;
    z-index: 4;
    top: -2.5em;
    right: -7.3em;
    font: 400 12px/1.42 var(--fmG);
    text-align: center;
    background: url(../img/note_pop.svg) no-repeat center center / cover;
    width: 80px;
    height: 54px;
    padding-top: 7px;
    color: #45ABFF;
  }
	#timeFlow div.content-block > div > div h5 {
		font: 600 18px/1.42 var(--fmG);
	}
	#timeFlow div.content-block > div > div h5:has(strong) {
		margin-top: 2.0em;
	}

}


/* -- devition -- */


/* -- talent -- */
#talent div.content-block > div .banner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
#talent div.content-block > div .banner figure img {
  aspect-ratio: 1000 / 437;
  object-fit: cover;
  object-position: right bottom;
  overflow: hidden;
}
#talent div.content-block > div .banner figure::before {
  position: absolute;
  content: '';
  width: 60%;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -70px;
  background: rgba(255,255,255,.8);
  transform: skewX(165deg);
}
#talent div.content-block > div .banner > div {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  padding: 30px 0px 30px 30px;
}
#talent div.content-block > div .banner > div strong {
  display: block;
  flex-shrink: 0;
  font: 700 clamp(22px,3vw,38px)/1.42 var(--fmG);
  margin-bottom: 20px;
}
#talent div.content-block > div .banner > div p {
  font: 400 clamp(12px,1.5vw,16px)/1.68 var(--fmG);

}
#talent div.content-block > div .banner > div p.reservationButton {
  margin-bottom: 0;
}
#talent div.content-block > div .banner > div p.reservationButton a {
  display: block;
  width: fit-content;
  background: #2680EB;
  padding: 20px 60px;
  border-radius: 3em;
  font: 500 clamp(16px,2vw,23px)/1.0 var(--fmG);
  color: #fff;
  text-align: center;
}

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

  #talent div.content-block > div .banner figure img {
    aspect-ratio: 437 / 700;
    object-fit: cover;
    object-position: right bottom;
  }
  #talent div.content-block > div .banner figure::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 50%;
    z-index: 1;
    top: -50px;
    bottom: 0;
    left: 0px;
    background: rgba(255,255,255,.8);
    transform: skewX(0deg);
    transform: skewY(5deg);
  }
  #talent div.content-block > div .banner > div {
    position: absolute;
    z-index: 2;
    top: -50px;
    bottom: 50%;
    right: 0;
    left: 0;
    width: 100%;
    padding: 10px 10px 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #talent div.content-block > div .banner > div strong {
    font: 700 clamp(22px,5vw,38px)/1.42 var(--fmG);
  }
  #talent div.content-block > div .banner > div p {
    font: 400 clamp(14px,1.5vw,16px)/1.68 var(--fmG);

  }
  #talent div.content-block > div .banner > div p.reservationButton a {
    width: 100%;
    background: #2680EB;
    padding: 20px 60px;
    border-radius: 3em;
    font: 500 22px/1.0 var(--fmG);
    color: #fff;
    text-align: center;
  }
}

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

  #talent div.content-block > div .banner figure img {
    aspect-ratio: 437 / 1000;
    object-fit: cover;
    object-position: right bottom;
  }
  #talent div.content-block > div .banner figure::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 60%;
    z-index: 1;
    top: -50px;
    bottom: 0;
    left: 0px;
    background: rgba(255,255,255,.8);
    transform: skewX(0deg);
    transform: skewY(5deg);
  }
  #talent div.content-block > div .banner > div {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 50%;
    right: 0;
    left: 0;
    width: 100%;
    padding: 10px 10px 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #talent div.content-block > div .banner > div strong {
    font: 700 clamp(22px,5vw,38px)/1.42 var(--fmG);
  }
  #talent div.content-block > div .banner > div p {
    font: 400 clamp(14px,1.5vw,16px)/1.68 var(--fmG);

  }
  #talent div.content-block > div .banner > div p.reservationButton a {
    width: 100%;
    background: #2680EB;
    padding: 20px 60px;
    border-radius: 3em;
    font: 500 22px/1.0 var(--fmG);
    color: #fff;
    text-align: center;
  }
}



/* -- voice -- */
#voice {
	background: url(../img/voice_bkg.svg) no-repeat center center / cover;
}
#voice div.content-block > div h2 {
	width: fit-content;
	margin: 0 auto;
	color: #333 !important;
	padding: 15px 30px;
	background: url(../img/icon_catfoot.svg) no-repeat right center / 50px;
}
#voice div.content-block > div p {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  #voice div.content-block > div h4 {
    width: fit-content;
    margin: 0 auto;
    color: #333 !important;
    padding: 15px 30px 15px 0px;
    background: url(../img/icon_catfoot.svg) no-repeat right center / 50px;
  }

}

/* ---------------------------------------------
	'recruit/tour_inquiry-form' ‐ Styles
--------------------------------------------- */

#globalBody #inquiry div.content-block {
  width: 100%;
  max-width: 1060px;
	margin: 0 auto;
}
#inquiry div.content-block > div .typeSet {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
	margin: 60px 20px;
}
#inquiry div.content-block > div .typeSet > div {
  flex-shrink: 0;
  width: calc(50% - 20px);
  padding: 20px 65px 20px 20px;
  border: 1px solid #C9C9C9;
  background: #fff url(../img/icon_circle_down.svg) no-repeat right 15px center / 35px;
  cursor: pointer;
}
#inquiry div.content-block > div .typeSet > div h3,
#inquiry div.content-block > div .typeSet > div h4 {
  font: 700 22px/1.0 var(--fmG);
	color: #333;
}
#inquiry div.content-block > div .typeSet > div p {
  font: 400 14px/1.42 var(--fmG);
  margin: 0;
}
#inquiry div.content-block > div .typeSet > div.active,
#inquiry div.content-block > div .typeSet > div:hover {
  border: 1px solid #F8E7F3;
  background: #F8E7F3 url(../img/icon_circle_down.svg) no-repeat right 15px center / 35px;
}
#inquiry div.content-block > div .typeSet > div:hover {
  opacity: 0.80;
}
#inquiry div.content-block > div .phone {
	font: 500 26px/1.0 var(--fmG);
	text-align: center;
}
#inquiry div.content-block > div .button a,
body.no404 #globalBody .blue-button a {
	display: block;
	width: fit-content;
	margin: 0 auto;
	font: 600 18px/1.0 var(--fmG);
	background: #0C488B url(../img/icon_homeBack.svg) no-repeat right 20px center;
	text-align: center;
	padding: 15px 80px 15px 30px;
	color: #fff;
	border-radius: 3em;
}

#inquiry div.content-block > div table {
	border-top: 1px solid #ccc;
	width: 100%;
	margin-bottom: 30px;
}
#inquiry div.content-block > div table tr {
	border-bottom: 1px solid #ccc;
}
#inquiry div.content-block > div table tr th,
#inquiry div.content-block > div table tr td {
	padding: 20px;
}
#inquiry div.content-block > div table tr th {
	font: 400 16px/1.42 var(--fmG);
	text-align: left;
}
#inquiry div.content-block > div table tr td {
	background: #F7F5F2;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 10px;
}
#inquiry div.content-block > div table tr td p {
	margin: 0;
}
#inquiry div.content-block > div table tr td label {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
#inquiry div.content-block > div table tr td label strong {
	font: 400 16px/1.0 var(--fmG);
}
#inquiry div.content-block > div table tr td label input,
#inquiry div.content-block > div table tr td label textarea {
	flex: 1;
}
#inquiry div.content-block > div table tr td label input[type="date"] {
	flex: 0.5;
}
#inquiry div.content-block > div table tr td p.confirm {
	color: #FF1F54;
	font: 700 16px/1.0 var(--fmG);
}
#inquiry div.content-block > div table tr td p.confirm strong {
	font: 400 16px/1.0 var(--fmG);
	color: #333;
	padding-right: 15px;
}

#inquiry div.content-block > div table tr:nth-of-type(3) td select {
	width: 185px;
}
#inquiry div.content-block > div table tr:nth-of-type(4) td select {
	width: 100px;
}
#inquiry div.content-block > div table tr:nth-of-type(4) td select option {
	text-align: center;
}


#inquiry div.content-block > div form > h3 {
	font: 500 16px/1.42 var(--fmG);
	text-align: center;
	color: #333;
}
#inquiry div.content-block > div form .privacyBox {
	overflow-y: scroll;
	height: 100px;
	padding: 20px;
	border: 1px solid #C8C8C8;
	margin-bottom: 20px;
}
#inquiry div.content-block > div form .privacyBox p {
	font: 400 12px/1.42 var(--fmG);
	color: #707070;
}
#inquiry div.content-block > div form > p {
	text-align: center;
}
#inquiry div.content-block > div form > p a {
	color: #347BD8;
	padding:0 .2em;
}
#inquiry div.content-block > div form .submit {
	margin-bottom: 30px;
	text-align: center;
}
#inquiry div.content-block > div form .submit input {
	max-width: 370px;
	width: 100%;
	padding: 20px;
	background: #0D478C;
	font: 700 24px/1.0 var(--fmG);
	color: #fff;
	border-radius: 3em;
	cursor: pointer;
}
#inquiry div.content-block > div form .submit input:hover {
	opacity: 0.80;
}

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

	#inquiry div.content-block > div .typeSet {
		gap: 10px;
		margin: 60px 0px;
	}
	#inquiry div.content-block > div .typeSet > div {
  	width: calc(50% - 5px);
		padding: 10px 10px 45px 10px;
		background: #fff url(../img/icon_circle_down.svg) no-repeat center bottom 10px / 20px;
		cursor: pointer;
	}

  #inquiry div.content-block > div .typeSet > div h3,
  #inquiry div.content-block > div .typeSet > div h4 {
		margin: 15px 0 25px 0;
		padding: 0;
		font: 600 17px/1.0 var(--fmG);
		text-align: center;
	}
	#inquiry div.content-block > div .typeSet > div p {
		font: 400 14px/1.42 var(--fmG);
		margin: 0;
	}
	#inquiry div.content-block > div .typeSet > div.active {
		border: 1px solid #F8E7F3;
		background: #F8E7F3 url(../img/icon_circle_down.svg) no-repeat center bottom 10px / 20px;
	}
	#inquiry div.content-block > div .typeSet > div:hover {
		opacity: 0.80;
	}
	#inquiry div.content-block > div .phone {
		font: 500 22px/1.0 var(--fmG);
		text-align: center;
	}
	#inquiry div.content-block > div .button a,
	body.no404 #globalBody .blue-button a {
		display: block;
		width: fit-content;
		margin: 0 auto;
		font: 600 16px/1.0 var(--fmG);
		background: #0C488B url(../img/icon_homeBack.svg) no-repeat right 20px center;
		text-align: center;
		padding: 15px 60px 15px 20px;
		color: #fff;
		border-radius: 3em;
	}

	#inquiry div.content-block > div table {
		border-top: none;
	}
	#inquiry div.content-block > div table tr {
		border-bottom: none;
	}
	#inquiry div.content-block > div table tr th,
	#inquiry div.content-block > div table tr td {
		display: block;
		padding: 10px 15px;
		border: none;
	}
	#inquiry div.content-block > div table tr th {
		font: 400 16px/1.42 var(--fmG);
		text-align: left;
		
	}
	#inquiry div.content-block > div table tr td {
		border: none;
		margin-bottom: 20px;
	}
	#inquiry div.content-block > div table tr:nth-of-type(4) td label {
		flex-wrap: wrap;
		margin-bottom: 15px;
	}
	#inquiry div.content-block > div table tr td label strong {
		flex-shrink: 0;
		width: 100%;
	}
	#inquiry div.content-block > div table tr td label input {
		margin-bottom: 10px;
	}
}

#globalBody .recruit .content-block > div p {
  font: 400 16px/1.42 var(--fmG);
}

.recruit .content-block > div dl {
  background: #fff;
  border: 2px solid #E0F1FF;
  border-radius: 10px;
  margin-bottom: 1em;
  padding: 20px;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}

.recruit .content-block > div dl dt {
  font: 600 20px/1.42 var(--fmG);
  color: #0C488B;
  margin-bottom: 5px;
}

.recruit .content-block > div dl dd {
  margin-bottom: 5px;
}


/* ---------------------------------------------
	'hospital/staff-introduction' ‐ Styles
--------------------------------------------- */

#globalBody div.staffList {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 10px;
}
#globalBody div.staffList > div {
	position: relative;
	flex-shrink: 0;
	width: calc(16.66% - (10px * 5 / 6));
}
#globalBody div.staffList > div a > div {
	position: absolute;
	right: 5px;
	bottom: 5px;
	left: 5px;
	background: rgba(255,255,255,.7) url(../img/icon_reception_circle.svg) no-repeat right 5px center / 20px;
	border-radius: 5px;
	padding: 10px;
}
#globalBody div.staffList > div:hover {
	opacity: 0.80;
}

#globalBody div.staffList > div a > div p {
	margin: 0 !important;
	font: 400 16px/1.42 var(--fmG);
  padding-right: 20px;
}
#globalBody div.staffList > div a > div p.post {
	font: 600 12px/1.42 var(--fmG);
	color:#0C488B;
}
#globalBody div.staffList > div a > div p.name {
	font: 700 18px/1.42 var(--fmG);
    letter-spacing: -.04em;
}
#globalBody div.staffList > div a > div p.division {
	font: 700 12px/1.42 var(--fmG);
}
#globalBody div.staffList > div a figure {
	background-color: #DBE1DF;
	width: 100%;
	height: 100%;	
}
#globalBody div.staffList > div a figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width:1000px) {
	#globalBody div.staffList {
		gap: 10px;
	}
	#globalBody div.staffList > div {
		position: relative;
		flex-shrink: 0;
		width: calc(33.33% - (10px * 2 / 3));
	}
	#globalBody div.staffList > div a > div {
		padding: 5px;
	}

}

@media screen and (max-width:768px) {
  #globalBody div.staffList > div a > div {
    background: rgba(255,255,255,.7) url(../img/icon_reception_circle.svg) no-repeat right 5px center / 12px;
  }
	#globalBody div.staffList > div a > div p.post {
		font: 600 10px/1.42 var(--fmG);
	}
	#globalBody div.staffList > div a > div p.name {
		font: 600 clamp(10px,2vw,18px)/1.42 var(--fmG);
	}
	#globalBody div.staffList > div a > div p.division {
		font: 400 9px/1.42 var(--fmG);
	}
}

/* ---------------------------------------------
	'news' ‐ Styles
--------------------------------------------- */


/* -- #news -- */
body#contents #news div.content-block > header {
	border: none !important;
}
body#contents #news div.content-block > header h2 {
	display: none;
}
body#contents #news div.content-block > header p {
	display: none;
}
body#contents #news div.content-block > header ul {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px 0;
	margin-bottom: 40px;
}
body#contents #news div.content-block > header ul li {
	position: relative;
}
body#contents #news div.content-block > header ul li a {
	font: 600 15px/1.0 var(--fmG);
	padding: 15px 15px 15px 25px;
}
body#contents #news div.content-block > header ul li.active a {
	padding: 13px 15px 15px 25px !important;
	background: url(../img/icon_h3_circle.svg) no-repeat left center / 20px;
}
body#contents #news div.content-block > header ul li.important a {
	color: #FF1F54;
}


body#contents #news div.content-block > div.newsSet ul li a {
  padding: 8px 15px 8px 70px;
	background: url(../img/icon_h3_arr.svg) no-repeat right 3px center / 15px;
	transition: all .2s;
}
body#contents #news div.content-block > div.newsSet ul li a:hover {
	background: url(../img/icon_h3_arr.svg) no-repeat right 0px center / 15px;
	background-color: #FBF2F9;
}
body#contents #news div.content-block > div.newsSet ul li.important time {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background: #FFEBF0;
	display: block;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	color: #FF1F54;
}
body#contents #news div.content-block > div ul li.important p {
	color: #FF1F54;
}

body#contents #news div.content-block > div.pagination .pagination_inner {
	display: flex;
	justify-content: center;
	gap: 10px;
}
body#contents #news div.content-block > div.pagination .pagination_inner span,
body#contents #news div.content-block > div.pagination .pagination_inner a {
	flex-shrink: 0;
	width: fit-content;
}
body#contents #news div.content-block > div.pagination .pagination_inner span,
body#contents #news div.content-block > div.pagination .pagination_inner a {
	border: 1px solid #B4B4B4;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
  padding: 0;
}
body#contents #news div.content-block > div.pagination .pagination_inner a:hover {
	border: 1px solid #666;
}
body#contents #news div.content-block > div.pagination .pagination_inner span {
	background: #EBEBEB;
}


@media screen and (max-width:768px) {
	body#contents #news div.content-block > header ul {
		width: 100%;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		gap: 5px;
		margin-bottom: 0px;
	}
	body#contents #news div.content-block > header ul li a {
		font: 600 14px/1.0 var(--fmG);
		padding: 10px 10px 10px 20px;
	}
	body#contents #news div.content-block > header ul li.active a {
		padding: 8px 10px 10px 20px !important;
		background: url(../img/icon_h3_circle.svg) no-repeat left center / 15px;
	}

	body#contents #news div.content-block > div ul li a {
  	padding: 5px 15px 5px 70px;

	}
	body#contents #news div.content-block > div ul li a,
	body#contents #news div.content-block > div ul li a time,
	body#contents #news div.content-block > div ul li a p {
		font: 400 13px/1.3 var(--fmG);
	}
	body#contents #news div.content-block > div ul li p br,
	body#contents #news div.content-block > div ul li p strong {
		display: none;
	}
}


/* -- #post -- */
body#contents #post div.content-block > header {
	border: none !important;
}
body#contents #globalBody section#post div.content-block > header p {
  flex-shrink: 0;
  width: 100%;
  margin-top: 10px;
	padding: 0;
  font: 600 14px/1.0 var(--fmG);
  color: #FF1F54;
}
body#contents #globalBody section#post div.content-block > header p time {
  display: inline-block;
  font: 400 14px/1.0 var(--fmG);
  color: #333;
  padding-left: 15px;
}

body#contents #post div.content-block > div figure {
	margin-bottom: 30px;
}
body#contents #post div.content-block > div figure img {
	width: fit-content;
}
body#contents #post div.content-block > div h5 {
	font: 600 18px/1.0 var(--fmG);
	margin-bottom: .5em;
}

@media screen and (max-width:768px) {
  body#contents #globalBody section#post div.content-block > header p {
    text-align: right;
  }

}

/* ---------------------------------------------
	'privacy' ‐ Styles
--------------------------------------------- */

#privacy {
	padding-top: 0 !important;
}
#privacy div.content-block div h3 {
	font: 700 22px/1.42 var(--fmG);
	margin: 1em 0 1em 0;
}
#privacy div.content-block div h4 {
	margin: 1em 0 1em 0;
	color: #333 !important;
	font: 700 18px/1.42 var(--fmG);
}
#privacy div.content-block div p {
	margin-bottom: 3em !important;
}
#privacy div.content-block div ul {
	padding-left:2em;
	margin-bottom: 3em;
}
#privacy div.content-block div ul li {
	list-style-type: disc;
}
#privacy div.content-block div p + ul {
	margin-top: -1.5em !important;
}


#parking figure.parkingImg {
	max-width: 400px;
}

#globalBody section#privacy-policy {
	padding-top: 0;
}
#globalBody section#privacy-policy div.content-block div h3 {
	color: #333;
	font-size: 16px;
	margin-top: 2em;
}
#globalBody section#privacy-policy div.content-block div p {
	margin-bottom: 0.5em;
	padding-left: 1em;
	font-size: 16px;
}
#globalBody section#privacy-policy div.content-block div ul {
	padding-left: 2.5em;
	margin-bottom: 0.5em;
	list-style-type: disc;
	font-size: 16px;
}
@media screen and (max-width:768px) {
	#globalBody section#privacy-policy div.content-block div h3 {
		font-size: 15px;
	}
	#globalBody section#privacy-policy div.content-block div p {
		font-size: 14px;
	}
	#globalBody section#privacy-policy div.content-block div ul {
		font-size: 14px;
	}
}


#visitForm,
#inquiryForm {
	display: none;
}
#visitForm.active,
#inquiryForm.active {
	display: block;
}


#inquiry input.is-error,
#inquiry select.is-error,
#inquiry textarea.is-error {
	border-color: #c00;
	background-color: #fff5f5;
}

#inquiry .form-error-summary {
	display: none;
	margin-bottom: 1em;
	padding: 1em;
	border: 1px solid #c00;
	background-color: #fff5f5;
	color: #c00;
}
#inquiry .form-error-summary.is-visible {
	display: block;
}
#inquiry .form-error-summary ul {
	margin: 0;
	padding-left: 1.2em;
}
#inquiry .form-error-summary li {
	margin: 0.25em 0;
}

.p-staff-right {
	font-size: 12px;
	text-align: right;
	padding: 0 30px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width:768px) {
	.p-staff-right {
		padding: 0 10px;
	}
}