@charset "utf-8";
/* reset 
---------------------------------------- */
* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
html {
  height: 100%;
  font-size: 62.5% /* 10px */
}
body {
  height: 100%;
  min-width: 320px;
  width: auto !important;
  width: 320px;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
}
caption, th, td {
  text-align: left;
}
img {
	max-width: 100%;
/*	width: 100%;
	height: auto;*/
}
@media screen and (max-width: 768px) {
	br.pc-only {
		display: none;
	}
}
@media screen and (min-width: 768px) {
	br.tab {
		display: none;
	}
}
@media screen and (min-width: 480px) {
	br.sp {
		display: none;
	}
}
/* clear 
---------------------------------------- */
.cbox {
  zoom: 100%;
}
.cbox:after {
  content: " ";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}
.clear {
  clear: both;
  height: 1px;
  font-size: 1px;
}
.clear hr {
  display: none;
}

/* common
---------------------------------------- */
.ja {
  font-family: "Noto Sans JP", sans-serif;
}
.ja_serif {
  font-family: "Noto Serif JP", serif;
}
.en {
  font-family: "EB Garamond", serif;
}
a {
  text-decoration: none;
  color: #505050;
}
a:hover {
  opacity: 0.7;
}

/* layout
---------------------------------------- */
body {
  background: linear-gradient(to bottom, #c9dcf2, 10%, #ffffff) no-repeat;
  font-family: "Noto Sans JP", serif, sans-serif;
  color: #505050;
}
#wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* header
---------------------------------------- */
#header {
}
#header #header-inner {
/*	display: flex;
	justify-content: space-between;
	align-items: center;*/
	max-width: 1100px;
	margin: 0 auto;
	padding-top: 42px;
}
#header p.logo img {
	vertical-align: middle;
}

@media screen and (max-width: 1200px) {
	#header #header-inner {
		margin: 0 5%;
	}
}
@media screen and (max-width: 480px) {
	#header p.logo {
		width: 66%;
	}
	#header p.logo img {
		width: 100%;
		height: auto;
	}
}

/* floating-bnr */
div.floating-bnr {
	position: fixed;
	top: 36px;
	right: calc(50% - 550px);
	z-index: 5;
	font-size: 1.6rem;
}
div.floating-bnr a {
	display: inline-block;
	padding: 0.8em 1.2em;
	border-radius: 12px;
	border: 1px solid #ffffff;
	background: #6496dd;
	color: #ffffff;
}
div.floating-bnr a img {
	margin-right: 5px;
	vertical-align: middle;
}

@media screen and (max-width: 1200px) {
	div.floating-bnr {
		right: 5%;
	}
}
@media screen and (max-width: 768px) {
	div.floating-bnr a {
		padding: 0.8em 0.8em;
	}
	div.floating-bnr a img {
		margin-right: 0;
	}
	div.floating-bnr a span {
		display: none;
	}
}

/* main
---------------------------------------- */
#main {
}

section h1,
section h2,
section h3 {
	font-weight: normal;
}
section div.section-inner {
	max-width: 1100px;
	/*margin: 0 8%;*/
	margin: 0 auto;
}
section div.section-inner div,
section div.section-inner p,
section div.section-inner th,
section div.section-inner td {
	line-height: 2.6rem;
	font-size: 1.6rem;
}
section div.section-inner p.summary {
	line-height: 3.2rem;
	font-size: 2.0rem;
}
section div.section-inner.fixedform {
	margin-bottom: 80px;
}
section div.section-inner.fixedform h2 {
	margin-bottom: 1em;
	padding: 0.3em 1em;
	background: #1a2a7e;
	color: #ffffff;
	font-size: 2.2em;
}

@media screen and (max-width: 1200px) {
	section div.section-inner {
		margin: 0 5%;
	}
}

