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

/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	position: relative;
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 400;/*400 700*/
	line-height: 1.7;
	color: #333;
	font-size: 16px;
	background: url(../img/main_bg.jpg);
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
}
a{
	text-decoration: none;
	color: #333;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
.img{
	min-height: 0%;
}
.img img{
	display: block;
	width: 100%;
}
.img a{
	display: block;
	width: 100%;
	background: #fff;
}
.img a:hover img{
	opacity: .8;
}

.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}


.mg100{
	margin-bottom: 100px !important;
}
.mg80{
	margin-bottom: 80px !important;
}
.mg60{
	margin-bottom: 60px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg10{
	margin-bottom: 10px !important;
}
.lh2{
	line-height: 2;
}
.pmg p{
	margin-bottom: 10px;
}
.pmg15 p{
	margin-bottom: 15px;
}


/*Title*/
h2.title{
	margin-bottom: 40px;
}
h2.title span.en{
	display: block;
	font-family: 'Oooh Baby', cursive;
	font-weight: 400;
	font-weight: normal;
	font-size: 4.5rem;
	letter-spacing: 0.05em;
	text-transform: capitalize;
	line-height: 1.2;
	color: #008000;
}
h2.title span.ja{
	display: flex;
  	align-items: center;
	font-size: 1rem;
	line-height: 1;
	color: #333;
	letter-spacing: 0.05em;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
}
h2.title span.ja::before{
	content: '';
	border-top: 1px solid;
	width: 2em;
	margin-right: .5em;
}
h2.title.center span.ja{
	display: block;
	width: 100%;
}
h2.title.center span.ja::before{
	display: none;
}
h2.title.white span.en,
h2.title.white span.ja{
	color: #fff;
}


/*mtitle*/
.mtitle{
    position: relative;
    border-radius: 0 5px 5px 0;
    padding: 10px 15px 5px;
	padding-right: 0;
    font-size: 1.5rem;
    font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
    margin-top: 10px;
    margin-bottom: 30px;
	letter-spacing: 0.05em;
}
.mtitle::before,
.mtitle::after{
	position: absolute;
    content: "";
    left: 0;
    height: 8px;
}
.mtitle::before{
    width: 25%;
    top: -8px;
    background: rgba(0, 128, 0, 0.6);
    border-radius: 5px 5px 0 0;
}
.mtitle::after{
	width: 40%;
    bottom: -8px;
    background: #008000;
    border-radius: 0 0 5px 5px;
}
@media (max-width: 750px){
	.mtitle{
		font-size: 1.4rem;
	}
}

/*stitle*/
.stitle{
	position: relative;
  	font-size: 1.2rem;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
}
.stitle::before{
	content: '';
	position: absolute;
	bottom: -1px;
	width: 100px;
	height: 1px;
	background: #008000;
}

/*dtitle*/
.dtitle{
	font-weight: bold;
	font-size: 1.4rem;
	text-align: center;
}
.dtitle::after{
	content: '';
	display: block;
	width: 150px;
	height: 1px;
	background: #000;
	margin: 20px auto 40px;
}
@media (max-width: 750px){
	.dtitle{
		font-size: 1.2rem;
	}
}

.ntitle{
	font-size: 1.2rem;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}
.ntitle::before{
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 10px;
	color: #008000;
}

.btitle{
	display: flex;
  	align-items: center;
	font-size: 1.2rem;
	margin-bottom: 15px;
}
.btitle::before{
	content: '';
	border-top: 1px solid;
	width: 2em;
	margin-right: .5em;
}


.center{
	text-align: center;
}
.bold{
	font-weight: bold;
	font-size: 1.2rem;
}


/*ボタン*/
.sbtn{
	text-align: center;
}
.sbtn a{
	display: block;
	border: 1px solid #fff;
	margin: 0 auto;
	text-align: center;
	width: 300px;
	font-weight: normal;
	font-size: 0.9rem;
	padding: 15px 0;
	letter-spacing: 0.1em;
	color: #fff;
	transition: all .5s ease;
	background: #008000;
}
.sbtn a:hover{
	background:#fff;
	color: #008000;
	border: 1px solid #008000;
}
.sbtn.left a{
	margin: 0 auto 0 0;
}

.sbtn.white a{
	background:#fff;
	color: #008000;
	border: 1px solid #008000;
}
.sbtn.white a:hover{
	color: #fff;
	background: #008000;
	border: 1px solid #fff;
}

.m_contact a{
	min-width: 280px;
}

.sbtn2{
	max-width: 750px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
.sbtn3{
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
@media (max-width: 960px){
	.sbtn3{
		display: block;
	}
	.sbtn3 .sbtn:not(:last-child) a{
		margin-bottom: 10px;
	}
}

@media (max-width: 750px){
	.sbtn.left a{
		margin: 0 auto;
	}
	.sbtn2{
		display: block;
	}
	.sbtn2 .sbtn:first-child a{
		margin-bottom: 10px;
	}
}

/*テキストリンク*/
a.t_link{
	display: inline-block;
	position: relative;
}
a.t_link::before{
	content: '';
	display: block;
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 1px;
	transition: 0.1s;
	background-color: #ccc;
}
a.t_link:hover{
	opacity: 0.6;
}
a.t_link:hover::before{
	width: 0;
}


/*2行の基本Table*/
.info_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr{
	border: 2px solid #f5f5f5;
}
.info_table th {
	background: #008000;
	color: #fff;
	width: 30%;
	border-right: 2px solid #f5f5f5;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
}
.info_table th,
.info_table td {
	padding: 15px 0;
}
.info_table td{
	padding-left: 10px;
}
.info_table td {
	background: #fff;
	width: 70%;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}

/*スタイリッシュver*/
.info_table02{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table02 tr{
	border-bottom: 2px solid #f5f5f5;
}
.info_table02 th{
	width: 30%;
	border-bottom: 2px solid #008000;
	color: #008000;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
}
.info_table02 th,
.info_table02 td {
	padding: 15px 0;
}
.info_table02 td{
	padding-left: 10px;
}
.info_table02 td{
	width: 70%;
}

@media (max-width: 450px){
	.info_table, .info_table02{
		font-size: 0.9rem;
	}
}


/*改行*/
@media (min-width: 451px){
	br.only450{
		display: none;
	}
}

@media (max-width: 450px){
	br.not450{
		display: none;
	}
}

span.ib{
	display: inline-block;
}


/*list*/
ul.check_list li{
}
ul.check_list li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	display: inline-block;
	color: #008000;
	margin-right: .5em;
	font-size: .9em;
}

ul.dot_list li{
	margin-bottom: 5px;
}
ul.dot_list li::before{
	content: '・';
	color: #008000;
	margin-right: 5px;
}

ul.care_list li{
	margin-bottom: 5px;
}
ul.care_list li::before{
	content: '※';
	color: #f05742;
	font-weight: bold;
}

/*===info_flexbox======*/
/*画像 + テキスト 通常のflex*/
.info_flexbox{
	display: flex;
	justify-content: space-between;
}
.info_flexbox .img{
	width: 48%;
}
.info_flexbox .text{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox{
		display: block;
	}
	.info_flexbox .img{
		width: 100%;
	}
	.info_flexbox .text{
		width: 100%;
	}
}

/*画像 + テキスト 上下逆転のflex*/
.info_flexbox_reverse{
	display: flex;
	justify-content: space-between;
}
.info_flexbox_reverse .text{
	width: 48%;
}
.info_flexbox_reverse .img{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox_reverse{
		flex-direction: column-reverse;
	}
	.info_flexbox_reverse .text{
		width: 100%;
	}
	.info_flexbox_reverse .img{
		width: 100%;
	}
}

/*画像 + テキスト 画像小さめのflex*/
.mini_flex{
	display: flex;
	justify-content: space-between;
}
.mini_flex .img{
	width: 300px;
}
.mini_flex .text{
	width: calc(100% - 340px);
}
@media (max-width: 750px){
	.mini_flex{
		display: block;
	}
	.mini_flex .img{
		width: 100%;
	}
	.mini_flex .text{
		width: 100%;
	}
}



.img_wrap3{
	display: flex;
	justify-content: space-between;
}
.img_wrap3 .img{
	width: 32%;
}

.img_wrap2{
	display: flex;
	justify-content: space-between;
}
.img_wrap2 .img{
	width: 48%;
}

/*階段型*/
.stairs_img2{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.stairs_img2 .img{
	width: 48%;
}
.stairs_img2 .img:nth-child(1){
	margin-top: 20px;
}

.stairs_img3{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.stairs_img3 .img{
	width: 32%;
}
.stairs_img3 .img:nth-child(2){
	margin-top: 20px;
}
.stairs_img3 .img:nth-child(3){
	margin-top: 40px;
}
@media (max-width: 750px){
	.stairs_img3 .img{
		width: 90%;
		margin-bottom: 20px;
	}
	.stairs_img3 .img:nth-child(2){
		margin: 0 auto 20px auto;
	}
	.stairs_img3 .img:nth-child(3){
		margin: 0 0 0 auto;
	}
}

/*===// 共通部分ここまで ===========*/


::selection {
    background: #008000;
    color: #fff;
}
::-moz-selection {
    background: #008000;
    color: #fff;
}




/*===ヘッダー==============================*/
.site_header{
	padding: 10px 0;
	background: rgba(255, 255, 255, 1);
	border-bottom: 1px solid #eee;
}
.sticky{
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

.site_header .flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}


/*
.site_header h1{
	width: 180px;
	transition: 0.6s;
}
*/
.site_header h1 a{
	display: block;
	width: 100%;
}
.site_header h1 a img{
	display: block;
	width: 100%;
	transition: .4s;
}
.site_header h1 a:hover img{
	opacity: .6;
}

.site_header .info{
	display: flex;
	align-items: center;
}
.site_header .t_btn a,
.site_header .m_btn a{
	display: block;
	white-space: nowrap;
	padding: 10px 15px;
	font-weight: normal;
	margin-left: 5px;
}
.site_header .t_btn a{
	background-color: #008000;
	border: 1px solid #008000;
	color: #fff;
	letter-spacing: 0.05em;
}
.site_header .m_btn a{
	border: 1px solid #008000;
	color: #008000;
}
.site_header .t_btn a:hover{
	transform: scale(0.96);
	opacity: 0.7;
}
.site_header .m_btn a:hover{
	color: #fff;
	background-color: #008000;
}

/*global_nav*/
.global_nav{
	width: 100%;
}
.global_nav ul{
	display: flex;
	align-items: center;
	border-right: 2px dotted #bebebe;
	width: -moz-fit-content;
	width: fit-content;
}
.global_nav ul li{
	transition: .4s;
	position: relative;
	border-left: 2px dotted #bebebe;
	width: 110px;
}
.global_nav ul li a{
	display: block;
	width: 100%;
	text-align: center;
	font-size: 0.9rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #333;
	padding: 10px 0;
	white-space: nowrap;
	transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
}
.global_nav ul li a span{
	display: block;
	text-transform: capitalize;
	color: #008000;
	font-family: 'Oooh Baby', cursive;
	font-weight: 400;
	margin-top: 10px;
}
.global_nav ul li a::after{
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #008000;
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.global_nav ul li a:hover{
	transform: translateY(-5px);
}
.global_nav ul li a:hover::after{
	opacity: 0.5;
	transition: 0.6s;
}

@media (min-width: 961px){
	#home .site_header{
		display: none;
	}
	#home .site_header.transform{
		display: block;
		animation: header01 0.6s;
	}
}
@keyframes header01 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

@media (max-width: 1200px){
	/*
	.site_header h1{
		width: 180px;
	}
	*/
	.site_header .t_btn a,
	.site_header .m_btn a{
		padding: 5px;
		font-size: 0.8rem !important;
	}
	.global_nav ul li{
		width: 80px;
	}
	.global_nav ul li a{
		font-size: 0.8rem;
		padding: 5px 0;
	}
	.global_nav ul li a span{
		margin-top: 5px;
	}
}
@media (max-width: 960px){
	.site_header{
		position: fixed;
		background: transparent;
		border-bottom: none;
		padding: 20px 0;
		transition: 0.4s;
	}
	.site_header.transform{
		background-color: #fff;
		padding: 15px 0;
		border-bottom: 1px solid #eee;
	}
	/*
	.site_header h1{
		width: 220px;
	}
	*/
	.site_header .info{
		display: none;
	}
}
@media (max-width: 450px){
}


/*===スライダー==============================*/
.top_slider{
	overflow: hidden;
	position: relative;
}
.top_slider::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 1);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	animation: apper01 1s ease-in-out;
}
@keyframes apper01 {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
.top_slider .slider{
	width: 100%;
}
.top_slider .slider li{
	width: 100%;
	height: 100vh;
	min-height: 500px;
	margin: 0 1px;
}
.top_slider .slider li.top01{
	background: url(../img/top01.jpg);
	background-size: cover;
	background-position: center center;
}
.top_slider .slider li.top02{
	background: url(../img/top02.jpg);
	background-size: cover;
	background-position: center center;
}
.top_slider .slider li.top03{
	background: url(../img/top03.jpg);
	background-size: cover;
	background-position: center center;
}

/*キャッチ*/
.top_slider .catch{
	position: absolute;
	top: calc(50% - 100px);
	left: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	text-align: center;
	z-index: 2;
	width: 90%;
	max-width: 600px;
	animation: apper02 2.2s ease-in-out;
}
@keyframes apper02 {
	0% {
		opacity: 0;
	}
	50%{
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.slide_bottom{
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
	line-height: 1;
}
.slide_bottom img{
	display: block;
	width: 100%;
	height: 100%;
	line-height: 1;
	vertical-align: bottom;
}

.bottom_contents{
	position: absolute;
	z-index: 20;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: 96%;
}
.bottom_contents h2{
	width: 180px;
	margin: 0 auto 30px;
}
.bottom_contents h2 a{
	display: block;
	width: 100%;
}
.bottom_contents h2 a img{
	display: block;
	width: 100%;
}
.bottom_contents h2 a:hover img{
	opacity: 0.6;
}

.bottom_contents .global_nav ul{
	margin: 0 auto 10px;
	width: 80%;
	max-width: 850px;
}
.bottom_contents .global_nav ul li{
	width: calc(100% / 4);
}
.bottom_contents .global_nav ul li a{
	font-size: 1.1rem;
}
@media (max-width: 960px){
	.top_slider .catch{
		top: calc(50% - 40px);
	}
	.slide_bottom{
		height: 80px;
	}
	.bottom_contents .global_nav{
		display: none;
	}
	.bottom_contents h2{
		width: 140px;
		margin: 0 auto 20px;
	}
}


/*===メイン==============================*/
main{
	display: block;
	position: relative;
}
main section{
	padding: 100px 0;
	position: relative;
}
@media (max-width: 750px){
	main section{
		padding: 60px 0;
	}
}

/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(20px);
	transition: 1.2s;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}

.bg01{
	background: url(../img/bg01.jpg);
}
.bg02{
	background-color: #fbf9f3;
}

span.marker{
	background: linear-gradient(transparent 60%, #ff6 60%);
}

/*==welcome==============================*/
.welcome{
	background: url(../img/welcome_bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root .welcome{
	background-attachment: scroll;
}
.welcome .text{
	text-align: center;
	background: rgba(255, 255, 255, 0.9);
	padding: 30px;
}
.welcome .lede{
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
	font-size: 1.3rem;
	margin-bottom: 20px;
	text-align: center;
}
.welcome .lede span{
	background: linear-gradient(transparent 60%, #ff6 60%);
}

@media (max-width: 750px){
	.welcome .text{
		text-align: left;
	}
	.welcome .text p br{
		display: none;
	}
}

/*==welcome_sub==============================*/
.welcome_link{
}
.welcome_link .box{
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
}
.welcome_link .box:nth-child(2){
	align-items: baseline;
}
.welcome_link .box .img{
	width: 20%;
}
.welcome_link .box a{
	display: block;
	position: relative;
	width: 80%;
	max-width: 750px;
	height: 300px;
	overflow: hidden;
	background: #000;
	border: 5px solid #008000;
}
.welcome_link .box a img{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.2s ease-in;
}
.welcome_link .box a p{
	position: absolute;
	z-index: 2;
	bottom: 10px;
	left: 10px;
	width: 180px;
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	background: rgba(0, 0, 0, 0.5);
	line-height: 1;
	padding: 10px;
}
.welcome_link .box a p span{
	display: block;
	text-transform: capitalize;
	font-size: 2rem;
	font-family: 'Oooh Baby', cursive;
	font-weight: 400;
	margin-bottom: 5px;
}
.welcome_link .box a:hover img{
	transform: scale(1.05);
	opacity: 0.6;
}
.welcome_link .box a:hover p{
	background: rgba(255, 255, 255, 1);
	color: #333;
	border: 1px solid #008000;
}
.welcome_link .box a:hover p span{
	color: #008000;
}
@media (max-width: 960px){
	.welcome_link .box{
		flex-direction: column-reverse;
	}
	.welcome_link .box .img{
		width: 40%;
		max-width: 200px;
	}
	.welcome_link .box:nth-child(1) .img{
		margin: 0 0 0 auto;
		margin-bottom: 10px;
	}
	.welcome_link .box:nth-child(2) .img{
		margin-top: 10px;
	}
	.welcome_link .box a{
		width: 95%;
	}
	.welcome_link .box:nth-child(2) a{
		margin: 0 0 0 auto;
	}
}
@media (max-width: 750px){
}


/*===施工実績==============================*/
.mini_slider{
	background: linear-gradient(to right, #fff 0%, #fff 20%, #fbf9f3 20%, #fbf9f3 100%);
}
.mini_slider .slider01 li{
	margin: 0 10px;
}
.mini_slider .text{
	position: relative;
	top: -100px;
	width: 50%;
	margin: 0 auto -100px;
	background: #fbf9f3;
	padding: 40px;
}
.mini_slider .text p{
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
}
@media (max-width: 750px){
	.mini_slider{
		background: #fbf9f3;
	}
	.mini_slider .text{
		position: static;
		width: 100%;
		margin: 0 auto;
		padding: 40px 20px 0;
	}
}


/*===伊仙町のランチは牛丼　美南海へ==============================*/
.t_minami{
	background: url(../img/minami_bg.jpg);
	background-size: cover;
	background-position: center;
	color: #fff;
	z-index: 1;
}
.t_minami::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.1);
	pointer-events: none;
	z-index:-1;
}
.t_minami .sbtn a{
	margin: 0 auto 0 0;
}
@media (max-width: 750px){
	.t_minami::after{
		background: rgba(0, 0, 0, 0.3);
	}
	.t_minami .sbtn a{
		margin: 0 auto;
	}
}


/*===フッター==============================*/
.footer_top{
	position: relative;
	background: url(../img/footer.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 60px 0;
	text-align: center;
	z-index: 1;
	color: #fff;
}
.footer_top::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	z-index:-1;
}
/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root .footer_top{
	background-attachment: scroll;
}
.footer_top .btn_wrap{
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
	max-width: 960px;
}
.footer_top .btn_wrap .btn{
	width: 360px;
}
.footer_top .btn_wrap .btn a{
	display: block;
	width: 100%;
	border: 1px solid #fff;
	color: #fff;
	padding: 20px 0;
	font-size: 1.4rem;
}
.footer_top .btn_wrap .btn a:hover{
	opacity: 0.6;
}

.footer_middle{
	text-align: center;
	padding: 20px 0;
}

.footer_nav{
	margin: 0 auto;
	max-width: 960px;
	margin-bottom: 20px;
}
.footer_nav ul{
	display: flex;
	justify-content: space-around;
	width: 100%;
}
.footer_nav ul li{
	width: calc(100% / 5);
	text-align: center;
	border-right: 1px solid #eee;
}
.footer_nav ul li:last-child{
	border: none;
}
.footer_nav ul li a{
	font-size: 0.9rem;
	font-weight: normal;
}
.footer_nav ul li a:hover{
	color: #008000;
}

footer h3{
	width: 80%;
	max-width: 180px;
	margin: 0 auto 10px;
}
footer h3 a{
	display: block;
	width: 100%;
}
footer h3 a img{
	display: block;
	width: 100%;
}
footer h3 a:hover img{
	opacity: 0.7;
}
.footer_middle p{
	font-size: 0.8rem;
}

.footer_bottom{
	background: #008000;
	text-align: center;
	padding: 10px 0;
	color: #fff;
}
@media (max-width: 750px){
	.footer_top .btn_wrap{
		display: block;
	}
	.footer_top .btn_wrap .btn{
		width: 100%;
		margin-bottom: 20px;
	}
	.footer_nav{
		display: none;
	}
}


/*トップに戻る*/
.page_top{
	opacity: 0;
	pointer-events: none;
  	width: 50px;
  	height: 50px;
  	position: fixed;
  	right: 10px;
  	bottom: 10px;
	border-radius: 50%;
	opacity: 0;
	transition: 1s;
  	background: #008000;
  	z-index: 50;
}
.page_top a{
	display: block;
	position: relative;
	z-index: 10;
  	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.page_top a i{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  	font-weight: 900;
  	font-size: 25px;
  	color: #fff;
}
.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
	opacity: .6;
}
.page_top.is_animation:hover{
	opacity: 1;
	transform: translateY(-10px);
}


/*=================================*/
/*===下層ページ===============================================================*/
/*下層トップ*/
.kasou_top{
	position: relative;
	z-index: 1;
	background: url(../img/kasou_top.jpg);
	background-size: cover;
	background-position: center;
	height: 400px;
	width: 100%;
	overflow: hidden;
}
#minami .kasou_top{
	background-image: url(../img/kasou_top_minami.jpg);
}
.kasou_top::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	z-index:-1;
}
.kasou_top::after{
	content: '';
	width: 100%;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: url(../img/kasou_top_deco.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center bottom;
	pointer-events: none;
	z-index: 1;
}
.kasou_top h2{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	color: #fff;
	z-index: 2;
}
.kasou_top h2 span.en{
	display: block;
	font-family: 'Oooh Baby', cursive;
	font-weight: 400;
	font-weight: normal;
	font-size: 3rem;
	letter-spacing: 0.05em;
	text-transform: capitalize;
	line-height: 1.2;
	transform: skewX(-5deg);
}
.kasou_top h2 span.ja{
	display: inline-block;
	font-size: 1.3rem;
	line-height: 1;
	letter-spacing: 0.05em;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
}
@media (max-width: 750px){
	.kasou_top{
	  height: 300px;
	}
	.kasou_top::after{
		height: 30px;
	}
	.kasou_top h2 span.en{
		font-size: 2.6rem;
	}
	.kasou_top h2 span.ja{
		font-size: 1.2rem;
	}
}

/*パンくず*/
.breadcrumb{
	z-index: 1;
	font-size: 12px;
	text-align: center;
}
.breadcrumb li {
	display: inline;
	list-style: none;
	font-weight: normal;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	font-size: 1.1em;
	color: #008000;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
}


/*===事業内容ページ==============================*/
.business ul.att_list{
	margin-bottom: 20px;
}
.business ul.att_list li{
	display: inline-block;
	background-color: #008000;
	color: #fff;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
	font-size: 1.1rem;
	padding: 3px 15px 0;
	border-radius: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
}
.business ul.att_list li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	font-weight: bold;
	margin-right: 10px;
}
.business .info{
	border-top: 1px dashed #331803;
	border-bottom: 1px dashed #331803;
	padding: 20px 0 10px;
}


/*===施工実績ページ==============================*/
.works .flex{
	display: flex;
	flex-wrap: wrap;
}
.works .flex .item{
	width: 31%;
	margin: 0 1% 40px;
}
.works a{
	display: none;
}
.works a.imgin{
	display: block;
	position: relative;
    overflow: hidden;
	min-height: 0%;
	width: 100%;
	margin-bottom: 10px;
}
.works a.imgin::before{
    content: '';
    display: block;
    padding-top: 80%;
}
.works a.imgin::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0);
	transition: all 0.3s ease;
}
.works a.imgin img{
	display: block;
	object-fit: cover;
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	transition: all 0.3s ease;
}
.works a.imgin:hover::after{
	background: rgba(0, 0, 0, 0.2);
}
.works a.imgin:hover img{
	transform: scale(1.15);
}

.works .flex .item p{
	text-align: center;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-size: 0.9rem;
}

.works02 .flex .item{
	width: 23%;
}

@media (max-width: 750px){
	.works .flex .item{
		width: 48%;
		margin: 0 1% 40px;
	}
}

/*===牛丼　美南海ページ==============================*/
.minami .catch{
	width: 95%;
	margin: 0 auto;
}
.minami .catch img{
	display: block;
	width: 100%;
}

.minami_menu .inner{
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
}
@media (max-width: 750px){
	.minami_menu .inner{
		padding: 40px 20px;
	}
}

.minami_menu .big{
	margin: 0 auto;
	max-width: 600px;
}

.fee_table{
	width: 100%;
	border-collapse: collapse;
	font-weight: normal;
}
.fee_table .row{
	border-bottom: 1px dotted #ccc;
	display: flex;
	align-items: center;
	padding: 8px 4px;
}
.fee_table .row::before{
	background: radial-gradient(#aaaaaa 20%,rgba(0,0,0,0) 0%) center center/8px 8px;
	content: '';
	display: inline-block;
	flex: 1;
	height: 4px;
	margin: 0 1.2em;
}
.fee_table .row p{
	width: -moz-fit-content;
	width: fit-content;
}
.fee_table .row p.name{
	order: -1;
	max-width: 60%;
}
.fee_table .row p.cost{
	max-width: 35%;
}


/*===会社概要ページ==============================*/
.greeting .tail{
	text-align: right;
	color: #111;
	text-decoration: underline;
}


/*===お問い合わせページ==============================*/
.contact .lede{
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
}

.contact .tel_contact{
	text-align: center;
}
.contact .tel_contact a{
	display: inline-block;
	white-space: nowrap;
	color: #008000;
	font-size: 2.5rem;
	line-height: 1;
}
.contact .tel_contact a span{
	display: inline-block;
	transform: skewX(-5deg);
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 400;
}
.contact .tel_contact a:hover{
	opacity: 0.6;
}
@media (max-width: 750px){
	.contact .lede{
		font-size: 1.2rem;
	}
	.contact .tel_contact a{
		font-size: 2rem;
	}
}


/*メールフォーム*/
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 20%;
	font-weight: bold;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.normal{
	font-weight: normal !important;
}
.mailform .row span{
  	color: #fff;
  	background: #008000;
  	padding: 5px;
  	margin-right: 5px;
  	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform .postal_btn{
	padding: 2px 10px;
	background: #008000;
	color: white;
	border-radius: 2px;
	margin-top: 5px;
	border: 1px solid #008000;
}
.mailform .postal_btn:hover{
	background: #008000;
	opacity: 0.9;
}
.mailform button{
	display: block;
	color: #111;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: bold;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #008000;
	border: 1px solid #008000;
	border-radius: 25px;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: #008000;
}
.mailform button::before{
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #008000;
    border-bottom: 3px solid #008000;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
	font-size: 0.9rem;
}

/*プライバシーポリシー*/
.privacy_flame{
	height: 250px;
	overflow-y: scroll;
	background: #fff;
}
.privacy_flame p{
	padding: 10px;
	font-size: 0.9rem;
}
.privacy p span{
	font-weight: bold;
	font-size: 1rem;
	display: block;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #fafafa;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #333;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #333;
}

/*===サンクスページ===*/
.thanks .inner .small p{
	font-size: 0.8rem;
}
.thanks .sbtn a{
	margin-bottom: 20px;
}
/*===20231116==============================*/
.flex1115{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.flex1115 h1 a{
	padding-right: 10px;
}
.flex1115 h1 a .mark,.flex1115 h1 a .text{
	width: auto;
	height: 70px;
}

/*===倉庫==============================*/
@media (max-width: 960px){
}
@media (max-width: 750px){
}
@media (max-width: 450px){
}

/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root .class{
	background-attachment: scroll;
}


.lb-nav a.lb-prev,
.lb-nav a.lb-next {
	opacity: 1 !important;
}