@charset "UTF-8";

/*=====================================================
*
*	style.css
*	Since 2019.3.20
*
*
*	1= font
*	2= Reset
*	3= structure
*	4= common module
*	5= header module
*	6= mainVisual module
*	7= content module
*
*
========================================================*/

/*	1= font
-----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&subset=japanese');
@import url('https://fonts.googleapis.com/css?family=Sawarabi+Mincho&subset=japanese');


/*standard size = 14px*/

/* base font size */
*:first-child+html body {
	font-family: "游ゴシック", "Yu Gothic", "メイリオ", 'Meiryo', "ＭＳ Ｐゴシック", sans-serif;
	font-size: 87.5%;
} /* for ie7 */



html>/**/body {
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ W3","游ゴシック", "Yu Gothic", "メイリオ", 'Meiryo', "ＭＳ Ｐゴシック", sans-serif;
	font-size: 87.5%;
} /* for ie8 */


html:not(:target) body {
    font-family: 'Roboto', 'Noto Sans JP', "游ゴシック Medium", 'Yu Gothic Medium', 'YuGothic Medium', "メイリオ", 'Meiryo', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
} /* for modern browser */

*:first-child+html body .wf-sawarabimincho { font-family: , serif; } /* for ie7 */
html>/**/body .wf-sawarabimincho { font-family: "Sawarabi Mincho", serif; } /* for ie8 */
html:not(:target) body .wf-sawarabimincho { font-family: "Sawarabi Mincho", serif; } /* for modern browser */

/*	2= Reset
-----------------------------------------------------*/

* { box-sizing: border-box; }
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal; font-weight:300; }
ul,li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal; font-weight:300; }
q:before,q:after{content:'';}
abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
legend{color:#000;}
img {vertical-align:top;}
input[type="radio"], input[type="checkbox"] {vertical-align: -2px;}
label {cursor: pointer;}


/*	3= structure
-----------------------------------------------------*/

body {
	color: #333;
	background: #fff;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
}
#container {
    position: relative;
    width: 100%;
	margin: 0;
    padding: 80px 0 0;
	background: #fff;
    overflow-x: hidden;
	padding-right: constant(safe-area-inset-right);
	padding-left: constant(safe-area-inset-left);
	padding-right: env(safe-area-inset-right);
	padding-left: env(safe-area-inset-left);
}

#header {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 5;
	width: 100%;
	height: 80px;
	background-color: #fff;
}

#main {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	padding: 70px 0 0;
	text-align: left;
}


#footer {
	height: 75px;
	line-height: 1;
	padding-top: 30px;
	background: #fff;
}

.inner {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 50px;

}

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

	#container { }
	#header { height: 87px; }
	#main {
		padding: 30px 0 0;
	}
	.inner {
		width: 100%;
		margin: 0;
		padding: 0 4.8%;
	}
	#footer {
		height: 52px;
		padding-top: 20px;
	}

}/*==== // end @media */


/*	4= common module
-------------------------------------------------------------- */
a:hover,
a:hover img,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
}
a ,a img, input[type="submit"], input[type="reset"] {
	-webkit-transition: opacity .3s, background-color .3s;
	transition: opacity .3s, background-color .3s;
	opacity: 1;
}
img {
	max-width: 100%;
}
a img { border: none; }

