@charset 'utf-8';

/*
 * リセット
 */
body,header,footer,section,article,div,p,ul,ol,li,h1,h2,h3,h4,h5,h6,a,figure,figcaption,img,table,tr,th,td,dl,dt,dd{
  padding:0;
  margin:0;
  box-sizing:border-box;
}
h1,h2,h3,h4,h5,h6,th{font-weight:normal;}
/*
 * 共通
 */
body{
  font-family:"Noto Sans JP", Hiragino Kaku Gothic ProN, Meiryo, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height:1.4;
  -webkit-text-size-adjust: 100%;
	color: #333;
}
img{
  max-width:100%;
  vertical-align:top;
}
.img2x{width:100%;}
a{text-decoration:none;}
.link-hover{transition:.2s;}
.link-hover:hover{opacity:.8;}
ul,ol{list-style:none;}


.mb5{margin-bottom:5px;}
.mb10{margin-bottom:10px;}
.mb20{margin-bottom:20px;}
.mb30{margin-bottom:30px;}
.mb40{margin-bottom:40px;}
.mb50{margin-bottom:50px;}
.mb60{margin-bottom:60px;}
.mb70{margin-bottom:70px;}
.mb80{margin-bottom:80px;}
.mb100{margin-bottom:100px;}
.mb120{margin-bottom:120px;}
.mb150{margin-bottom:150px;}
.mb220{margin-bottom:220px;}

.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt70{margin-top: 70px;}
.mt80{margin-top: 80px;}
.mt90{margin-top: 90px;}
.mt100{margin-top: 100px;}

.mb10-20 {margin-bottom: clamp(1rem, 2vw, 2rem);}
.mb20-40 {margin-bottom: clamp(2rem,5.5vw,4rem);}
.mb30-50 {margin-bottom: clamp(3rem,10vw,5rem);}
.mb40-80 { margin-bottom: clamp(4rem, 12vw, 8rem); }
.mb60-100 {margin-bottom: clamp(6rem,15vw,10rem);}
.mb80-100 {margin-bottom: clamp(8rem,15.5vw,10rem);}
.mb60-140 {margin-bottom: clamp(6rem,18vw,14rem);}
.mb100-140 {margin-bottom: clamp(10rem,18vw,14rem);}

.mx-auto {margin-left: auto; margin-right: auto;}

.px10 {padding-left: 1rem; padding-right: 1rem;}




.align-left{text-align:left;}
.align-center{text-align:center;}
.align-right{text-align:right;}
.v-top{vertical-align:top;}
.v-middle{vertical-align:middle;}
.v-bottom{vertical-align:bottom;}

.mincho {
  font-family:"Noto Serif JP", Yu Mincho,Hiragino Mincho ProN, "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
.bld{font-weight:bold;}

.line-height-160 { line-height: 1.6em; }
.line-height-175 { line-height: 1.75em; }

.font14-16 {font-size: clamp(14px,2vw,16px);}
.font16-18 {font-size: clamp(16px,2vw,18px);}
.font18-20 {font-size: clamp(18px,2vw,20px);}
.font20-24 {font-size: clamp(20px,2vw,24px);}
.font24-28 {font-size: clamp(24px,3vw,28px);}

.tbl{display:table;}
.row{display:table-row;}
.col,.col-l,.col-c,.col-r{display:table-cell;}
.ib{display:inline-block;}

.wrapper{
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 30px;
}
.container{
  max-width: 1000px;
  margin: 0 auto;
}

article{
 max-width: 1000px;
  margin-left: auto;
	margin-right: auto;
	}
	
.kt	{
  max-width: 950px;
  margin: 0 auto;		
	}
.kt-2	{
	max-width: 950px;
	margin: 0 47px;
	}
	
.content{
  max-width: 760px;
  margin-left: auto;
	margin-right: auto;	
	}	

.list-content{
  max-width: 870px;
  margin: 0 auto;		
	}

.no-wrap{display: inline-block;}

[class^="width-box-"] {
      margin-left: auto;
      margin-right: auto;
   }

/* 各幅設定 - 100px単位で拡張 */
.width-box-300 { max-width: 300px; }
.width-box-400 { max-width: 400px; }
.width-box-500 { max-width: 500px; }
.width-box-600 { max-width: 600px; }
.width-box-700 { max-width: 700px; }
.width-box-800 { max-width: 800px; }
.width-box-900 { max-width: 900px; }
.width-box-1000 { max-width: 1000px; }
.width-box-1100 { max-width: 1100px; }
.width-box-1200 { max-width: 1200px; }
.width-box-1300 { max-width: 1300px; }
.width-box-1400 { max-width: 1400px; }

.flex {
   display: flex;
   display: -webkit-flex;
   justify-content: center;
   align-items: center;
}
.item {
    padding: .5rem;
    width: 100%;
}
[class*="col-"] { flex-basis: var(--col-width, 100%); }
.col-1 { --col-width: calc(100% / 12); }    /*  8.33% */
.col-2 { --col-width: calc(100% / 6); }     /* 16.67% */
.col-3 { --col-width: 25%; }                /* 25% */
.col-4 { --col-width: calc(100% / 3); }     /* 33.33% */
.col-5 { --col-width: calc(100% * 5/12); }  /* 41.67% */
.col-6 { --col-width: 50%; }                /* 50% */
.col-7 { --col-width: calc(100% * 7/12); }  /* 58.33% */
.col-8 { --col-width: calc(100% * 2/3); }   /* 66.67% */
.col-9 { --col-width: 75%; }                /* 75% */
.col-10 { --col-width: calc(100% * 5/6); }  /* 83.33% */
.col-11 { --col-width: calc(100% * 11/12); }/* 91.67% */
.col-12 { --col-width: 100%; }              /* 100% */

.gap5 { gap: 0.5rem; }
.gap10 { gap: 1rem; }
.gap20 { gap: 2rem; }

@media screen and (max-width: 960px) {
	.flex960 { flex-direction: column; }
}
@media screen and (max-width: 768px) {
	.flex768 { flex-direction: column; }
   .flex768.reverse { flex-direction: column-reverse; }
}
@media screen and (max-width: 560px) {
	.flex560 { flex-direction: column; }
   .flex560.reverse { flex-direction: column-reverse; }
}

/* 基本設定（スマホファースト） */
.pc-br { display: none; }
.sp-br,
.sp-br560 { display: block; }

/* タブレット以上（561px〜） */
@media screen and (min-width: 561px) {
   .sp-br560 { display: none; }
}

/* PC表示（769px〜） */
@media screen and (min-width: 769px) {
   .pc-br { display: block; }
   .sp-br { display: none; }
   a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}

}