/* intro */
#intro {
	padding-top: 70px;
	text-align: center;
}
#intro h1 {
	margin-bottom: 0.2em;
	font-size: 4.8rem;
}
#intro h2 {
	margin-bottom: 2em;
	font-size: 3.2rem;
}
#intro div.mainimg {
	text-align: center;
}
#intro div.mainimg img {
	/*max-width: 1512px;*/
	width: 90%;
	height: auto;
}
#intro #outline {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	margin: 70px 0 26px;
	padding-top: 90px;
}
#intro #outline div.img {
	position: absolute;
	top: 0;
	left: calc(50% - 130px);
	z-index: 2;
}
#intro #outline div.block {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 50%;
	z-index: 1;
}
#intro #outline div.block h3 {
	margin-bottom: 10px;
}
#intro #outline div.block h3 img {
	max-width: 254px;
	width: 100%;
	height: auto;
}
#intro #outline div.block ul {
	flex-grow: 1;
	padding: 1em 1em;
	border-radius: 12px;
	text-align: left;
}
#intro #outline div.block ul li {
	margin-bottom: 0.2em;
	padding-left: 25px;
	background: url("../img/listmark_intro.png") 0 0.2em no-repeat;
	background-size: 18px 18px;
}
#intro #outline div.reception h3 {
	margin-left: 30%;
	text-align: left;
}
#intro #outline div.reception ul {
	margin-left: 8%;
	border: 5px solid #58b331;
}
#intro #outline div.outgoing h3 {
	margin-right: 30%;
	text-align: right;
}
#intro #outline div.outgoing ul {
	margin-right: 8%;
	border: 5px solid #ef8812;
}

@media screen and (max-width: 768px) {
	#intro #outline {
		display: block;
		padding-top: 0;
	}
	#intro #outline div.block {
		width: 100%;
	}
	#intro #outline div.img {
		position: relative;
		left: 0;
	}
	#intro #outline div.reception h3 {
		height: 62px;
		margin-left: 0;
		text-align: center;
		background: url("../img/tit_ambulance_reception_sp.png") 50% 0 no-repeat;
		background-size: contain;
	}
	#intro #outline div.reception h3 img {
		display: none;
	}
	#intro #outline div.reception ul {
		margin-left: 0;
		margin-bottom: 25px;
	}
	#intro #outline div.outgoing h3 {
		height: 62px;
		margin-right: 0;
		text-align: center;
		background: url("../img/tit_ambulance_outgoing_sp.png") 50% 0 no-repeat;
		background-size: contain;
	}
	#intro #outline div.outgoing h3 img {
		display: none;
	}
	#intro #outline div.outgoing ul {
		margin-right: 0;
	}

}
@media screen and (max-width: 480px) {
}

/* exp */
#exp {
}
#exp h2 {
	margin-bottom: 0.5em;
	padding: 0.5em 0;
	border-radius: 12px;
	background: #c9dff2;
	text-align: center;
	font-size: 2.8rem;
}
#exp p.summary {
	margin-bottom: 1.0em;
	text-align: center;
	word-break: keep-all;
}
#exp #exp01 {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	margin-bottom: 26px;
}
#exp #exp01 div.img {
	width: 50%;
}
#exp #exp01 div.img img {
	width: 100%;
	height: auto;
}
#exp #exp01 div.text {
	width: 48%;
}
#exp #exp01 div.text h3 {
	margin-bottom: 10px;
	text-align: center;
}
#exp #exp02 {
	position: relative;
	margin-bottom: 84px;
	padding-top: 20px;
}
#exp #exp02 p {
	position: relative;
	display: flex;
	min-height: 8.5em;
	padding: 1em 1em 1em 45%;
	background: #c9dff2;
	box-sizing: border-box;
	z-index: 1;
}
#exp #exp02 div.fig {
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	text-align: right;
	z-index: 2;
}
#exp #exp02 div.fig img {
	max-width: 400px;
	width: 90%;
	height: auto;
}

