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

/*------ メインビジュアル -----*/
.slide_area{
    width: 100%;
    position: relative;
}
.slide_wrap{
    width: 100%;
    position: relative;
}
.swiper-slide img{
    width: 100%;
    object-fit: cover;
}
.slide_bg{
	position: absolute;
    bottom:0;
    left:0;
	z-index: 2;
}
.slide_copy{
	font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
	font-weight: 600;
	color:#9A804A;
}
.slide_copy_img img{
	width: 100%;
	max-width: 300px;
}
.slide_info_inner{
	background-color: #fff;
	border-radius: 10px 0 0 10px;
	position: relative;
}
.slide_info_inner::before{
	content: "";
	display: block;
	background-image: url("../img/slide/slide_ajisai_img.svg");
	background-size: contain;
	position: absolute;
	z-index: 3;
}
.slide_info_inner p{
	line-height: 1.6;
}
.slide_info_inner .slide_info_lead{
	font-weight: 600;
	color:#1A298F;
}
.slide_info_list .slide_info_item {
	font-size: 1.6rem;
	line-height: 1.4;
	position: relative;
	padding-left: 18px;
}
.slide_info_list .slide_info_item::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #B39861;
  position: absolute;
  top: 5px;
  left: 0;
}
.scroll_down a {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 2;
    padding: 10px 10px 55px;
    color: #B39861;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .1rem;
    line-height: 1;
    text-decoration: none;
    transition: 0.3s;
    overflow: hidden;
}
.scroll_down a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 50px;
    background: #B39861;
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.scroll_down a:hover{
    color:#fff;
}
.scroll_down a:hover::after{
    background: #fff;
}
/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.slide_wrap{
		height:100%;
	}
	.swiper-slide img{
		height:calc(100vh - 70px);
	}
	.slide_bg{
		width: 100%;
		height:50vh;
		background: linear-gradient(to bottom, rgba(242,242,234,0) 0%,rgba(242,242,234,0.8) 20%,rgba(242,242,234,1) 100%);
		padding-top:5vh;
	}
	.slide_copy{
		width: 92%;
		margin-left: auto;
		margin-right: auto;
		font-size: 1.9rem;
		padding-top:18vh;
	}
	.slide_copy_img{
		width: 92%;
		margin-left: auto;
		margin-right: auto;
		margin-top:10px;
	}
	.slide_copy_img img{
		max-width: 200px;
	}
	.slide_info{
		background-color: #F2F2EA;
		padding-bottom: 40px;
	}
	.slide_info_inner{
		width: calc(100% - 4%);
		margin-left: auto;
	}
	.slide_info_inner::before{
		width: 110px;
		height:100px;
		top:-40px;
		left:-15px;
	}
	.slide_info_inner .slide_info_lead{
		padding:30px 40px 0 40px;
	}
	.slide_info_list{
		padding:20px 40px 10px 40px;
	}
	.slide_info_inner .slide_info_end{
		padding:0 40px 30px 40px;
	}
	.scroll_down{
		display: none;
	}
}

@media only screen and (max-width: 359px) {
	.slide_copy{
		font-size: 1.7rem;
	}
}

/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.slide_area{
		height:calc(100vh - 110px);
		max-height: 690px;
	}
	.slide_wrap{
		height:calc(100vh - 110px);
		max-height: 690px;
	}
	.swiper-slide img{
		height:calc(100vh - 110px);
		max-height:690px;
	}
	.slide_bg{
		width: 50%;
		height:calc(100vh - 110px);
		max-height:690px;
		background: linear-gradient(to left, rgba(242,242,234,0) 0%,rgba(242,242,234,0.8) 20%,rgba(242,242,234,1) 100%);
	}
	.slide_copy{
		width: 100%;
		font-size: 3.2rem;
		position: absolute;
		top:16%;
		left:20%;
	}
	.slide_copy_img{
		width: 100%;
		position: absolute;
		top:50%;
		left:20%;
	}
	.slide_copy_img img{
		max-width: 300px;
	}
	.slide_info{
		position: absolute;
		bottom:5%;
		right:0;
		z-index: 3;
	}
	.slide_info_inner{
		width: 600px;
		margin-left: auto;
	}
	.slide_info_inner::before{
		width: 145px;
		height:132px;
		top:-40px;
		left:-40px;
	}
	.slide_info_inner .slide_info_lead{
		font-size: 1.7rem;
		text-align: center;
		padding:30px 40px 0 40px;
	}
	.slide_info_list{
		padding:20px 40px 10px 40px;
	}
	.slide_info_inner .slide_info_end{
		padding:0 40px 30px 40px;
	}
}
@media screen and (max-width: 1599px) {
	.swiper-slide img {
		object-position: 70% 100%;
	}
	.slide_copy{
		left:10%;
	}
	.slide_copy_img{
		left:10%;
	}
	.slide_info{
		position: absolute;
		bottom:-10%;
		right:0;
		z-index: 3;
	}
}

