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

/*-----共通部分-----*/
html{
	font-size: 100%;
}
body{
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.7;
	color: #444;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	z-index: 1;
}
@media (max-width: 450px){
	body{
		font-size: 0.8rem;
	}
}
a{
	text-decoration: none;
	color: #444;
	transition: .4s;
}
ul,ol{
	list-style: none;
}
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 a{
	background: #fff;
}
.img a:hover img{
	opacity: .8;
}

/*flexbox*/
.flexbox{
	display: flex;
	justify-content: space-between;
}
.flexcenter{
	justify-content: center;
	align-items: center;
}
.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

h2.title{
	text-align: center;
	font-size: 4rem;
	margin-bottom: 40px;
	text-transform: uppercase;
	color: #333;
	letter-spacing: 0.2rem;
	text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
	color: #444;
}
h2.title::first-letter{
	color: #45b1c7;
}
h2.title span{
	display: block;
	font-size: 1.2rem;
	color: #444;
}

.mtitle{
	border: 1px solid #c2c2c2;
	border-left: 10px solid #45b1c7;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 10px;
	margin-bottom: 20px;
	background: #fff;
}

.stitle{
	position: relative;
  	font-size: 1.2rem;
	  font-weight: bold;
	border-bottom: 2px solid #fff;
	margin-bottom: 20px;
}
.stitle::before{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 60px;
	height: 2px;
	background: #45b1c7;
}

.center{
	text-align: center;
}
.bold{
	font-weight: bold;
	font-size: 1.2rem;
}
.margin20{
	margin: 20px 0;
}

@media (max-width: 750px){
	h2.title span{
		line-height: 1;
	}
}
@media (max-width: 450px){
	h2.title{
		font-size: 3rem;
		margin-bottom: 40px;
	}
	h2.title span{
		font-size: 1rem;
	}
}


/*ボタン*/
.btn a{
	position: relative;
	border: 1px solid #45b1c7;
	line-height: 53px;
	width: 250px;
  margin: 0 auto;
	display: block;
	font-size: 22px;
  text-align: center;
  text-decoration: none;
	background: #45b1c7;
	color: #fff;
  outline: none;
  transition: all .2s linear;
}
.btn a:hover{
	background: #fff;
	color: #45b1c7;
}
.btn a:nth-child(2){
	background: #fff;
	color: #45b1c7;
}
.btn a:nth-child(2):hover{
	background: #45b1c7;
	color: #fff;
}

.sbtn{
	text-align: center;
}
.sbtn a{
	position: relative;
	padding: 10px 0;
	border: 1px solid #333;
	background: #333;
	color: #fff;
	font-weight: bold;
	display: inline-block;
	margin: 20px auto;
	width: 100%;
	max-width: 260px;
}
.sbtn a::after{
	transition: .4s;
	font-family: "Font Awesome 5 Free";
	content: "\f054";
	font-weight: bold;
	display: inline-block;
	position: absolute;
	right: 20px;
}
.sbtn a:hover::after{
	transform: translateX(5px);
}

.tel_btn a{
	display: inline-block;
	font-size: 2rem;
	color: #45b1c7;
	font-weight: bold;
	/*transform: skewX(-5deg);*/
	width: 100%;
	max-width: 260px;
	text-align: center;
}
.tel_btn a::before{
	font-family: "Font Awesome 5 Free";
	content: "\f095";
	display: inline-block;
	padding-right: 10px;
	font-size: 1.1em;
	transform: skewX(5deg);
}
.tel_btn a:hover{
	opacity: .8;
}

.mail_btn a{
	color: #45b1c7;
	font-size: 1.2rem;
}


/*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: #45b1c7;
	color: white;
	width: 30%;
	border-right: 2px solid #f5f5f5;
}
.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;
}

/*写真枠*/
.flame01{
	position: relative;
	display: inline-block;
}
.flame01::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0px 8px rgba(255,255,255,0.6);
	z-index: 1;
}
.flame01 img{
	display: block;
	width: 100%;
}

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


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

ul.dot_list li{
	margin-bottom: 5px;
}
ul.dot_list li::before{
	content: '・';
	color: #45b1c7;
	font-weight: bold;
}

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