@media screen and (max-width: 768px) {
	#exp #exp01 {
		display: block;
	}
	#exp #exp01 div.img {
		width: 100%;
	}
	#exp #exp01 div.text {
		width: 100%;
		margin-bottom: 1em;
	}
	#exp #exp02 {
		display: flex;
		flex-direction: column;
	}
	#exp #exp02 p {
		min-height: auto;
		padding: 1em 1em 1em 1em;
	}
	#exp #exp02 div.fig {
		position: relative;
		width: 100%;
		margin-bottom: 5px;
		text-align: center;
	}
	#exp #exp02 div.fig img {
		max-width: 600px;
		width: 60%;
		margin-left: 0;
	}
}
@media screen and (max-width: 480px) {
	#exp #exp02 div.fig img {
		width: 80%;
	}
}

/* feature */
#feature div.section-inner {
	margin-bottom: 40px;
}
#feature div.block-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	
}
#feature div.block {
	width: 48%;
	margin-bottom: 3em;
}
#feature div.block h3 {
	padding: 0.3em 0.3em;
	background: #0075bd;
	text-align: center;
	color: #ffffff;
	font-size: 2.4rem;
}
#feature div.block img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	#feature div.block-wrapper {
		width: 100%;
	}
	#feature div.block {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
}


/* spec */
#spec {
}
#spec div.img {
	float: left;
	width: 50%;
}
#spec div.img img {
	width: 100%;
	height: auto;
}
#spec table {
	float: right;
	width: 48%;
	margin-top: 1.2em;
}
#spec th,
#spec td {
	padding: 0.2em 0.5em;
	border: 1px solid #231815
}
#spec th {
	background: #ced0d2;
	font-weight: normal;
}

@media screen and (max-width: 768px) {
	#spec div.img {
		float: none;
		width: 100%;
		text-align: center;
	}
	#spec div.img img {
		width: 80%;
	}
	#spec table {
		float: none;
		width: 100%;
	}

}
@media screen and (max-width: 480px) {
}

/* contact */
#contact div.section-inner {
	padding: 64px 0;
	border-top: 4px solid #1a2a7e;
	text-align: center;
}

#contact h2 {
	display: inline-block;
	margin-bottom: 30px;
	padding: 0 2.5em 0.2em;
	border-radius: 2.8rem;
	border: 3px solid #1a2a7e;
	line-height: 4.4rem;
	font-size: 2.8rem;
	color: #1a2a7e;
}
#contact p {
	margin-bottom: 2em;
}
#contact p.summary {
	margin-bottom: 1em;
	font-size: 1.8rem;
}
#contact div.form {
	padding: 2em 10%;
	background: #c8cdd0;
}
#contact div.form dt,
#contact div.form dd {
	text-align: left;
}
#contact div.form dd {
	margin-bottom: 1.5em;
}
#contact div.form div.form-btn {
	padding: 2em 0;
}
#contact div.form input[type=text],
#contact div.form textarea {
	width: 100%;
	padding: 1.5rem 1.5rem;
	border: 1px solid #969696;
	box-sizing: border-box;
}
#contact div.form input[type=button] {
	padding: 0.5em 5em;
	background: #1a2a7e;
	border-radius: 12px;
	font-size: 2.0rem;
	color: #ffffff;
}

/* footer 
---------------------------------------- */
#footer {
	background: #1a2a7e;
	text-align: center;
	font-size: 1.6rem;
}
#footer,
#footer a {
	color: #ffffff;
}
#footer ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 3em 0;
}
#footer ul li {
	display: inline-block;
	margin-bottom: 0.2em;
	padding: 0 1em;
	border-right: 1px solid #ffffff;
	font-size: 1.5rem;
}
#footer ul li:last-child {
	border-right: none;
}
#footer p.copyright {
	padding-bottom: 3em;
	font-size: 1.4rem;
}

.contact .caution {
    margin-top: 25px;
    color: #dc0000;
    font-size: 18px;
}

form#form01 input.err,
form#form01  textarea.err {
    background: #f5dcdc;
}








