@charset "utf-8";

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: calc(12px + 0.45vw);
  font-weight: bold;
	overflow-x:hidden
}

@media(min-width:961px){
	.sponly{
	  display:none !important;
	}
  }
@media(max-width:960px){
  .pconly{
    display:none !important;
  }
}
@media(min-width:561px){
	.show_sp{display: none !important;}
 }
 @media(min-width:961px){
	.show_sptb{display: none !important;}
 }
 @media(max-width:560px){
	.show_tbpc{display: none !important;}
 }
 @media(max-width:960px){
	.show_pc{display: none !important;}
 }
@media(max-width:768px){
	.none_tb{display: none !important;}
}
@media(min-width:768px){
	.show_tb{display: none !important;}
}
/*変数*/
:root{
	--basecolor: #e10000 ; /*基本色*/
	--sabcolor: ; /*サブカラー*/
}

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


p{
	margin:0
}

h3{
	margin:0;
}

a{
	color: #333;
  text-decoration: none;

}

a:visited{
    color: #333;
}

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%);
}



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

.flex{
	display: flex;
}
.flex_wrap_reverse{
	display: flex;
}

/*spmenu*/
/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
    z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    /*丸のスタート位置と形状*/
    transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
    z-index: 99;
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	padding:0
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
	animation-name:gnaviAnime;
	animation-duration:1s;
	animation-delay:.2s;/*0.2 秒遅らせて出現*/
	animation-fill-mode:forwards;
	opacity:0;
	background-image: repeating-linear-gradient(90deg, var(--basecolor), var(--basecolor) 7px, transparent 7px, transparent 10px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 1px;
}
@keyframes gnaviAnime{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top: 2px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
	width: 60px;
	height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--basecolor);
    width: 60%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top: 23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn p{
	position:absolute;
	bottom: -4px;
	right:10px;
	font-weight:normal;
	color:var(--basecolor);
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

.sp_logo {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 80%;
}

/*--------------------------------
       ここまでtemplate
---------------------------------*/
.header_top{
	height: 100vh;
	max-height: 130vw;
}
.border{
border-bottom: 25px solid var(--basecolor);
}
.top_menu_wrap{
	position: fixed;
	display: flex;
	align-items: center;
	padding: 15px 20px;
	z-index: 10;
	transition: all 0.3s ease;
}
.top_menu_wrap::after{
	content: "";
	position: absolute;
	width: 300px;
	height: 200px;
	clip-path: circle(170px at 90% -10%);
	overflow: hidden;
	top: 0;
	right:  0;
	background: var(--basecolor);
	z-index: -1;
}
.top_menu_wrap.scrolled-link::after{
	display:none
}
.logo{
	width: 30%;
}

.top_menu{
	width: 70%;
}
.top_menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.top_menu ul li{
	position: relative;
	margin: 0 1.3vw;
}
.top_menu ul li a{
	position: relative;
	display: inline-block;
	padding: 10px 1.1vw;
	z-index: 1;
	overflow: hidden;
	color: #fff;
}
.top_menu ul li a::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background-color: var(--basecolor);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.3s ease, height 0.3s ease;
	z-index: -1;
}
.top_menu ul li a:hover:before{
	width: 40px;
	height: 40px;
}
.top_menu ul li:nth-child(6){
	margin: 0 20px 0 50px;
}
#navigation a {
    color: white; /* 通常時 */
    transition: color 0.3s ease;
}
#navigation .logo img{
	transition: all 0.3s ease;
	transform: scale(1);
}
#navigation.scrolled-link .logo img{
	transform: scale(0.8);
	margin-top: 8px;
}

/*#navigation ul li:nth-child(6) a{
	color: #fff;
}*/
#navigation.scrolled-link{
	background:#000;
	padding:5px

}

.slid_wrapper{
	position: relative;
}
.copy{
	position: absolute;
	z-index: 2;
	right: 18%;
	top: 30%;
}
.copy h2{
	font-size: 250%;
	text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
	-moz-text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
	-webkit-text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}
#slider{
	width: 100%;
	height: 100vh;
	max-height:130vw;
}

@media(max-width:768px){
	#slider{
		
	}
}


/*--contants--*/
.section_box {
    position: relative;
    margin: 100px auto;
}
.section_box.mission_wrap{
	background: url(../img/missions_back.jpg) no-repeat;
	background-position: center bottom;
	margin: 0;
	padding: 120px 0;
}
.section_box.gray_back {
	background: #f3f3f3;
	padding: 50px 0;
}
.contents_wrap {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}
.section_ttl{
	font-weight: 900;
	font-size: 300%;
	width: fit-content;
	margin: 0 ;
}
.section_ttl.tar{
	margin: 0 0 0 auto;
}
.section_ttl span{
	display: block;
	font-weight: 500;
	font-size: 20px;
	color: var(--basecolor);
}
.mission_ttl{
	margin:40px auto 0;
	font-size:150%;
}
.mission_txt{
	line-height: 1.9;
	margin: 20px auto 80px;
}
.red{
	color: var(--basecolor);
}