strong { font-weight: 500; color: #E8464E; }

/* position */
.p-rl { position: relative; }
.p-ab { position: absolute; }

/* float */
.fl {float: left;}
.fr {float: right;}

/* text-align */
.text_l {text-align: left;}
.text_c {text-align: center;}
.text_r {text-align: right;}

/* vertical-align */
.va_t {vertical-align: top;}
.va_b {vertical-align: bottom;}
.va_m {vertical-align: middle;}

/* line-height */
.lh17 {line-height: 1.7;}
.lh20 {line-height: 2;}

/* font */
.f10 {font-size: 10px;}
.f11 {font-size: 11px;}
.f12 {font-size: 12px;}
.f13 {font-size: 13px;}
.f14 {font-size: 14px;}
.f15 {font-size: 15px;}
.f16 {font-size: 16px;}
.f18 {font-size: 18px;}
.f20 {font-size: 20px;}
.bold {font-weight: bold; font-weight: 500; }

/* width */
.w50 {width:50px;}
.w100 {width:100px;}


/* margin */
.m-auto { margin-left: auto; margin-right: auto; }
.m0 {margin: 0 !important; }
.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mt35 { margin-top: 35px; }
.ml1em { margin-left: 1em; }


/* padding */
.p0 {padding: 0 !important; }
.pb10 {padding-bottom: 10px;}
.pt10 {padding-top: 10px;}
.pl40 { padding-left: 40px; }

/* list-style */
#main .li-non,
#main .li-non li { list-style: none !important; }

ul.li-disc,
ul.li-disc li {
	list-style: disc !important;
}
ul.li-disc li { margin-left: 1em;}
ol.li-dec,
ol.li-dec li {
	list-style:decimal;
}
ol.li-dec li { margin-left: 1em;}

ol.li-dec li ul.li-disc {
	margin-left: 0.5em;
	padding: 0.5em 0;
}
ol.li-dec li ul.li-disc li { line-height: 1.6; }

/* list-style */
.indent2 { margin-left: 2em; text-indent:  -2em; }


input[type="submit"],input[type="reset"] {
	-webkit-appearance: none;
}

#footer #copyright small { 
    display:  block;
    font-size: 10px;
    line-height: 1.3;
	letter-spacing: 0.04em;
    text-align: center;
}

p#gotop {
	position: fixed;
	z-index: 55;
	bottom: 15px;
    right: 12px;
	width: 66px;
	height: 66px;
	margin: 0 auto;
}

p#gotop a {
	display: block;
    box-sizing: border-box;
	position: absolute;
	z-index: 100;
	right: 0px;
	width: 66px;
	height: 0px;
    padding-top: 66px;
    line-height: 66px;
    font-size: 10px;
    letter-spacing: -1px;
    text-align: center;
    background: rgba(130,140,148,0.45);
    border-radius: 3px;
    color: #fff;
    overflow: hidden;
}
p#gotop a::after {
	content: "";
	display: block;
	position: absolute;
	right: 20px;
	top: 50%;
	box-sizing: border-box;
	width: 25px;
	height: 25px;
	margin-top: -6px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(-45deg);
}

.pc {
	display: block;
}
.sp {
	display: none;
}

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

    p#gotop {
        position: relative;
        right: 5px;
        padding-top: 25px;
    }
    p#gotop a {
        width: 44px;
        padding-top: 44px;
        line-height: 44px;
        background: rgba(130,140,148,0.40);
        border-radius: 2px;
    }
    p#gotop a::after {
        right: 12px;
        top: 55%;
        width: 19px;
        height: 19px;
        margin-top: -8px;
    }
	
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	
}/*==== // end @media */


/*	5= header module
-----------------------------------------------------*/

#header p#logo  {
    position: absolute;
    left: 50px;
    top: 20px;
	z-index: 6;
	width: 118px;
	height: 34px;
}
#header p#logo a {
	box-sizing: content-box;
	display: block;
	width: 118px;
	height: 0px;
	line-height: 34px;
	padding-top: 34px;
	overflow: hidden;
	background: url("../images/logo@2x.png") no-repeat;
	background-position: left top;
    -webkit-background-size: 118px 34px;
    background-size: 118px 34px;
}
h1#siteID {
	position: absolute;
    left: 200px;
    top: 24px;
	font-size: 28px;
	z-index: 6;
	line-height: 1;
}
h1#siteID,
h1#siteID a {
	color: #ED3A4B;
	text-decoration: none;
	letter-spacing: 0.08em;
}
body.pageB h1#siteID a {
	color: #2C588C;
}

