@charset "utf-8";

/* common
****************************************************/

	*{ margin:0; padding:0; word-break:break-all; word-wrap:break-word; box-sizing:border-box; }
	body{ font-size:19px; line-height:180%; color:#000; font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO"; }
	img{ border:none; font-size:0; vertical-align:top; }
	ul{ list-style-type:none; }
 	a{ text-decoration:none; color:#000; }
	a:hover{ text-decoration:underline; }
	a:hover img{ opacity: 0.5; transition:all 0.3s ease; }
	h1{ font-size:14px; font-weight:normal; }
	address{ font-style:normal; }
	em{ font-style: normal; }

/* image
****************************************************/
.img-max100 { max-width: 100%; height: auto; vertical-align: bottom; }

/*===================================================================================
グリッドレイアウト（Grid Layout）
===================================================================================*/
.d-grid { display: grid; }
.gtc-1clm { grid-template-columns: 1fr; }
.gtc-2clm { grid-template-columns: repeat(2, 1fr); }
.gtc-3clm { grid-template-columns: repeat(3, 1fr); }
.gtc-4clm { grid-template-columns: repeat(4, 1fr); }
.g-ac-center { align-content: center; }
.g-ac-sp-between { align-content: space-between; }
.g-ac-sp-around { align-content: space-around; }
.g-ac-sp-evenly { align-content: space-evenly; }
.g-ac-stretch { align-content: stretch; }
.g-jc-center { justify-content: center; }
.g-jc-start { justify-content: start; }
.g-jc-end { justify-content: end; }
.g-jc-between { justify-content: space-between; }
.g-jc-around { justify-content: space-around; }
.g-jc-evenly { justify-content: space-evenly; }
.g-ai-center { align-items: center; }
.g-ai-start { align-items: start; }
.g-ai-end { align-items: end; }
.g-ai-stretch { align-items: stretch; }
.g-ai-baseline { align-items: baseline; }
.g-ji-center { justify-items: center; }
.g-ji-start { justify-items: start; }
.g-ji-end { justify-items: end; }
.g-ji-stretch { justify-items: stretch; }
.g-pc-center { place-content: center; }
.g-pi-center { place-items: center; }
.g-gtr-subgrid { grid-template-rows: subgrid; }
.g-row-span1 { grid-row: span 1; }
.g-row-span2 { grid-row: span 2; }
.g-row-span3 { grid-row: span 3; }
.g-row-span4 { grid-row: span 4; }
.g-row-span5 { grid-row: span 5; }
.g-row-span6 { grid-row: span 6; }
.g-row-span7 { grid-row: span 7; }
.g-row-span8 { grid-row: span 8; }
.g-row-span9 { grid-row: span 9; }
.g-row-span10 { grid-row: span 10; }
.g-gap10px { gap: 10px; }
.g-gap20px { gap: 20px; }
.g-gap30px { gap: 30px; }
.g-gap40px { gap: 40px; }
.g-gap50px { gap: 50px; }
.g-gap60px { gap: 60px; }
.g-gap70px { gap: 70px; }
.g-gap80px { gap: 80px; }
.g-gap90px { gap: 90px; }
.g-gap100px { gap: 100px; }
.g-gap30px-60px { gap: clamp(30px, 2vw, 60px); }
.g-clm-gap10px { column-gap: 10px; }
.g-clm-gap20px { column-gap: 20px; }
.g-clm-gap30px { column-gap: 30px; }
.g-clm-gap40px { column-gap: 40px; }
.g-clm-gap50px { column-gap: 50px; }
.g-clm-gap60px { column-gap: 60px; }
.g-clm-gap70px { column-gap: 70px; }
.g-clm-gap80px { column-gap: 80px; }
.g-clm-gap90px { column-gap: 90px; }
.g-clm-gap100px { column-gap: 100px; }
.g-row-gap10px { row-gap: 10px; }
.g-row-gap20px { row-gap: 20px; }
.g-row-gap30px { row-gap: 30px; }
.g-row-gap40px { row-gap: 40px; }
.g-row-gap50px { row-gap: 50px; }
.g-row-gap60px { row-gap: 60px; }
.g-row-gap70px { row-gap: 70px; }
.g-row-gap80px { row-gap: 80px; }
.g-row-gap90px { row-gap: 90px; }
.g-row-gap100px { row-gap: 100px; }
.g-order1 { order: 1; }
.g-order2 { order: 2; }
.g-order3 { order: 3; }
.g-order4 { order: 4; }
.g-order5 { order: 5; }
.g-order6 { order: 6; }
@media screen and (min-width: 600px) {
  .pc_d-grid { display: grid; }
  .pc_gtc-2clm { grid-template-columns: repeat(2, 1fr); }
  .pc_gtc-3clm { grid-template-columns: repeat(3, 1fr); }
  .pc_gtc-4clm { grid-template-columns: repeat(4, 1fr); }
  .pc_g-gap10px { gap: 10px; }
  .pc_g-gap20px { gap: 20px; }
  .pc_g-gap30px { gap: 30px; }
  .pc_g-gap40px { gap: 40px; }
  .pc_g-gap50px { gap: 50px; }
  .pc_g-gap60px { gap: 60px; }
  .pc_g-gap70px { gap: 70px; }
  .pc_g-gap80px { gap: 80px; }
  .pc_g-gap90px { gap: 90px; }
  .pc_g-gap100px { gap: 100px; }
  .pc_g-clm-gap10px { column-gap: 10px; }
  .pc_g-clm-gap20px { column-gap: 20px; }
  .pc_g-clm-gap30px { column-gap: 30px; }
  .pc_g-clm-gap40px { column-gap: 40px; }
  .pc_g-clm-gap50px { column-gap: 50px; }
  .pc_g-clm-gap60px { column-gap: 60px; }
  .pc_g-clm-gap70px { column-gap: 70px; }
  .pc_g-clm-gap80px { column-gap: 80px; }
  .pc_g-clm-gap90px { column-gap: 90px; }
  .pc_g-clm-gap100px { column-gap: 100px; }
  .pc_g-row-gap10px { row-gap: 10px; }
  .pc_g-row-gap20px { row-gap: 20px; }
  .pc_g-row-gap30px { row-gap: 30px; }
  .pc_g-row-gap40px { row-gap: 40px; }
  .pc_g-row-gap50px { row-gap: 50px; }
  .pc_g-row-gap60px { row-gap: 60px; }
  .pc_g-row-gap70px { row-gap: 70px; }
  .pc_g-row-gap80px { row-gap: 80px; }
  .pc_g-row-gap90px { row-gap: 90px; }
  .pc_g-row-gap100px { row-gap: 100px; }
  .pc_g-order1 { order: 1; }
  .pc_g-order2 { order: 2; }
  .pc_g-order3 { order: 3; }
  .pc_g-order4 { order: 4; }
  .pc_g-order5 { order: 5; }
  .pc_g-order6 { order: 6; }
}
@media screen and (max-width: 599px) {
  .sp_d-grid { display: grid; }
  .sp_gtc-1clm { grid-template-columns: 1fr; }
  .sp_g-gap10px { gap: 10px; }
  .sp_g-gap20px { gap: 20px; }
  .sp_g-gap30px { gap: 30px; }
  .sp_g-gap40px { gap: 40px; }
  .sp_g-gap50px { gap: 50px; }
  .sp_g-gap60px { gap: 60px; }
  .sp_g-gap70px { gap: 70px; }
  .sp_g-gap80px { gap: 80px; }
  .sp_g-gap90px { gap: 90px; }
  .sp_g-gap100px { gap: 100px; }
  .sp_g-clm-gap10px { column-gap: 10px; }
  .sp_g-clm-gap20px { column-gap: 20px; }
  .sp_g-clm-gap30px { column-gap: 30px; }
  .sp_g-clm-gap40px { column-gap: 40px; }
  .sp_g-clm-gap50px { column-gap: 50px; }
  .sp_g-clm-gap60px { column-gap: 60px; }
  .sp_g-clm-gap70px { column-gap: 70px; }
  .sp_g-clm-gap80px { column-gap: 80px; }
  .sp_g-clm-gap90px { column-gap: 90px; }
  .sp_g-clm-gap100px { column-gap: 100px; }
  .sp_g-row-gap10px { row-gap: 10px; }
  .sp_g-row-gap20px { row-gap: 20px; }
  .sp_g-row-gap30px { row-gap: 30px; }
  .sp_g-row-gap40px { row-gap: 40px; }
  .sp_g-row-gap50px { row-gap: 50px; }
  .sp_g-row-gap60px { row-gap: 60px; }
  .sp_g-row-gap70px { row-gap: 70px; }
  .sp_g-row-gap80px { row-gap: 80px; }
  .sp_g-row-gap90px { row-gap: 90px; }
  .sp_g-row-gap100px { row-gap: 100px; }
  .sp_g-order1 { order: 1; }
  .sp_g-order2 { order: 2; }
  .sp_g-order3 { order: 3; }
  .sp_g-order4 { order: 4; }
  .sp_g-order5 { order: 5; }
  .sp_g-order6 { order: 6; }
}

/* Flexbox
****************************************************/
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
@media screen and (min-width: 600px) {
	.d-md-flex { display: flex; }
	.d-md-inline-flex { display: inline-flex; }
	.flex-md-row { flex-direction: row; }
	.flex-md-row-reverse { flex-direction: row-reverse; }
	.flex-md-column { flex-direction: column; }
	.flex-md-column-reverse { flex-direction: column-reverse; }
	.justify-content-md-start { justify-content: flex-start; }
	.justify-content-md-end { justify-content: flex-end; }
	.justify-content-md-center { justify-content: center; }
	.justify-content-md-between { justify-content: space-between; }
	.justify-content-md-around { justify-content:space-around; }
	.justify-content-md-evenly { justify-content: space-evenly; }
	.align-items-md-start { align-items: flex-start; }
	.align-items-md-end { align-items: flex-end; }
	.align-items-md-center { align-items: center; }
	.align-items-md-baseline { align-items: baseline; }
	.align-items-md-stretch { align-items: stretch; }
	.align-self-md-start { align-self: flex-start; }
	.align-self-md-end { align-self: flex-end; }
	.align-self-md-center { align-self: center; }
	.align-self-md-baseline { align-self: baseline; }
	.align-self-md-stretch { align-self: stretch; }
	.flex-md-grow-0 { flex-grow: 0; }
	.flex-md-shrink-0 { flex-shrink: 0; }
	.flex-md-grow-1 { flex-grow: 1; }
	.flex-md-shrink-1 { flex-shrink: 1; }
	.flex-md-nowrap { flex-wrap: nowrap; }
	.flex-md-wrap { flex-wrap:wrap; }
	.flex-md-wrap-reverse { flex-wrap: wrap-reverse; }
	.order-md-1 { order: 1; }
	.order-md-2 { order: 2; }
	.order-md-3 { order: 3; }
	.order-md-4 { order: 4; }
	.order-md-5 { order: 5; }
	.align-content-md-start { align-content: flex-start; }
	.align-content-md-end { align-content: flex-end; }
	.align-content-md-center { align-content: center; }
	.align-content-md-around { align-content: space-around; }
	.align-content-md-stretch { align-content: stretch; }
	.flex-md-item-half { width: 48%; }
	.f-gap30px { gap: 30px; }
}
@media screen and (max-width: 599px) {
	.sp_d-flex { display: flex; }
	.sp_fd-column { flex-direction: column; }
	.sp_ai-center { align-items: center; }
	.sp_jc-between { justify-content: space-between; }
	.sp_f-gap10px { gap: 10px; }
	.sp_f-gap20px { gap: 20px; }
	.sp_f-gap30px { gap: 30px; }
}

/* margin
****************************************************/
	/* top */
	.mt5, .mt5ul li{ margin-top:5px; }
	.mt10, .mt10ul li{ margin-top:10px; }
	.mt20, .mt20ul li{ margin-top:20px; }
	.mt30, .mt30ul li{ margin-top:30px; }
	.mt40{ margin-top:40px; }
	.mt50{ margin-top:50px; }
	.mt60{ margin-top:60px; }
	.mt75{ margin-top:75px; }
	.mt100{ margin-top:100px; }
	.mt150{ margin-top:150px; }
	.mt-50{ margin-top:-50px; }
	/* bottom */
	.mb10 { margin-bottom: 10px; }
	.mb20 { margin-bottom: 20px; }
	.mb30 { margin-bottom: 30px; }
	/* left */
	.ml10 { margin-left: 10px; }
	.ml20 { margin-left: 20px; }
	@media screen and (min-width: 600px) {
		.pc_mt100px { margin-top: 100px; }
	}
	@media screen and (max-width: 599px) {
		.sp-mt10 { margin-top: 10px; }
		.sp_mt20px { margin-top: 20px; }
	}

/* padding
****************************************************/
.pd20 { padding: 20px; }
.pd30 { padding: 30px; }
/* right */
/* left */
.pl24 { padding-left: 24px; }
@media screen and (min-width: 600px) {
	.pc_pr30 { padding-right: 30px; }
	.pc_pt100px { padding-top: 100px; }
	.pc_pb100px { padding-bottom: 100px; }
}
@media screen and (max-width: 599px) {
	.sp_pd15px { padding: 15px; }
	.sp_pt20px { padding: 20px; }
}

/* text-align
****************************************************/

	.tar{ text-align:right; }
	.tac{ text-align:center; }
	.ti1{ text-indent:1em; }
	.ti2{ text-indent:-1em; padding-left:1em; }
	.ti3, .ti3ul li{ text-indent:-1.4em; padding-left:1.4em; }
	
/* text-decoration
****************************************************/
.tdu { text-decoration: underline; }

/* font
****************************************************/
.fwb { font-weight: bold; }

/* color
****************************************************/

	.col_red{ color:red; }
	.col_white{ color:white; }
	.col_1, .col1ul li:before, .col1icon:before{ color:#e5e8ef; }
	.col_2, .col2ul li:before, .col2icon:before{ color:#c63527; }
	.col_3, .col3ul li:before, .col3icon:before{ color:#001e62; }
	.col_4, .col4ul li:before, .col4icon:before{ color:#000000; }
	.col_5, .col5ul li:before, .col5icon:before{ color:#1c59de; }

/* background
****************************************************/

	/* color */
	.bg1col{ background-color:#1f2774; }
	.bg2col{ background-color:#e7f0fa; }
	.bg3col{ background-color:#ffffff; }

/* icon
****************************************************/

	.icon_1:before, .icon1ul li:before, .icon1dl dt:before{ content:"▶ "; }
	.icon_2:before, .icon2ul li:before, .icon2dl dt:before{ content:"● "; }
	.icon_3:before, .icon3ul li:before, .icon3dl dt:before{ content:"◆ "; }
	.icon_4:before, .icon4ul li:before, .icon4dl dt:before{ content:"■ "; }
	.icon_5:before, .icon5ul li:before, .icon5dl dt:before{ content:"▲ "; }
	.icon_6:before, .icon6ul li:before, .icon6dl dt:before{ content:"※"; }

/* font-size
****************************************************/

	.fs_s{ font-size:small; }
	.fs12{ font-size:12px; }
	.fs14{ font-size:14px; }
	.fs15{ font-size:15px; }
	.fs16{ font-size:16px; }
	.fs20{ font-size:20px; }
	.fs24{ font-size:24px; }

/* border
****************************************************/
.bd01-blue { border: 1px solid #001E62; }

/* border-radius
****************************************************/

	.br05{ border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; }
	.br10, .br10ul li{ border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px; }
	.br15{ border-radius:15px; -webkit-border-radius:15px; -moz-border-radius:15px; }
	.br25, .br25ul li, .br25a a{ border-radius:25px; -webkit-border-radius:25px; -moz-border-radius:25px; }
	.br50{ border-radius:50px; -webkit-border-radius:50px; -moz-border-radius:50px; }

/* list-style
****************************************************/

	.ls_disc{ list-style:disc; margin-left:1em; }

/* btn
****************************************************/

	.btn_1{ display:inline-block; color:#fff; font-weight: bold;  border-radius: 20px; text-align:center; padding: 0 15px; background-color:#14466e; }
	.btn_2{ display:inline-block; color:#fff; font-weight: bold;  border-radius: 20px; text-align:center; padding: 0 15px; background-color:#be2337; }
	.btn_3 { display: inline-block; padding: 10px 50px; color: #000; font-size: 100%; font-weight: bold; background-color: #fff; border: 2px solid #c63527; border-radius: 25px; line-height: 1.2; text-align: center; }
	.btn_3:hover { color: #fff; font-weight: bold; background-color: #c63527; text-decoration: none; }
	.btn_4 { display: inline-block; padding: 10px 50px; color: #fff; font-size: 100%; font-weight: bold; background-color: #c63527; border: 2px solid #c63527; border-radius: 25px; line-height: 1.2; text-align: center; }
	.btn_4:hover { color: #000; font-weight: bold; background-color: #fff; text-decoration: none; }
.btn_5 { display: inline-block; padding: 2px 6px; color: #000; font-size: 0.65em; background-color: #fff; border: 1px solid #000; text-align: center; white-space: nowrap; width: 16em;} 
.btn_5_2 { display: inline-block; padding: 2px 6px; color: #000; font-size: 0.8em; background-color: #fff; border: 1px solid #000; text-align: center; white-space: nowrap;width: 15em;} 
@media screen and (max-width: 599px) {
 .btn_5, .btn_5_2{width: 75%; font-size: 16px; margin:5px 0;}
} 
/* border
****************************************************/

/* 定義リスト
****************************************************/
.data-list-01__item { margin-top: 30px; }
.data-list-01__title { padding: 0 0 20px 60px; color:#001e62; font-size: 110%; font-weight:bold; background:url(images/q.png) no-repeat left top; border-bottom: 1px solid #b2b2b2; }
.data-list-01__desc { margin-top: 20px; padding: 0 0 30px 60px; background:url(images/a.png) no-repeat left top; line-height: 1.8; }

/* headline
****************************************************/
	.hl1{ background:url(images/bg1.png) repeat-x bottom #001e62; color:#fff; text-align:center; padding:10px 0 17px; }
	.hl3-icon1 { background: url(images/icon1.png) no-repeat left center; padding-left: 21px; }
	.hl4 { padding: 5px 10px; color: #fff; font-size: 120%; background-color: #001e62; }
	.hl5 { padding-bottom: 12px; color: #000; font-size: 100%; background: url(images/bg2.png) repeat-x bottom; }
	.hl6 { padding-left: 26px; font-size: 110%; background: url(images/icon1.png) no-repeat left top; }

/* header
****************************************************/
header .en-fb-box { display: flex; justify-content: space-between; width: 286px; }
@media screen and (max-width: 599px) {
	header .en-fb-box { width: 100%; justify-content: center; }
	header .en-button { line-height: 2em; }
	header .en-fb-box a + a { margin-left: 10px; }
}
header .en-button.demo { width: 135px; }
header .en-button { position: relative; display: block; overflow: hidden; width: 286px; background-color: #001e62; text-align: center; text-decoration: none; z-index: 1; }
header .en-button .text { position: relative; color: #fff; z-index: 2; }
header .en-button::before { content: ''; position: absolute; top: 0; right: -50px; bottom: 0; left: 0; border-right: 50px solid transparent; border-bottom: 80px solid #c63527; transform: translateX(-100%); transition: 0.5s ease-in-out; z-index: 2; }
header .en-button .text::before { content: ">"; font-weight: bold; color: #fff; margin-right: 10px; }
header .en-button .text:hover { color: #fff; }
header .en-button:hover::before { transform: translateX(0); transition: 0.5s ease-in-out; z-index: 2; }
@media screen and (min-width: 600px) {
	header .pc.en-button { text-align: center; }
}
@media screen and (max-width: 599px) {
	header .sp.en-button { margin-left: auto; margin-right: auto; padding: 5px; }
}

/* page title
****************************************************/

	.pp1ttl{ background:url(images/sv1300.png) no-repeat center top; text-align:center; color:#fff; }

/* content
****************************************************/

	/* section */

	/* notice */
	#notice{ height:310px; overflow:auto; }

	#notice li, #notice2 li{ padding-right:25px; margin-top:30px; }
    #notice li:nth-child(1),#notice2 li:nth-child(1){ margin-top:0; }
	#notice::-webkit-scrollbar,#notice2::-webkit-scrollbar {
		all:unset;
		width:6px;
		background:transparent;
	}

	#notice::-webkit-scrollbar-track,#notice2::-webkit-scrollbar-track {
		all:unset;
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
		background: transparent;
	}

	#notice::-webkit-scrollbar-thumb,#notice2::-webkit-scrollbar-thumb {
		all:unset;
		background:#333333;
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
		border-radius: 8px;
	}

	#notice::-webkit-scrollbar-thumb:hover,#notice2::-webkit-scrollbar-thumb:hover {
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
		background: transparent;
	}
	/* index */
	#index .sec1 .fl, #index .sec1 .fl2{ border:1px solid #001e62; }
	#index .sec3 .box2{ border:1px solid #001e62; }
	#index .sec3 .box2 h3{ background:url(images/bg2.png) repeat-x bottom; color:#c63527; padding-bottom:20px; margin-bottom:15px; }
	#index .sec3 .box4{ border:2px solid #001e62; box-shadow:6px 6px 0 0 rgba(0,30,98,0.5); }
	#index .sec3 .box5{ border:2px solid #c63527; box-shadow:6px 6px 0 0 rgba(198,53,39,0.5); }

	#index .sec3 .box6 .fl .babycar { border: #001e62 1px solid; padding: 0 0 5px;}
	#index .sec3 .box6 .fl .babycar .title { padding: 5px; background-color: #7F8EB0; color: #fff; text-align: center; }
	#index .sec3 .box6 .fl .babycar .text { padding: 5px 10px; }

	#index .sec3 .box6 .fr .change { border: #e29992 1px solid; padding: 0 0 5px;}
	#index .sec3 .box6 .fr .change .title { padding: 5px; background-color: #e29992; color: #fff; }
	#index .sec3 .box6 .fr .change .text { padding: 5px 10px; text-align: left; }
	#index .sec3 .box_second{ padding:20px; border:2px solid #c63527; }
	#index .sec3 .box_second h3{ background:url(images/icon1.png) no-repeat left center; padding-left:21px; }

#index .btnf { width: 100%; background-color:#7f8eb0; /*border:1px solid #001e62;*/ color:#fff; padding:5px; font-weight:bold; text-align: center; display:inline-block; border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; }
#index .btnf:hover{ background-color:#001e62; color:#fff; text-decoration:none; }
#index .pd-y10{ padding:0 10px ;}



#index .first { line-height: 1.6; border:2px solid #ccd2e0; border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; }
#index .first-body { padding:10px; }
#index .waitline{ text-align: center; background-color:#ebeced; border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; padding:5px; margin:5px 0; }
#index .other{ font-size: 110%; color:#001e62; font-weight: bold; text-align: center; padding:10px; background-color:#e5e8ef; margin-bottom:50px; }
#index .schedule { font-size: 110%; font-weight: bold; margin-top:40px; background:url(images/icon1.png) no-repeat left center; padding-left:21px; }
#index .sec5{ background:url(images/bg2.png) repeat-x top center; padding:40px 15px 30px; }
#index .sec5 .text1 { font-size: 120%; color: #001e62; font-weight: bold; text-align: center; }

/* #index .sec5 li { text-align: center; border:2px solid #001e62; padding:10px; margin-top: 20px; background-color::#e5e8ef; border-radius:35px; -webkit-border-radius:35px; -moz-border-radius:35px; } */
#index .sec5 li:before { content:"▶"; margin-right:5px; color:#c63527; }

#index .sec2 .policy3{ border:1px dotted #001e62;/*background-color:#e5e8ef;*/ padding: 20px; /*border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px;*/ }
#index .policy3 .title{ color:#001e62; font-weight: bold; }

/* Swiper
****************************************************/
.swiper-button-next:after, .swiper-button-prev:after {
	color: #001e62;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
	background: #001e62;
}


/* greeting */
	#greeting .box2, #greeting .box3, #greeting .box4{ border:1px solid #001e62; }
	#greeting .box2 h3, #greeting .box3 h3, #greeting .box4 h3{ background:url(images/icon1.png) no-repeat left center; padding-left:21px; }
    #greeting .namem{ background-color:#001e62; font-size: 120%; color:#fff; font-weight: bold; text-align: center; padding:5px; }
	#greeting .namef{ background-color:#c63527; font-size: 120%; color:#fff; font-weight: bold; text-align: center; padding:5px; }
	/*#greeting .dg:before { content:"▶"; margin-right:5px; color:#c63527; }*/
    #greeting .drlink ul, #greeting .media ul { margin-top: 10px; }
    #greeting .drlink li, #greeting .media li { margin-left: 20px; }

/* medical */
#medical .sec1 .fl .babycar { border: #001e62 1px solid; padding: 0 0 5px;}
#medical .sec1 .fl .babycar .title { padding: 5px; background-color: #7F8EB0; color: #fff; text-align: center;}
#medical .sec1 .fl .babycar .text { padding: 5px 10px; }

#medical .sec1 .fr .change { border: #e29992 1px solid; padding: 0 0 5px;}
#medical .sec1 .fr .change .title { padding: 5px; background-color: #e29992; color: #fff; }
#medical .sec1 .fr .change .text { padding: 5px 10px; text-align: left; }
#medical .sec2 h3{ background:url(images/bg2.png) repeat-x bottom; color:#c63527; padding-bottom:15px; }

#medical .dock ol {
counter-reset: li;
}

#medical .dock ol > li {
list-style: none;
position: relative;
padding-left: 2em; /*li:before分左に余白を。調整可*/
margin-bottom: 10px;
}

#medical .dock ol > li:before {
counter-increment: li;
content: counter(li);
margin-right: 1em;
background: #001e62;
color: #ffffff;
border-radius: 50%;
text-align: center;
width: 1.5em; /*幅を決めるheightと同じ数値に*/
height: 1.5em; /*高さ。widthと同じ数値に。数値変更した場合はline-heightで調整を*/
position: absolute; /*リストの基準から移動させる*/
left: 0em; /*項目の基準、左にあわせる*/
top: 2px; /*基準の上から2pxの位置に表示。テーマによって位置がずれる場合は修正を*/
line-height: 1.6;/*数字の位置あわせで数値を指定*/
}

#medical .dock2 { /*border:2px solid #001e62;*/ background-color:#e5e8ef; padding:30px 20px; margin-top:20px; }
#medical .dock ul { text-indent: -1em; margin-left: 1em; margin-top:10px; }

#medical .text1 { font-size: 120%; color: #001e62; font-weight: bold; text-align: center; border-top:1px solid #001e62; border-bottom:1px solid #001e62; padding:5px 0; margin-bottom: 20px; }
#medical .text2 { font-size: 110%; color: #001e62; font-weight: bold; text-align: center; /*border:1px solid #001e62;*/ padding:5px 0; margin-top: 20px; background-color:#fff; border-radius:25px; -webkit-border-radius:25px; -moz-border-radius:25px; }
#medical .text3 ul li:before { content: "※"; }
#medical .text4 ul li:before{ content:"●"; color:#001e62; }
#medical .text5{ font-size: 90%; }
#medical .bkg1 { background-color:#7f8eb0; color:#fff; font-weight:bold; padding:3px 8px 3px 5px; margin: 0 3px; }
#medical .bkg2 { background-color:#e29992; color:#fff; font-weight:bold; padding:3px 8px 3px 5px; margin: 0 3px; }
#medical .other{ font-size: 110%; color:#001e62; font-weight: bold; text-align: center; padding:10px; background-color:#e5e8ef; margin-top:50px; }

#medical .table_5{ border-collapse: collapse; margin: 10px auto; font-size: 90%; }
#medical .table_5 th{ background-color: #7f8eb0; color: #fff; text-align: center; padding: 10px; border: 1px solid #b2b2b2;}
#medical .table_5 td{ padding: 10px; border: 1px solid #b2b2b2; }

#medical .pc .btn_cro{ min-width: 313px; text-align: left; }

#medical .schedule { font-size: 110%; font-weight: bold; margin-top:40px; background:url(images/icon1.png) no-repeat left center; padding-left:21px; }

	/* guide */
	#guide h3{ background:url(images/bg2.png) repeat-x bottom; text-align:center; padding-bottom:15px; }
	#guide .sec1 h3{ margin:10px 0; }
	/* access */
	#access .sec1 h3{ background:url(images/bg2.png) repeat-x bottom; text-align:center; padding-bottom:20px; }
	#access .sec1 .box1{ background-color:#001e62; color:#fff; text-align:center; padding:5px 0; }
	#access .sec1 .box2 { background-color:#c63527; color:#fff; text-align:center; padding:5px 0; }
	#access .sec1 .box2 a{ color:#fff;  }
	#access .sec2 .box1::first-letter{ color:#c63527; font-weight:bold; }
	#access .sec2 .box1{ text-indent:-2em; padding-left:2em; margin-top:20px; }
    #guide .sec2 img{ margin-bottom:10px; }
/* myopine */
#myopine .copy{ font-size: 140%; color:#001e62; font-weight:bold; margin-bottom:30px; text-align: center;}
#myopine .sec2 h3{ background:url(images/bg2.png) repeat-x bottom; color:#c63527; padding-bottom:15px; }
#myopine .eff ul { text-indent: -1em; margin-left: 1em; }
#myopine .eff ul li:before { content: "※"; }
#myopine .feat ul { text-indent: -1em; margin-left: 1em; }
#myopine .feat ul li:before { content: "●"; color:#001e62; }
#myopine .feat li { margin-top: 10px; }
#myopine .que{ background:url(images/q.png) no-repeat left top; padding:0 0 10px 50px; /*border-bottom:1px #001e62 dotted;*/ font-size: 110%; color:#001e62; line-height: 40px; font-weight:bold; margin-top:30px; }
#myopine .ans{ background:url(images/a.png) no-repeat left top; padding:3px 0 30px 50px; margin:30px 0; border-bottom:1px #b2b2b2 dotted; }
#myopine .ans ol { position: relative; margin: 0; padding: 0; }
#myopine .ans ol li { list-style: none; list-style-position: outside; margin-top: 10px; padding-left: 1.25em; }
#myopine .ans ol li span { position: absolute; left: 0; margin: 0; }
#myopine .ans ol li:first-child { margin-top: 0; }
#myopine .contact{ background-color:#e5e7ef; text-align: center; padding:40px 20px; margin-top: 50px; }
#myopine .contact .title{ background-color:#001e62; color:#fff; font-size: 120%; font-weight: bold; text-align: center; padding:5px; }
#myopine .text1 { font-size: 80%; }
#myopine .table_1 th.my01{ background-color: #ffd9bc; }
#myopine .table_1 td.cell1_my01{ text-align: center; background-color: #fff4eb; }
#myopine .table_1 th.my25{ background-color: #d4f3ff; }
#myopine .table_1 td.cell1_my25{ text-align: center; background-color: #eefaff; }
#myopine .myopine-price__area { margin-top: 30px; padding: 20px; border: 3px solid #001e62; border-radius: 20px; }
#myopine .myopine-price__area .title{ padding:5px 10px; font-size:110%; color: #001e62; }

/* ophthalmology */
#ophthalmology h3{ font-size:140%; background:url(images/icon1.png) no-repeat left center; padding-left:26px; }
#ophthalmology h4{ font-size:120%; background-color:#001e62; color:#fff; margin-top:50px; padding:5px 10px; }
#ophthalmology h5{ font-size:100%; background:url(images/bg2.png) repeat-x bottom; color:#000; padding-bottom:12px; margin-top:30px; }
/*#ophthalmology .link{ font-size:120%; }*/


/* allergytest */
#allergytest h3{ font-size:140%; background:url(images/icon1.png) no-repeat left center; padding-left:26px; }
#allergytest h4{ font-size:120%; background-color:#001e62; color:#fff; margin-top:50px; padding:5px 10px; }
#allergytest h5{ font-size:100%; background:url(images/bg2.png) repeat-x bottom; color:#000; padding-bottom:12px; margin-top:30px; }


#allergytest .allergytest-pt img{ margin-top: 10px;}

#allergytest .allergy-list dt{padding: 10px 10px 0;}
#allergytest .allergy-list dd{ margin-top: 10px;}
#allergytest .allergy-list .dust~dd{ padding: 2px 10px; background-color: #e5e8ef;}
#allergytest .allergy-list .pollen~dd{ padding: 2px 10px; background-color: #f4c6c2;}
#allergytest .allergytest_flow li{margin-top: 20px;background-color: #e5e8ef; padding: 10px; box-sizing: border-box;}
#allergytest .allergytest_flow li .allergytest_num{ padding: 5px; text-align: center; font-weight: bold; color: #fff; background-color: #7f8eb0; }
#allergytest .allergytest_flow li p{ min-height: 3.6em;}
#allergytest .allergytest_flow li .allergytest_img img{ width: 100%; }

#allergytest .allergytest_dock { padding: 10px; background-color:#e5e8ef;}

/* media */
#media h3{ background:url(images/icon1.png) no-repeat left center; padding-left:21px; }
#media .box3{ border:1px solid #001e62; padding: 15px; }
#media table{ border-collapse: collapse; width: 100%; }
#media table th,#media table td{ padding: 10px; border: solid 1px #ccc; }
#media table th{ background-color: #001e62; color: #fff; }

/* glaucoma（緑内障） */
#glaucoma .sec1 .fr li:nth-child(3){ border: #e29992 1px solid; padding: 0 0 5px;}
#glaucoma .sec1 .fr li:nth-child(3) span{ display: block; padding: 5px; background-color: #e29992; color: #fff; }
#glaucoma .sec2 h3{ background:url(images/bg2.png) repeat-x bottom; color:#c63527; padding-bottom:15px; }
#glaucoma .sec2 h4{ background: url(images/icon1.png) no-repeat left center; padding-left: 21px; }
#glaucoma .sec2 .movie { position: relative; width: 100%; padding-top: 56.25%; }
#glaucoma .sec2 .movie iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
#glaucoma .eyes-pressure dt { font-weight: bold; }
#glaucoma .eyes-pressure dt::before { content: "●"; margin-right: 5px; font-weight: bold; color: #c63527; }
#glaucoma .question { padding: 20px; border: 1px solid #001e62; }
#glaucoma .question dt, #glaucoma .question dd { padding-left: 1em; text-indent: -1em;}
#glaucoma .question dt::before { content: "Q."; margin-right: 5px; font-weight: bold; color: #001e62; }
#glaucoma .question dd::before { content: "A."; margin-right: 5px; font-weight: bold; color: #c63527; }
#glaucoma .dock h4 { background-image: none; }
#glaucoma .dock ol { counter-reset: li; }
#glaucoma .dock ol > li { list-style: none; position: relative; padding-left: 2em; margin-bottom: 10px; }
#glaucoma .dock ol > li:before { counter-increment: li; content: counter(li); margin-right: 1em; background: #001e62; color: #ffffff; border-radius: 50%; text-align: center; width: 1.5em; height: 1.5em; position: absolute; left: 0em; top: 2px; line-height: 1.6; }
#glaucoma .dock2 { /*border:2px solid #001e62;*/ background-color:#e5e8ef; padding:30px 20px; }
#glaucoma .dock ul { text-indent: -1em; margin-left: 1em; margin-top:10px; }
#glaucoma .text1 { font-size: 120%; color: #c63527; font-weight: bold; text-align: center; border-top:1px solid #001e62; border-bottom:1px solid #001e62; padding:5px 0; margin-bottom: 20px; }
#glaucoma .text2 { font-size: 110%; color: #001e62; font-weight: bold; text-align: center; /*border:1px solid #001e62;*/ padding:5px 0; margin-top: 20px; background-color:#fff; border-radius:25px; -webkit-border-radius:25px; -moz-border-radius:25px; }
#glaucoma .text3 ul li:before { content: "※"; }
#glaucoma .text4 ul li:before{ content:"●"; color:#001e62; }
#glaucoma .text5{ font-size: 90%; }
#glaucoma .bkg1 { background-color:#7f8eb0; color:#fff; font-weight:bold; padding:3px 8px 3px 5px; margin: 0 3px; }
#glaucoma .bkg2 { background-color:#e29992; color:#fff; font-weight:bold; padding:3px 8px 3px 5px; margin: 0 3px; }
#glaucoma .other{ font-size: 110%; color:#001e62; font-weight: bold; text-align: center; padding:10px; background-color:#e5e8ef; margin-top:50px; }

/* media-movie（メディア関連動画一覧） */
#media-movie .movies__list { display: flex; flex-wrap: wrap; justify-content: space-between; }
#media-movie .movies__item:not(:nth-of-type(1)):not(:nth-of-type(2)) { margin-top: 5em; }
#media-movie .movies__item { width: calc(100% / 2 - 30px); }
#media-movie .movies__item .movie iframe { width: 100%; height: 300px; }
#media-movie .movies__item .headline { margin-top: 10px; font-size: 18px; line-height: 1.5; }
@media screen and (max-width: 599px) {
	#media-movie .movies__item:nth-of-type(2) { margin-top: 5em; }
	#media-movie .movies__item { width: 100%; }
	#media-movie .movies__item .movie iframe { height: 200px; }
}

/* crocetin */
#crocetin .price .table { border-collapse: collapse; width: 100%; }
#crocetin .price .table tr th, #crocetin .price .table td { display: block; padding: 10px 15px; border: 1px solid #001665; }
#crocetin .price .table tr th { width: 100%; color: #fafafa; background-color: #001665; }
#crocetin .copy{ font-size: 140%; color:#001e62; font-weight:bold; margin-bottom:30px; text-align: center;}
#crocetin .sec2 h3{ background:url(images/bg2.png) repeat-x bottom; color:#c63527; padding-bottom:15px; }
#crocetin .eff ul { text-indent: -1em; margin-left: 1em; }
#crocetin .eff ul li:before { content: "※"; }
#crocetin .feat ul { text-indent: -1em; margin-left: 1em; }
#crocetin .feat ul li:before { content: "●"; color:#001e62; }
#crocetin .feat li { margin-top: 10px; }
#crocetin .que{ background:url(images/q.png) no-repeat left top; padding:0 0 10px 50px; /*border-bottom:1px #001e62 dotted;*/ font-size: 110%; color:#001e62; line-height: 40px; font-weight:bold; margin-top:30px; }
#crocetin .ans{ background:url(images/a.png) no-repeat left top; padding:3px 0 30px 50px; margin:30px 0; border-bottom:1px #b2b2b2 dotted; }
#crocetin .ans ol { position: relative; margin: 0; padding: 0; }
#crocetin .ans ol li { list-style: none; list-style-position: outside; margin-top: 10px; padding-left: 1.25em; }
#crocetin .ans ol li span { position: absolute; left: 0; margin: 0; }
#crocetin .ans ol li:first-child { margin-top: 0; }
#crocetin .contact{ background-color:#e5e7ef; text-align: center; padding:40px 20px; margin-top: 50px; }
#crocetin .contact .title{ background-color:#001e62; color:#fff; font-size: 120%; font-weight: bold; text-align: center; padding:5px; }

@media screen and (min-width: 600px) {
	#crocetin .price .table tr th, #crocetin .price .table td { display: table-cell; }
	#crocetin .price .table tr th { width: 350px; }
	#crocetin .price .table tr:not(:nth-last-of-type(1)) th { border-bottom: 1px solid #fafafa; }
}

/* myopia-check */
#myopia-check .price .table { border-collapse: collapse; width: 100%; }
#myopia-check .price .table tr th, #myopia-check .price .table td { display: block; padding: 10px 15px; border: 1px solid #001665; }
#myopia-check .price .table tr th { width: 100%; color: #fafafa; background-color: #001665; }
#myopia-check .contact{ background-color:#e5e7ef; text-align: center; padding:40px 20px; margin-top: 50px; }
#myopia-check .contact .title{ background-color:#001e62; color:#fff; font-size: 120%; font-weight: bold; text-align: center; padding:5px; }

@media screen and (min-width: 600px) {
	#myopia-check .price .table tr th, #myopia-check .price .table td { display: table-cell; }
	#myopia-check .price .table tr th { width: 350px; }
	#myopia-check .price .table tr:not(:nth-last-of-type(1)) th { border-bottom: 1px solid #fafafa; }
}

/* symptom
****************************************************/

	/* common */
	#symptom dd a, #symptom2 li a{ text-decoration:none; color:#000000 }
	#symptom2 li a:before, #symptom3 .back:before{ content:"▶"; font-size:14px; margin-right:5px; color:#000000; }
	#symptom2 li a:hover:before, #symptom3 .back:hover:before{ color:#c63527; text-decoration:none; }
	/* symptom */
	#symptom{ font-size:16px; }
	#symptom dl{ border:1px solid #001e62; }
	#symptom dt{ background:url(images/bg3.png) repeat-x bottom #001e62; color:#fff; font-weight:bold; text-align:center; padding:5px 0 12px; }
	#symptom dd a:before{ content:"▶"; font-size:14px; margin-right:5px; color:#c63527; }
	#symptom dd a:hover:before{ color:#000000; }
	#symptom dd{ padding:15px; line-height:150%; }
	#symptom dd a{ display:block; margin-top:1em; text-align:right; }
	/* symptom2 */
	#symptom2 dt, #symptom3 h3{ background:url(images/bg2.png) repeat-x bottom; font-weight:bold; padding-bottom:20px; text-align:center; }
	#symptom2 dd{ margin-top:30px; }
	#symptom2 ul, #symptom3 .outline{ border:1px solid #001e62; }
	/* symptom3 */
	#symptom3 h4{ border-bottom:3px solid #c63527; padding-bottom:15px; margin-bottom:20px; }
	#symptom3 dt{ font-weight:bold; margin-top:1em; }
	#symptom3 dt:before{ content:"【"; margin-right:5px; }
	#symptom3 dt:after{ content:"】"; margin-left:5px; }
	#symptom3 .back{ padding-top:1em; }
	#symptom3 .outline{ margin-top:50px; }

/* disease
****************************************************/

	#disease h3{ background:url(images/icon1.png) no-repeat left center; padding-left:26px; }
	#disease dl{}
	#disease dt{ background-color:#001e62; color:#fff; margin-top:40px; padding:10px 20px; }
	#disease dd{ padding:20px; }
	#disease li a{
		border:2px solid #001e62;
		color:#000;
		display:block;
		font-size:20px;
		text-align:center;
		letter-spacing:.5em;
	}
	#disease li a:hover{ background-color:#001e62; text-decoration:none; color:#fff; }
	#disease li a:before{ content:"▶"; margin-right:5px; color:#c63527; }
	#disease li a:hover:before{ color:#fff; }

/* first
****************************************************/

	#first h3{ background:url(images/icon1.png) no-repeat left center; padding-left:21px; }
	#first dt{ font-size:120%; color:#001e62; font-weight:bold; }
	#first dt:before{ content:"▶ "; color:#fff; }
	#first dd{ margin:20px 20px 50px; }
	#first .box1{ padding:20px; border:2px solid #c63527;  }
	#first .bkg2 { background-color:#e29992; color:#fff; font-weight:bold; padding:5px 10px; margin: 20px; }




/* about
****************************************************/

	#about dt:before{ content:"▶ "; color:#c63527; }
	#about dd{ margin:15px 15px 50px; }

/* sitemap
****************************************************/

	#sitemap li{ margin-top:15px; }
	#sitemap .parent li:before{ content:"▶"; color:#c63527; margin-right:.5em; }
	#sitemap .child li:before{ content:"";  margin-right:0; }
	#sitemap .child a{ text-decoration:underline; }
	#sitemap .child a:hover{ text-decoration:none; }

/* footer
****************************************************/

	footer{ background:url(images/bg2.png) repeat-x top center; }
	footer .sec1 .adr1{ background-color:#fff; color:#6f004f; font-weight:bold; padding:10px; }
	footer .sec1 .smaregi{ padding: 0 0 5px; }
	footer .sec1 .smaregi span{ display: block; text-align: center; margin-bottom: 5px; padding: 5px; background-color: #e29992; color: #fff; }


	footer .sec2{ font-size:14px; background-color:#001e62; color:#fff; }
	footer .sec2 a{ color:#fff; }
	address{ font-size:12px; text-align:center; }
	footer .facebook { width: 100%; text-align: center; }

/* 404
****************************************************/

	.error404{ text-align:center; color:red; padding:100px 0; }

/* pagetop
****************************************************/

	.pagetop {
		display:none;
		position:fixed;
		bottom:5px;
		right:10px;
		line-height:0;
	}
	.pagetop a{
		display:block;
		padding:5px;
		background-color:#c63527;
		text-align:center;
		color:#ffffff;
		text-decoration:none;
		margin-bottom:5px;
		border-radius:5px;
		-webkit-border-radius:5px;
		-moz-border-radius:5px;
		opacity:.5;
	}
	.pagetop a:hover, .pagetop a:hover img{ opacity:1.0; }


/* english
****************************************************/
#english .header_en{ border-bottom:1px solid #001e62; }
#english .logo_en{ margin:25px 0; }
/* #english h2{ font-size:110%; border-bottom:4px solid #001e62; } */
#english h3.add{ font-size:110%; background:url(images/icon1.png) no-repeat left top; padding-left:26px; }
/* #english h4{ font-size:100%; color:#fff; background-color:#7f8eb0; padding:3px 10px; } */
#english .footer_en{ font-size:70%; color: #fff; text-align: center; background-color:#1f2774; }
#english .btn_en { font-size:100%; line-height: 1.2; font-weight: bold; background-color:#fff; color:#000; padding:10px 50px; text-align: center; display:inline-block; border:2px solid #c63527; border-radius:25px; -webkit-border-radius:25px; -moz-border-radius:25px; }
#english .btn_en:hover{ background-color:#c63527; color:#fff; font-weight: bold; text-decoration:none; }
#english .ul_en li{ background:url(images/icon1.png) no-repeat left top; padding-left:26px; margin-top: 30px; }
#english .ol li{ margin-top: 20px; }
#english .ol li:nth-child(1){ margin-top: 0; }
#english .text_en1{ font-size:90%; }
#english .overflow-box { height: 320px; padding: 0 15px; overflow-y: scroll; border: 1px solid #333; }


/* recruit
****************************************************/

#recruit .heading02 {
	position: relative;
	margin-top: 30px;
	text-align: center;
}
#recruit .heading02::after {
	  content: "";
    position: absolute;
    bottom: -24%;
    left: 0;
    right: 0;
    margin: auto;
    width: 70px;
    height: 5px;
    background-color: #cf001c;
}
#recruit .heading02--subtext {
	font-size: 0.8em;
}

#recruit h3 {
    text-align: center;
    color: #fff;
    background-color: #001e62;
    padding: 5px;
    border-bottom: 3px solid #c63527;
}
#recruit .inner{
	padding: 30px 0;
}
#recruit .list01 {
	padding: 10px 30px;
}
#recruit .list01 li {
	font-weight: bold;
	font-size:16px;
	padding: 8px 0;
	line-height: 1.2;
}

#recruit .recruit--text {
	margin-bottom: 10px;
}

#recruit .table01 {
	width: 100%;
	font-size: 16px;
	border-collapse: collapse;
}
#recruit .table01 .thead,#recruit .table01 .titem {
	padding: 15px;
	border: 1px solid #ccc;
}
#recruit .table01 .thead {
	width: 140px;
	color: #fafafa;
	background-color: #001665;
	line-height: 1.35;
}
#recruit .table01 .titem {
	line-height: 1.75;
}
#recruit .table01 .table01--text + .table01--text {
	margin-top: 15px;
}

#recruit .recruit-button { padding: 15px 50px; border: 2px solid #c63527; font-weight: bold; color: #c63527; }
#recruit .recruit-button:hover { text-decoration: none; background: #c63527; color: #fff; }

@media screen and (max-width: 599px) {
	#recruit .table01 .thead,#recruit .table01 .titem {
		display: block;
		width: 100%;
	}
}




/**************************************************

	600px over

**************************************************/
@media only screen and (min-width:600px), print{

	a[href^="tel:"] {pointer-events:none;}/* PC時電話番号クリックで反応しない */

	/* common
	****************************************************/

		.wrap{ margin-left:auto; margin-right:auto; width:1000px; }
        .wrap2{ margin-left:auto; margin-right:auto; width:1300px; }
		.sp{ display:none!important; }

	/* width
	****************************************************/
		.w90 { width: 90px; }
		.w480 { width: 480px; }

	/* btn
	****************************************************/

		.btn1, .btn2{ display:inline-block; }
		.btn_db{ display:block; }

	/* margin
	****************************************************/

        .ml30{ margin-left:30px; }
		.mr20{ margin-right:20px; }
		.mr50{ margin-right:50px; }
		.mlr50{ margin-left:50px; margin-right:50px; }

	/* padding
	****************************************************/

		.pb50{ padding-bottom:50px; }
		.p20no40{ padding:20px 40px; }

	/* overflow:hidden;
	****************************************************/

		.oh, .oh_ul{ overflow:hidden; }
		.oh .fl, .oh_ul li{ float:left; }
		.oh .fr{ float:right; }
		.oh .cb{ clear:both; }

	/* column
	****************************************************/

		.clm{ letter-spacing:-0.4em; }
		.clm li{ display:inline-block; letter-spacing:normal; vertical-align:top; }
		.g-clm-gap10px { column-gap: 10px; }

	/* list
	****************************************************/

		.list li{ padding-left:100px; overflow:hidden; }
		.list li span{ display:block; float:left; width:100px; margin-left:-100px; }

	/* head line
	****************************************************/

	/* header
	****************************************************/

		header{ padding-bottom:20px; }
		header .logo{ margin-top:20px; }
		header .adr{ margin-top:15px; margin-left:45px; }
		header .fr{ text-align:right; }
		header .tel{ margin-top:15px; }

	/* nav PC
	****************************************************/

		nav{ width: 100%; background-color:#001e62; font-weight:bold; font-size:18px; }
		nav ul{ display: inline-block;}
		nav li{ display: inline-block; padding: 0 15px; }
		nav ul a{ display:block; text-align:center; color:#fff; line-height:50px; margin-left:8px; margin-right:8px; }
		nav ul a:hover, nav ul .on{ background:url(images/nav1bg.png) no-repeat center bottom; color:#fff; text-decoration:none; }
		.fixed{ position:fixed; top:0px; left:0px; z-index:9999; }
		.space{ margin-top:50px; }
		.none{ display:none; }

	/* page title
	****************************************************/

		.pp1ttl h2{ display:inline-block; width:600px; line-height:50px; margin:50px 0; background-color:rgba(0,30,98,0.75); }

	/* content
	****************************************************/

		/* common */
		.sec1sp{ padding:60px 0; }
		.sec2sp{ padding:60px 0 120px; }
        .sec3sp{ padding:60px 0 30px; }
		/* index */
		#index .sec1 .fl{ width:790px; height:410px; padding:20px 20px 0; }
        #index .sec1 .fl2{ width:790px; height:514px; padding:20px 20px 0; }
		#index .sec2 .fl{ width:530px; margin-top:50px; line-height:250%; }
		#index .sec3 .box1{ background:url(images/index3no1.png) no-repeat center center; height:476px; padding-top:80px; }
		#index .sec3 .box2{ width:500px; background-color:rgba(255,255,255,0.5); padding:30px 35px 20px; }
		#index .sec3 .box3{ width:1012px; padding-left:6px; padding-right:6px; }
		#index .sec3 .box3 .fl{ margin-right:50px; }
		#index .sec3 .box4, #index .sec3 .box5{ width:300px; height:400px; position:relative; margin-top:20px; margin-bottom:20px; }
		#index .sec3 .box4 .txt1, #index .sec3 .box5 .txt1{ padding:10px 20px 0; }
		#index .sec3 .box4 .ads1, #index .sec3 .box5 .ads1{ position:absolute; left:18px; bottom:20px; }
		#index .sec3 .box6{ width:800px; padding-bottom:75px; }
		#index .sec3 .box6 .fl{ width:480px; }
		#index .sec3 .box6 .fr{ width:300px; }

        #index .sec4 .wrap{ margin-top:100px; }
		#index .sec4{ padding-bottom:100px; }
		#index .sec4 .fr{ width:550px; }
		#index .sec4 .fr p{ line-height:250%; }

#index .sec1 .w200{ width:200px; }
#index .table_dr1{ width:100%; border-collapse:collapse; margin-top:20px; text-align: center; }
#index .table_dr1 th, .table_dr1 td{ padding:5px 10px; border:1px solid #b2b2b2; }
#index .table_dr1 th{ background-color:#7f8eb0; }
#index .table_dr1 .cellh1 { width:16%; background-color:#7f8eb0;color:#fff; }
#index .table_dr1 .cellh2{ width:12%; color:#fff; }
#index .table_dr1 .cellh3{ width:12%; color:#fff; }
#index .table_dr1 .cell1 { width:16%; background-color:#e5e8ef; }
#index .sec5 li{ margin-right:25px; }
#index .sec5 li:nth-child(last){ margin-right:0; }
#index .sec2 .policy1{ float:left; width:320px; margin-right:30px; }
#index .sec2 .policy2{ float:left; width:300px; margin-right:30px; }
#index .sec2 .policy3{ float:left; width:320px; }
#index .policy3 .title{ color:#001e62; font-weight: bold; }
#index .first{ height: 250px; }
#index .first .title{ font-size: 90%; line-height: 1.2; font-weight:bold; color:#001e62; text-align: center; background-color:#e5e8ef; border-bottom:2px solid #ccd2e0; padding:7px 5px 5px; }
#index .first .text1 { font-size: 80%; font-weight:bold; line-height: 1.4; color:#7f8eb0; }
#index .first .text2 { font-size: 80%; line-height: 1.4; margin-top:5px; }
#index .first .btn { width: 100%; font-size: 80%; background-color:#7f8eb0; /*border:1px solid #001e62;*/ color:#fff; padding:5px; font-weight:bold; text-align: center; display:inline-block; border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; }
#index .first .btn:hover{ background-color:#001e62; color:#fff; text-decoration:none; }
#index .btnf { font-size: 90%; }

#schedule { margin-top: -50px; padding-top: 50px; }

/* index banner(dr、Caloo)用 */
#index .spmb30{ margin-bottom: 0;}
#index .df{ display: flex; justify-content: space-evenly; max-width: 900px; margin: 0 auto 30px; }

/* notice */
#notice2{ height:420px; overflow:auto; }

/* greeting */
		#greeting .sec1 .box1 .fr, #greeting .sec2 .box1 .fl{ width:580px; }
		#greeting .sec1 .box1 .fr p, #greeting .sec2 .box1 .fl p{ line-height:250%; }
		#greeting .box2{ padding:30px; height:570px; line-height:1.7; }
        #greeting .box3{ padding:30px; }
		#greeting .box4{ padding:30px; height:630px; line-height:1.5; }
        #greeting .box2 .lst1 li, #greeting .box3 .lst1 li, #greeting .box4 .lst1 li{ padding-left:90px; overflow:hidden; }
		#greeting .box2 .lst1 li span, #greeting .box3 .lst1 li span, #greeting .box4 .lst1 li span{ display:block; float:left; width:90px; margin-left:-90px; }
		#greeting .thesis__box { height: 320px; padding: 0 15px; overflow-y: scroll; }
		#greeting .thesis__box .paper { margin-bottom: 10px; padding: 5px 10px; background-color: #d9e5ff; }
		#greeting .thesis__box .name { color: #001e62; }

		#greeting .box2.incho-shikaku { height: 640px; }
		#greeting .box2.incho-gakkai { height: 440px; }
		#greeting .box2.incho-koi { margin-top: 10px; height: 350px; }

		#greeting .box2.fukuincho { height: 700px; }

		/* medical */
		#medical .sec1{ width:800px; }
        #medical .sec1 .fl{ width:480px; }
        #medical .sec1 .fr{ width:300px; }
		#medical .sec2 h3{ margin-top:100px; }
		#medical .sec2 .fl{ width:650px; }

#medical .table_dr1{ width:100%; border-collapse:collapse; margin-top:20px; text-align: center; }
#medical .table_dr1 th, .table_dr1 td{ padding:5px 10px; border:1px solid #b2b2b2; }
#medical .table_dr1 th{ background-color:#7f8eb0; }
#medical .table_dr1 .cellh1 { width:16%; background-color:#7f8eb0;color:#fff; }
#medical .table_dr1 .cellh2{ width:12%; color:#fff; }
#medical .table_dr1 .cellh3{ width:12%; color:#fff; }
#medical .table_dr1 .cell1 { width:16%; background-color:#e5e8ef; }

#medical .table_1{ width:100%; border-collapse:collapse; margin-top:30px; text-align: center; }
#medical .table_1 th, .table_1 td{ padding:10px 20px; border:1px solid #b2b2b2; }
#medical .table_1 th{ background-color:#b3bdd3; }
#medical .table_1 .cellh1 { background-color:#7f8eb0;color:#fff; }
#medical .table_1 .cellh2{ background-color:#e29992;color:#fff; }
#medical .table_1 .cell1 { width:40%; background-color:#e5e8ef; font-weight:bold; }
#medical .table_1 .cell2{ width:15%; color:#001e62; }
#medical .table_1 .cell3{ width:15%; color:#c63527; }
#medical .table_1 tr:nth-child(10) { border-top:3px double #b2b2b2; }

#medical .table_3{ width:100%; border-collapse:collapse; margin-top:30px; }
#medical .table_3 th, .table_3 td{ padding:10px 20px; border:1px solid #b2b2b2; }
#medical .table_3 th{ background-color:#7f8eb0;color:#fff;text-align: center }
#medical .table_3 .cell1 { width:70%; font-weight:bold; }
#medical .table_3 .cell2{ width:30%; text-align: center; }


/* guide */
		#guide .sec1 .fl, #guide .sec1 .fr{ width:480px; height:600px; }
		#guide .sec1 .box1{ height:360px; }
		#guide .sec2 .fl, #guide .sec2 .fr{ width:300px; margin-top:50px; height:600px; }
		#guide .sec2 .fl{ margin-right:50px; }
		#guide .sec2 h3{ font-size:20px; line-height:125%; height:70px; display:table-cell; vertical-align:middle; width:300px; }

		/* access */
		#access .sec1 .wrap{ width:550px; }
		#access .sec2 .fl, #access .sec2 .fr{ width:480px; height:500px; }
/* myopine */
#myopine ol{ padding-left:25px; }
#myopine .sec1 .fl{ width:600px; }
#myopine .sec2 h3{ margin-top:75px; }
#myopine .sec2 .fl{ width:480px; }
#myopine .sec2 .fr{ width:500px; }
#myopine .ans{ min-height: 40px; }


	/* allergytest */
	#allergytest .allergytest-pt img{display: inline-block;}

	#allergytest .allergy-list{ width: 570px; }
	#allergytest .allergy-list dt{clear: both;}
	#allergytest .allergy-list dd{float: left; margin-right: 10px; width: calc( (100% - 10px)/2 );}
	#allergytest .allergy-list dd:nth-of-type(2n){margin-right: 0;}
	#allergytest .allergy-list dd:nth-of-type(2n+1){clear: both;}

	#allergytest .allergy-list p{clear: both;}

	#allergytest .allergytest_flow li{float: left; margin-right: 10px; width: calc( (100% - 20px)/3 ); }
	#allergytest .allergytest_flow li:last-child{ margin-right: 0; }

	/* glaucoma（緑内障） */
#glaucoma .sec1{ width:800px; }
#glaucoma .sec1 .fl{ width:480px; }
#glaucoma .sec1 .fr{ width:300px; }
#glaucoma .sec2 h3{ margin-top:100px; }
#glaucoma .sec2 .fl{ width:650px; }

	/* symptom
	****************************************************/

		#symptom2 .wrap, #symptom3 .wrap{ padding:40px; }
		/* symptom */
		#symptom .wrap{ width:1050px; }
		#symptom li{ width:300px; margin:25px; }
		#symptom dt{ font-size:20px; }
		#symptom dd{ height:140px; }
		/* symptom2 */
		#symptom2 dt, #symptom3 h3{ font-size:26px; }
		#symptom2 dt{}
		#symptom2 dd{ padding:10px 100px; }
		#symptom2 ul{ margin-top:40px; padding:20px 0 40px 100px; letter-spacing:-0.4em; }
		#symptom2 li{ display:inline-block; letter-spacing:normal; vertical-align:top; min-width:31%; margin-left:1%; margin-top:20px; }
		/* symptom3 */
		#symptom3 h3{}
		#symptom3 .dis{ padding:30px 100px 0 100px; }
		#symptom3 h4{ font-size:20px; margin-top:20px; }
		#symptom3 .des{ margin-top:1em; }
		#symptom3 .back{ margin:0 1em; }
		#symptom3 .outline{ padding:0 30px 30px; }
		#symptom2 .adj, #symptom3 .adj{ margin-left:50px; margin-right:50px; }

	/* disease
	****************************************************/

		/* disease */
		#disease h3{ font-size:28px; }
		#disease dl{ padding:20px 0; }
		#disease ul{ text-align:center; }
		#disease li{ margin:15px 0; }
		#disease li{ margin-right:40px; }
		#disease li:nth-child(2n){ margin-right:0; }
		#disease li a{ width:480px; padding:20px 0; line-height:20px; }

	/* sitemap
	****************************************************/

		#sitemap .wrap{ padding-left:100px; padding-right:100px; }
		#sitemap .child{ margin-left:1.5em; overflow:hidden; }
		#sitemap .child li{ float:left; width:33%; }

	/* bnr_list
	****************************************************/

		.bnr1list{ padding:20px 0; }
		.bnr1list li{ margin:0 15px; }

	/* footer
	****************************************************/

		footer .sec1{ line-height:120%; padding:60px 0 50px; font-size:15px; }
		footer .sec1 .box_l, footer .sec1 .box_r{ width:480px; }
		footer .sec2{ padding:10px 0; text-align:center; }
		footer .sec2 li{ margin:0 10px; }

	/* gmap
	****************************************************/

		.gmap{
			width:100%;
			position: relative;
			padding-bottom:400px;
			height: 0;
			overflow: hidden;
		}
		.gmap iframe, .gmap object, .gmap embed{
			position: absolute;
			top:0;
			left:0;
			width:100%;
			height:400px;
		}

	/* anc_adj
	****************************************************/

		.anc_adj{ margin-top:-50px; padding-top:50px; }

	/* table
	****************************************************/

		.tbl1 th, .tbl1 td{ width:20%; }

.table_1{ width:100%; border-collapse:collapse; margin-top:30px; }
.table_1 th, .table_1 td{ padding:10px 20px; border:1px solid #b2b2b2; }
.table_1 th{ background-color:#b3bdd3; }
.table_1 .cell1 { width:30%; font-weight:normal; text-align: center; background-color:#e5e7ef; }
.table_1 .cell2{ width:50%; }
.table_1 .cell3{ width:20%; }


/* english
****************************************************/
#english h1{ font-size:80%; color: #fff; margin-left:auto; margin-right:auto; width:1000px; }
#english .box_en1{ width: 460px; }
#english .box_en2{ width: 700px; }
#english .box_en3{ width: 550px; }
#english .ol { /*margin: 1em 0;*/ padding-left: 40px; list-style-type: decimal; margin-top: 30px; }
#english .overflow-box .ol { margin-top: 0; padding: 20px 40px; }


}


/* recruit
****************************************************/





/**************************************************

	600px under

**************************************************/
@media only screen and (max-width:599px){

	a[href^="tel:"] { pointer-events:auto; }/* SP時電話番号クリックで反応する */

	/* margin
	****************************************************/
	.mr10 { margin: 10px; }
	.sp_mt50 { margin-top: 50px; }

	/* common
	****************************************************/

		body{ font-size:16px; }
		.wrap, .wrap2, .wrap800, .section{ padding:15px; line-height:1.5em; }
		img{ max-width:100%; height:auto; }
		.img100p{ width:100%; }
		.pc{ display:none!important; }
		.sp_tac{ text-align:center; }

	/* padding
	****************************************************/

		.p20no40{ padding:10px 20px; }

	/* padding
	****************************************************/

		ol{ margin-left:30px; }

	/* btn
	****************************************************/

		.btn1, .btn2, .btn3, .btn4{ display:block; }

	/* header
	****************************************************/

		header{ text-align:center; }
		header p{ margin-top:10px; }
		header .logo{ margin-top:10px; padding-bottom:10px; }
		header .adr{ font-size:14px; }

	/* nav SP
	****************************************************/

		nav{ text-align:center; }
		nav ul{ margin-bottom:10px; padding:0 0 0 0; letter-spacing: -0.4em; }
		nav li{
			display:inline-table;
			width:31%;
			margin:5px 1% 0 1%;
			vertical-align:top;
			letter-spacing:normal;
			line-height:20px;
			font-size:12px;
		}
		nav li a{
			height:50px;
			display:table-cell;
			vertical-align:middle;
			color:#fff;
			text-align:center;
			border:1px solid #001e62;
			background-color:#001e62;
			border-radius:10px;
			-webkit-border-radius:10px; /* Safari,Google Chrome */
			-moz-border-radius:10px;	/* Firefox */
		}
		nav li a:hover{ background-color:#fff; color:#001e62; text-decoration:none; }

	/* page title
	****************************************************/

		.pp1ttl{ margin-top:20px; padding:15px 0; background-size:cover; }
		.pp1ttl h2{ display:inline-block; padding:5px 40px; background-color:rgba(0,30,98,0.75); }

	/* content
	****************************************************/

		/* common */
		.sec1sp, .sec2sp{ padding-top:50px; padding-bottom:50px; }
        .sec3sp{ padding-top:0px; padding-bottom:0px; }
		/* index */
		#index .sec1 .fl,#index .sec1 .fl2{ padding:15px; }
		/*#index .sec1 .fr, */#index .sec2 .fr{ margin-top:20px; }
		#index .sec3 .box2{ padding:15px; margin-top:20px; }
		#index .sec3 .box4, #index .sec3 .box5{ margin:25px 0; padding:15px; }
		#index .sec3 .box4 .txt1, #index .sec3 .box5 .txt1{ margin:15px 0; }
		#index .sec3 .box4 .ads1, #index .sec3 .box5 .ads1{ text-align:center; }
		#index .sec3 .box6{ padding-bottom:50px; }
		#index .sec4 { padding-bottom:50px; }
		#index .sec4 .fl{ margin-top:20px; }
		#index .sec4 .fr{ margin-top:30px; }
		#index .sec3 .box_second{ padding:20px; border:2px solid #c63527; margin:15px; }

#index .first .title{ /*font-size: 90%;*/ line-height: 1.2; font-weight:bold; color:#001e62; text-align: center; background-color:#e5e8ef; border-bottom:2px solid #ccd2e0; padding:7px 5px 5px; }
#index .first .text1 { /*font-size: 80%;*/ font-weight:bold; line-height: 1.4; color:#7f8eb0; }
#index .first .text2 { /*font-size: 80%;*/ line-height: 1.4; margin-top:5px; }
#index .first-body .btn { width: 100%; /*font-size: 80%;*/ background-color:#7f8eb0; /*border:1px solid #001e62;*/ color:#fff; padding:5px; font-weight:bold; text-align: center; display:inline-block; border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; }
#index .first .btn:hover{ background-color:#001e62; color:#fff; text-decoration:none; }
#index .btnf { font-size: 120%; }


#index .sp_btn_list{ overflow: hidden; }
#index .sp_btn_list li{ width: calc(( 100% - 5px ) / 2 ); float: left; margin-top: 5px;}
#index .sp_btn_list li:nth-child(2n+1){ margin-right: 5px;}


#index .waitline{ width:100%; margin:20px 0; }
#index .table_dr2{ width:100%; border-collapse:collapse; margin-top:20px; text-align: center; }
#index .table_dr2 th, .table_dr2 td{ padding:10px; border:1px solid #b2b2b2; }
#index .table_dr2 th{ width:33%; color:#fff; background-color:#7f8eb0; }
#index .table_dr2 .cell1 { background-color:#e5e8ef; }
#index .other{ margin-bottom:10px; }
#index .sec2 .policy2{ margin-top:30px; }
#index .sec2 .policy3{ margin-top:30px; }

/* index banner(dr、Caloo)用 */
#index .spmb30{ margin-bottom: 30px;}

/* notice */
#notice2{ height:250px; overflow:auto; }

/* greeting */
		#greeting .sec1 .box1 .fr, #greeting .sec2 .box1 .fl{ margin-top:30px; }
		#greeting .box2, #greeting .box3, #greeting .box4{ padding:15px; }
		#greeting .box2 .lst1 li span, #greeting .box3 .lst1 li span, #greeting .box4 .lst1 li span{ display:block; }

		#greeting .box2.incho-koi { margin-top: 50px; }

		/* medical */
		#medical .sec2 h3{ margin-top:60px; }

#medical .dock2 ol{ margin: 10px 0 0; }

#medical .table_dr2{ width:100%; border-collapse:collapse; margin-top:20px; text-align: center; }
#medical .table_dr2 th, .table_dr2 td{ padding:10px; border:1px solid #b2b2b2; }
#medical .table_dr2 th{ width:33%; color:#fff; background-color:#7f8eb0; }
#medical .table_dr2 .cell1 { background-color:#e5e8ef; }

#medical .table_2{ width:100%; border-collapse:collapse; margin-top:30px; text-align: center; font-size: 80%; }
#medical .table_2 th, .table_2 td{ padding:5px; border:1px solid #b2b2b2; }
#medical .table_2 th{ background-color:#b3bdd3; }
#medical .table_2 .cellh1 { background-color:#7f8eb0;color:#fff; }
#medical .table_2 .cellh2{ background-color:#e29992;color:#fff; }
#medical .table_2 .cell1 { width:24%; background-color:#e5e8ef; font-weight:bold; }
#medical .table_2 .cell2{ width:19%; color:#001e62; }
#medical .table_2 .cell3{ width:19%; color:#c63527; }
#medical .table_2 tr:nth-child(10) { border-top:3px double #b2b2b2; }

#medical .table_4{ width:100%; border-collapse:collapse; margin-top:10px; font-size: 90%; }
#medical .table_4 th, .table_4 td{ padding:10px; border:1px solid #b2b2b2; }
#medical .table_4 th{ background-color:#7f8eb0;color:#fff;text-align: center }
#medical .table_4 .cell1 { width:70%; font-weight:bold; }
#medical .table_4 .cell2{ width:30%; text-align: center; }

#medical .sp .btn_cro{ max-width: 260px; width: 100%; text-align: left; }

/* guide */
		#guide .sec1{ margin-top:-75px; }
		#guide .sec1 .oh{ padding-bottom:25px; }
		#guide .sec1 .fl, #guide .sec1 .fr{ margin-top:75px; }
		#guide .sec2 h3{ padding-bottom:15px; }
		#guide .sec2 .fr, #guide .sec2 .fl{ margin-top:50px; }
		/* access */
		#access .sec2 .sec1sp{ margin-top:-25px; }
		#access .sec2 .fl, #access .sec2 .fr{ padding:25px 0; }
/* myopine */
#myopine ol{ padding-left:0; }
#myopine .sec2 h3{ margin-top:50px; }
#myopine .que{ line-height: 1.7; min-height:40px; padding:5px 0 0 50px; }
#myopine .copy{ margin:30px 0; }
#myopine .table_2 th.my01{ background-color: #ffd9bc; }
#myopine .table_2 td.cell1_my01{ text-align: center; background-color: #fff4eb; }
#myopine .table_2 th.my25{ background-color: #d4f3ff; }
#myopine .table_2 td.cell1_my25{ text-align: center; background-color: #eefaff; }
#myopine .table_2 td.cell2 , .table_2 td.cell3 { background: #ffffff; }
#myopine .myopine-price__area { padding: 20px 10px; border: 1px solid #001e62; }

/* glaucoma（緑内障） */
#glaucoma .sec2 h3{ margin-top:60px; }
#glaucoma .dock2 h4{ font-size: 16px; padding-left: 0; }
#glaucoma .dock2 ol{ margin: 10px 0 0; }
#glaucoma .table_dr2{ width:100%; border-collapse:collapse; margin-top:20px; text-align: center; }
#glaucoma .table_dr2 th, .table_dr2 td{ padding:10px; border:1px solid #b2b2b2; }
#glaucoma .table_dr2 th{ width:33%; color:#fff; background-color:#7f8eb0; }
#glaucoma .table_dr2 .cell1 { background-color:#e5e8ef; }
#glaucoma .table_2{ width:100%; border-collapse:collapse; margin-top:30px; text-align: center; font-size: 80%; }
#glaucoma .table_2 th, .table_2 td{ padding:5px; border:1px solid #b2b2b2; }
#glaucoma .table_2 th{ background-color:#b3bdd3; }
#glaucoma .table_2 .cellh1 { background-color:#7f8eb0;color:#fff; }
#glaucoma .table_2 .cellh2{ background-color:#e29992;color:#fff; }
#glaucoma .table_2 .cell1 { width:24%; background-color:#e5e8ef; font-weight:bold; }
#glaucoma .table_2 .cell2{ width:19%; color:#001e62; }
#glaucoma .table_2 .cell3{ width:19%; color:#c63527; }
#glaucoma .table_2 tr:nth-child(10) { border-top:3px double #b2b2b2; }
#glaucoma .table_4{ width:100%; border-collapse:collapse; margin-top:10px; font-size: 90%; }
#glaucoma .table_4 th, .table_4 td{ padding:10px; border:1px solid #b2b2b2; }
#glaucoma .table_4 th{ background-color:#7f8eb0;color:#fff;text-align: center }
#glaucoma .table_4 .cell1 { width:70%; font-weight:bold; }
#glaucoma .table_4 .cell2{ width:30%; text-align: center; }


	/* symptom
	****************************************************/

		#symptom2 .wrap, #symptom3 .wrap{ padding:20px; }
		/* symptom */
		#symptom ul{ margin-bottom:20px; }
		#symptom li{ margin-top:30px; }
		#symptom dd{}
		/* symptom2 */
		#symptom2 dd{ margin-top:1em; }
		#symptom2 ul{ margin-top:30px; padding:10px 0 20px 15px; }
		#symptom2 li{ margin-top:10px; }
		/* symptom3 */
		#symptom3 .dis{ margin-top:20px; }
		#symptom3 h4{ font-size:20px; margin-top:15px; }
		#symptom3 .des, #symptom3 dl, #symptom3 .back{ margin-top:10px; }
		#symptom3 .outline{ padding:0 15px 15px; }

	/* disease
	****************************************************/

		/* disease */
		#disease dl{ padding:20px; }
		#disease ul{ margin-top:30px; padding:0 0 20px; }
		#disease li{ margin-top:20px; }
		#disease li a{ padding:15px; }

	/* footer
	****************************************************/

		footer .sec1{ padding-bottom:50px; }
		footer .sec1 .fl{ /*padding:15px;*/ }
		footer .sec2{ padding:15px; }
		footer .sec2 ul{ margin-bottom:20px; }

	/* pagetop
	****************************************************/

		.pagetop { bottom:0; }

	/* gmap
	****************************************************/

		.gmap{
			position: relative;
			padding-bottom: 56.25%;
			padding-top:30px;
			height: 0;
			overflow: hidden;
		}
		.gmap iframe, .gmap object, .gmap embed{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

	/* table
	****************************************************/

		/* table_1 */
		.tbl1{ width:100%; }
		.tbl1{ border-top:1px solid #d1d7c6; }
		.tbl1 th, .tbl1 td{ display:block; border-bottom:none; width:100%; border-top:0!important; }
		.tbl1 th, .tbl1 td{ border-bottom:1px solid #d1d7c6; }

.table_2{ width:100%; border-collapse:collapse; margin-top:30px; }
.table_2 th, .table_2 td{ padding:10px; border:1px solid #b2b2b2; }
.table_2 th{ background-color:#b3bdd3; }
.table_2 .cell1 { font-weight:normal; text-align: center; background-color:#e5e7ef; }
.table_2 .cell2{ width:70%; }
.table_2 .cell3{ width:30%; }


	/* list
	****************************************************/

		.list li span{ display:block }

/* english
****************************************************/
#english h1{ font-size:80%; color: #fff; padding:3px 10px; }
#english .ol { /*margin: 1em 0;*/ padding-left: 0; list-style-type: decimal; margin-top: 30px; }


/* recruit
****************************************************/


}

/* custum
****************************************************/
.achievements-box {display: block}

.achievements-inbox {
	display: flex;
 	width: 300px;
}

.achievements-inbox-img{
	display: block;
 	width: 100%;
	height: 200px;
}

.achievements-inbox-text{
	display: block;
 	width: 100%;
	height: 200px;
}