/* CSS Document */
@media (min-width: 641px) and (max-width: 1024px) {
  body,
  .nav_wrap.fixed,
  .mainvisual_wrap,
  #mainvisual,
  header,
  footer {
    min-width: 1300px;
  }

  .tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap {
    width: 1300px;
  }
}
@media screen and (max-width:640px) {
body {
  font-size: 14px;
}

body,
.nav_wrap.fixed,
#mainvisual,
header,
footer {
  min-width: 100%;
}

#contents{
	min-width:375px;
}

/* ナビ展開時スクロール禁止処理 */
body.nav-open {
  overflow: hidden !important;
}

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

  header

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

  header {
    display: none;
  }

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

  nav

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

.nav_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: none;
	transition: 0.2s;
	padding:5px;
	background:#fff;
}

.nav_wrap .header_logo {
  width: calc(100% - 56px);
}

.nav_wrap .header_logo a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3px 0 3px 10px;
}
.nav_wrap .header_logo a img{
	transition:.1s;
	/* -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1); */
}
.nav_wrap .header_logo a .white{
	opacity:0;
	visibility: hidden;
	display:none;
}

.nav_wrap .header_logo img {
  width: auto;
  height: 49px;
}

/* ハンバーガーボタン */
.btn_tgl_menu {
  position: relative;
  right: 0;
  color: #fff;
  width: 55px;
  /* background: rgb(3 ,33, 55); */
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: center;
  transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
}

.btn_tgl_menu i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  margin: auto;
  font-style: normal;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.btn_tgl_menu span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 35px;
  height: 2px;
  background: #333;
  transition: all 0.6s cubic-bezier(.19, 1, .22, 1);
  opacity: 1;
}

.btn_tgl_menu span:nth-of-type(1) {
  top: 14px;
}

.btn_tgl_menu span:nth-of-type(2) {
  top: 26px;
}

.btn_tgl_menu span:nth-of-type(3) {
  top: 38px;
}

/* MENUボタン押下時 */
.btn_tgl_menu.active {
  /* right: 16.25rem; */
	z-index:10000;
}

.btn_tgl_menu.active span:nth-of-type(1) {
  top: 26px;
  transform: rotate(225deg);
}

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

.btn_tgl_menu.active span:nth-of-type(3) {
  top: 26px;
  transform: rotate(-225deg);
}

/* ドロップダウンメニュー */
.tgl_menu_list {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: right 1s cubic-bezier(.19, 1, .22, 1);
  background: #f2f2ed;
  padding:44px 15px 15px;
}

body.nav-open .tgl_menu_list .header_logo{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	background:#032137;
	padding:5px 5px 5px 15px;
	z-index:1000;
}

.tgl_menu_list .header_logo a{
	padding: 3px 0 3px;
}

.tgl_menu_list ul {
  flex-flow: column wrap;
  gap:0;
	padding:20px 0 60px;
}

.tgl_menu_list ul li {
  display: block;
  /* border-bottom: 1px solid #fff; */
  width: 100%;
}

/* .tgl_menu_list ul li:first-child {
  border-top: 1px solid #fff;
} */

.tgl_menu_list ul li::after {
  display: none;
}

.tgl_menu_list ul li a,
.tgl_menu_list ul li p,.tgl_menu_list ul li.recruit_nav a, .tgl_menu_list ul li.contact_nav a {
  display: block;
  text-align: left;
  padding: 15px 10px;
  width: auto;
  color: #333;
  font-weight: 600;
	font-size:15px;
  border:none;
	border-top:1px solid rgba(0,0,0,0.4);
	font-family: メイリオ, Meiryo,"游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	background:none;
	height:auto;
}

.tgl_menu_list ul li a:hover {
  color: #fff;
}

.tgl_menu_list ul li.sp_btn{
	display:flex;
	gap:5px;
}


.tgl_menu_list ul li a.contact_sp{
	border:none;
	text-align:center;
	padding:25px 10px 10px;
	background:#BF4F00;
	font-size:14px;
	border:none;
	width:100%;
	display:flex;
	align-items: center;
	justify-content: center;
	height:60px;
	color:#fff;
}
.tgl_menu_list ul li a.contact_sp em{
  position: absolute;
  top: 13px;
  font-size: 10px;
  font-weight: 400;
}
/* .tgl_menu_list ul li a.contact_sp em{
  position: absolute;
  bottom: 13px;
  font-size: 10px;
  font-weight: 400;
} */

