@charset "utf-8";

*{
  box-sizing:border-box;
}

body{
  margin:0;
  color: #000;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}


@media(min-width:901px){
	.sponly{
	  display:none !important;
	}
  }
@media(max-width:900px){
  .pconly{
    display:none !important;
  }
}
@media(min-width:1101px){
	.tbonly{
		display:none !important;
	}
}
@media(max-width:1100px){
	.tb_2only{
	  display:none !important;
	}
}
/*変数*/
:root{
	--basecolor: #e7dfd8 ; /*基本色*/
	--sabcolor: #f2ffec; /*サブカラー*/
}

img{
  max-width:100%;
  vertical-align:bottom;
}


p{
	margin:0
}

h3{
	margin:0;
}

a{
  text-decoration: none;
}

a:visited{
}

a:hover{
  /*filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;*/
}
.tac{
	text-align: center;
}
.tal{
	text-align: left;
}
.tar{
	text-align: right;
}
.mg0{
	margin: 0 auto;
}


.margin1{
	margin:10px
}
.margin2{
	margin:20px
}
.margin3{
	margin:30px
}
.margin4{
	margin:40px
}
.margin5{
	margin:50px
}
.mgb1{
	margin-bottom:10px
}
.mgb2{
	margin-bottom:20px
}
.mgb3{
	margin-bottom:30px
}
.mgb4{
	margin-bottom:40px
}
.mgb5{
	margin-bottom:50px
}
.mgt1{
	margin-top:10px
}
.mgt2{
  margin-top:20px
}
.mgt3{
	margin-top:30px
}
.mgt4{
	margin-top:40px
}
.mgt5{
	margin-top:50px
}
.mgl1{
	margin-left:10px
}
.mgl2{
	margin-left:20px
}
.mgl3{
	margin-left:30px
}
.mgl4{
	margin-left:40px
}
.mgl5{
	margin-left:50px
}
.mgr1{
	margin-right:10px
}
.mgr2{
  margin-right:20px
}
.mgr3{
	margin-right:30px
}
.mgr4{
	margin-right:40px
}
.mgr5{
	margin-right:50px
}
.n_mgt5{
	margin-top:5%
}

.padding1{
	padding:10px
}
.padding2{
	padding:20px
}
.padding3{
	padding:30px
}
.padding4{
	padding:40px
}
.padding5{
	padding:50px
}
.pdt1{
	padding-top:10px
}
.pdt2{
  padding-top:20px
}
.pdt3{
  padding-top:30px
}
.pdt4{
  padding-top:40px
}
.pdt5{
	padding-top:50px
}
.pdt6{
	padding-top:60px
}
.pdt7{
	padding-top:70px
}
.pdt8{
	padding-top:80px
}
.pdt9{
	padding-top:90px
}
.pdt10{
	padding-top:100px
}
.pdb1{
	padding-bottom:10px
}
.pdb2{
  padding-bottom:20px
}
.pdb3{
  padding-bottom:30px
}
.pdb4{
  padding-bottom:40px
}
.pdb5{
	padding-bottom:50px
}
.pdb6{
	padding-bottom:60px
}
.pdb7{
	padding-bottom:70px
}
.pdb8{
	padding-bottom:80px
}
.pdb9{
	padding-bottom:90px
}
.pdb10{
	padding-bottom:100px
}
.pdr5{
	padding-right:30% ;

}

/*----------
特殊例
-----------*/
/*----------
マーカー下線
----------*/
.marker_line {
    background: linear-gradient(transparent 60%, var(--basecolor) 0%);
}
.marker_line_oreng{
	background: linear-gradient(transparent 50%, #ffd95d9f 50%);
}
/*---------
 題字下下線
 ----------*/
.hr-green {
    border-top: 2px solid #3ca27e;
    width: 80px;
}
/*--------------
矢印が右に移動する
----------------*/
.btnarrow4{
    /*矢印と下線の基点とするためrelativeを指定*/
	position: relative;
    /*形状*/
    display:block;
    color: #333;
    text-decoration: none;
    outline: none;
}
/*矢印と下線の形状*/
.btnarrow4::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
	position: absolute;
    bottom:-8px;
    left:0;
    /*下線の形状*/    
    width: 60%;
    height: 1px;
	background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
}
.btnarrow4::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:-3px;
    right:40%;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
	background:#333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
/*hoverした際の移動*/
.btnarrow4:hover::before{
    left:10%;
}
.btnarrow4:hover::after{
    right:30%;
}

/*-------------
ボタン共通設定
--------------*/
.btn06{
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	color:#fff;
    padding: 10px 40px 10px 30px;
    text-align: right;
    outline: none;
	border: 1px solid #000 ;
	background-color: #000;
	border-radius: 45px;
    /*アニメーションの指定*/
    transition: ease .2s;
}

.btn06:hover{
	background-color: #FFF ;
	color: #000;
}
/*--------------
矢印が右に移動
--------------*/
.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:42%;
    right: 20px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    right: 11px;
	border-top: 2px solid #000;
    border-right: 2px solid #000;
}