/* ヘッダー
---------------------------------------------------------------------------------- */
.site-header {
  /*padding-top: 20px; */
  position: relative;
  max-width: 1280px;
    margin: 0 auto clamp(50px,12vw,100px);
}
/*.site-header:not(.home) {
  margin-bottom: 50px;
}*/
.site-header img {width: 100%;}
.header-nav {
 content: '';
    width: 40%;
	max-width:1000px;
    top: 15px;
    margin: 0px auto 0px;
	float:right;
}

.top-link {
	display: flex;
    justify-content: space-between;
    max-width: 300px;
    float: right;
    margin: 0px;
    list-style: none;
  		}
.top-link li {	
    padding-left:20px;}	

.top-link-area{margin-bottom: 30px;}
	
.li h-top{	
    padding-left:20px;}	
	
.li h-pp{	
    padding-left:20px;}			
		

.site-header .ttl-area {
  max-width: 1000px;
  margin: 0px auto 0px;
  position: relative;
}


/*.gnav #menu {
   font-size: 0;
    margin: 0 -15px 0px;
	text-align: center;
}
.gnav li {
  display: inline-block;
    width: 30%;
    text-align: center;
    padding: 10px;
}

.gnav a {
  display: inline-block;
  color: #808080;
  text-align: center;
}*/

.gnav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: .5rem;
}

.logo {
	max-width: 186px;
	margin: 0 3rem 0 auto;
}
.logo img{
	display: block;
	width: 100%;
}


#menu {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1rem auto 1rem 0;
}
#menu li {
  padding: 0 clamp(1em, 2vw, 2rem);	
  border-left: 1px solid #aaa;
	letter-spacing: .5rem;
}
#menu li:last-of-type {
	border-right: 1px solid #aaa;
}
#menu li a {color: #333;}
#menu li a:hover {opacity: 0.6;}

/* ハンバーガーボタン・オーバーレイ */
.openbtn,.overlay {display: none;}

.doga-area{
	/*background-image: url("../image/succha/succha_bn02.png");*/
	text-align: center;
	width: 100%;
	max-width: 1000px;
}

video{
	width: 100%;
	max-width: 1000px;
}

.doga-area iframe{
	text-align: center;
	margin: 0 auto;
}

/* スライダー */
.main-slider {
  margin-bottom: 65px;
}

/* コンテンツ
---------------------------------------------------------------------------------- */
/* 見出し */
.article-ttl {
  text-align: center;
}
.section-ttl {
  text-align: center;
}

/* ホーム */

.tenpo-ttl{ margin-bottom: 20px;}

.tenpo-add{
	margin: 20px auto 20px;
	text-align:center;
	}

.list-kt {
  display: flex;
  padding-bottom:15px;
}
.list-kt li {
  flex-basis: 32%;
  margin-right: 2%;
}

.shakai-k {
	font-size: 0;
    margin: 0 0 20px;
	}

.shakai-k li {
 display: inline-block;
    width: 33%;
    text-align: center;
    padding: 15px;
}


.ttl-blue{
	background-color: #204286; 
	width: 100%; 
	height: 62px; 
	padding: 0 47px; 
	margin-bottom: 20px;
	font-family: 'Noto Serif JP',serif;
	font-weight:bold;
}

.ttl-blue-text{
	color: #FFF;
	font-size: 32px;
	line-height: 62px;
}



.shakai-k-4column {
	font-size: 0;
    margin: 0 0 100px;
	}

.shakai-k-4column li {
 display: inline-block;
    width: 23.7%;
    text-align: center;

}

.shakai-k-4column li:not(:nth-of-type(4n)) {
	margin-right: 1.66%;
}

.shakai-k-4column li:nth-of-type(-n+3) {
	margin-bottom: 15px;
}
.text{
			font-size: 26px;
		}

.kenko-txt {
	padding: 0 2em;
	/*font-size: clamp(16px,2vw,24px);*/
}