.tgl_menu_list ul li a.contact_sp em::before{
	position:absolute;
	top:0;
  right: -4px;
  width: 1px;
  height: 12px;
  transform: rotate(24deg);
	background:#fff;
	content:"";
}

.tgl_menu_list ul li a.contact_sp em::after{
	position:absolute;
	top:0;
  left: -4px;
  width: 1px;
  height: 12px;
  transform: rotate(-24deg);
	background:#fff;
	content:"";
}

.tgl_menu_list ul li a.contact_sp img{
	margin:0 5px 0 0;
	width:20px;
}

.tgl_menu_list ul li a.tel_sp{
	border:none;
	margin:0;
	text-align:center;
	background:#4D8912;
	font-size:17px;
	padding:12px 10px;
	border:none;
	width:100%;
	display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height:60px;
	color:#fff;
	gap:3px;
}

.tgl_menu_list ul li a.tel_sp span{
	font-size:14px;
	margin:0 5px 0 0;
	display:inline-block;
}

.tgl_menu_list ul li a.tel_sp small{
	font-size:12px;
}

.tgl_menu_list ul li a.tel_sp::before,.tgl_menu_list ul li a.contact_sp::before{
	content:none;
}

body.nav-open .tgl_menu_list {
  overflow-y: scroll;
  right: 0%;
}


body.nav-open .tgl_menu_list ul li.sp_btn{
	position:fixed;
	bottom:0;
	left:0;
	padding:5px;
}
/* ------- スライドメニュー シングル------- */
.tgl_menu_list ul li.nav_single_menu div {
  position: static;
  opacity: 1;
  visibility: visible;
  width: 100%;
  padding-bottom: 10px;
  box-shadow: none;
	display:flex;
	flex-wrap: wrap;
	margin:0 0 0 10px;
}
.tgl_menu_list ul li.nav_single_menu > a{
	padding: 15px 10px 10px;
}

.tgl_menu_list ul li.nav_single_menu div a {
  margin-left: 15px;
  background: none;
  padding: 3px;
  line-height: 1.5;
  text-indent: -1.2em;
  padding-left: 1.2em;
  border-bottom: none;
	width:calc(50% - 15px);
	font-size:13px;
	border:none;
}

.tgl_menu_list ul li.nav_single_menu div a::before {
  position: static;
  display: inline;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin-right: 10px;
	border:none;
}

.tgl_menu_list ul li.nav_single_menu div a i.nav_arrow {
  display: none;
}

.tgl_menu_list ul li.nav_single_menu div a:hover {
  color: #fff;
  background: none;
}

/* ------- スライドメニュー メガ------- */
.tgl_menu_list .nav_mega_menu {
  position: relative;
}

.tgl_menu_list .nav_mega_menu p::before {
  position: absolute;
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  border: none;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
  transform:none;
}

.tgl_menu_list .nav_mega_menu .mega_menu_wrap {
  display: none;
  position: static;
  opacity: 0;
  visibility: hidden;
  background: none;
  box-shadow: none;
  transition: height 0.5s cubic-bezier(.19, 1, .22, 1);
}

.tgl_menu_list .nav_mega_menu.active .mega_menu_wrap {
  opacity: 1;
  visibility: visible;
}

.tgl_menu_list .mega_menu_inner {
  display: block;
  padding: 0 0 10px 0;
  width: 100%;
}

.tgl_menu_list .mega_menu_top a {
  padding: 12px 12px 12px 0;
}

.tgl_menu_list .mega_menu_top a::before {
  position: static;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  border: none;
  margin-right: 10px;
}

.tgl_menu_list .menu_list {
  margin-left: 0;
}

.tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list p {
  display: none;
}

.tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li {
  border: none !important;
}
.tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li a{
  padding: 3px;
  padding-left: 1.2em;
}

.tgl_menu_list .nav_mega_menu div a {
  margin-left: 15px;
  background: none;
  padding: 3px;
  line-height: 2;
  text-indent: -1.2em;
  padding-left: 1.2em;
}


/* メガメニュー展開時 */
.tgl_menu_list .nav_mega_menu.active p::before {
  content: "\f068";
}