#header ul.menu {
	position: absolute;
	right: 5px;
	top: 17px;
}
#header ul.menu li a {
	display: block;
	padding: 2px 10px 0px;
	line-height: 37px;
	background: #006F9C;
	font-size: 16px;
	font-weight: bold;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: #fff;
	text-decoration: none;
}
body.pageB #header ul.menu li a {
	background: #ED3A4B;
}
#header ul.menu li a:hover {
	padding: 2px 8px 0px 10px;
}
#header ul.menu li a::after {
	content: "▲";
	position: relative;
	display: inline-block;
	margin-left: 8px;
	margin-top: -3px;
	font-size: 10px;
	-webkit-transform: scaleX(0.75) rotate(-30deg);
	-moz-transform: scaleX(0.75) rotate(-30deg);
	transform: scaleX(0.75) rotate(-30deg);
	line-height: 10px;
	vertical-align: middle;
}
#header ul.menu li a:hover::after {
	margin-left: 10px;
}
@media screen and (max-width : 767px ) {
	
	#header p#logo {
		left: 18px;
		top: 15px;
		width: 80px;
		height: 23px;
		
	}
	#header p#logo a {
		width: 80px;
		height: 0px;
		line-height: 23px;
		padding-top: 23px;
		-webkit-background-size: 80px 23px;
		background-size: 80px 23px;
	}
	h1#siteID {
		left: 18px;
		top: 50px;
		font-size: 18px;
	}
	#header ul.menu {
		right: 15px;
		top: 25px;
	}
	#header ul.menu li a {
		padding: 3px 32px 2px 8px;
		line-height: 1.54;
		font-size: 13px;
		color: #fff;
	}
	#header ul.menu li a:hover {
		padding: 3px 32px 2px 8px;
	}
	#header ul.menu li a::after {
		position: absolute;
		top:50%;
		right: 10px;
		margin-top: -5px;
		-webkit-transform: scaleX(0.6) scaleY(0.75) rotate(-30deg);
		-moz-transform: scaleX(0.6) scaleY(0.75) rotate(-30deg);
		transform: scaleX(0.6) scaleY(0.75) rotate(-30deg);
	}

}/*==== // end @media */

@media screen and (max-width : 370px ) {
    
    h1#siteID {
		left: 15px;
		top: 50px;
	}
    h1#siteID,
    h1#siteID a{
		font-size: 16px;
        letter-spacing: 0.05em !important;
	}
    #header ul.menu {
		right: 13px;
		top: 26px;
	}
    #header ul.menu li a {
		padding: 3px 28px 2px 8px;
		line-height: 1.5;
		font-size: 12px;
		color: #fff;
	}
	#header ul.menu li a:hover {
		padding: 3px 28px 2px 8px;
	}
}/*==== // end @media */

/*	6= mainVisual module
-----------------------------------------------------*/

#mainVisual {
	background-image: url("../images/bg_main@2x.jpg");
	background-repeat: repeat-x;
	background-position: center top;
	-webkit-background-size: 100px 500px;
	background-size: 100px 500px;
    opacity: 1;
    animation: fade1 2s ease 0s 1 normal;
}
body.pageB #mainVisual {
	background: #68B5E5
}
#mainVisual h1 {
	position: relative;
	width: 100%;
	max-width: 1200px;
	height: auto;
	line-height: 1;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
#mainVisual h1 img {
	width: 100%;
	max-width: 1200px;
	height: auto;
	vertical-align: top;
}

@keyframes fade1 {
  0%, 50% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
}

@media screen and (min-width: 1000px ) and ( max-width: 1200px) {
	
	#mainVisual{
		width: 100%;
		overflow: hidden;
	}

	#mainVisual h1 img {
		position: relative;
		width: 1200px;
		height: 500px;
		margin-left: calc((( 1200px - 100vw ) / 2 ) * -1 );
		margin-right: calc((( 1200px - 100vw ) / 2 ) * -1 );
	}
	body.pageB #mainVisual h1 img {
		position: relative;
		width: 1200px;
		height: 302px;
		margin-left: calc((( 1200px - 100vw ) / 2 ) * -1 );
		margin-right: calc((( 1200px - 100vw ) / 2 ) * -1 );
	}


}/*==== // end @media */

@media screen and ( max-width: 767px) {
	
	#mainVisual{ background: none; }
	#mainVisual h1 {
		width: 100vw;
		height: 80vw;
		background-image: url("../images/main_sp@2x.jpg");
		background-repeat: no-repeat;
		background-position: center top;
		-webkit-background-size: cover;
		background-size: cover;
	}
	#mainVisual h1 img {
		display: none;
	}
	body.pageB #mainVisual h1 {
		width: 100vw;
		height: 64vw;
		background-image: url("../images/mainB_sp@2x.jpg");
		background-repeat: no-repeat;
		background-position: center top;
		-webkit-background-size: cover;
		background-size: cover;
	} 

	
}/*==== // end @media */


/*	7= content module
-----------------------------------------------------*/
#main h2 {
	margin-bottom: 35px;
	padding-bottom: 0.6em;
	border-bottom: solid 3px #E06D71;
	text-align: center;
	color: #ED3A4B;
	line-height: 1.22;
	font-size: 24px;
	letter-spacing: 0.09em;
}
body.pageB #main h2 {
	padding-bottom: 0;
	color: #2C588C;
	border-bottom: solid 3px #2C588C;
	background: #DFE8F0;
	line-height: 60px;
}