.link_btn a{
	position: relative;
	transition: all 0.3s;
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 5px 100px 5px 20px;
	border: 1px solid #000;
}
.link_btn a span{
	position: absolute;
    display: inline-block;
    border-style: solid;
    border-top: 7.5px solid transparent;
    border-bottom: 7.5px solid transparent;
    border-left: 10px solid #fff;
    border-right: 0;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: all 0.3s;
}
.link_btn a:hover{
	background:#fff;
	color: #000;
}
.link_btn a:hover span{
    right: 20px;
	border-left: 10px solid #000;
}
.mission_img{
	margin: 80px auto 0;
}

.service_txt{
	text-align: center;
	margin: 50px auto;
}

.station_link_wrap{
	margin: 100px auto 100px;
	position: relative;
}
.station_link_wrap::after{
	content: "";
	position: absolute;
	width: 60%;
	height: 120%;
	background: var(--basecolor);
	bottom: -10%;
	right: 0;
	z-index: -1;
}
.station_ttl.flex{
	align-items: center;
}
.station_ttl_txt{
	margin: 0 0 0 20%;
}
.station_link_wrap h3{
	position: absolute;
	top: 27%;
	left: 55%;
	font-size: 180%;
	color: #fff;
}
.station_link_wrap p{
	position: absolute;
	top: 21%;
	left: 55%;
	color: #ee9536;
}
.station_link_wrap .flex{
	align-items: center;
}
.station_txt{
	margin: 0 0 0 50px;
}
.station_img{
	width:70%
}
.station_txt ul{
    list-style:  none;  /* デフォルトのアイコンを消す */
    margin:  0;         /* デフォルト指定上書き */
    padding: 0;         /* デフォルト指定上書き */
	color: #fff;
}
.station_txt ul li{
	margin: 10px auto 0;
}
.station_txt ul li::before{
    content:  "";     /* 空の要素作成 */
    width:  10px;               /* 幅指定 */
    height:  10px;              /* 高さ指定 */
    display:  inline-block;     /* インラインブロックにする */
    background-color: #fce252;  /* 背景色指定 */
    border-radius:  50%;        /* 要素を丸くする */
    position:  relative;        /* 位置調整 */
    top: -1px;                  /* 位置調整 */
    margin-right: 5px;          /* 余白指定 */
}
.station_link_wrap .link_btn{
	margin: 50px auto ;
}



/*--サービスの画像変化--*/
/* 固定画像領域A */
.inner{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0);
}
#change_img #imageA {
	position: fixed;
	top: 0;
	left: 0;
	width: 50vw;
	height: 100vh;
	background-image: url('bg1.jpg');
	background-size: cover;
	background-position: center;
	z-index: -2; /* 背景として後ろに置く */
	transition: background-image 0.3s ease;
}

.change_img_txt {
	min-height: 100vh;
	padding: 40px;
	margin-left: 50vw;
	box-sizing: border-box;
	/*border-bottom: 1px solid #ccc;*/
	position: relative;
	z-index: 0; /* デフォルトで画像の上に来る */
}
.h500{
	height: 500px;
	box-sizing: border-box;
	position: relative;
}



/* 背景なし（画像が透ける） */
#block2{
	background: transparent;
}