/* ナビ展開時の後ろの背景 */
.nav_overlay {
  display: none;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

body.nav-open .nav_overlay {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* ヘッダー固定ボタンエリア */
.btn_area {
	position:fixed;
	bottom:0;
	left:0;
  width: 100%;
}

.btn_area ul {
  display: flex;
}

.btn_area li.btn {
  width: 100%;
	padding:10px;
}

.btn_area li.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 15px 2%;
  gap:3px;
	line-height:1.4;
	font-size:15px;
	border-radius:5px;
  background: #BF4F00;
	box-shadow:0 0 10px rgba(0,0,0,0.4);
}

.btn_area li.btn a img{
	width:20px;
}

.btn_area li.btn a i {
  width: 15px;
  margin-right: 3px;
}

.btn_area li.btn_tel {
  background: #4D8912;
}

.btn_area li.btn_tel a{
	padding:18px 0 0;
}

.btn_area li.btn_tel a small{
	position:absolute;
	top:11px;
	font-size:12px;
	font-weight:normal;
}

/* 準備中用のクラス */
.btn_area li.btn.coming {
  background: #aaa !important;
}

.btn_area li.btn.coming a {
  pointer-events: none;
  padding: 2px 2% 18px;
}

.btn_area li.btn.coming a::before {
  content: "（準備中）";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 90%;
}
	
.nav_wrap.fixed{
	padding:5px;
	background:#f2f2ed;
}

.nav_wrap.fixed .header_logo a .gray{
	opacity:0;
	visibility: hidden;
	display:none;
} 

 .nav_wrap.fixed .header_logo a .white{
	opacity:1;
	visibility: visible;
	display:block;
	-webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}

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

#mainvisual

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

#mainvisual {
	position:relative;
  background-position: center;
  background-attachment: scroll;
  background-image:url("../images/mv02_sp.jpg");
	background-size:cover;
	margin:65px 0 0;
}
.mainvisual_wrap{
  height: 200px;
}
.mv_service .mainvisual_wrap{
  background-image:url("../images/mv_service_sp.jpg");
}
.mv_about .mainvisual_wrap{
  background-image:url("../images/mv_about_sp.jpg");
}
.mv_contact .mainvisual_wrap{
  background-image:url("../images/mv_contact_sp.jpg");
}
.mv_recruit .mainvisual_wrap{
  background-image:url("../images/mv_recruit_sp.jpg");
}

.mainvisual_wrap{
	width:90%;
}


#mainvisual .inner {
  width: auto;
  height: inherit;
}

/* 下層ページヘッドライン */
.mainvisual_headline p.headline {
  font-size: 28px;
	line-height:1.6;
}

#mainvisual .wave canvas{
	width:auto;
	height:auto;
}

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

#contents

============================================================================*/
	
	.box{
		width:auto;
		margin:0 9%;
	}

	footer .box{
		margin:0 4%;
	}

.box1 {
  width: auto;
  margin: 0 0 50px;
}

.box2 {
  width: auto;
  margin: 0 0 50px;
}
	
	.box3{
		width:auto;
		margin:0 4% 50px;
	}
	.box4{
		width:auto;
		margin:0 7% 50px;
	}

#contents {
  width: auto;
}

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

footer

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

footer p{
	padding:0 20px;
}

.footer_info {
  width: auto;
  padding: 20px 4%;
}
	.footer_inner{
		width:100%;
		padding:0;
		flex-direction: column;
	}
	.footer_navi ul{
		flex-direction: column;
	}
.copy {
	padding:20px;
}

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

$top

============================================================================*/
.top_service{
	padding:50px 0 30px;
}
.top_service_list{
	flex-direction: column;
	align-items: center;
	gap:60px;
}
.top_service_item{
	max-width:340px;
	width:100%;
}
.top_service_item h3{
	top:-30px;
	font-size:18px;
	padding:15px 12px;
}
.top_service_info p{
	font-size:14px;
	line-height:1.6;
}

.top_message{
	padding:0 0 150px;
}
.top_message figure{
	position:static;
	width:90%;
}
.top_message figure img{
	height:350px;
}
.top_message_info{
	width:100%;
	margin:0 0 40px;
}
.top_message_info h2{
	font-size:7.5vw;
	margin:0 0 25px;
}
.top_message_info .tit_en{
	font-size:20px;
}
.top_work_info{
  background:url(../images/top_work_bg_sp.jpg);
}
.top_work_info::before{
	content:none;
}
.top_work_tit{
	position:static;
	margin:0 auto 80px;
	width:112px;
}
.top_work_text{
	position:relative;
	width:100%;
}
.top_work_text::before{
	position:absolute;
	top:-40px;
	left:0;
	right:0;
	margin:auto;
	width:200px;
	height:2px;
	background:#fff;
	content:"";
}
.top_work_text h2{
	font-size:7vw;
	margin:0 0 30px;
}
.top_work_text p{
	font-size:14px;
}