#main h3 {
	margin-bottom: 40px;
	text-align: center;
	color: #ED3A4B;
	line-height: 1.5;
	font-size: 20px;
	font-weight: bold;
	font-weight: 500;
	letter-spacing: 0.08em;
}
body.pageB #main h3 {
	color: #2C588C;
}

#main p {
	margin-bottom: 1em;
	font-size: 16px;
	line-height: 1.875;
}

.about { width: 700px; margin-bottom: 95px; }
body.pageB .about { width: 100%; margin-bottom: 50px;  }

#main .about h2 {
	margin-bottom: 1.2em;
	padding-bottom: 0;
	border-bottom: none;
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 0.08em;
}
body.pageB #main .about h2 {
	font-size: 24px;
	font-weight: normal;
	font-weight: 300;
}

#main .about h3 {
	margin-top: 2em;
	margin-bottom: 0;
	padding-bottom: 4px;
	border-bottom: solid 1px #333;
	text-align: center;
	font-size: 16px;
	font-weight: normal;
	font-weight: 300;
	color: #333;
	letter-spacing: 0px;
}
body.pageB #main .about h3 {
	padding-bottom: 10px;
	font-size: 20px;
}
#container #main .about h3 {
	color: #333;
}
body.pageB #main .low h3,
body.pageB #main .document h3 {
    margin-top: 2em;
	margin-bottom: 1em;
    padding-bottom: 10px;
    border-bottom: solid 1px #333;
	text-align: center;
	font-weight: normal;
	font-weight: 300;
	color: #333;
	letter-spacing: 0px;
	font-size: 20px;
}

#main .about .readmore-area p {
	position: relative;
	font-size: 13px;
	margin-bottom: 0;
	margin-left: -2px;
	margin-right: -2px;
}
body.pageB #main .about .readmore-area p {
	font-size: 16px;
	line-height: 1.9;
}
body.pageB #main .about .readmore-area ul,
body.pageB #main .about .readmore-area ol { 
	font-size: 16px;
	line-height: 1.9;
}
body.pageB #main .about .readmore-area a { color: #2C588C; }