/*------------
きらっと光る
------------*/
.btnshine{
    /*キラッと光る基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/	
	display:inline-block;

    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    outline: none;
    overflow: hidden;
}

/*キラッと光る*/
.btnshine::before {
	content: '';
    /*絶対配置でキラッと光るの位置を決める*/
	position: absolute;
	top: 0;
	left: -75%;
    /*キラッと光る形状*/
    width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
	animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

/*-------------
 文字animation
-------------*/
@-webkit-keyframes passing-bar{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passing-txt{
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes passing-txt{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}
/* css */
.passing .passing-box {
	display: block;
	text-align: center;
}
.passing .passing-bar {
	position: relative;
	display: inline-block;
	/*　後ほど解説　*/
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing .passing-bar:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	/* 任意の値 */
	background: #ffffff;
}
.passing .passing-txt {
	opacity: 0;
	/* 後ほど解説 */
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	/* 任意の値 */
	font-size: 3vw;
	/*font-weight: bold;*/
	line-height: 1.5;
	letter-spacing: 2px;
}
.passing.move .passing-bar:before {
	-webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
	animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing.move .passing-txt {
	-webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
	animation:passing-txt 0s ease .5s 1 normal forwards;
}



/*------------*/

.flex{
	display: flex;
	align-items: center;
}
.flex_wrap_reverse{
	display: flex;
}
.flex .aaaaa{
	width: 30%;
}

/*--------------------------------
       ここまでtemplate
---------------------------------*/
/*--------- top 幅規定とか--------*/

.top_menu_bar{
    top: 0px;
    right: 0px;
	z-index: 100;
	margin-bottom: 10px;
	position: fixed;
	width: 100%;
	background-color: #fffFFF50;
	padding: 10px 25px;
	/*background-repeat:no-repeat ;
	background-position:right 60% top -15%;*/
}
.contents_box{
	width: 100%;

}
.contents_box_2{
	width: 100%;
	padding-right: 100px;

}
.contents_box_3{
	width: 100%;


}

/*--------- menu bar css --------*/

.menu_back{
	position: relative;
	display: flex;
}
.logo_design{
	width: 20%;
	padding: 0 20px 0 0px;
	text-align: right;
}
.logo_design span{
	font-size: 0.8vw;
	display: inline-block;
	letter-spacing: 3px;
	border-bottom: 1px solid;

}
.logo_design p{
	font-size: ;
	font-weight: bold;
	letter-spacing: 5;
	/*writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
	-webkit-writing-mode:vertical-rl;*/ 
}
.logo_design h2{
	margin: 0;
	font-size: 3vw;
	letter-spacing: 5px;

}

.menu_box{
	width: 80%;
	font-size: 1.4vw;
	font-weight: bold;

}
.menu_box a{
	margin: 15px 10px;
	letter-spacing: 2px;
	position: relative;
	display: inline-block;
	transition: .3s;
}
.menu_box a::after{
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 2px;
	background-color: #033d0f;
	transition: .3s;
	transform: translateX(-50%);
}
.menu_box a:hover::after{
	width: 100%;
}
.baner{
	margin-top:40px ;
}
.baner img{
	margin: 10px 0;
}
.sen_1{
	border-left:1px solid;
	height: 200px;
	position: absolute;
	bottom: -300;
	right: 50%;
}




/*----------- 横からでてくるやつ -------------*/
/*#sslink{
	cursor: pointer;
    position: fixed;
    z-index: 9999;

}
#sslink a:first-child{
	display: block;
	width: 150px;
	border-left:6px solid #ffc65d;
	background-color: #fffde6;
	padding: 20px ;
	margin-bottom: 50px;
}
#sslink a:nth-child(2){
	display: block;
	width: 150px;
	border-left:6px solid #ff5555;
	background-color: #ffeee7;
	padding: 20px ;
}
#sslink a{
	transition: all 0.2s;
}
#sslink a:hover{
	transform: translate(-50px, 0);
}*/
  
  
/*----------- topここから --------------*/
.ontop{
	max-width: 1000px;
	width: 100%;
	margin: 5px auto 72px;
}
.ontop h2{
	margin: 0vw 0 2vw;
	display: block;
	white-space:pre;
	height: 72px;
}
.TextTyping{
    opacity:0%;
}

.ontop img{
	margin-top: 30px;
	width: 20%;
}
.top{
	width: 100%;
}
.top video{
	width: 100%;
}
.home_midashi{
	width: fit-content;
	margin: calc(50px + 6vw) auto calc(40px + 4vw);
	text-align: center;
	position: relative;
}

.home_midashi_waku_left{
	position: absolute;
	top: -50px;
	left: -50px;
}
.home_midashi_waku_right{
	position: absolute;
	bottom: -50px;
	right: -50px;
}
.home_midashi_waku_right img,.home_midashi_waku_left img{
	height:10vw
}
.home_midashi p{
	margin: 20px 0;
}
.home_midashi p:nth-child(2) span{
	border-bottom:1px solid ;
	line-height:2;
}
.home_midashi p:nth-child(4){
	font-weight: bold;
	font-size: 1vw;
}
/*-------------- topここまで ---------------*/
/*--------------  コンテンツここから    --------------*/
.black_box{
  background-color:#000;
  width: 70%;
}

.column_block{
	width: 100%;
	display: flex;

}
.column_block_text,.column_block_img{
	width: 50%;
}
.column_block_text{
	background: #e7dfd8;
	display: flex;
	justify-content: center;
	align-items: center;
}
.column_block_text > div{
	width: 50%;

}
.column_block_text h2{
	text-align: center;
}
.column_block_text h2 span{
    display:inline-block;
	min-width:4em;
	border-bottom:1px solid;
}
.column_block_text h2 p{
	font-weight: normal;
	font-size: 15px;
	margin: 5px;
}
.column_block_text p{
	margin: 15px 0;
}
.column_block_img img{
    object-fit: cover;
    width:100%;
    height:500px;
}
.bg_grey{
	background: #f0f0f0;
}
.thumb_block_wrap{
	width: 95%;
	margin: 70px auto;
}
.thumb_block_flex{
	display: flex;
}
.thumb_flex_left{
	width: 50%;
	padding-right: 5%;
}
.thumb_flex_left p{
	max-width: 80%;
	margin: 70px auto 0;
}
.nikukyu{
	text-align:left
}
.thumb_flex_left .nikukyu img{
	width:25%
}
.thumb_flex_right{
	padding-left:1% ;
	width: 50%;
	text-align: right;
}
.thumb_flex_right p{
	text-align: left;
	max-width: 80%;
	float: right;
	margin: 5% 0 0;
}
.thumb_flex_right img:nth-child(1){
	width: 70%;
}
.thumb_flex_right img:nth-child(2){
	margin-top: 30px;
}
.thumb_caption{
	background: #f3f3f3;
	padding: 100px 100px 100px;
	margin-top: -150px;
	margin-bottom: 50px;
	z-index: -1;
}
.thumb_caption p,.thumb_caption_3ver p{
	width: 32.3%;
	margin-left: 3%;
}
.thumb_caption p:nth-child(1),.thumb_caption_3ver p:nth-child(1){
	margin: 0;
}
.thumb_caption p a,.thumb_caption_3ver p a,.link_btn{
	display: block;
	width: fit-content;
	padding: 6px 40px;
	border-radius: 45px;
	margin: 12px auto;
	border: 1px solid #000;
	transition: 0.3s;
	color: #fff;
	background: #000;
	box-shadow:2px 2px 2px #00000030;
}
.thumb_caption p a:hover,.thumb_caption_3ver p a:hover,.link_btn:hover{
	background:#fff;
	color: #000;
	border: 1px solid #000; 
}
.thumb_caption_top{
}
.thumb_caption_under{
	display: flex;
	margin-top: 50px;
}
.section_magin{
	margin-top: 70px;
}
.camp_boder{
	border: 1px solid;
	width: fit-content;
	margin: 0 auto;
	padding: 2%;
}
.thumb_caption_3ver{
	background: #f3f3f3;
	padding: 100px 100px 100px;
	margin-top: -50px;
	margin-bottom: 50px;
	z-index: -1;

}

/*住所一覧*/
.addlass_back{
	position: relative;
	margin: 80px 0 0 0;
	background: url(../img/adress_back.png) no-repeat left top;
	background-size:35% ;

}
.addlass_back::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 350px;
	background: #e7dfd8;
	z-index: -1;
}
.addlass_wrap{
	max-width: 1250px;
	margin: 0 0 0 20%;
	display: flex;
}
.addlass_wrap > div{
	margin-top: 200px;
}
.addless_midashi{
	padding:200px 0 0 0;
}
.add_midashi_txt{
	position: relative;
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
/*.add_midashi_txt::after{
	content: "";
	position: absolute;
	bottom: -140px;
	left: 50%;
	width: 1px;
	height: 100px;
	background: #000000;
}*/
.add_midashi_txt div{
	font-size: 200%;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode:vertical-rl;
}
.add_midashi_txt p{
	font-size: 120%;
}
.addless_list{
	display: flex;
	flex-wrap: wrap;

}
.addless_list:nth-of-type(2){
	margin: 0;
}
.addless_block{
	width: 48%;
	margin: 2% 0 0 2%;
	background: #f3f3f3;
	padding: 2%;
}
.addless_block h2{
	text-align: center;

}
.addless_block table{
	border-collapse:separate; 
	border-spacing:0;
	width: 100%;
	margin: 0 ;
	background: #fff;
	border-bottom:1px solid #ccc;
	border-right:1px solid #ccc;

}
.addless_block td,.addless_block th{
	border: solid 1px #ccc;  /* 枠線指定 */
	padding: 10px;      /* 余白指定 */
    font-size:90%;
	border-bottom: 0; border-right: 0;
}

.addless_block dl{
	margin:0 0 4px 0
}
.addless_block dt{
	float: left;
}
.addless_block dd{
	margin-left:55px
}
.addless_block dt, .addless_block dd{
	min-height: 24px ;
	line-height: 24px ;
}




/*------------- footer -------------*/
footer{
	margin: 0px 0 0;
	text-align: center;
}
.seikyu_wrap{
	background: #e7dfd8;
	max-width: 1000px;
	padding-top: 50px;
	margin: 250px auto 200px;
}
.toiawase-flex{
	display: flex;
}
.toiawase-box1,.toiawase-box2{
	width: 50%;
	margin: 50px 0;

}
.toiawase-box1 a{
	font-size: calc( 2vw + 10px );
	transition: 0.3s;
	color: #000;
}
.toiawase-box2 a{
	font-size: calc( 1vw + 10px );
	transition: 0.3s;
}
.toiawase-box1 a:hover{
	color: #7c7c7c;
}
.footer_menu{
	background: #000;
}
.footer_menu_wrap{
	max-width: 80%;
	padding: 50px 0;
	margin: 0px auto;
	display: flex;
	color: #fff;
	font-size:90%
}
.cont-item{
	color: #fff;
	text-align: left;
	width: calc( 100% / 5 ) ;
}
.cont-item a{
	color: #fff;
	transition: 0.3s;

}
.cont-item a:hover{
	color: #747474;
}
.cont-item ul {
	list-style-type: none;
	padding-left: 10px;
	margin:5px 0 0 0 
}
.ttl{
	font-weight: bold;
	position: relative;
	padding-left: 25px;
}
.ttl::before{
	content: "";
	position: absolute;
	display:inline-block;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 20px;
	height: 2px;
	background: #FFF;
	transition: 0.3s;
}
.ttl:hover:before{
	background: #747474;
}
.addless_wrap{
	max-width: 90%;
	margin: 50px auto 0;
	color: #fff;
	display: flex;
}
.addless_left{
	width: 26em;
	text-align: left;
}
.addless_left a{
	color: #fff;
	text-decoration: underline;
	transition: 0.3s;
}
.addless_left a:nth-child(1){
	margin-right:20px

}
.addless_left a:hover{
	color: #747474;
}
.footer_sns{
	width:5em;
	font-size:280%;
	text-align:left;
}
.footer_sns a{
	color:#ccc;
	margin-right:8px;
	transition:0.3s;
}
.footer_sns a:hover{
	color:#777;
}

.adless_right{
	width: calc(100% - 31em);
}
.adless_right img{
	width: 75%;
}

/*-------onlineへの導線--------*/
.base_link{
	margin: calc(50px + 8vw) 0 calc(50px + 8vw) 3vw;
}
.online_txt,.online_link{
	width: 50%;
}
.online_txt{
	width: 50%;
	padding: 5% 1% 5% 8%;
}
.online_link{
	padding: 5% 8% 5% 1%;
}
.base_midashi{
	width: 30%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.base_midashi p{
    padding-right:2vw;
}

.online_link {
	text-align: center;
	font-size:120%;
}
.online_link a{
	display:block;
	border: 1px solid #000;
	padding: 7% calc(20px + 5vw);
	color: #fff;
	background: #000;
	transition: 0.3s;
}
.online_link a:hover{
	color: #000;
	background: #fff;
}
.online_link a i{
	font-size:120%;
	padding-right:8px;
}

/*---------- 別ページのトップ ----------*/
.another_top{
	display: flex;
}
.another_top h2{
	text-align: center;
	max-width: 80%;
    margin: 70px auto 0;
}
.pro_tac{
	text-align: center;
}
.back_block_pg,.back_block_gr{
	margin-top: 150px;
	padding: 0 0 5vw;
	line-height: 1;
}
.back_block_pg{
	background: #e7dfd8;
}
.back_block_gr{
	background: #e9e9e9;
}
.back_block_pg .fs30{
	position: relative;
	top: -70px;
}
.back_block_pg .fs84,.back_block_gr .fs84{
	position: relative;
	top:-70px;
	font-family: 'Open Sans Condensed', sans-serif;}
.back_block_pg h2,.back_block_gr h2{
	margin: 0 0 15px;
}
	.prouse_block img{
		margin:15px 0 0
	}
.fwb{
	font-weight: bold;
}
.fs84{
	font-size: 84px;
}
.fs30{
	font-size: 30px;
}
.max_w1300{
	max-width: 1300px;
	margin: 0 auto;
}
.prouse_block,.prouse_txt{
	width: 50%;
}
.prouse_txt{
    padding-left:3vw;
}
.prouse_txt h2{
    margin-bottom:2px;
}

.prouse_block{text-align: center;align-self: center;}
.prouse_block .fwb{
	font-size: 160%;
}
.prouse_txt li{
	font-size: 130%;
	margin: 5px 0 15px 0;
}

.pro_tac{
	text-align: center;
}
.back_block_gr .fs30{
	position: relative;
	top: -70px;
}
.back_block_gr .fs84{
	/* position: relative; */
	/* top:-65px; */
}
.back_block_gr h2{
	margin: 0
	font-family: 'Open Sans Condensed', sans-serif;
}
.parts_zaiko{
	max-width: 1000px;
	margin:50px auto;
	padding:0 15px
}
.table_wrap{
	max-width: 1000px;
	margin: 50px  auto;
}
.table_wrap table{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
.table_wrap h2{
	font-size:125%;
	width:fit-content;
}
  
.table_wrap table th,.table_wrap table td{
	padding: 10px 0;
	text-align: center;
	border: 1px solid;
}

.table_wrap table tr:nth-child(odd){
	background-color: #f1f1f1
}
.table_wrap_cell{
	max-width: 1000px;
	margin: 60px  auto;
}
.table_wrap_cell h2{
	margin: 0;
}
.table_wrap_cell table{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
.table_wrap_cell table tr:nth-child(1){
	background: #f1f1f1;
	font-weight: bold;
}
.table_wrap_cell table th,.table_wrap_cell  table td{
	padding: 10px 0;
	text-align: center;
	border: 1px solid;

}
/*car doctor*/
.car_doctor_titel{
	margin:0px 0 0px;
	background:#e7dfd8;
	padding:60px 0 150px
}
.car_doctor_titel p{
	font-size:calc( 2vw + 10px);
	text-align:center
}
.car_doctor_titel p span{
	display:block;
	font-size:calc( 1vw + 10px );
	color:#bdb4ac;
	letter-spacing:4px;
}
.car_doctor_sub{
	max-width:1000px;
	margin:30px auto 0;
		width:90%
}
.car_doctor_wrappr{
	max-width:1300px;
	margin:0 auto;

}

.car_doctor_wrap{
	/* max-width:1100px; */
	margin:30px auto;
	display:flex;
	flex-wrap:wrap;
}
.car_doctor_block{
	width:46%;
	margin:1% 2%;
	background:#f3f3f3;
	padding:2%
}
.car_doctor_block a.btn_small{
	display:inline-block;
	font-size:90%;
	background:#fff;
	padding:1px 8px 0;
	color:#333;
	border-radius:5px
}
.car_doctor_block a.btn_small:hover{
	background: #ccc;
	color: #fff;
}
.car_doctor_block dl{
	margin:0 0 5px

}
.car_doctor_block dt{
	float:left
}
.car_doctor_block dd{
	margin-left:60px

}
.car_doctor_block dt, .car_doctor_block dd{
	min-height: 24px ;
	line-height: 24px ;
}
.car_doctor_block p{
	text-align:center;
	margin:20px auto
}
.car_doctor_block h2{
	margin:0 0 8px;
	text-align:center
}
#map_canvas{
	margin-top:-120px 
}

/*--------------- お問い合わせ ---------------*/
.form{
	max-width: 900px;
	margin: 100px auto;
	width:90%;
}
.form p{
	margin-left: 10%;
}
.co_table{
	max-width: 900px;
	width: 100%;
	margin: 0px 0px 10px 0px;
    padding: 0px 0px 10px 0px;
}
/*.co_table dl{
	margin: 0px 0px 20px 0px;
    padding: 0px 0px 20px 0px;
    border-bottom: #CCC dotted 1px;
}*/
.co_table dt{
	float: left;
	margin-left: 25px;
}
.co_table dd{margin-left: 200px;
}
.co_table em{
	color: red;
	font-size: 0.7vw;
	font-weight: bold;
}

input,textarea{
	width: 100%;
	border-top:none;
	border-right:none;
	border-left: none;
	height: 30px;
	border-bottom: #6b6b6b dotted 1px;
	background-color: #f7f7f7;
}
textarea{
	height:100px
}
.short{
	width: 200px;
	margin-bottom:10px
}
input[type="submit"]{
	width: auto;
	height: auto;
	text-align: center;
	border:1px solid;
	padding:8px 20px ;
	
}
input[type="checkbox"] {
    width: auto;
    height: auto;
}
.submit_tac{
	text-align: center;
}
.co_midashi1{
	position: relative;
}
.kazari_4{
	position: absolute;
	top:-30px;
	left:-40px;
}
/*privacy*/
.privacy{
	margin: 100px auto 50px;
	max-width: 900px;
	width: 90%;
}
.ppolicy h5 {
    margin: 10px 0 0 0;
    color: #000;
    font-size: larger;
}
/*manager*/
.manager{
	margin: 100px auto 50px;
	max-width: 900px;
	width: 90%;
}
.manager h3{
	text-align:center
}
.manager div{
	width:60%;
	margin:20px auto 0;
}
.manager dl{
	border-bottom:1px solid;
	margin:0 0 10px 0;
	padding:0 0 10px 0
}
.manager dt{
	float:left;
	margin-left:20px
}
.manager dd{
	margin-left:150px
}
/**/
.shasyu_yoko3{
	display:flex;
	flex-wrap:wrap;
	margin:0 12px;
}
.shasyu_yoko3 span{
	text-align:left;
	word-break:break-all;
}
.shasyu_yoko3 span.w33{
	width:33%;
}
.shasyu_yoko3 span.w50{
	width:50%;
}
.shasyu_yoko3 span.w100{
	width:100%;
}
.naiyo_hinban{
	font-size:85%;
	line-height:1.3;
	margin-top:8px;
}
.table_wrap table.parts_table th, .table_wrap table.parts_table td{
	padding:5px;
}
.parts_table_koumoku th:nth-child(1){
	min-width:140px;
}
.parts_table_koumoku th:nth-child(2){
	min-width:90px;
}
.parts_table_koumoku th:nth-child(4){
	min-width:50px;
}
/*ブログ*/
.blog_main{
	max-width: 1100px;
	margin:-120px auto 0;
}
.blog_list{
	display:flex;
	flex-wrap:wrap;
	font-size:calc(12px + 0.5vw)
}
.blog_list h3{
	font-size:105%;
	font-weight:normal;
	margin-top:4px;
}
.blog_list div{
	width:30%;
	margin:15px 1.66%;
}
.blog_list div.date_cat{
	display:flex;
	width:100%;
	margin-bottom:5px;
}
.date_cat p{
	width:50%;
}
.date_cat p:last-child{
	text-align:right;
}
.date_cat span{
	background:#f3f3f3;
	border:1px solid #ddd;
	padding:2px 10px 1px;
	font-size:75%;
	margin-right:5px;
}
.blog_list_imgbox{
	height:250px;
	width:100%;
	overflow:hidden
}
.blog_list a{
	color:#333;
	display:block;
}
.blog_list a:hover img{
	filter: brightness(130%);
}

.blog_kiji{
	font-size:calc(12px + 0.5vw);
	padding:0 2vw;
}
.blog_kiji h3{
    font-size:180%;
    font-weight:normal;
}
.body_img{
	display:flex;
    margin:20px auto;
    flex-wrap:wrap;
    font-size:95%
}
.body_img > div:first-child{
	width:calc(100% - 500px);
	padding-right:10px;
	margin-bottom:10px;
}
.body_img .img_slide{
	width:500px;
	height:350px;
	overflow:hidden;
	margin-top:0px;
	position:relative;
}
.body_img .img_single{
	width:500px;
}
.popup{
	display:none;
}
.popup h2{
	margin:0 0 5px;
	text-align:center;
}
@media(max-width:1000px){
	.blog_list_imgbox{
		height:25vw;
	}
	.body_img > div:first-child{
		width:100%;
	}
	.body_img .img_slide {
		width:calc(100% + 4vw);
		margin-left:-2vw;
		height:60vw;
		overflow:visible;
	}
}
.cover{
	width:100%;
	height:100%;
	object-fit:cover;
}
.onsen{
	font-size:180%;
	margin:35px 0 0 20px;
}

@media(max-width:800px){
	.parts_table{
		font-size:80%;
	}
	.shasyu_yoko3{
		margin:0;
	}
	.shasyu{
		margin-top:7px;
	}
	.shasyu:first-child{
		margin-top:0;
	}
	.shasyu_yoko3 span.w33,
	.shasyu_yoko3 span.w50,
	.shasyu_yoko3 span.w50{
		width:100%;
	}
	.parts_table_koumoku th:nth-child(1){
		min-width:80px;
	}
	.parts_table_koumoku th:nth-child(2){
		min-width:65px;
	}
	.parts_table_koumoku th:nth-child(4){
		min-width:38px;
	}
	.blog_list div{
		width:47%;
		margin:0 2% 25px 2%;
	}
	.blog_list div:nth-child(2n){
		margin:0 2% 25px 0;
	}
	.blog_list_imgbox{
		height:30vw;
	}
	.body_img{
	    display:flex;
	}
}



/*--------------SP--------------■■■■■■■■■■■*/
@media(max-width:1050px){
	.column_block_text > div{
		width: 80%;
	}
	.thumb_flex_left p{
		margin: 20px auto 0;
	}
	.thumb_caption,.thumb_caption_3ver{
		padding: 80px 50px 50px;
	}
}
@media(max-width:950px){
	/*------共通---------*/
	body{
        font-size:calc(14px + 0.5vw);
        line-height:1.5;
	}
	.flex_wrap_reverse{
		flex-wrap: wrap-reverse;
	}
	.flex{
		flex-wrap: wrap;
	}
	.passing .passing-txt {
		font-size:calc( 3vw + 15px)
	}
	/*------ sp menu --------*/

	.contents_box{
		padding-left: 0;
	}
	.wrap2{
		margin: 50px 0 0;
	}


	/*-------- contents -----------*/
	/*top*/
	.ontop{
		width:95%
	}
	.ontop img{
		width:60%
	}
	.home_midashi p:nth-child(4){
		font-size:15px
	}
	.home_midashi_waku_left{
		top: -60px;
		left: -20px;
	}
	.home_midashi_waku_right{
		bottom: -60px;
		right: -20px;
	}
	.home_midashi_waku_right img,.home_midashi_waku_left img{
		height:35vw
	}
	.column_block{
		flex-wrap:wrap
	}
	.column_block_img img{
		height:350px;
	}
	.column_block_text,	.column_block_img{
		width:100%;
	}
	.column_block_text{
		padding:50px 0
	}
	.thumb_block_flex{
		flex-wrap:wrap
	}
	.thumb_flex_left{
		width:100%;
		padding: 0;
		margin-bottom: 50px;
	}
	.thumb_flex_left p{
	    max-width: 90%;
	}
	.thumb_flex_left .nikukyu{
    margin-top:-70px;
    margin-left:10%
	}
	.thumb_flex_right{
		padding-left:0% ;
		width: 100%;
		text-align: right;
	}
	.thumb_caption,.thumb_caption_3ver{
		margin: 0;
		padding: 25px;
	}
	.thumb_caption_under{
		flex-wrap:wrap
	}
	.thumb_caption p, .thumb_caption_3ver p{
		width:100%;
		margin: 6% 0;
	}
	.black_box{
		width:100%
	}
	.base_link{
		margin:10vw 3vw 0;
	}
	.base_midashi{
		width:100%
	}
	.online_txt, .online_link{
		width:100%;
	}
	.online_txt{
		padding: 5% 5% 1% 5%;
	}
	.online_link{
		padding: 1% 5% 5% 5%;
	}
	
	/*footer*/
	.seikyu_wrap{
		margin: 30px auto 0;
	}

	.toiawase-flex{
		flex-wrap:wrap
	}
	.toiawase-box1, .toiawase-box2{
		width:100%;
		margin: 20px auto;
	}
	.toiawase-box2{
		padding-bottom: 25px;
	}
	.footer_menu_wrap{
		flex-wrap:wrap;
		max-width: 90%;
		padding: 20px 0;
	}
	.cont-item{
		width: calc( 100%);
		margin-top:20px
	}

	.addless_wrap{
		flex-wrap:wrap;
		margin: 17px auto 0;
	}
	.addless_left{
		width: 100%;
		margin: 0 auto;
	}
	.footer_sns{
		width:100%;
		text-align:center;
		font-size:220%;
		margin-top:7vw;
	}
	.adless_right{
		width:100%;
		text-align: center;
		margin: 10px 0 0;
	}
	.pro_tac{
	    margin-bottom: -55px;
	}
	/*---- 別page共通------*/
	.contents_box_2 {
		width: 100%;
		padding-right: 0px;
	}
	.yohaku {
		margin: 100px 0;
	}
	.yohaku-2 {
		margin: 50px 0;
	}
	.midashi_green{
		font-size: 5vw;
	}
	.addlass_back{
		background-size:100%
	}
	.addlass_wrap{
		flex-wrap:wrap;
		margin: 0;
	}
	.addlass_wrap > div{
		margin: 50px 0 0;
		width: 100%;
	}
	.addless_midashi{
		padding:0
    }
	.add_midashi_txt{
		position: unset;
		top: unset;
		left: unset;
		transform: none;
		-webkit-transform: none;
		-ms-transform: unset;
		margin:200px 0 0px 10px
	}
	.add_midashi_txt div{
		writing-mode: horizontal-tb;
		-ms-writing-mode: horizontal-tb;
		-webkit-writing-mode:horizontal-tb;  
	}
	.addless_block{
		width: 95%;
		margin: 2% auto 1%;
	}
	.addless_block table{
		width: 100%;
	}
	/*----------- contact page----------------*/
	.co_table{
		clear: left;
		float: left;
		/* width: 10%; */
	}
	.co_table dt{
		float: left;
		margin-left: 0%;
    }
	.co_table dd{
		margin-left: 0%;
	}
	.co_table em{
		font-size: 3vw;
	}
	/*prouse*/
	.prouse_block,.prouse_txt{
		width: 100%;
		padding:2%
	}
	.prouse_txt{
		margin:20px 10px;
		font-size:85%
	}
	.table_wrap{
		width:95%
	}
	/*cardoctor*/
	.car_doctor_block{
		width:100%;
		margin-top:30px ;
	}
	/*manager*/
	.manager{
		width: 100%;
		margin: 50px auto;
	}
	.manager div {
		width: 80%;
		margin: 20px auto 0;
	}
	.manager dt{
		margin-left:15px
	}
	.manager dd{
		margin-left:110px
	}
	.manager h3{
		text-align:center
	}

}

/*------ トップのお知らせ ------*/
.bloglinks{
	width:fit-content;
	margin:0 auto;
	margin-bottom:calc(40px + 5vw);
}
.bloglinks img{
	width:calc(30px + 3vw);
	margin:0 10px;
}
.bloglinks > div:first-child{
	font-size:150%;
}
.bloglinks > div:nth-child(2){
	background: #000;
	padding:1.5vw 3vw;
}
.bloglinks > div:nth-child(2) a{
	color:#fff;
	display:block;
	margin:5px 10px;
	padding:2px 10px 2px 18px;
	border-radius:20px;
	transition: 0.3s;
}
.bloglinks > div:nth-child(2) a:hover{
	background:#fff;
	color:#000;
}

.bloglinks p{
	display:inline-block;
	margin-right:10px;
}
.bloglinks p:nth-child(2){
	background:#999;
	padding:2px 6px 0;
	border-radius:2px;
	font-size:65%
}
.bloglinks > div:last-child{
	text-align:right;
	padding:5px 12px;
	font-size:92%;
	font-weight:bold;
}
.bloglinks > div:last-child a{
	color:#000;
}
.bloglinks > div:last-child a:hover{
	color:#999;
	text-decoration:underline;
}


@media(max-width:950px){
    .bloglinks{    
    	margin-bottom:calc(20px);
    }
}

/*------ SNS 上 ------*/
.sns{
	width:100%;
	text-align:right;
	font-size:33px;
	padding:14px 74px 0 0;
}
.sns a{
	display:inline-block;
	margin-left:12px;
	color:#666;
}