/*===ヘッダー==============================*/
.site_header{
	width: 100%;
	background: #fff;
	padding: 10px 0;
}
.site_header a{
}
.site_header .inner{
	max-width: 1200px;
	align-items: center;
}
.site_header .inner h1{
	width: 400px;
}
.site_header .inner h1 a{
	display: block;
}
.site_header .inner h1 a img{
	display: block;
	width: 100%;
	transition: .4s;
}
.site_header .inner h1 a:hover img{
	opacity: .8;
}
.site_header .inner .tr{
	text-align: right;
}
.site_header .inner .tr .info{
	font-weight: bold;
}
.site_header .inner .tr .tel_btn{
	display: inline-block;
	margin-right: 20px;
}
.site_header .inner .tr .sbtn{
	display: inline-block;
}
.site_header .inner .tr .sbtn a{
	margin: auto;
	width: 210px;
	padding: 7px 0;
}


@media (max-width: 750px){
	.site_header .inner h1{
		width: 350px;
	}
}
@media (max-width: 450px){
	.site_header .inner h1{
		width: 240px;
	}
}


/*===ナビメニュー==============================*/
.sticky{
	position: sticky;
	top: 0;
	z-index: 100;
}
.global_nav{
	width: 100%;
	background: #fff;
	box-shadow: 0 6px 3px -3px rgba(0, 0, 0, 0.1);
	border-bottom: 5px solid #45b1c7;
}
.global_nav ul{
	max-width: 1200px;
	width: 98%;
	margin: 0 auto;
}
.global_nav ul::before{
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	width: 1px;
	height: 40px;
	background: #c2c2c2;
}
.global_nav ul li{
	display: inline-block;
	width: 20%;
	text-align: center;
	position: relative;
}
.global_nav ul li a{
	display: inline-block;
	width: 100%;
	height: 100%;
	padding: 20px 0;
	font-weight: bold;
	position: relative;
}
.global_nav ul li.current > a{
	background: #45b1c7;
	color: #fff;
}
.global_nav ul li a:hover{
	color:#45b1c7;
}
.global_nav ul li.current a:hover{
	color: #fff;
}
.global_nav ul li::after{
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	width: 1px;
	height: 40px;
	background: #c2c2c2;
}
.global_nav ul li.current::after{
	display: none;
}

@media (max-width: 1160px){
	.site_header .inner .tr{
		display: none;
	}
	.global_nav{
		display: none;
	}
}