/*------ お知らせ -----*/
.news{
	width: 100%;
	background:#EDEDF7;
	position: relative;
}
.news_wrap {
	margin-top:30px;
	margin-left: auto;
	margin-right: auto;
}
.news_list{
	background-color: #fff;
}
.news_list .news_item{
	border-bottom: solid 1px #ccc;
}
.news_list .news_item.is-hidden{
	display: none;
}
.news_list .news_item a{
	display: block;
	color: #333;
	position: relative;
}
.news_list .news_item .detailText a{
	display: inline;
}
.news_list .news_item a::before{
	content: "";
	display: block;
	width: 10px;
	height:20px;
	background-image: url("../img/news/ico_arrow_news.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
}
.news_list .news_item .detailText a::before{
	display: none;
}
.news_item_in{
	position: relative;
}
.news_date{
	position: relative;
}
.news_date span{
	position: absolute;
}
.news_date span img{
	width:80px;
	height:26px;
}
.news_item_in .news_ttl{
	font-weight: 600;
}
.news_item_in .news_ttl .news_new{
	font-weight:600;
	color:#F46B6B;
	padding-left: 8px;
}
.news_right .news_detail .detailText i{
	font-style: italic;
}
.news_btn{
	width: 24rem;
	height:6.0rem;
	font-size: 1.7rem;
	font-weight: 600;
	color:#fff;
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
	text-align: center;
	border-radius: 3.0rem;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	border:solid 1px #3C42B5;
	background-color: #3C42B5;
	cursor: pointer;
	position: relative;
}
.news_btn::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  bottom: 0.9rem;
  left: 0;
	right:0;
	margin:auto;
	-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  background: url("../img/common/ico_arrow_down_white.svg") center/contain no-repeat;
}
.news_btn.is-close::before {
  -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}
.news_item .detailText i{
	font-style: italic;
}
.news_item .detailText a{
	font-weight: 600;
	color:#333;
	text-decoration: underline;
}
.news_item .detailText a:hover{
	color:#9B8ED0;
	}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.news{
		padding:100px 0 40px 0;
	}
	.news_wrap{
		width: 92%;
	}
	.news_list{
		padding: 2.0rem;
	}
	.news_list .news_item a::before{
		right:0;
	}
	.news_date span{
		left: 100px;
		top: 0.3rem;
	}
	.news_item_in{
		padding:15px 25px 15px 0;
	}
	.news_item_in .news_ttl{
		font-size: 1.6rem;
		margin: 10px 0 5px 0;
	}
	.news_item_in .news_ttl .news_new{
		font-size:1.5rem;
	}
	.news_btn{
		margin-top: 3.0rem;
	}
}
/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.news{
		padding:80px 0;
	}
	.news_wrap{
		width: 1000px;
	}
	.news_list{
		padding: 40px 50px;
	}
	.news_list>.news_item>a::before{
		right:10px;
	}
	.news_list>.news_item>a:hover{
		background-color: #EDEDF7;
	}
	.news_date span{
		left: 100px;
		top: 0.3rem;
	}
	.news_item_in{
		display: -webkit-box;
		display: flex;
		padding:18px 25px 18px 0;
	}
	.news_left{
		width:200px;
		padding-left: 10px;
	}
	.news_right{
		width:690px;
	}
	.news_item_in .news_ttl{
		font-size: 1.7rem;
		margin: 0;
	}
	.news_item_in .news_ttl .news_new{
		font-size:1.6rem;
	}
	.news_btn{
		margin-top: 30px;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	.news_btn:hover{
		color:#3C42B5;
		background-color: #fff;
	}
	.news_btn:hover::before {
		background: url("../img/common/ico_arrow_down_blue.svg") center/contain no-repeat;
	}
}