.top_work_list{
	flex-direction: column;
}

.top_recruit{
	padding:80px 0;
}
.top_recruit .box{
	padding:60px 20px 20px;
}
.top_recruit h2{
	position:static;
	text-align:center;
	margin:0 0 40px;
	padding:0;
}
.top_recruit h3{
	font-size:7vw;
}
.top_recruit_text{
	flex-direction: column;
	gap:20px;
}
.top_recruit_text .btn01 a{
	margin:0 auto;
}

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

$breadcrumbs ぱんくず

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

.breadcrumbs {
  width: 90%;
  margin: 0 5% 26px;
  font-size:14px;
}

.breadcrumbs li {
  display: inline-block;
	float:none;
}

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

$共通

============================================================================*/
	#container{
		padding:0;
	}
#contents {
  padding-bottom: 70px;
  padding-top:10px;
	padding:70px 20px 10px;
}

.box {
  width: auto;
}

.text {
  float: none;
  width: auto;
  padding: 0;
  border: none;
}


.tb01 th{
	width:33%;
	padding:15px;
	line-height:1.5;
}
.tb01 td{
	padding:15px;
}

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

$見出し

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

h1 {
	position:static;
	top:5px;
	left:10px;
	text-shadow:0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
	font-size:28px;
}
	
	.tit01{
		font-size:26px;
		margin:0 0 50px;
	}
	.tit02{
		font-size:22px;
		line-height:30px;
		margin:0 0 30px;
	}
	.tit02 small{
		font-size:18px;
		margin:0 0 5px;
	}
	.tit03{
		font-size:26px;
		line-height:1.4;
	}
	.tit04{
		font-size:22px;
		line-height:32px;
		margin:0 0 20px;
	}

.nowrap {
  white-space: normal;
}


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

  $about （店舗情報）

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

.outline .tb01{
	width:100%;
}



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

  $service （事業内容）

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

.service_item{
	width:100%;
	padding:15px;
}
.service_tit h3{
	left:15px;
	bottom:15px;
	font-size:16px;
}
.service_feature{
	flex-direction:column;
}




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

  $contact （下層）

==================================================================*/
.tb04 td, .tb04 th{
	padding:10px;
	font-size:14px;
	width:100%;
	display:block;
}

.submit_btn input[type="reset"]{
	width:30%;
	margin:0 20px 0 0;
}
.submit_btn input[type="submit"]{
	width:60%;
	margin:0;
}
	

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

  $thanks （下層）

==================================================================*/
	
	.flag{
		width:50%;
		margin:0 auto 20px;
	}
	.thanks .tit03{
		font-size:16px;
	}
	.thanks p{
		font-size:14px;
		line-height:2;
	}
	



/*common*/
.pc{display:none!important}.sp{display:block!important}.pc_inline{display:none!important}.sp_inline{display:inline!important}.pc_table{display:table!important}.sp_table{display:table!important}img{max-width:100%;height:auto}.sp_mb00{margin-bottom:0!important}.sp_mr00{margin-right:0!important}.sp_ml00{margin-left:0!important}.sp_mt00{margin-top:0!important}.sp_pb00{padding-bottom:0!important}.sp_pr00{padding-right:0!important}.sp_pl00{padding-left:0!important}.sp_pt00{padding-top:0!important}.sp_center{text-align:center}


}

@media screen and (max-width:320px) {

.sp_inline_iP {
  display: inline !important
}
}

@media screen and (max-width: 374px) {
  body,
  .nav_wrap.fixed,
  .mainvisual_wrap,
  #mainvisual,
  header,
  footer {
    min-width: 375px;
  }
	.box1 {
		width: 100%;
		margin: 0 auto 50px;
	}

	.box2 {
		width: 100%;
		margin: 0 auto 50px;
	}
	
	.box3{
		width:92%;
		margin:0 auto 50px;
	}

	.box4{
		width:86%;
		margin:0 auto 50px;
	}

}