/*===スライダー==============================*/
.top_slider{
	overflow: hidden;
	position: relative;
}
.top_slider .slider li{
	width: 100%;
	height: 60vh;
	min-height: 400px;
}
.top_slider .slider li.top01{
	background: url(../img/top01.jpg);
	background-size: cover;
	background-position: center center;
	/*animation: hogehoge 3s ease-in-out;*/
}
@keyframes hogehoge {
  0% {
    filter: brightness(20%);
  }
  48% {
    filter: brightness(20%);
  }
  50% {
    filter: sepia(1) contrast(2) brightness(200%);
  }
}
.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: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	animation: apper 2.5s ease-in-out;
	min-width: 400px;
}
.top_slider .catch img{
	display: block;
	width: 80%;
	margin: 0 auto;
}
@keyframes apper{
	0% {
		opacity: 0;
	}
	50%{
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@media (max-width: 450px){
	.top_slider .catch{
		min-width: 350px;
	}
}

/*===2カラム指定==============================*/
.two_column{
	display: flex;
	background-image: linear-gradient(to bottom,rgba(255, 255, 255, 0.8),rgba(255, 255, 255, 0.8)) ,url(../img/body_bg.png);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}
/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root .two_column{
	background-attachment: scroll;
  }
.two_column .column_nav{
	width: 370px;
	padding: 60px 0 10px 40px;
}
.two_column main{
	width: calc(100% - 370px);
	padding: 0 40px;
}
@media (max-width: 960px){
	.two_column .column_nav{
		display: none;
	}
	.two_column main{
		width: 100%;
		padding: 0 10px;
	}
}

/*===column_nav==============================*/
.two_column .column_nav .wrapper{
	margin-bottom: 30px;
}
.two_column .column_nav nav{
	background:#fff;
	color:#fff;
	text-align: center;
	width: 100%;
}
.two_column .column_nav nav ul{
	width: 100%;
}
.two_column .column_nav nav ul li{
	position: relative;
}
.two_column .column_nav nav ul li a{
	display: block;
	text-decoration: none;
	color: #444;
	padding:20px 0;
	transition:all .3s;
	border-bottom:1px solid #ccc;
	width: 100%;
}
.two_column .column_nav nav ul li li a{
	padding:10px 0;
}
.two_column .column_nav nav ul li a:hover{
	color:#444;	
}
.two_column .column_nav nav ul li.has-child > a{
	cursor: pointer;
}
.two_column .column_nav nav > ul > li > a{
	background: rgb(240, 240, 240);
	font-weight: bold;
}

/*矢印*/
.two_column .column_nav nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:25px;
	width:6px;
	height:6px;
	border-top: 2px solid #444;
    border-right:2px solid #444;
    transform: rotate(135deg);
}
.two_column .column_nav nav ul li.has-child.active::before{
	transform: rotate(-45deg);
}

.two_column .column_nav nav ul li.current > a{
	background: #45b1c7;
	color: #fff;
}

/*== 2階層目の共通設定 */
/*ナビゲーションaタグの形状*/
.two_column .column_nav nav li.has-child ul{
	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
.two_column .column_nav nav li.has-child ul li a{
	color: #888;
	border-bottom:solid 1px #888;
}
.two_column .column_nav nav li.has-child ul li:last-child a{
	border-bottom:none;
}
.two_column .column_nav nav li.has-child ul li a::before{
	content: '';
	width: .6em;
	height: 2px;
	display: inline-block;
	margin-right: .5em;
	background: #45b1c7;
	position: absolute;
	top: 50%;
	transform: translate(-1em ,-50%);
}
.two_column .column_nav nav li.has-child ul li a:hover,
.two_column .column_nav nav li.has-child ul li a:active{
	background:#45b1c7;
	color: #fff;
}
.two_column .column_nav nav li.has-child ul li a:hover::before,
.two_column .column_nav nav li.has-child ul li a:active::before{
	background: #fff;
}


.contact_column .box{
	padding: 5px;
}

/*===メイン==============================*/
main{
	display: block;
	position: relative;
}
main section{
	padding: 60px 0;
	position: relative;
}


/*===あいさつ==============================*/
.welcome{
	background: url(../img/welcome02.png);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}
.welcome .info{
	background: rgba(255, 255, 255, 0.5);
}
.welcome .info p{
	text-align: justify;
	margin-bottom: 1em;
}

@media (max-width: 960px){
	.welcome{
		padding: 60px 0 0;
	}
	.welcome .info{
		padding: 0;
		width: 98%;
		margin: 0 auto;
	}
	.welcome .info p{
		padding: 0 5px;
	}
}


/*===link==============================*/
.link{
}
.link .inner .flexbox{
	flex-wrap: wrap;
}
.link .inner .flexbox .flex_item{
	position: relative;
	width: 48%;
	margin-bottom: 30px;
}
.link .inner .flexbox .flex_item a{
	display: block;
	position: relative;
}
.link .inner .flexbox .flex_item a .img{
	overflow: hidden;
}
.link .inner .flexbox .flex_item a .img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.link .inner .flexbox .flex_item a .arrow{
	border-radius: 50%;
	width: 60px;
	height: 60px;
	background: #fff;
	border: 2px solid #444;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	transform: translateY(50%);
	transition: .4s;
}
.link .inner .flexbox .flex_item a:hover .img img{
	transform: scale(1.1);
}
.link .inner .flexbox .flex_item a:hover .arrow{
	background: #444;
	color: #fff;
	border: 2px solid #333;
}

.link .inner .flexbox .flex_item .link_title .deco{
	text-transform: capitalize;
	color: #45b1c7;
	font-family: 'Cormorant', serif;
	font-size: 2rem;
	font-weight: 300;
}
.link .inner .flexbox .flex_item .link_title .name{
	font-size: 1.2rem;
	font-weight: bold;
}
.link .inner .flexbox .flex_item .text{
	padding: 5px;
	text-align: justify;
}

@media (max-width: 1200px){
	.link .inner .flexbox{
		display: block;
	}
	.link .inner .flexbox .flex_item{
		width: 90%;
		margin: 0 auto 30px;
	}
}
@media (max-width: 450px){
	.link .inner .flexbox .flex_item{
		width: 90%;
	}
	.link .inner .flexbox .flex_item .link_title .deco{
		font-size: 1.4rem;
	}
}



/*===アクセス==============================*/
.top_access{

}
.top_access .inner .flexbox .box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: calc(100% / 3);
}
.top_access .inner .flexbox .box .wrap{
	min-height: 0%;
}
.top_access .inner .flexbox .box .img{
	min-height: 0%;
	width: 100%;
}
.top_access .inner .flexbox .box .img img{
	display: block;
	width: 100%;
}
.top_access .inner .flexbox .box table{
	padding: 20px 0 0;
}
.top_access .inner .flexbox .box table .bold{
	font-weight: bolder;
	text-align: center !important;
}
.top_access .inner .flexbox .box table tr th{
	vertical-align: top;
	font-weight: normal;
	text-align: right;
	white-space: nowrap;
}
.top_access .inner .flexbox .box table tr td{
	text-align: left;
}
.top_access .inner .flexbox .box table .text{
	padding: 10px 10px 0;
}
@media (max-width: 1300px){
	.top_access .inner .flexbox{
		display: block;
	}
	.top_access .inner .flexbox .box{
		display: block;
		margin-bottom: 30px;
		padding: 10px 0;
		width: auto;
	}
	.top_access .inner .flexbox .box .img{
		background: #45b1c7;
		/*padding: 10px 0;*/
	}
	.top_access .inner .flexbox .box .img img{
		margin: 0 auto;
		max-width: 300px;
	}
	.top_access .inner .flexbox .box table{
		margin: 0 auto;
	}
	.top_access .inner .flexbox .box table .text{
		text-align: center;
	}
}



/*===新着情報==============================*/
.news{
}


/*===フッター==============================*/
footer{
}
footer .footer_top{
	box-shadow: 0 6px 3px -3px rgba(0, 0, 0, 0.1) inset;
	padding: 80px 0;
	background: linear-gradient(to bottom,rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)) ,url(../img/footer.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom;
}
/*Safariのみ*/
_::-webkit-full-page-media, _:future, :root footer .footer_top{
  background-attachment: scroll;
}
footer .inner{
	padding: 40px 10px;
	max-width: 750px;
	width: 90%;
	background: rgba(255, 255, 255, 0.8);
}
footer .inner h2 a{
	display: inline-block;
	width: 400px;
}
footer .inner h2 a:hover{
	opacity: .6;
}
footer .center{
	font-size: .8em;
	margin: 20px 0;
}
.footer_bottom{
	text-align: center;
	padding: 10px 0;
	background: #45b1c7;
	color: #fff;
}
footer .inner p br{
	display: none;
}
@media (max-width: 750px){
	footer .inner h2 a{
		width: 300px;
	}
	footer .center{
		margin: 10px 0;
	}
	footer .flexbox{
		flex-direction: column;
	}
	footer .btn{
		margin: 15px auto;
	}
	.btn a{
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.btn a:first-child{
		margin-bottom: 20px;
	}
}
@media (max-width: 450px){
	footer .inner{
		padding: 30px 10px 20px;
	}
	footer .inner h2 a{
		width: 250px;
	}
	footer .center{
		font-size: .8rem;
	}
	footer .inner p br{
		display: block;
	}
	footer .inner p span{
		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: #45b1c7;
  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: 0.6;
	pointer-events: all;
}
.page_top.is_animation:hover{
	opacity: 1;
	transform: translateY(-10px);
}


/*=================================*/
/*===下層ページ===============================================================*/
/*下層トップ*/
.kasou_top{
	height: 300px;
	position: relative;
	overflow: hidden;
	background: url(../img/kasou_top.jpg);
	background-size: cover;
	background-position: bottom;
}
.kasou_top .kasou_title{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 3rem;
	z-index: 1;
	text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
}
.kasou_top .kasou_title span{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	display: block;
	font-size: 6rem;
	text-shadow: 0 -1px 1px #000, 1px 1px 1px #fff;
	opacity: .1;
	pointer-events: none;
	letter-spacing: .1em;
	text-transform: uppercase;
	z-index: -1;
}
@media (max-width: 450px){
	.kasou_top{
		height: 200px;
	}
	.kasou_top .kasou_title{
		font-size: 2.5rem;
	}
	.kasou_top .kasou_title span{
		font-size: 5rem;
	}
}


/*パンくず*/
.breadcrumb{
	font-size: 12px;
	color: #333;
	position: absolute;
	bottom: 5px;
	left: 10px;
	background: rgba(255, 255, 255, 0.8);
}
.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: #45b1c7;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
}



/*===会社概要ページ==============================*/
/*理念*/
#philosophy .wrapper{
	margin-bottom: 30px;
}
#philosophy .img{
	width: 80%;
	max-width: 600px;
	margin: 0 auto;
}
#philosophy p{
	margin-bottom: 10px;
}