/*------ 診療時間 -----*/
.hours_wrap{
	margin-left: auto;
	margin-right: auto;
}
.time_table {
    width: 100%;
    border-collapse: collapse;
	margin-top: 30px;
}
.time_table .time_tr:not(:first-child) {
	border-bottom: solid 1px #ccc;
}
.time_table .time_th:first-child {
    width: 23%;
}
.time_table .time_th {
	width: 11%;
	color:#fff;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    height: 40px;
    background:#3C42B5;
}
.time_table .time_td{
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
   padding:2% 0;
}
.time_table .time_td:first-child{
	line-height: 1.4;
}
.time_table .time_td_open,
.time_table .time_td_close{
    vertical-align:middle;
}
.time_table .time_td.caution{
	position: relative;
}
.time_table .time_td.caution span{
	color: #F46B6B;
	position: absolute;
}

.hours_note{
	font-weight: 600;
	border:solid 1px #F46B6B;
	line-height: 1.6;
	color: #F46B6B;
	padding:0.5rem;
	margin-top:20px;
}
.hours_note span{
	display: block;
	padding-left: 2.0rem;
	position: relative;
}
.hours_note span::before{
	content: "※";
	color: #F46B6B;
	position: absolute;
	left:0.2rem;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.hours{
		padding:60px 0;
	}
	.hours_wrap{
		width: 92%;
	}
	.time_table .time_td:first-child{
		text-align: left;
		padding-left: 2%;
	}
	.time_table .time_td_open,
	.time_table .time_td_close{
		width: 18px;
		height: 18px;
	}
	.time_table .time_td.caution span{
		font-size: 1.3rem;
	}
	
}

/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.hours{
		padding:100px 0;
	}
	.hours_wrap{
		width: 1000px;
	}
	.time_table .time_td_open,
	.time_table .time_td_close{
		width: 22px;
		height: 22px;
	}
	.time_table .time_td.caution span{
		font-size: 1.4rem;
	}
	.hours_note{
		font-size: 1.8rem;
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: center;
		justify-content: center;
	}
}

/*------ ごあいさつ -----*/
.greet{
	background-color: #F2F2EA;
	position: relative;
}
.greet::before{
	content: "";
	display: block;
	width: 100%;
	max-width: 463px;
	height:484px;
	background-image: url("../img/greet/greet_bg_01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
	position: absolute;
}
.greet_wrap{
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
}
.greet_wrap p{
	text-align: justify;
}
.greet_wrap p:not(:last-child) {
	margin-bottom: 20px;
}
.greet_wrap p.greet_name{
	font-weight: 600;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
}
.greet_wrap p.greet_name span{
	font-size: 2.0rem;
	margin-left: 10px;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.greet{
		padding:60px 0;
	}
	.greet_wrap{
		width: 92%;
	}
	.greet::before{
		left:0;
		right: 0;
		bottom:-5px;
		margin: auto;
	}
	
}

/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.greet{
		padding:100px 0;
	}
	.greet_wrap{
		width: 1000px;
	}
	.greet::before{
		right: 10%;
		bottom:-5px;
	}
	
}