/*折りたたみ設定*/
.readmore-area {
	padding: 1em 0;
	border-bottom: solid 1px #333;
}
body.pageB .readmore-area {
	padding: 1.5em 0;
	border-bottom: none;
}
.when { margin-bottom: 35px; }
.when ul {
    width: 100%;
	position: relative;
    -js-display: flex;
	display : -webkit-box;
	display : -ms-flexbox;
	display : -webkit-flex;
	display : flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.when ul li {
    width: 48.1%;
	min-height: 96px;
    margin-bottom: 30px;
	padding: 12px 12px 11px;
    text-align: center; 
    font-size: 16px;
	text-align: left;
	line-height: 1.75;
	background-image:url("../images/dot.png"), url("../images/dot.png");
	background-repeat:  no-repeat, no-repeat;
	background-position: left top, right bottom;

}

.how {
	margin-bottom: 110px;
	padding: 35px 0 30px;
	background: #F6F6F1;
}
.how ul {
	width:706px;
	padding-left: 75px;
	padding-right: 75px;
}
.how ul li {
	position: relative;
	width: 375px;
	min-height: 66px;
	margin-bottom: 18px;
	padding: 9px 14px;
	border-radius: 14px;
	font-size: 16px;
}
.how ul li:last-child { line-height: 46px;}
.how ul li.patient { background: #FDE5A5; }
.how ul li.doctor { margin-left: 181px; background: #D8EDEE; }
.how ul li.patient::before {
	content: "";
	display: block;
	position: absolute;
	top:5px;
	left: -75px;
	width: 75px;
	height: 82px;
	background: url("../images/patient@2x.png") no-repeat center center;
	-webkit-background-size: 75px 82px;
	background-size: 75px 82px;
}
.how ul li.doctor::before {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	right: -75px;
	width: 75px;
	height: 82px;
	background: url("../images/doctor@2x.png") no-repeat center center;
	-webkit-background-size: 75px 82px;
	background-size: 75px 82px;
}

.flow { margin-bottom: 110px; }
.flow .inner { width: 800px; }

#main .flow p { margin-bottom: 0; }
.flow p.chart { padding-top: 40px; }
.flow p.chart img {
	width: 528px;
}
.flow p.chart span {
	display: block;
	width: 500px;
	margin: 0 auto;
	text-align: left;
	font-size: 10px;
	line-height: 1;
}

.qa { margin-bottom: 90px; }
.qa dl { padding-top: 28px; font-size: 16px; line-height: 1.75; }
.qa dl dt {
	position: relative;
	padding-left: 50px;
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: solid 3px #E06D71;
	color: #A44F53;
	font-weight: bold;
	font-weight: 500;
	letter-spacing: 0.04em;
}
body.pageB .qa dl dt {
	color: #5C7EA6;
	border-bottom: solid 3px #5C7EA6;
}
.qa dl dt::before {
	content: "Q";
	position: absolute;
	left: 2px;
	top: 0px;
}
.qa dl dd {
	position: relative;
	padding-left: 50px;
	margin-bottom: 30px;
	color: #4E4B4A;
	letter-spacing: 0.04em;
}
.qa dl dd::before {
	content: "A";
	position: absolute;
	left: 2px;
	top: 0px;
}

.link { margin-bottom: 100px; }

.link .inner { width: 800px;}
#main .link h3 {
	margin-bottom: 22px;
	font-size: 18px;
	font-weight: normal;
	font-weight: 300;
	letter-spacing: 0.09em;
}

.link ul.list {
	width: 100%;
	margin-bottom: 50px;
}
.link ul.list li {
	position: relative;
	margin-top: -1px;
	border-top:  solid 1px #231815;
	border-bottom:  solid 1px #231815;
	line-height: 1.75;
	font-size: 16px;
}
.link ul.list li a {
	display: block;
	min-height: 78px;
	padding: 10px 70px 10px 30px;
	background: #F7F7F7;
	text-decoration: none;
	color: #4E4B4A;
	font-weight: bold;
	font-weight: 500;
	letter-spacing: 0.03em;
}
.link ul.list li a.line1 {
	line-height: 58px;
}
.link ul.list li a::after {
	content: "";
	display: block;
	position: absolute;
	right: 20px;
	top: 50%;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border-top: solid 2px #4E4B4A;
	border-right: solid 2px #4E4B4A;
	transform: rotate(45deg);
}

.link ul.list li a span {
	position: relative;
	display: inline-block; 
	margin-left: -0.6em;
}
.link .textLink a {color: #ED3A4B; }

.info {
	height: 178px;
	padding-top: 28px;
	background: #ED3A4B;
	text-align: center;
}
body.pageB .info {
	height: 233px;
	background: #2C588C;
}
#container #main .info h3 {
	margin-bottom: 26PX;
	color:  #fff;
	font-size: 24px;
	font-weight: normal;
	font-weight: 300;
}
#main .info p {
    display: inline-block;
	margin-bottom: 20px;
    text-align: left;
	color: #fff;
	font-size: 23px;
	font-weight: bold;
	font-weight: 500;
	line-height: 1.37;
}
#container #main .info p.btn {
    display: block;
    text-align: center;
}
body.pageB #main .info p {
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: normal;
	font-weight: 300;
	line-height: 1.58;
}
body.pageB #main .info p.link {
    display:block;
    text-align: center;
}
.info p.btn a {
	display: inline-block;
	width: 280px;
	height: 39px;
	border: solid 1px #fff;
	color: #fff;
	font-size: 16px;
	line-height: 39px;
	text-decoration: none;
	letter-spacing: 0.06em;
}
.info p.link a {
	color: #fff;
	font-weight: bold;
	font-weight: 500;
}
.info p.btn a::after {
	content: "▲";
	position: relative;
	display: inline-block;
	margin-left: 6px;
	margin-top: -3px;
	font-size: 10px;
	-webkit-transform: scaleX(0.75) rotate(-30deg);
	-moz-transform: scaleX(0.75) rotate(-30deg);
	transform: scaleX(0.75) rotate(-30deg);
	line-height: 10px;
	vertical-align: middle;
}
.info p.btn a:hover {
	padding-left: 2px;
	color:#ED3A4B;
	background: #fff;
	opacity: 1;
}
.info p.btn a:hover::after {
	margin-left: 8px;
}
.document { margin-bottom: 80px; }
#main .document p { line-height: 1.8; }
.document ul {
    padding-top: 10px;
	margin-bottom: 40px;
	font-size: 16px;
}
#main .document h3 + ul {
    padding-top: 0;
}
.document ul li { line-height: 1.8; margin-bottom: 0.2em; }
.document ul li a {
	display: inline-block;
	margin-right: 1em;
	color: #333;
}
.document ul li a:hover {
	color: #2C588C;
	text-decoration: none;
}