/*mini*/
.top_works .mini a{
	text-align: center;
	overflow: hidden;
	margin: 0 1px;
}
.top_works .mini a img{
	display: inline-block;
	width: 100%;
}
.top_works .mini a:hover img{
	opacity: .8;
}

.slide_left, .slide_right{
	background: rgba(255, 255, 255, 0.8);
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	z-index: 1;
	height: 101%;
	width: 50px;
	cursor: pointer;
	display: flex !important;
	justify-content: center;
	align-items: center;
	transition: .8s;
}
.slide_left{
	left: 0;
}
.slide_right{
	right: 0;
}
.slide_left i, .slide_right i{
	display: block;
	font-size: 50px;
	transition: .8s;
}
.slide_left:hover, .slide_right:hover{
	background: rgba(255, 255, 255, 0.9);
}
.slide_left:hover i{
	transform: translate(-6px);
}
.slide_right:hover i{
	transform: translate(6px);
}
/*dots*/
.slick-dots li button:before {
	font-size: 40px;
}
@media (max-width: 450px){
	.slide_left, .slide_right{
		font-size: 40px;
		width: 45px;
	}
}

/*アクセス*/
#access .wrapper{
	margin-bottom: 30px;
}
#access .flame01{
	margin: 20px auto;
	width: 100%;
}