.sankaku span{
	display: block;
	width: 0;
	height: 0;
	margin: 0 auto 5px;
	border-style: solid;
	border-width: 13.0px 7.5px 0 7.5px;
	border-color: var(--basecolor) transparent transparent transparent;
}
.service_ttl{
	text-align: center;
	font-size: 130%;
	color: var(--basecolor);
}
.service_ttl p{
	color: #000;
	margin: 0 auto 30px;
}
.service_ttl span{
	background-image: repeating-linear-gradient(90deg, var(--basecolor), var(--basecolor) 7px, transparent 7px, transparent 10px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 1px;
}
.change_img_txt ul{
	width: fit-content;
	margin: 50px auto 0; 
	list-style:  none;      /* デフォルトのアイコンを消す */
    padding: 0;             /* デフォルト指定上書き */
}
.change_img_txt ul li{
	position: relative;
	margin: 0 0 10px;
}
.change_img_txt ul li::before{
	content:  "";     /* 空の要素作成 */
    width:  10px;               /* 幅指定 */
    height:  10px;              /* 高さ指定 */
    display:  inline-block;     /* インラインブロックにする */
    background-color: var(--basecolor);  /* 背景色指定 */
    border-radius:  50%;        /* 要素を丸くする */
}
.change_img_txt_wrap{
	margin: 0 0 500px 0;
}
.change_img_txt .link_btn{
	margin: 50px 0 0 0;
}
.change_img_txt_wrap img{
	width: 60%;
}

/*--リクルートback--*/
#recruit.section_box{
	margin: 300px auto 100px;
}
.recruit_back{
	position: relative;
	background: url(../img/recruit_back.jpg) no-repeat;
	width: 100%;
	height: 0;
	padding-top: 48.85416666%;
	background-size: contain;

}
.recruit_back::after{
	content: "";
	position: absolute;
	top: 0;
	left: -45px;
	width: 16vw;
	height: 2px;
	background: #000;
	transform: rotate(-45deg);
}
.recruit_back::before{
	content: "";
	position: absolute;
    bottom: 45px;
    right: 8vw;
	width: 16vw;
	height: 2px;
	background: #000;
	transform: rotate(-45deg);

}
.recruit_font{
	width: 100%;
}
.recruit_font img{
	position: absolute;
	bottom: 30px;
	right: 0px;
	display: inline;
}
.recruit_txt{
	margin: 50px auto 0;
}
.recruit_txt p{
	margin: 0 0 30px 0;
	line-height: 1.7;
}
.recruit_ttl{
	writing-mode: vertical-rl;
	text-orientation: upright;
	position:absolute;
	top: -60px;
	right: 20%;
	background: #000;
	padding: 30px 10px;
	color: #fff;
	font-size: 200%;
	letter-spacing: 10px;
}