.low { margin-bottom: 65px;}

#main .low h4,
#main .low h5,
#main .low p,
#main .low ul li,
#main .low ol li { margin-bottom: 0; font-size: 16px; line-height: 1.9; }

@media screen and ( min-width: 768px) {
	
	/*折りたたみ設定*/
	#main .readmore-button-box,
	#main .close-button-box { display: none; }
	
	
	.link ul.list li a:hover::after {
		animation: fuwa .8s ease infinite;
	}
	@keyframes fuwa {
	   50% {
		right: 12px;
	  }
	  100% {
		right: 20px;
	  }
	}
	
	
}/*==== // end @media */

@media screen and ( max-width: 767px) {
	
	#main h2 {
		margin-bottom: 1.1em;
		font-size: 18px;
	}
	#main .about h2 {
		margin-bottom: 1.25em;
		font-size: 20px;
	}
	body.pageB #main .about h2 {
		margin-bottom: 0.8em;
		font-size: 18px;
	}
	body.pageB #main h2 {
		line-height: 46px;
	}

	#main p {
		margin-bottom: 1.5em;
		font-size: 14px;
		line-height: 1.7;
	}
	
	.about {
		width: 100%;
		margin-bottom: 30px;
		padding: 0 4.8%;
	}
	body.pageB .about {
		padding: 0;
	}
	#main .about h3,
    body.pageB #main .low h3,
    body.pageB #main .document h3 {
		margin-top: 2em;
		padding-bottom: 4px;
		font-size: 14px;
	}
	body.pageB #main .about h3 {
		margin-top: 2em;
		padding-bottom: 4px;
		font-size: 15px;
	}
	body.pageB #main .about .readmore-area p,
	body.pageB #main .about .readmore-area ul,
	body.pageB #main .about .readmore-area ol {
		font-size: 14px;
	}
	body.pageB #main .about .readmore-area p {
		margin-left: 0;
		margin-right: 0;
	}
	
	/*折りたたみ設定*/
	.readmore-area { display: none; padding: 0.8em 0; }
	#main .readmore-button-box a {
	   color: #000;
	   padding: 0.2em 2em;
	   display: inline-block;
	   font-size: 13px;
	   text-decoration: none;
		color: #ED3A4B;
		-webkit-transform: scaleX(1.4);
		-moz-transform: scaleX(1.4);
		transform: scaleX(1.4);
	}
	body.pageB #main .readmore-button-box a {
		color: #2C588C;
	}
	#main .close-button-box a {
	   color: #000;
	   padding: 0.2em 2em;
	   display: inline-block;
	   font-size: 13px;
	   text-decoration: none;
		color: #ED3A4B;
		-webkit-transform: scaleX(1.4);
		-moz-transform: scaleX(1.4);
		transform: scaleX(1.4);
	}
	body.pageB #main .close-button-box a {
		color: #2C588C;
	}
	#main .readmore-button-box a:hover {
	   
	}
	#main .close-button-box a:hover {
	   
	}
	#main p.readmore-button-box {
		text-align: center;
		padding-top: 0.5em;
		position: relative;
	}

	#main p.close-button-box {
		text-align:  center;
		padding-top: 0.5em;
		
	}
	.when { margin-bottom: 10px; padding: 25px 0 0; }
	.when ul li {
		width: 47.8%;
		min-height: 96px;
		margin-bottom: 20px;
		padding: 6px;
		text-align: center; 
		font-size: 13px;
		text-align: left;
		line-height: 1.66;

	}

	.how {
		margin-bottom: 40px;
		padding: 25px 0 30px;
	}
	#main .how h3 {
		margin-bottom: 16px;
		font-size: 13px;
	}
	.how ul {
		width: 100%;
		padding-left: 50px;
		padding-right: 50px;
	}
	.how ul li {
		width: 100%;
		min-height: 50px;
		margin-bottom: 10px;
		padding: 10px 14px;
		border-radius: 12px;
		font-size: 13px;
		line-height: 1.42;
	}
	.how ul li:last-child { line-height: 1.42;}
	.how ul li.doctor { margin-left: 0; }
	.how ul li.patient::before {
		top:5px;
		left: -50px;
		width: 50px;
		height: 55px;
		background: url("../images/patient@2x.png") no-repeat center center;
		-webkit-background-size: 50px 55px;
		background-size: 50px 55px;
	}
	.how ul li.doctor::before {
		top:5px;
		right: -50px;
		width: 50px;
		height: 55px;
		background: url("../images/doctor@2x.png") no-repeat center center;
		-webkit-background-size: 50px 55px;
		background-size: 50px 55px;
	}
	.flow { margin-bottom: 40px; }
	.flow .inner { width: 100%; }
	.flow p.chart { padding-left: 0; }
	.flow p.chart img { width: 340px; }

	.qa { margin-bottom: 50px; }
	.qa dl { padding-top: 6px; font-size: 14px; line-height: 1.7; }
	.qa dl dt {
		padding-left: 25px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.qa dl dt::before {
		left: 2px;
		top: 0px;
	}
	.qa dl dd {
		padding-left: 25px;
		margin-bottom: 30px;
	}
	.qa dl dd::before {
		left: 2px;
		top: 0px;
	}
	.link { margin-bottom: 60px; }
	.link .inner { width: 100%; }
	#main .link h3 {
		margin-bottom: 10px;
		font-size: 13px;
	}
	.link ul.list {
		margin-bottom: 30px;
	}
	.link ul.list li {
		line-height: 1.4;
		font-size: 13px;
	}
	.link ul.list li a {
		min-height: 50px;
		padding: 7px 40px 7px 11px;
	}
	.link ul.list li a.line1 {
		line-height: 36px;
	}
	.link ul.list li a::after {
		right: 12px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: solid 1px #4E4B4A;
		border-right: solid 1px #4E4B4A;
	}
	.info {
		height: 150px;
		padding-top: 20px;
	}
	body.pageB .info {
		height: auto;
	}
	#container #main .info h3 {
		margin-bottom: 18px;
		font-size: 15px;
		line-height: 1.62;
	}
	#container #main .info p {
		margin-bottom: 27px;
		font-size: 13px;
		line-height: 1.62;
	}

	.info p.btn a,
	.info p.btn a:hover {
		width: auto;
		height: 32px;
		padding: 0 8px 0 12px;
		font-size: 13px;
		line-height: 32px;
	}
	.info p.btn a::after,
	.info p.btn a:hover::after{
		margin-left: 6px;
		margin-top: -3px;
		font-size: 10px;
		-webkit-transform: scaleX(0.65) scaleY(0.8) rotate(-30deg);
		-moz-transform: scaleX(0.65) scaleY(0.8) rotate(-30deg);
		transform: scaleX(0.65) scaleY(0.8) rotate(-30deg);
		line-height: 10px;
	}							
	#container #main .info h3 {
		margin-bottom: 10px;
	}
	#container #main .info p {
		margin-bottom: 26px;
        padding-left: 4%;
        padding-right: 4%;
		font-size: 13px;
		line-height: 1.62;
	}
    body.pageB #container #main .info p {
        margin-bottom: 10px;
    }
    #container #main .info p br.pc {
		display: block !important;
	}
	#container #main .info p br.sp {
		display: none;
		font-size: 12px;
	}
	.document { margin-bottom: 60px; }
	.document ul {
        padding-top: 5px;
		margin-bottom: 30px;
		font-size: 14px;
	}
	.document ul li { margin-bottom: 0.9em; line-height: 1.6; }
	.document ul li a {
		margin-right: 0.8em;
	}
	.document ul li a:last-child { margin-right: 0; }
	#main .low { margin-bottom: 50px; }
	#main .low h4,
	#main .low h5,
	#main .low p,
	#main .low ul li,
	#main .low ol li { font-size: 14px; line-height: 1.9; }
	
}/*==== // end @media */

@media screen and ( max-width: 400px) {
	body.pageB #container #main .info p {
        font-size: 12px;
    }

	#container #main .info p br.sp {
		display: block !important;
	}
    body.pageB #main .about h3 {
        padding-bottom: 9px;
        font-size: 14px;
    }
	
}/*==== // end @media */

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

	#main .about h2 {
		font-size: 16px;
	}
    body.pageB #main .about h3 {
        position: relative;
        margin-left: -0.5em;
        margin-right: -0.5em;
        padding-bottom: 8px;
        font-size: 13px;
    }
    #container #main .info p br {
        display: none;
    }
    body.pageB #container #main .info p br.pc {
        display:  none !important;
    }
    
}/*==== // end @media */
 