/*ISO 9001 認証取得*/
#standard .info{
	background: rgba(255, 255, 255, .5);
	padding: 10px;
}
#standard .info p{
	margin-bottom: 10px;
}
#standard .info table{
	margin: 20px 0;
}
#standard .img_wrap{
	display: flex;
	justify-content: space-around;
	margin-bottom: 10px;
	flex-wrap: wrap;
}
#standard .img_wrap .img{
	width: 48%;
}
#standard .img_wrap .img img{
	display: block;
	width: 100%;
}
@media (max-width: 750px){
	#standard .img_wrap{
		display: block;
	}
	#standard .img_wrap .img{
		width: 80%;
		margin: 0 auto 10px;
	}
}


/*お問い合わせ*/
#contact .wrapper{
	margin-bottom: 30px;
}
.contact_tel .info{
	text-align: center;
}
/*メールフォーム*/
.mailform{
}
.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: #45b1c7;
  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: #60bf00;
	color: white;
	border-radius: 2px;
	margin-top: 5px;
	border: 1px solid #60bf00;
}
.mailform .postal_btn:hover{
	background: #60bf00;
	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: #45b1c7;
	border: 1px solid #45b1c7;
	border-radius: 25px;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: #45b1c7;
}
.mailform button::before{
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}
.mailform button.reset{
	color: #111;
	padding: 8px 5px;
	margin: 0 auto;
	margin-top: 30px;
	width: 200px;
	background: transparent;
	border: 1px solid #60bf00;
	border-radius: 0px;
	color: #60bf00;
}
.mailform button.reset::before{
	display: none;
}

@media (max-width: 1330px){
	.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%;
	}
}

/*ラジオボタン*/
.mailform .row input[type=checkbox]{
  display: none;
}
.mailform .row input[type=checkbox] + label{
	display: inline-block;
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
  margin-bottom: 10px;
}
.mailform .row input[type=checkbox] + label::before{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
	transform: translate(0,-50%);
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
}
.mailform .row input[type=checkbox]:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
	transform: translate(0,-50%);
  left: 2px;
  width: 11px;
  height: 11px;
  background: #000;/*ボタン色*/
}

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

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


/*===サンクスページ===*/
.thanks .inner h2{
	margin-bottom: 30px;
}
.thanks .inner .small p{
	font-size: 0.8rem;
}



/*===スクラップ事業ページ==============================*/
#business01 .wrapper{
	margin-bottom: 30px;
}
#business01 .bg_img{
	height: 300px;
	background: url(../img/b01.jpg);
	background-size: cover;
	background-position: center center;
}
#business01 .container .box{
	margin-bottom: 30px;
	border: 3px double #c2c2c2;
	padding: 20px;
	background: rgba(255,255,255,.5);
}
#business01 .container .box .info{
	width: calc(100% - 200px);
}
#business01 .container .box .info p{
	padding-right: 20px;
	text-align: justify;
}
#business01 .container .box .img_round{
	overflow: hidden;
	width: 200px;
}
@media (max-width: 450px){
	#business01 .container .box .flexbox{
		display: block;
	}
	#business01 .container .box .info{
		width: 100%;
	}
	#business01 .container .box .img_round{
		margin: 10px auto 0;
	}
}


/*太洋商事へお持込みの方*/
#bring .wrapper{
	margin-bottom: 30px;
}