/*--news欄--*/
#news .section_ttl{
	margin: 0 auto;
}
.news_wrap{
	max-width: 800px;
	width: 90%;
	margin: 50px auto 0;
}
.news_link{
	display: flex;
	align-items:center;
	justify-content: space-between;
	margin: 10px 0 0;
	padding: 0 0 10px;
	background-image: repeating-linear-gradient(90deg, var(--basecolor), var(--basecolor) 7px, transparent 7px, transparent 10px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 1px;
}
.news_link day{
	font-size: 140%;
	color: var(--basecolor);
	margin: 0 0 0 10px;
}
.news_link day .year{
	display: block;
	font-size: 15px;
}
.news_ttl{
	font-size: 140%;
	transition:all 0.3s;
}
.news_link:hover .news_ttl{
	opacity:0.5
}
.news_sankaku{
	margin: 0 10px 0 0;
}
.news_sankaku span{
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 7px solid var(--basecolor);
	border-right: 0;
}

/*contact*/
.contact_back.section_box{
	padding: 120px 0;
	margin: 120px auto 0;
}
.contact_back{
	background: url(../img/contact_back.jpg) no-repeat;
    background-size: cover;
}
.contact_box_wrap{
	border: 1px solid;
	background: #fff;
	padding: 50px 50px;
	border-radius: 15px;
}
.contact_txt{
	line-height: 1.9;
}
.contact_box{
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.tel_link,.mail_link{
	display: block;
}
.tel_link{
	font-size: 200%;
	margin: 0 auto 10px;
}
.tel_link span{
	font-size: 15px;
	display: inline-block;
	margin: 0 5px 0 0;
}
.contact_link_box .mail_link{
	color: #fff;
}
.mail_link {
	background: #000;
	padding: 10px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mail_link img{
	height: 30px;
	margin: 0 10px 0 0;
}
.contact_link_box{

}

/*------------- footer -------------*/
footer{
	margin: 0px 0 0;

}
.footer_link{
	background: var(--basecolor);
	padding: 20px 0;
	text-align: center;
}
.footer_link a{
	color: #fff;
	margin: 0 10px;
	font-weight: 600;
}
.footer_box{
	display: flex;
	align-items: center;
	margin:2.5em 0;
}
.footer_logo{
	width: 50%;
}
.footer_logo img{
	width: 60%;
}
.footer_logo p{
	margin: 20px auto 0;
}
.footer_logo a{
	font-size: 15px;
	font-weight: normal;
}
.map{
	width: 50%;
	text-align: center;
}
.map h4{
	width: fit-content;
	margin: 0 auto 10px;
	font-size: 150%;
}
.map h4 span{
	display: block;
	font-size: 15px;
	color: var(--basecolor);
}
.map iframe{
    width: 80%;
    height: 350px;
}
.copyright{
	font-size: 15px;
	font-weight: normal;
	text-align: center;
	margin: 30px auto 0;
	padding:5px 0;
	color:#fff;
	background: var(--basecolor);
}


/*--サービスページ--*/
.intro_wrap .section_ttl{
	margin: 0 auto;
}
.intro_link_wrap h3{
	margin: 40px auto;
}
.intro_link{
	display: flex;
    padding: 0;
    list-style: none;
    margin-top: 3%;
}
.intro_link li{
	width: 33%;
}
.intro_link li:nth-child(1),
.intro_link li:nth-child(2){
    margin-right: 2em;
    position: relative;
}
.intro_link li:nth-child(1)::after,
.intro_link li:nth-child(2)::after{
    content: "";
    position: absolute;
    top: 35%;
    right: 0;
    margin: 0 -1em;
    width: 1px;
    height: 50px;
    background: #000;
}
.intro_link a{
	display: block;
    padding: 1% 2%;
    text-align: center;
    position: relative;
}
.intro_link a::after{
	content: "";
    position: absolute;
    transition: all 0.3s;
    width: 0;
    height: 0;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-width: 7px 4.5px 0 4.5px;
    border-color: var(--basecolor) transparent transparent transparent;
}
.intro_link a span{
	display: block;
	margin: 0 0 10px 0;
}
.intro_link a:hover::after{
	bottom: -25px;
}

.service_box{
	background: #fff;
	padding: 20px;
	border-radius: 15px;
	margin: 0 auto 100px;
}
.service_box_ttl_wrap{
	align-items: center;
}
.service_box_ttl_wrap div{
	width: 46%;
	margin: 0 2%;
}
.service_box_ttl_wrap_text h3{
	text-align: center;
	margin: 0 auto 30px;
}
.service_box_ttl_wrap_text h3 span{
	display: block;
	margin: 0 0 10px 0;
}
.message{
	margin:30px auto ;
	color:#e10000;
	text-align:center
}
.service_list_box dl{
	display: flex;
	align-items: center;
	margin: 15px 0 15px 0;
	padding: 0 0 15px 0;
    background-image: repeating-linear-gradient(90deg, #333, #333 7px, transparent 7px, transparent 10px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
}
.service_list_box dl dt{
	width: 25%;
	padding: 0 0 0 30px;
	position: relative;
}
.service_list_box dl dt::after{
	content: "";
	position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 45px;
	background: var(--basecolor);
}
.service_list_box dl dt p{
	
}
.service_list_box dl dt span{
	display: inline-block;
	width: 10px;
	height: 10px;
	background: var(--basecolor);
	border-radius: 45px;
	margin: 0 5px 0 0;
}
.service_list_box dl dd{
	margin: 0;
	width: 75%;
	font-weight: normal;
	padding: 0 0 0 10px;
}
.service_list_box{
	margin:50px auto 0;
}
.service_list_box .link_btn{
	margin:30px auto;
}
.service_list_box .link_btn a{
	border:var(--basecolor);
	background:var(--basecolor);
}

.houjinmuke,.kateimuke{
	max-width:1000px;
	margin:0 auto;
}

.haiso_ttl h2{
	font-size:120%;
	border:2px solid;
	width:fit-content;
	padding:3px 10px;
}
.haiso_point{
	margin:40px auto
}
.point_box{
	width:31.3%;
	margin:0 1%;
	text-align:center;
	color:var(--basecolor);
}
.point_box h3{
	position:relative;
	margin:0 auto 10px;
	z-index:0;
}
.point_box h3::after{
	content:"";
	position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width:40px;
	height:40px;
	background:#f1f1f1;
	border-radius:45px;
	z-index:-1;
}
.haiso_sub_ttl{
	width:fit-content;
	margin:30px auto;
	font-size:130%;
}
.triangle span{
	display: block;
    width: 0;
    height: 0;
    margin: 0 auto 5px;
    border-style: solid;
    border-width: 25px 15px 0 15px;
    border-color: var(--basecolor) transparent transparent transparent;
}
.triangle {
	margin:30px auto
}
.haiso_contact{
	display:flex;
	width:90%;
	max-width:400px;
	margin:20px auto 0;
	background:var(--basecolor);
	color:#fff;
	justify-content:space-evenly;
	padding:10px 20px;
}
.houjinmuke{
	margin:100px auto ;
}


/*--company page--*/
.intro_link.conpany_page li{
	width: 50%;
}
.intro_link.conpany_page li:nth-child(2){
	margin-right: 0em;
    position: relative;

}
.intro_link.conpany_page li:nth-child(2)::after{
    display:none
}

.com_section{
	margin: 0 auto 100px;
	padding: 0 0 100px;
	border-bottom: 2px solid #333;
}
#com_mission p{
	margin: 50px auto 90px;
}
.greeting_wrap{
	margin: 30px auto 0;
}
.greeting_wrap div{
	width: 50%;
}
.greeting_wrap div p{
	line-height: 1.7;
}
.greeting_img{
	padding: 0 0 0 2%;
}

.info_wrap{
	margin: 0 auto;
    max-width: 800px;
}
.info_wrap dl{
	display: flex;
}
.info_wrap dl dt{
	width: 20%;
    text-align: center;
    font-weight: bold;
    padding: 0px 0px 20px 0px;
    margin: 20px 0 0 0;
    border-bottom: var(--basecolor) solid 3px;
}
.info_wrap dl dd{
	width: 80%;
    margin: 20px 0 0 0;
    padding: 0px 0px 20px 30px;
    border-bottom: #e5e5e5 solid 3px;
}

.history_wrap{
	position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.history_wrap::after{
	content: "";
    position: absolute;
    top: 0;
    left: -0px;
    height: 100%;
    width: 1px;
    background: #000;
    z-index: -1;
}
.history_wrap dl{
	padding: 1em 1em 1em 1.5em;
}
.history_wrap dl dt{
	position: relative;
	padding: 0 0 0 0px;
	color: #e10000;
}
.history_wrap dl dt::after{
	content: "●";
    position: absolute;
    color: var(--basecolor);
    top: 50%;
    left: -2em;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}


/*--recruit--*/
.intro_link.recruit_page li{
	width: 50%;
}
.intro_link.recruit_page li:nth-child(3){
	margin-right: 2em;
    position: relative;

}
.intro_link.recruit_page li:nth-child(3)::after{
    content: "";
    position: absolute;
    top: 35%;
    right: 0;
    margin: 0 -1em;
    width: 1px;
    height: 50px;
    background: #000;
}
.contents_wrap .rec_section:nth-child(4){
	margin: 0 auto 100px;
}
.contents_wrap .rec_section:nth-child(4)::after{
display: none;
}


#rec_interview p{
	margin-bottom:0.8em;
}
.rec_section{
	position: relative;
	margin: 0 auto 200px;
}
.rec_section::after{
	content: "";
	position: absolute;
	bottom: -100px;
	width: 100%;
	height: 2px;
	background: var(--basecolor);
	transform: rotate(5deg);
	left: 0%;
}
.rec_business_wrap{
	margin: 30px auto 0;
}
.rec_business_wrap div{
	width: 50%;
	margin:0 20px 0
}

.appeal_wrap{
	margin: 50px auto 0;
}
.app_txt h3 img{
	height: 60px;
	margin: 0 10px 0 0;
}
.app_txt div{
	margin: 0 0 50px 0;
}
.app_txt h3{
	font-size: 180%;
	line-height: 1;
	color: var(--basecolor);
	margin: 0 0 20px 0;
}
.app_txt p{
	font-weight: normal;
	font-size: 90%;
}
.app_txt{
	width: 48%;
	margin: 0 2% 0 0;
}

.app_img{
	width: 50%;
}
.app_img img{
	width: 50%;
}
.app_img div:nth-child(2){
	margin: 30px 0;
}
.app_img div:nth-child(2) img{
	width: 80%;
}
.app_img div:nth-child(3) img{
	width: 80%;
}

.int_wrap .flex,.int_wrap .flex_wrap_reverse{
	margin: 0 auto calc(30px + 5vw);
}

.int_wrap{
	margin: 30px auto 0;
}
.int_img{
	width: 46%;
	margin: 0 2% 0 2%;
}
.int_txt{
	width: 50%;
}
.int_txt h4{
	color: var(--basecolor);
	margin: 0 auto 1em;
}
.int_txt h4 small{
	text-align:right;
	display:block;
	margin:10px auto 0;
}
.int_txt p{
	font-weight: normal;
	font-size: 90%;
}
/*アコーディオン*/
.qa_wrap{
	margin: 30px auto 0;
    max-width: 900px;
}
.qa_wrap h3{
	margin: 35px auto 8px;
}
.accordion-003 {
	margin: 0 auto;
	max-width: 900px;
	margin-bottom: 0px;
	border-bottom: 2px dotted var(--basecolor);
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid var(--basecolor);
    border-right: 3px solid var(--basecolor);
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}
.accordion-003 p a{
	color: var(--basecolor);
	text-decoration: underline;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}
.entry_link_wrap{
	margin: 50px auto 0;
}
.entry_link_wrap h3{

	width: 70%;
	margin: 0 auto;
	text-align: center;
	font-size: 170%;
	padding: 10px ;
	background: var(--basecolor);
	color: #fff;
}
.entry_link_wrap p{
	text-align: center;
	margin: 50px auto;
}
.entry_link_wrap a{
	position: relative;
	display: block;
	text-align: center;
	font-size: 200%;
	border: 1px solid;
	padding: 20px 0;
	color: var(--basecolor);
	background: #fff;
	box-shadow: 10px 10px 0 var(--basecolor);
}
.entry_link_wrap a::after{
	content:"";
	position: absolute;
	width: 100%;
}
.store_flex{
	display:flex;
	flex-wrap:wrap
}
.contents_wrap.store_wrap{
	max-width: 1600px;
    width: 90%;
    margin: 0 auto;
}
.store_box{
	width: 45%;
	border: 2px solid #ccc;
	padding: 2%;
	margin: 0 2% 0 0;
	border-radius: 15px;
	margin: 0 auto 100px;
}
.storename_wrap{
	align-items: center;
}


.store_img {
	margin: 30px auto ;
	text-align:center
}
.store_img  img{
	width:70%;
}
.store_name{

}
.store_name h3{
	color: var(--basecolor);
	text-align: center;
	margin: 0px auto 0px;
}
.store_name dl{
	display: flex;
	border-bottom: 1px dashed var(--basecolor);
	margin: 0 0 5px 0;
	padding: 0 0 5px 0;
	font-size: 90%;
	font-weight: normal;
}
.store_name dl:nth-child(6){
	border-bottom: none;
}
.store_name dl dt{
	width: 20%;
	text-align: center;
	padding: 2px;
}
.store_name dl dd{
	margin: 0 0 0 15px;
	padding: 2px;
}
.store_name dl dd span{
	font-size:80%;
}
.store_name dl .bs_hours{
	border-bottom: none;
	margin:0;
	padding:0;
	font-size: 90%;
}
.store_name dl .bs_hours dt{
	width:11em;
	text-align:left;
	font-size:90%;
}

.store_name dl a{
	display: inline-block;
	text-decoration: underline;
}
.store_name dl a img{
	width: 16px;
	margin: 0 0 0 10px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap; /* 折り返し */
  gap: 8px;        /* アイコン間の余白 */
  margin: 20px auto 0;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px; /* 丸み */
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  white-space: nowrap; /* 改行しない */
}

/* 色パターン */
.blue   { background-color: #1e90ff; }
.s_red    { background-color: #e74c3c; }
.green  { background-color: #27ae60; }
.orange { background-color: #f39c12; }
.purple { background-color: #8e44ad; }
.pink   { background-color: #e84393; }
.teal   { background-color: #16a085; }
.navy   { background-color: #34495e; }
.gray   { background-color: #7f8c8d; }
.blue_black {background-color: #00488e; }

.store_map {
	margin: 30px auto 0;
}
.store_map iframe{
	width: 100%;
	height: 250px;
}
.maintenance_btn_wrap{
	text-align:center;
	margin:20px auto;
}
.maintenance_btn_wrap .maintenance_btn{
	position:relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 61%;
	color:#fff;
	margin: 0 auto;
	padding: .9em 2em;
	border: 2px solid #fff;
	border-radius: 5px;
	box-shadow: 0 0 0 3px #2589d0;
	background-color: #2589d0;
	color: #fff;
	font-weight: 600;
	font-size:80%;
	transition:all 0.3s;
}
.maintenance_btn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 9px solid #fff;
    border-right: 0;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: all 0.3s;
}
.maintenance_btn:hover{
	background:#e10000;
}
/*--------------- お問い合わせ ---------------*/
.form{
	max-width: 900px;
	margin: 0 auto;
	width:90%;
}
.form p{
	margin-left: 10%;
}
.co_table{
	max-width: 900px;
	width: 90%;
	margin: 0px auto 40px;
	display: flex;
	align-items: center;
}

.mail_text{
	margin:0 auto 50px
}

.co_table dt{
	width: 30%;
}
.co_table dd{
	width: 70%;
}
.co_table span{
	padding:3px 8px;
	display: inline-block;
	margin-right: 20px;
	background: var(--basecolor);
	color: #fff;
	font-weight:normal;
	font-size:12px;
}
.co_table span.gray{
	background: #7f8c8d;
}

input[type=text],
input[type=radio],
textarea {
	width: 100%;
	border-top: none;
	border-right: none;
	border-left: none;
	height: 60px;
	border: #333 solid 1px;
	background-color: #fff;
	padding: 0.5em;
}
textarea{
	height: 100px;
}
input[type=text],
input[type=radio],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

.submit_tac{
	text-align: center;
	margin: 30px auto 0;
}
.submit_tac p:nth-child(1){
	margin:0 0 10px 0
}
input[type="submit"],
a.back,.return_top{
	width: auto;
	height: auto;
	text-align: center;
	border: 0px solid;
	padding: 10px 20px;
	color: #fff;
	background: var(--basecolor);
	font-size: 16px;
	/* margin-top: 40px; */
	min-width: 200px;
	display: inlne-block;
}

/*--プライバシーポリシー--*/
.privacy{
	border:1px solid;
	padding:3%;
	max-width:900px;
	width:90%;
	margin:0 auto;
}
.privacy p{
	margin:5px 0 0
}
.privacy h3{
	color:var(--basecolor);
	margin:20px auto 0;
}

/*--page_top--*/
#page-top a{
	writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
	color:var(--basecolor);
}
#page-top a span{
	position:relative;
	display:inline-block;
	width:2px;
	height:40px;
	margin:0 auto 5px 0;
	background:var(--basecolor);
}
#page-top a span::after{
	content:"";
	width:10px;
	height:10px;
	background:var(--basecolor);
	border-radius:45px;
	margin:0 auto;
	position:absolute;
	top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

@supports (-webkit-touch-callout: none) {
	#page-top {
		right: 35px; /* iOS Safariでだけ少し余白を増やす */
	}
}

_::-webkit-full-page-media, _:future, :root #page-top{
		right: 35px !important;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 20px;
	bottom: 35px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(300px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(200px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(300px);
  }
}


/*--------------SP--------------■■■■■■■■■■■*/
@media(max-width:1200px){
	.top_menu ul li{
		margin: 0 0.5vw;
	}

}
@media(max-width:1000px){
	.recruit_font img{
		width: 90%;
	}

}
@media(max-width:960px){
	/*------共通---------*/
	.flex_wrap_reverse{
		flex-wrap: wrap-reverse;
	}
	.flex{
		flex-wrap: wrap;
	}
	.logo{
		width: 50%;
	}
	.top_menu_wrap::after{
		display:none
	}
	#navigation.scrolled-link{
		background:none;
	}
	#change_img #imageA{
		width: 100vw;
	}
	.service_txt{
		margin: 50px auto 0;
	}
	#block2{
		margin: 0 auto ;
		width: 95%;
		padding: 70px 15px 15px 15px;
	}
	.change_img_txt_wrap img{
		width: 100%;
	}
	.change_img_txt_wrap{
		background: #ffffffb6;
		padding: 30px 20px ;
		border: #ccc 1px solid;
		margin: 0 0 300px 0;
	}
	.change_img_txt .change_img_txt_wrap:nth-child(3){
		margin: 0 auto 100px;		
	}
	.service_ttl p{
		margin: 0 auto 10px;
	}

	.change_img_txt ul{
		font-size: 120%;
		margin: 30px auto 0;
	}
	.change_img_txt .link_btn{
		margin: 30px auto 0;
	}

	.recruit_back::before{
		bottom: 25px;
		right: 8vw;
		width: 19vw;
	}
	.recruit_back::after{
		width: 19vw;
		left: -20px;
	}
	.station_img{
		width:60%
	}
	/*service*/
	.service_box_ttl_wrap div{
		width: 100%;
		margin: 0;
	}
	.service_box .service_box_ttl_wrap_img{
		margin: 20px auto;
	}
	.service_list_box dl{
		flex-wrap: wrap;
	}
	.service_list_box dl dt,
	.service_list_box dl dd{
		width: 100%;
	}
	.service_list_box dl dd{
		margin: 20px auto 0;
	}

	/*--店舗--*/
	.store_box{
		padding: 4%;
	}
	.store_img{
		width: 100%;
		margin: 30px 0 10px;
	}
	.store_name{
		width: 100%;
	}
	.store_name h3{
		margin: 20px auto 30px;
	}
	.store_map{
		margin: 10px auto;
	}
	.hero_img_wrap img{
        object-fit: cover;
        width: 100%;
		height:300px;
	}
	.store_box{
		width:100%
	}


}

@media(max-width:760px){
	.section_box{
		margin: 70px auto;
	}
	.contact_back.section_box{
		padding: 70px 0;
		margin: 70px auto 0;
	}
	.recruit_ttl{
		font-size: 140%;
	}
	.recruit_font img{
		bottom: -20px;
	}
	.news_wrap{
		margin: 20px auto 0;
	}
	.news_link{
		flex-wrap: wrap;
	}
	.news_link day .year{
		display: inline-block;
	}
	.news_link day{
		width: 100%;
		margin: 0;
	}
	.news_ttl{
		font-size: 100%;
	}
	.news_sankaku span{
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-left: 6px solid var(--basecolor);
	}
	.contact_box_wrap{
		padding: 20px;
	}
	.contact_box{
		flex-wrap: wrap;
		margin: 20px auto 0;
	}
	.contact_txt,
	.contact_link_box{
		width: 100%;
		text-align: center;
	}
	.contact_txt{
		margin: 0 auto 20px;
	}
	.station_img{
		width:95%
	}
	.station_txt{
		width:100%;
		padding:20px;
		margin: 30px auto 0 30px;
		background:#ffffffe6
	}
	.station_txt ul{
		color:#333
	}
	.station_ttl_txt{
		width:100%;
		margin: 20px auto 0 20%;
	}
	.station_link_wrap{
		margin: 70px auto 100px;
	}

	.footer_box{
		flex-wrap: wrap-reverse;
	}
	.footer_logo{
		width: 100%;
		margin: 40px auto 0;
		text-align: center;
	}
	.map{
		width: 100%;
	}
	.map iframe{
		width: 90%;
	}

	/*--company--*/
	.greeting_wrap div{
		width: 100%;
	}
	.greeting_img{
		padding: 0;
		margin: 0 auto 20px 0;
	}

	/*--採用情報--*/
	.rec_business_wrap div{
		width: 100%;
	}
	.app_txt{
		width: 100%;
	}
	.app_txt p{
		margin: 0px auto 30px;
	}
	.int_txt{
		width: 100%;
	}
	.int_img{
		width: 96%;
		margin: 0 auto 10px;
	}

	/*--サービス--*/
	.point_box{
		width:100%;
		margin:20px auto;
	}
	
}
@media(max-width:630px){
	.co_table{
		flex-wrap:wrap
	}
	.co_table dt{
		width:100%
	}
	.co_table dd{
		width:100%;
		margin:10px auto 0;
	}
}

@media(max-width:560px){
	.copy h2{
		font-size: 180%;
	}
	.logo {
        width: 80%;
		transition:all 0.3s;
    }
	.logo img{
		transition:all 0.3s;
	}
	#navigation.scrolled-link .logo{
		width:220px;
	}
	.link_btn a{
		padding: 10px 100px 10px 20px;
	}
	.footer_logo img{
		width: 80%;
	}
	.section_box.mission_wrap{
		padding: 70px 0 70px;
	}

	.sankaku span{
		border-width: 7.0px 4.5px 0 4.5px;
	}

	.recruit_back::before{
		width: 25vw;
	}
	#recruit.section_box{
		margin: 200px auto 100px;
	}

	/*company*/
	.intro_link li:nth-child(1), .intro_link li:nth-child(2){
		margin-right: 0;
	}
	.intro_link li:nth-child(1)::after, .intro_link li:nth-child(2)::after{
		margin: 0 0 ;
	}
	.intro_link li:nth-child(2)::after{
		display: none;
	}
	.intro_link a{
		margin: 0 0 0px 0;
	}
	.intro_link a::after{
		bottom: 0;
	}
	.intro_link li{
		width: 50%;
	}
	.intro_link{
		flex-wrap: wrap;
		justify-content: center;
	}
	.intro_link.recruit_page li:nth-child(3){
		margin: 0;
	}
	.intro_link.recruit_page li:nth-child(3)::after{
		margin: 0 0 ;
	}
	.intro_link.conpany_page li{
		width: 50%;
	}
	.intro_link.recruit_page li{
		width: 50%
	}

	.history_wrap dl dd{
		margin:0
	}

	/*--採用情報--*/
	.rec_section{
		margin: 0 auto 100px;
	}
	.rec_section::after{
		bottom: -50px;
	}
	.accordion-003 summary{
		padding: 1em;
	}

	/*--店舗検索--*/

	.maintenance_btn_wrap .maintenance_btn{
		width:100%
	}
	.hero_img_wrap.store_hero img{
        object-position: 25% 0%;
	}

	.hero_img_wrap.service_hero img,
	.hero_img_wrap.recruit_hero img{
        object-position: 25% 0%;
	}

	/*--page_toplink--*/
	#page-top{
		right: 15px;
	}

	.message{
		text-align:left
	}
}

.top_link{
	display:none;
}

/* ニュース */
.news_page_wrap{
	max-width:900px;
	margin:0 auto;
}
.news_img_wrap{
	width:900px;
	max-width:100%;
	text-align:center;
}
.news_thumb{
	display:flex;
	flex-wrap:wrap;
	width:fit-content;
	margin: 10px auto;
	padding: 0;
	
	img{
		height:calc(3vw + 35px);
		margin: 10px 5px 0;
	}
}
.news_img{
		background:#000;
}

/* 複数画像（multi）のときだけ3:2比率を適用 */
.news_img_wrap.multi .news_img {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.news_img_wrap.multi .news_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

/* 単一画像（single）のときは通常表示 */
.news_img_wrap.single .news_img img {
  max-height:600px;
  object-fit: initial;
  position: static;
  transform: none;
}
.news_text{
	width: 900px;
	max-width:100%;
	margin-top: 40px;
}