/*------ 主な診療内容 -----*/
.medical_wrap{
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
}
.medical_lead{
	margin-bottom: 30px;
}
.medical_list_item a{
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 600;
	color:#3C42B5;
	border:solid 1px #3C42B5;
	background:#fff;
	position: relative;
}
.medical_list_item a::before{
	content: "";
	display: block;
	width: 14px;
	height:8px;
	background-image: url("../img/common/ico_arrow_down.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right:20px;
}
.medical_wrap h3{
	width: 100%;
	height:60px;
	font-size: 2.4rem;
	font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
	color:#fff;
	text-align: center;
	background-color: #3C42B5;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}
.medical_wrap .medical_cont {
	padding-top: 60px;
}
.medical_cont_box{
	margin-top:30px;
}
.medical_cont_text p{
	text-align: justify;
}
.medical_cont_text p:not(:last-child) {
	margin-bottom: 20px;
}
.medical_cont_img img{
	width: 100%;
	max-width: 400px;
	height: auto;
	vertical-align: bottom;
}
.symptom_wrap{
	background-color: #EDEDF7;
}
.symptom_ttl{
	font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
	font-weight: 600;
	color:#1A298F;
	text-align: center;
	border-bottom: solid 1px #1A298F;
}
.symptom_list li {
	position: relative;
	padding-left: 26px;
	line-height: 1.6;
}
.symptom_list li::before {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	background-image: url("../img/common/ico_check.svg");
	background-size: contain;
}
.symptom_list li:not(:last-child) {
	margin-bottom: 10px;
}
.medical_cont .text_note{
	margin-top: 20px;
}
.medical_note{
	margin-top:30px;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.medical{
		padding-top:60px;
	}
	.medical_wrap{
		width: 92%;
	}
	.medical_list_item:not(:last-child) {
		margin-bottom: 10px;
	}
	.medical_list_item a{
		width: 100%;
		height: 40px;
	}
	.medical_cont_img{
		margin-top: 30px;
	}
	.symptom_wrap{
		margin-top:40px;
		padding:1.5rem 2.0rem 2.0rem 2.0rem;
	}
	.symptom_ttl{
		font-size: 1.8rem;
		line-height: 1.6;
		padding-bottom: 0.8rem;
	}
	.symptom_list{
		margin-top: 2.0rem;
	}
}
/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.medical{
		padding-top:100px;
	}
	.medical_wrap{
		width: 1000px;
	}
	.medical_lead{
		text-align: center;
	}
	.medical_list{
		display: -webkit-box;
		display: flex;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		justify-content: space-between;
	}
	.medical_list_item a{
		width: 320px;
		height:50px;
	}
	.medical_list_item a:hover{
		background-color: #EDEDF7;
	}
	.medical_cont_box{
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
	}
	.medical_cont_text{
		width: 500px;
	}
	.medical_cont_img{
		width: 400px;
	}
	.symptom_wrap{
		margin-top:50px;
		padding:20px 50px 40px 50px;
	}
	.symptom_ttl{
		font-size: 2.0rem;
		line-height: 1.8;
		padding-bottom: 5px;
	}
	.symptom_list{
		margin-top: 30px;
		display: -webkit-box;
		display: flex;
		flex-wrap: wrap;
	}
	.symptom_list li:not(:last-child) {
		margin-right: 30px;
	}
}


/*------ クリニック・検査設備紹介 -----*/
.facility_wrap{
	margin-left: auto;
	margin-right: auto;
}
.facility_lead{
	margin:30px 0;
	background-color: #F2F2EA;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.facility{
		padding:60px 0;
	}
	.facility h2.ttl{
		letter-spacing: -0.08em;
	}
	.facility h2.ttl span{
		letter-spacing: normal;
	}
	.facility_wrap{
		width: 92%;
	}
	.facility_lead{
		padding:2.0rem;
	}
}

/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.facility{
		padding:100px 0;
	}
	.facility_wrap{
		width: 1000px;
	}
	.facility_lead{
		padding:50px;
	}
}