.top-menu-area {
	max-width: 1280px;
	background-image: url("../image/top/menu-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
    padding: clamp(4rem, 7vw, 6rem) 1rem;
	margin: 0 auto clamp(6rem, 10.5vw, 10rem);
}
.img-map {text-align: center;}

.ttl-box-orange {
	display: inline-block;
	font-family:"Noto Serif JP", Yu Mincho,Hiragino Mincho ProN, "HG明朝E", "ＭＳ Ｐ明朝", serif;
	font-size: clamp(20px,3vw,30px);
	font-weight: 900;
    letter-spacing: .2rem;
	color: #fff;
	background-color: rgb(229 143 65 / .8);
	padding: .5rem 3rem;
    margin-bottom: clamp(2rem, 5.5vw, 4rem);
}

/* 採用情報・お問い合わせ */

.recruit-ttl{
  font-size:2em;
  font-size: clamp(1.5em,5vw,2em);
  font-weight:bold;
  line-height:1.6;
  display: flex;
  align-items: center;
  /* padding:13px 10px 13px 1.8em; */
  /* padding-left: 1.8em; */
  /* position:relative; */
  margin-bottom: 0.5em;
}

.rec-ttl-bars{
  font-size: 1em;
  display: flex;
  align-items: flex-end;
  gap: 0.12em;
  margin-right: 0.3em;
}

.recruit-ttl span{
  display: block;
  background-color: #004098;
  width: 0.25em;
}

.recruit-ttl span.bar1{
  height: 1.3em;
}

.recruit-ttl span.bar2{
  height: 1.0em;
}

.recruit-ttl span.bar3{
  height: 0.7em;
}

.recruit-ttl span.bar4{
  height: 0.4em;
}

/* .recruit-ttl:before{
  content:'';
  width:clamp(1.4em,4.7vw,1.6em);
  height:clamp(1.4em,4.7vw,1.6em);
  background:url(../image/recruit/blue-icon.svg) 0 0 no-repeat;
  background-size: 100%;
  margin:auto;
  position:absolute;
  left:0;
  bottom:0.1em;
} */

.rec_s1-ttl{
  font-size:18px;
  line-height:1.6;
  padding:13px 10px 13px 50px;
  position:relative;
}
.rec_s1-ttl:before{
  content:'';
  width:40px;
  height:41px;
  background:url(../image/recruit/mal1.png) 0 0 no-repeat;
  margin:auto;
  position:absolute;
  top:0;
  left:0;
  bottom:0;
}
.rec_s2-ttl{
  font-size:18px;
  line-height:1.6;
  padding:13px 10px 13px 50px;
  position:relative;
}
.rec_s2-ttl:before{
  content:'';
  width:40px;
  height:41px;
  background:url(../image/recruit/mal2.png) 0 0 no-repeat;
  margin:auto;
  position:absolute;
  top:0;
  left:0;
  bottom:0;
}
.rec_s3-ttl{
  font-size:18px;
  line-height:1.6;
  padding:13px 10px 13px 50px;
  position:relative;
}
.rec_s3-ttl:before{
  content:'';
  width:40px;
  height:41px;
  background:url(../image/recruit/mal3.png) 0 0 no-repeat;
  margin:auto;
  position:absolute;
  top:0;
  left:0;
  bottom:0;
}

.rec-blue-ttl{
  border: double #004098;
  color: #004098;
  display: inline-block;
  font-size: 1.4em;
  font-size: clamp(1em,4.2vw,1.4em);
  font-weight: bold;
  padding: 0.1em 1.5em;
}

.rec-list li{
  padding-left: 1.2em;
  position: relative;
}

.rec-list li:before{
  position: absolute;
  content: "■";
  left: 0;
}


.rec-list dl{
  display: flex;
}

.rec-list dt{
  min-width: 270px;
}

.rec-tbl {
  width: 100%;
  border-collapse: collapse;
}
.rec-tbl th {
  width: 110px;
  text-align: left;
  padding-right: 10px;
}
.rec-tbl.v-top th {
  vertical-align: top;
}
.rec-tbl th,
.rec-tbl td {
  font-size: 16px;
  padding: 2px 5px;
}

.k-up{ padding: 15px 30px;}

.rec-outer{
  display: flex;
  margin-bottom: 30px;
  margin-top:30px;
}


.rec-l {
   flex-basis: 20%;
   
}

.rec-r {
   flex-basis: 48%;
   
}

.rec-outer2{
  display: flex;
  margin-bottom: 30px;
  margin-top:30px;
}


.rec-l2 {
   flex-basis: 50%;
   
}

.rec-r2 {
   flex-basis: 50%;
   
}

.gaiyou-r {
    flex-basis: 48%;
}

.rec_s4-ttl{
  padding-top:13px;
  padding-bottom:13px;
  position:relative;
}
.rec_s4-ttl:before{
  content:'';
  width:171px;
  height:66px;
  background:url(../image/recruit/saiyo.png) 0 0 no-repeat;
  margin:auto;
  position:absolute;
  top:0;
  left:0;
  bottom:0;
}

.rec_shop-ttl-box{
  padding-left: 5px;
  max-width: 900px;
}

h3.shop-ttl{
  font-weight: bold;
  font-size: clamp(1.5em,4.5vw,1.8em);
  padding-left: 0.2em;
}

.blue_ttl{
  border-left: 5px solid #004098;
  color: #004098;
}

.blue_ttl h3.shop-ttl{
  border-left: 5px solid #004098;
  border-bottom: 5px solid #004098;
}

.green_ttl{
  border-left: 5px solid #009A6D;
  color: #009A6D;
}

.green_ttl h3.shop-ttl{
  border-left: 5px solid #009A6D;
  border-bottom: 5px solid #009A6D;
}



.about-tbl {
  width: 100%;
  border-collapse: collapse;
}
.about-tbl th {
  width: 130px;
  text-align: left;
  padding-right: 10px;
}
.about-tbl.v-top th {
  vertical-align: top;
}
.about-tbl th,
.about-tbl td {
  font-size: 18px;
  line-height: 1.8;
  padding: 2px 0;
}

.k-up-tbl {
  width: 100%;
  border-collapse: collapse;
  }

.k-up-tbl th {
  width: 185px;
  text-align: left;
  padding-right: 10px;
}
.k-up-tbl.v-top th {
  vertical-align: top;
}
.k-up-tbl th,
.k-up-tbl td {
  font-size: 16px;
  line-height: 1.6;
  padding: 10px 5px;
}

.icon-list{
	font-size: 0;
    margin: 0 -15px 10px;
}

.icon-list li{
	display: inline-block;
    width: 16%;
    text-align: center;
    padding: 15px;
}

.mess-outer{
  display: flex;
  margin-bottom: 30px;
  margin-top:30px;
}


.mess-l {
   flex-basis: 30%;
   padding-left: 30px;	
   
}
.mess-r {
    flex-basis: 80%;
}

.seihuku{
	text-align: right;
    margin-right: 100px;
	margin-bottom: 20px;
}
.company-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.company-l {
  flex-basis: 48%;
}
.company-r {
  flex-basis: 390px;
  padding-left: 20px;
}
.company-name {
  font-size: 30px;
  font-weight: bold;
}
.list-company {
  font-size: 18px;
}
.list-company li:not(:last-child) {
  margin-bottom: 10px;
}
.list-company .kind {
  display: inline-block;
  min-width: 3em;
  font-size: 18px;
  color: #fff;
  background: #3d8ffb;
  padding: 3px 20px;
  margin-bottom: 5px;
}
.company-detail span {
  font-size: 36px;
  font-weight: bold;
  color: #3d8ffb;
  vertical-align: middle;
}

.recruit-img {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.recruit-l {
  flex-basis: 32%;
}
.recruit-c {
  flex-basis: 32%;
}
.recruit-r {
  flex-basis: 32%;
}


.ab-outer{
  display: flex;
  margin-bottom: 30px;
  margin-top:30px;
}


.ab-l {
   flex-basis: 48%;
   
}
.ab-r {
    flex-basis: 52%;
}

.daihyo-mes {
	font-family: "Hiragino Kaku Gothic ProN", 游明朝, Meiryo, -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight:normal;
	font-size:20px;
	}

.about-tbl {
  width: 100%;
  font-size: 16px;
  border-collapse: collapse;
  margin-bottom: 70px;
}
.about-tbl,
.about-tbl th,
.about-tbl td {
  border: 1px solid #000;
}
.about-tbl th,
.about-tbl td {
  padding: 10px;
}
.about-tbl th {
  width: 220px;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}

.about-tbl tr:nth-child(even) {
	background: #edeeec;
}

.rinen-box{
  display: flex;
  justify-content: center;
  align-items: center;
}

.rinen{text-align:center;}

.rinen-mes{
	font-family: "Hiragino Kaku Gothic ProN", 游明朝, Meiryo, -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight:normal;
	font-size:24px;
	}

.rec-tbl{
	display: block;
    width: 95%;
    font-size: 14px;
}


.ttl-line-blue {
	border-left: 5px solid #204285;
    padding-left: .2em;
    font-size: clamp(20px, 2vw, 24px);
	font-weight: 700;
    text-align: left;
	color: #204285;
	margin-bottom: 3rem;
}
.ttl-line-blue span {
	display: inline-block;
	border-left: 5px solid #204285;
	padding-left: .2em;
}
.ttl-line-blue span::after {
	content: "";
	display: block;
	border-bottom: 5px solid #204285;
}

.ttl-bg-green,.ttl-bg-blue {
	background-color: #006934;
	border-radius: 10px;
	text-align: center;
	min-height: 58px;
	color: #fff;
	font-size: clamp(18px,3vw,28px);
	font-weight: 500;
	display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: 2rem;
}
.ttl-bg-blue {background-color: #004097;}
.ttl-bg-green span.font-large,.ttl-bg-blue span.font-large {
	font-size: 1.4em;
	font-weight: 900;
}
.ttl-bg-green span:not([class]),.ttl-bg-blue span:not([class]),.ttl-bg-blue span.font-small {
	font-size: .8em;
}
.ttl-bg-blue span.font-small {
	margin-left: 2em;
}




/*PC・SPで無効*/
.pc_hid{
    display: none;
}
.sp_hid{
	display: block;
}

/*スマートフォン・PCで有効*/
@media screen and (max-width:768px) {
    .pc_hid{
        display: block;
    }
	.sp_hid{
		display: none;
	}
}	


/* 企業理念 */

.flex_line-ttl {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.ttl-area {
	width: 20%;
	margin-bottom: 2rem;
}
.flex_line-ttl > div:not([class]) {
	width: 80%;
	padding: 0 1rem;
}

.line-ttl {
	position: relative;
    padding-left: 1rem;
    text-align: left;
	margin-bottom: 3rem;
}
.line-ttl::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-left: 3px solid #ff0000;
}
.line-ttl span {
	display: block;
    font-size: .6em;
}

.philosophy-txt {
	font-size: clamp(24px,5vw,42px);
	font-weight: bold;
	margin-bottom: 1.5rem;
	line-height: 1.4em;
	text-align: left;
	display: inline-block;
}
.philosophy-name {
	font-size: clamp(20px,3vw,26px);
	font-weight: bold;
	text-align: right;
}
.philosophy-name span {
	font-size: .8em;
	padding-right: 1em;
}



/* 会社情報 */

.daihyo{
 text-align:center;
 margin:10 auto;
 padding-top:100px;
}

.gaiyou-outer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.gaiyou-l {
  flex-basis: 48%;
}
.gaiyou-r {
  flex-basis: 48%;
}
.gaiyou.lead {
  font-size: 24px;
  line-height: 1.8;
}

.recreation.lead {
  font-size: 18px;
  margin-bottom: 50px;
}
.list-photo {
  display: flex;
}
.list-photo li {
  flex-basis: 32%;
  margin-right: 2%;
}

.border-tbl {
	width: 100%;
	border-collapse: collapse;
}
.border-tbl :is(th,td) {
	padding: 1rem .5rem;
	border-bottom: 1px solid #aaa;
	line-height: 1.6em;
}
.border-tbl tr:first-of-type :is(th,td) {
	padding-top: 0;
}
.border-tbl th {
	width: 25%;
	text-align: left;
	vertical-align: text-top;
	font-weight: bold;
}
.border-tbl td {width: 75%;}

/* 業務案内 */
.list-service > li {
  border-bottom: 1px dashed #808080;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.list-service h3 {
  font-size: 22px;
  text-indent: -1.7em;
  padding-left: 1.7em;
  margin-bottom: 40px;
}
.list-service-detail {
  margin-bottom: 50px;
}
.list-service-detail li {
  font-size: 18px;
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-bottom: 10px;
}
.list-service-detail span {
  font-size: 14px;
}
.service-tbl {
  font-size: 18px;
  margin-bottom: 60px;
}
.service-tbl th {
  width: 280px;
  text-align: left;
  vertical-align: top;
}
.service-box {
  font-size: 15px;
  line-height: 1.8;
  border: 1px solid #3d8ffb;
  padding: 20px 40px;
}

/* 店舗紹介 */
.shop-flex {
  justify-content: space-between;
  gap: 20px;
}

.shop-flex .flex .item p {
  display: inline-block;
}

.shop-flex .col-6 .item:first-child {
  padding-left: 0;
}

.shop-flex .col-6 .item:last-child {
  padding-right: 0;
  padding-left: 0;
}


.shop-flex .shop-name {
  font-weight: bold;
  font-weight: bold;
  font-size: clamp(17px, 2vw, 28px);
  line-height: 1.3;
  margin-bottom: 5px;
}

.shop-flex .shop-address {
  height: 4em;
  letter-spacing: -0.4px;
}

.shop-flex a {
  color: #000;
}

.shop-flex a p {
    font-size: 1.2em;
  line-height: 1;
  /* margin-bottom: 1em; */
}

.shop-flex .shop-link-btn {
  background-color: #e6e6e6;
  padding: 1em;
  font-size: 0.9em;
  width: 10em;
  text-align: center;
  margin-bottom: 4em;
}

.shop-flex .item img {
  min-width: 180px;
}

    
    
  



/* すっちゃ
---------------------------------------------------------------------------------- */
.succha-outer{
  display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
	margin-top:30px;
}


.succha-l {
   flex-basis: 50%;
   text-align: center;
   padding-top: 10px;
}
.succha-r {
    flex-basis: 50%;
	/*margin-top: 16px;*/
	text-align: center;
}

.keihin-list{
	font-size: 0;
    margin: 0 -15px 10px;
	text-align: center;
	padding: 20px 0;
}

.keihin-list li{
	display: inline-block;
    width: 33.333%;
    text-align: center;
    padding: 10px 5px;
}

.succha-bn{
	text-align: center;
	padding-top:10px;
	padding-bottom:10px;
	}

.chui{
	text-align: center;
	font-size:23px;
}

/* プライバシーポリシー
---------------------------------------------------------------------------------- */
.box {
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #251e1c;
    padding: 10px 40px;
	margin-bottom:40px;
	margin-top:40px;
}

.pp-list li{
	padding: 10px 40px;
}

.pp-last{padding-bottom:40px;}

/* CSR
---------------------------------------------------------------------------------- */
.blue-box {
	border: 1px solid #204286;
	background-color: rgb(255 255 255 / .8);
}
.blue-box h4,.ttl-bg-blue-2 {
	background-color: #204286;
	text-align: center;
	padding: 1rem;
	color: #fff;
	font-size: clamp(18px,2vw,24px);
	font-weight: 700;
}
.ttl-bg-blue-2 {
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}
.blue-box > div {
	padding: 1rem;
	min-height: 200px;
}
.over-box-right,.over-box-left {
	z-index: 0;
}
.over-box-right {
	margin-right: -5rem;
}
.over-box-left {
	margin-left: -5rem;
}

.list-inne {
	display: inline-block;
	text-align: left;
}
.list-inne li {
	text-indent: -1em;
	padding-left: 1em;
}


/* フッター
---------------------------------------------------------------------------------- */
.site-footer {
  background: #004098;
  padding: 10px 0;
  position: relative;
	max-width: 1280px;
    margin: 0 auto;
}
.site-footer .ttl-area {
  max-width: 950px;
  margin: 0 auto 5px;
  position: relative;
	width: 100%;
}
.footer-logo {
  position: absolute;
  top: 0;
  left: 35px;
}

.pd20{padding: 20px 0;}

/* メニュー */
.fnav {
  max-width: 340px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
}
.fnav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fnav li {
  font-size: 16px;
  letter-spacing: normal;
}
.fnav li:last-child {
  flex-basis: 200px;
  border-right: 1px solid #FFFFFF;
}

.fnav a {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding-right: 1.15em;
  padding-left: 1.15em;
  border-left: 1px solid #FFFFFF;
  color: #fff;
}


.fnav a:hover {
  text-decoration: underline;
}
.copyright {
  display: block;
  font-size: 16px;
  color: #fff;
  /*text-align: left;
  position: absolute;
  top: 0;
  left: 10px;*/
	text-align: center;
}

/* ==================================================================================

  1050px以下

================================================================================== */
@media screen and (max-width:1050px){
  /*.gnav #menu {
     margin: 0;
 }*/
}


/* ==================================================================================

  1024px以下

================================================================================== */
@media screen and (max-width:1024px){

/* ヘッダー
---------------------------------------------------------------------------------- */

  .header-nav {
    content: '';
    width: 30%;
    max-width: 768px;
    top: 15px;
    margin: 0px auto 0px;
    float: right;
	font-size:16px;
}

  .top-link {
    display: flex;
    justify-content: space-between;
    max-width: 280px;
}

/*.content {
    max-width: 100%;
    margin: 0 auto;
}*/

/* フッダー
---------------------------------------------------------------------------------- */


/*.gnav a {
    display: block;
    text-align: center;
	padding-right: 10px;
    padding-left: 10px;
  }*/

.fnav {
    padding-left: 0;
    padding-right: 0;
  }
  .fnav ul {
    display: block;
  }
  .fnav li {
    display: block;
    font-size: 14px;
    text-align: center;
    border-top: 1px dashed #3d8ffb;
  }
  .fnav li:last-child {
    border-bottom: 1px dashed #3d8ffb;
  }
  
  .fnav li:first-child {
   border-right: 1px solid #FFFFFF;
}
  
  .fnav a {
    display: block;
    padding: 10px;
  }
  .fnav a:hover {
    text-decoration: none;
  }
}

/* ==================================================================================

  1020px以下

================================================================================== */
	@media screen and (max-width:1020px) {
	.ttl-blue{
		padding: 0 4.6%;
		padding: 0 calc(47/1021 * 100vw); 
	}
	.kt-2	{
		margin: 0 4.6%;
		margin: 0 calc(47/1021 * 100vw);
	}
		.text{
			font-size: 21px;
		}
	
}

/* ==================================================================================

  960px以下

================================================================================== */

@media screen and (max-width:960px) {
	
/* ヘッダー
---------------------------------------------------------------------------------- */
	.gnav {
		display: block;
		margin-top: 0;
		position: fixed;
        top: 0;
        right: -260px;
        width: 260px;
        height: 100vh;
        background-color: #204286;
        padding: 80px 0 0;
        transition: right 0.3s ease-in-out;
		z-index: 2;
	}
	.gnav.open {
		right: 0;
		box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
	}
	.logo {margin: 0 1rem;}
	#menu {display: block;}
	#menu li,#menu li:last-of-type {
		text-align: left;
		padding: 1rem 2rem;
		border: none;
	}
	#menu li a {color: #fff;}
	
	/* ハンバーガーボタン */
	.openbtn {
		display: block;
		position: absolute;
		right: 2%;
		top: 2%;
		cursor: pointer;
		width: 50px;
		height: 50px;
		border: none;
		background-color: #204286;
		z-index: 2;
	}
	
	.openbtn span {
            display: block;
            width: 30px;
            height: 2px;
            background-color: #fff;
            margin: 8px auto;
            transition: all 0.3s ease-in-out;
        }
	
    .openbtn.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .openbtn.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
	
	/* オーバーレイ */
	.overlay {
		display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(31, 41, 55, 0.5);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
		z-index: 1;
        }
	.overlay.active {
            opacity: 1;
            visibility: visible;
        }
	body.menu-open {
            overflow: hidden;
        }
	
	
	
}


/* ==================================================================================

  830px以下

================================================================================== */

@media screen and (max-width:830px) {
  .rec-list dl{
    display: block;
    margin-bottom: 0.5em;
  }

  .rec-list dl:last-child{
    margin-bottom: 0;
  }
}


/* ==================================================================================

  768px以下

================================================================================== */
@media screen and (max-width:768px){

/* ヘッダー
---------------------------------------------------------------------------------- */
  /*.site-header {
    padding-top: 10px;
  }*/
  .site-header:before {
    height: 25px;
  }
  .site-header .ttl-area {
    margin: 20px auto;
  }
  
  .header-nav {
    content: '';
    width: 30%;
    max-width: 768px;
    top: 15px;
    margin: 0px auto 0px;
    float: right;
	font-size:12px;
}
 
  /*.gnav li {
    width: 100%;
    text-align: center;
    }*/

  
  .top-link {
    display: flex;
    justify-content: space-between;
    max-width: 210px;
	font-size:10px
}

.top-link li {
    padding-left: 10px;
}
  
  .logo {
    width: 200px;
  }
  .tel {
    width: 200px;
    margin-left: auto;
  }
 
  
/* コンテンツ
---------------------------------------------------------------------------------- */
  /* ホーム */
  .home.lead {
    font-size: 16px;
  }
  .info-area {
    display: block;
  }
  .info-l {
    margin-bottom: 30px;
  }
  .info-r {
    text-align: center;
  }
  .info-l .info-inner {
    padding-right: 0;
  }
  
  
   /* 採用情報・お問い合わせ */
   
  .icon-list li {
    width: 33%;
}
  
 .mess-outer{display: block;
    margin-bottom: 50px;}
	
	
	
	.mess-l {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    padding: 0;
    text-align: center;
   }

  .mess-r {
    flex-basis: 48%;
   }   
   
.seihuku{
	text-align: center;
    margin-right: 0;
	margin-bottom: 10px;
}	
	
  .company-info {
    display: block;
  }
  .company-l {
    text-align: center;
    margin-bottom: 20px;
  }
  .company-r {
    max-width: 400px;
    padding-left: 0;
    margin: auto;
  }
 
  .about-tbl {
    font-size: 14px;
  }
  
  
  .rec-outer{display: block;
    margin-bottom: 20px;}
	
.rec-tbl th,
  .about-tbl td {
    font-size:14px;
  }
  .rec-tbl th {
    width: 140px;
  }	
  
  .rec-tbl th,
  .about-tbl td {
    font-size:14px;
  }
  .rec-tbl th {
    width: 140px;
  }	
	
	/* 企業理念 */
	.flex_line-ttl {
		display: block;
	}
	.ttl-area,.flex_line-ttl > div:not([class]) {
		width: 100%;
		padding: 0;
	}
	
	.philosophy-txt {margin-top: 1rem;}
	
	
  /* 会社案内 */
  .gaiyou-outer {
    display: block;
    margin-bottom: 50px;
  }
  .gaiyou-l {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .gaiyou-r {
    flex-basis: 48%;
  }
  .gaiyou.lead {
    font-size: 24px;
    line-height: 1.8;
  }
  .gaiyou.lead {
    font-size: 20px;
  }
  .about-tbl th,
  .about-tbl td {
    font-size:14px;
  }
  .about-tbl th {
    width: 140px;
  }
  .recreation.lead {
    font-size: 16px;
  }
  
  .rinen p {
    text-align: center;
	font-size:18px;
}
  
  /* 業務案内 */
  .service-tbl {
    font-size: 15px;
  }
  .service-tbl th {
    width: 200px;
  }
  .service-box {
    font-size: 13px;
    padding: 20px;
  }
  
  .ab-outer{display: block;
    margin-bottom: 50px;}
	
	
	
	.ab-l {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
   }

  .ab-r {
    flex-basis: 48%;
   }
 
.daihyo{
 text-align:center;
 margin:10 auto;
 padding-top:20px;
} 


 
 /* すっちゃ
---------------------------------------------------------------------------------- */
 
  .succha-outer{display: block;
    margin-bottom: 10px;}
	
	
	
	.succha-l {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
   }

  .succha-r {
    flex-basis: 48%;
   }
   
   .keihin-list li{
	width: 50%;
   }
 
 /* プライバシーポリシー
---------------------------------------------------------------------------------- */
.box {
    font-size: 13px;
    padding: 20px;
}
	
/* 採用 */
	.ttl-bg-blue span.font-small {
	margin-left: 0;
}

	
/* CSR */
	.over-box-right,.over-box-left {
		margin-left: 0;
		margin-right: 0;
	}
 
/* フッター
---------------------------------------------------------------------------------- */
  .site-footer .ttl-area {
    margin: 0 auto 30px;
  }
  .footer-logo {
    text-align: center;
    position: static;
  }
  /* メニュー */
  .fnav {
    padding-top: 20px;
    margin-right: auto;
  }
  .fnav li {
    font-size: 14px;
  }
  .copyright {
    font-size: 12px;
	text-align:center
  }
}

/* ==================================================================================

  560px以下

================================================================================== */
@media screen and (max-width:560px){
  .shop-flex .flex .item {
    width: unset;
  }

  .shop-flex .shop-name {
    font-size: 20px;
  }
}
/* ==================================================================================

  480px以下

================================================================================== */
@media screen and (max-width:480px){
  .hidden480 {
    display: none;
  }
  
/* ヘッダー
---------------------------------------------------------------------------------- */
  .logo {
    width: 140px;
  }
  .tel {
    width: 140px;
  }
  .header-nav {
    content: '';
    width: 60%;
    max-width: 768px;
    /* position: absolute; */
    top: 15px;
    margin: 0px auto 0px;
    float: right;
	font-size:12px;
}

  .top-link {
    display: flex;
    justify-content: space-between;
    max-width: 210px;
}
/* メニュー */

  /*.gnav #menu {
    display: block;
    padding: 0;
    margin: 0 auto;
  }
  .gnav li {
    font-size: 16px;
  }
  .gnav a {
    display: block;
    text-align: center;
	padding-right: 10px;
    padding-left: 10px;
  }*/
	
	.gnav {
		right: -220px;
		width: 220px;
	}
 
  
/* コンテンツ
---------------------------------------------------------------------------------- */
  /* 見出し */
  .section-ttl.mb50 {
    margin-bottom: 25px;
  }
  
  /* ホーム */
  .home.lead {
    font-size: 14px;
  }
  
  .list-kt {
    display: block;
    text-align: center;
  }
  .list-kt li {
    margin-right: 0;
    margin-bottom: 20px;
	width:100%;
  }
  
  
  .shakai-k li {
   	width:100%;
  }

  .shakai-k-4column li {
   	width:100%;
	  margin-right: 0px;
	  margin-bottom: 15px;
  }
	
  .rinen-box{
    flex-direction: column;
  }
  
    .rec-tbl.mb70 {
    margin-bottom: 35px;
  }
  .rec-tbl.mb120 {
    margin-bottom: 60px;
  }
  .rec-tbl,
  .rec-tbl tbody,
  .rec-tbl tr,
  .rec-tbl th,
  .rec-tbl td {
    display: block;
    width: 100%;
    line-height: 1.6;
  }
  .rec-tbl th {
    font-weight: bold;
  }
  .rec-tbl:not(.map) td {
    font-size:13px;
    padding-left: 1em;
    /*margin-bottom: 1em;*/
  }

  .blue_ttl{
    border-left: 4px solid #004098;
  }
  
  .blue_ttl h3.shop-ttl{
    border-left: 4px solid #004098;
    border-bottom: 4px solid #004098;
  }
  
  .green_ttl{
    border-left: 4px solid #009A6D;
  }
  
  .green_ttl h3.shop-ttl{
    border-left: 4px solid #009A6D;
    border-bottom: 4px solid #009A6D;
  }

    .k-up-tbl.mb70 {
    margin-bottom: 35px;
  }
  .k-up-tbl.mb120 {
    margin-bottom: 60px;
  }
  .k-up-tbl,
  .k-up-tbl tbody,
  .k-up-tbl tr,
  .k-up-tbl th,
  .k-up-tbl td {
    display: block;
    width: 100%;
    line-height: 1.6;
  }
  .k-up-tbl th {
    font-weight: bold;
  }
  .k-up-tbl:not(.map) td {
    font-size:13px;
    font-size: 0.9em;
    /* padding-left: 1em; */
    margin-bottom: 1em;
  }
	
	.kenko-txt {padding: 0 1em;}
  
  /* 会社案内 */
  .gaiyou-l {
    margin-bottom: 20px;
  }
  .gaiyou.lead {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .recruit-img {
    display: block;
    text-align: center;
  }
  .recruit-l,
  .recruit-c {
    margin-bottom: 10px;
  }
  .about-tbl.mb70 {
    margin-bottom: 35px;
  }
  .about-tbl.mb120 {
    margin-bottom: 60px;
  }
  .about-tbl,
  .about-tbl tbody,
  .about-tbl tr,
  .about-tbl th,
  .about-tbl td {
    display: block;
    width: 100%;
    line-height: 1.6;
  }
  .about-tbl th {
    font-weight: bold;
  }
  .about-tbl:not(.map) td {
    font-size:13px;
    padding-left: 1em;
    margin-bottom: 1em;
  }
  .recreation.lead {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .list-photo {
    display: block;
    text-align: center;
  }
  .list-photo li {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
   .rec-outer{display: block;
    margin-bottom: 50px;}
	
	
	
	.rec-l {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
   }

  .rec-r {
    flex-basis: 48%;
   }
   
    .rec-outer2{display: block;
    margin-bottom: 50px;}
	
	
	
	.rec-l2 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
   }

  .rec-r2 {
    flex-basis: 48%;
   }
  
  /* 業務案内 */
  .list-service > li {
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .list-service h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .list-service-detail {
    margin-bottom: 30px;
  }
  .list-service-detail li {
    font-size: 16px;
  }
  .list-service-detail span {
    font-size: 12px;
  }
  .service-tbl,
  .service-tbl tbody,
  .service-tbl tr,
  .service-tbl th,
  .service-tbl td {
    display: block;
    width: 100%;
  }
  .service-tbl th {
    font-size: 14px;
    font-weight: bold;
  }
  .service-tbl td {
    font-size: 13px;
    padding-left: 1em;
    margin-bottom: 15px;
  }
  
  /* お問い合わせ */
  .company-name {
    font-size: 25px;
  }
  .list-company {
    font-size: 14px;
  }
  .list-company .kind {
    font-size: 14px;
  }
  .company-detail span {
    font-size: 25px;
  }
 
  .about-tbl,
  .about-tbl tbody,
  .about-tbl tr,
  .about-tbl th,
  .about-tbl td {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .about-tbl,
  .about-tbl th,
  .about-tbl td {
    border: 0;
  }
  .about-tbl th {
    border: 1px solid #000;
  }
  .about-tbl td {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
  .about-tbl tr:last-child td {
    border-bottom: 1px solid #000;
  }
	
	
	/* 会社概要 */
	.border-tbl :is(th,td) {
		padding: 1.5rem .5rem;
		display: block;
		width: 100%;
	}
	.border-tbl th {padding: .25rem .5rem; }
	.border-tbl tr:first-of-type td {
		padding-top: 1.5rem;
	}

/* フッター
---------------------------------------------------------------------------------- */
  /* メニュー */
  .fnav {
    padding-left: 0;
    padding-right: 0;
  }
  .fnav ul {
    display: block;
  }
  .fnav li {
    display: block;
    font-size: 14px;
    text-align: center;
    border-top: 1px dashed #3d8ffb;
  }
  .fnav li:last-child {
    border-bottom: 1px dashed #3d8ffb;
  }
  
  .fnav li:first-child {
   border-right: 1px solid #FFFFFF;
}
  
  .fnav a {
    display: block;
    padding: 10px;
  }
  .fnav a:hover {
    text-decoration: none;
  }
}
	