#business02 .wrapper{
	margin-bottom: 30px;
}
#business02 .bg_img{
	height: 300px;
	background: url(../img/b02.jpg);
	background-size: cover;
	background-position: center center;
}


/*買い取について*/
#buy .wrapper{
	margin-bottom: 30px;
}
#buy .flow .wrapper{
	margin-bottom: 0;
}

/*お引き取りについて*/
#take .wrapper{
	margin-bottom: 30px;
}
#take .flow .wrapper{
	margin-bottom: 0;
}

/*お引き取り流れ*/
#take_flow{

}
#take_flow .box4{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#take_flow .box4 .box{
	width: 50%;
	height: 20vw;
	position: relative;
}
#take_flow .box4 .box .info{
	font-weight: bold;
	color: #fff;
	background: rgba(0, 0, 0, 0.2);
	text-align: right;
	padding: 3px 5px;
}
#take_flow .box4 .box .info span{
	position: absolute;
	top: -1.5rem;
	left: 5px;
	font-size: 2rem;
	color: #45b1c7;
	text-shadow: #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 6px;
}
#take_flow .box4 .box:nth-child(1){
	background: url(../img/take_flow01.jpg);
	background-size: cover;
	background-position: center;
}
#take_flow .box4 .box:nth-child(2){
	background: url(../img/take_flow02.jpg);
	background-size: cover;
	background-position: center;
}
#take_flow .box4 .box:nth-child(3){
	background: url(../img/take_flow03.jpg);
	background-size: cover;
	background-position: center;
}
#take_flow .box4 .box:nth-child(4){
	background: url(../img/take_flow04.jpg);
	background-size: cover;
	background-position: center;
}
@media (max-width: 960px){
	#take_flow .box4 .box{
		height: 40vw;
	}
}


/*対応地域*/
#take_area .flexbox .img{
	width: 50%;
}
@media (max-width: 750px){
	#take_area .flexbox{
		display: block;
	}
	#take_area .flexbox .img{
		width: 80%;
		margin: 0 auto;
	}
}


/*===リサイクル・運搬事業ページ==============================*/
/*事業紹介*/
#business03 .wrapper, #business04 .wrapper{
	margin-bottom: 30px;
}
#business03 .bg_img{
	height: 300px;
	background: url(../img/b03.jpg);
	background-size: cover;
	background-position: center center;
}
#business04 .bg_img{
	height: 300px;
	background: url(../img/b04.jpg);
	background-size: cover;
	background-position: center center;
}

.list dl{
	margin-bottom: 20px;
}
.list dl dt{
	font-weight: bold;
	font-size: 1.2rem;
}
.list dl dt::before{
	font-family: "Font Awesome 5 Free";
	content: "\f06c";
	font-weight: bold;
	display: inline-block;
	margin-right: .5em;
	color: #45b1c7;
}



/*===建物解体および工作機械の撤去ページ==============================*/
/*事業紹介*/
#business05 .wrapper{
	margin-bottom: 30px;
}
#business05 .bg_img{
	height: 300px;
	background: url(../img/b05.jpg);
	background-size: cover;
	background-position: center center;
}

/*施工の流れ*/
.flow .wrapper{
	padding: 30px;
}
.flow .wrapper:nth-child(odd){
	background: #fff;
}
.flow .wrapper:nth-child(even){
	background: #f2f2f2;
}
.flow .wrapper .flexbox{
	
}
.flow .wrapper .flexbox .no{
	text-align: center;
	width: 20%;
	font-size: 4rem;
	transform: skewX(-10deg);
}
.flow .wrapper .flexbox .no::after{
	content: '.';
}
.flow .wrapper .flexbox .content{
	width: 50%;
	padding-right: 20px;
}
.flow .wrapper .flexbox .content h3{
	font-size: 1.2rem;
}
.flow .wrapper .flexbox .content p{
	padding-top: 10px;
}
.flow .wrapper .flexbox .img{
	width: 30%;
}
.flow .wrapper .flexbox .img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 750px){
	.flow .wrapper{
		padding: 30px 20px;
	}
	.flow .wrapper .flexbox .no{
		width: 10%;
		font-size: 3rem;
		text-align: left;
	}
	.flow .wrapper .flexbox .content{
		width: 50%;
		padding-right: 10px;
	}
	.flow .wrapper .flexbox .content p{
		padding-top: 5px;
	}
}
@media (max-width: 450px){
	.flow .wrapper{
		padding: 20px 5px;
	}
}


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

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