/*------ よくあるご質問 -----*/
.faq{
	background-color: #EDEDF7;
}
.faq_wrap{
	margin-top:30px;
	margin-left: auto;
	margin-right: auto;
}
.faq_box{
	background-color: #fff;
}
.faq_ttl{
	font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
	font-weight: 600;
	line-height: 1.4;
	position: relative;
}
.faq_ttl::before{
	content: 'Q.';
	font-family: "Arial", sans-serif;
	font-weight: 600;
	color:#3C42B5;
	position: absolute;
}
.faq_ttl::after {
	content: '';
	display: block;
	background-image: url("../img/common/ico_plus.svg");
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.faq_ttl.close::after {
	content: '';
	display: block;
	background-image: url("../img/common/ico_minus.svg");
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.faq_cont{
	position: relative;
}
.faq_cont::before{
	content: 'A.';
	font-family: "Arial", sans-serif;
	font-weight: 600;
	color:#B39861;
	position: absolute;
}
.faq_cont::after{
	content: "";
	display: block;
	background-color: #ccc;
	height:1px;
	position: absolute;
	top:0;
	left:0;
	right:0;
	margin: auto;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.faq{
		padding:60px 0;
	}
	.faq_wrap{
		width: 92%;
	}
	.faq_wrap .faq_box:not(:last-child) {
		margin-bottom: 1.0rem;
	}
	 .faq_ttl{
		font-size: 1.8rem;
		padding:1.5rem 4.0rem 1.5rem 4.5rem;
	}
	.faq_ttl::before{
		font-size: 2.6rem;
		top: 0.8rem;
		left: 1.5rem;
	}
	.faq_ttl::after {
		width: 16px;
		height: 16px;
		right:1.5rem;
	}
	.faq_ttl.close::after {
		width: 16px;
		height: 16px;
		right:1.5rem;
	}
	.faq_cont{
		padding:1.0rem 0 1.5rem 4.5rem;
	}
	.faq_cont::before{
		font-size: 2.6rem;
		top:-0.1rem;
		left:1.5rem;
	}
	.faq_cont::after{
		width: calc(100% - 3.0rem);
	}
}

/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.faq{
		padding:100px 0;
	}
	.faq_wrap{
		width: 1000px;
	}
	.faq_wrap .faq_box:not(:last-child) {
		margin-bottom: 20px;
	}
	.faq_ttl{
		font-size: 2.0rem;
		padding:21px 50px 21px 70px;
		cursor: pointer;
	}
	.faq_ttl::before{
		font-size: 3.0rem;
		top: 11px;
		left: 30px;
	}
	.faq_ttl::after {
		width: 20px;
		height: 20px;
		right:30px;
	}
	.faq_ttl.close::after {
		width: 20px;
		height: 20px;
		right:30px;
	}
	.faq_cont{
		padding:20px 75px 30px 70px;
	}
	.faq_cont::before{
		font-size: 3.0rem;
		top: 5px;
		left: 30px;
	}
	.faq_cont::after{
		width: calc(100% - 60px);
	}
}


/*------ 交通アクセス -----*/
.acc_wrap{
	margin-top:30px;
	margin-left: auto;
	margin-right: auto;
}
.acc_map{
	text-align: center;
}
.acc_map img{
	width: 100%;
	max-width: 600px;
}
.acc_info address{
	text-align: center;
	line-height: 1.4;
	margin-top:15px;
}
.acc_info_phone{
	margin-top:10px;
}
.acc_info_phone,.acc_info_phone a{
	font-size: 2.0rem;
	font-weight: 600;
	color:#1A298F;
	line-height: 1.4;
}
.acc_info .common_btn{
	margin-top:15px;
}
.acc_info .common_btn a{
	max-width: 240px;
}
.acc_detail{
	margin-top:40px;
	border-top:solid 1px #ccc;
}
.acc_detail_wrap dt img{
	width: 80px;
	height:80px;
}
.acc_route{
	margin-top:30px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.acc{
		padding:60px 0;
	}
	.acc_wrap{
		width: 92%;
	}
	.acc_info_phone{
		text-align: center;
	}
	.acc_detail{
		padding-top:2.0rem;
	}
	.acc_detail_wrap dt{
		text-align: center;
		margin-bottom: 0.5rem;
	}
	.acc_route{
		width: 92%;
	}
}

/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.acc{
		padding:100px 0;
	}
	.acc_wrap{
		width: 600px;
	}
	.acc_info_phone{
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: center;
		justify-content: center;
	}
	.acc_info_phone p:first-child{
		margin-right: 15px;
	}
	.acc_detail{
		padding-top:20px;
	}
	.acc_detail_wrap{
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		align-items: center;
	}
	.acc_detail_wrap dt{
		width: 80px;
	}
	.acc_detail_wrap dd{
		width: 500px;
	}
	.acc_route{
		width: 1000px;
	}
}
