@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* -----Basic style----- */
html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body {
	line-height: 2;
	max-width: 1600px;
	margin:0 auto;
	-webkit-text-size-adjust: 100%;

}
body, th, td, h1, h2, h3, h4, h5, h6, pre, input, textarea, option, div, p, dt, dd, li, address {
	font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/*font-size: 1.4rem;*/
	font-size: 1.6rem;
	font-weight: normal;
	font-style: normal;
	color: #333333;
}
a {
	color: #333333;
	text-decoration: none;
}
.tx-s {
	font-size: 1.2rem;
}
.tx-m {
	font-size: 1.8rem;
}
.fw-b {
	font-weight: bold;
}
.color1 {
	color: #68b9a4;
}
.bg-color1{
	background: #68b9a4;
}
.color2 {
	color: #ff0000;
}
.bg-color2{
	background: #ff0000;
}
.wid {
	width: 100%;
}
.pad10 {
	padding: 10px;
}
.pad20 {
	padding: 20px;
}
.margin-b20{
	margin-bottom: 20px;
}
.margin-b40{
	margin-bottom: 40px;
}
.display-none {
	display: none;
}
.imgtxt {
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.clr,
.clear {
	clear: both;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.flex2{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex3{
	display: flex;
	justify-content: flex-start;
}
.flex4{
	display: flex;
	justify-content: space-between;
}
hr{
	width: 80%;
	height: 1px;
	background-color: #dcc48d;
	border: none;
	margin-bottom: 40px;
}
.lineheight24{
	line-height: 2.4;
}
.u-line{
	border-bottom: 1px solid #333;
}
/* -----Basic styleここまで----- */


/* -----Common style----- */
.wrapper {
	width: 100%;
	height: 100vh;
}
header {
	/*height: 80px;*/
	height: 136px;
	position: relative;
}
header .inner{
	padding: 0 80px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #333;
}
header h1{
    height: 80px;
	display: flex;
	align-items: center;
}
header h1 img{
	width: 40%;
    height: auto;
	vertical-align: bottom;
}
header h2{
    height: 80px;
	display: flex;
	align-items: center;
}
header h2 img{
	width: 90%;
    height: auto;
}


/*ナビゲーション*/
nav {
  display: none;
  height: 100vh;
  width: 300px;
  position: absolute;
  top: 0;
  right: -300px;
  z-index: 50;
  background-color: rgba(0, 0, 0, .8);
  transition: transform .5s;
}
#navBtn:checked ~ nav {
  display: block;
  transform: translateX(-300px);
}
#navBtn {
  display: none;
}

.open {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  z-index: 100;
  width: 40px;
  height: 40px;
  /*border: 1px solid #CCC;
  border-radius: 2px;*/
}
/*humburger button*/

.open::before,
.open::after {
  content: "";
}

.open span,
.open::before,
.open::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 30%;
  width: 40%;
  border-bottom: 2px solid #333;
  transition: transform .5s;
}

.open::before {
  transform: translateY(-8px);
}

.open::after {
  transform: translateY(8px);
}

/*close button*/
#navBtn:checked + .open {
  background: #555;
}

#navBtn:checked + .open span {
  transform: scaleX(0);
}

#navBtn:checked + .open::before {
  transform: rotate(45deg);
}

#navBtn:checked + .open::after {
  transform: rotate(-45deg);
}
#navBtn:checked + .open span,
#navBtn:checked + .open::before,
#navBtn:checked + .open::after {
  border-bottom-color: #EEE;
}
nav ul {
  list-style: none;
  padding-bottom: 1rem;
  text-align: center;
}

nav ul li {
  /* display: inline-block; */
  margin: 0 10px;
  padding: 10px 0;
}
nav ul li a {
  text-decoration: none;
  /*font-weight: bold;*/
  color: #fff;
  font-size: 1.2rem;
}

@media all and (min-width: 1025px) {
  nav {
    display: block;
    height: auto;
    width: 100%;
    position: static;
    background-color: transparent;
}
  nav ul li {
    display: inline-block;
}  
  nav ul li a {
    color: #333;
	font-size: 1.6rem;
}
  #navBtn,
  .open {
    display: none;
}
}
/*ナビゲーションここまで*/

#main {
	/*margin-bottom: 40px;*/
}
#main h2{
	font-size: 3rem;
	/*font-family: 'Noto Serif JP', "Yu Mincho", "Source Han Serif", "Hiragino Mincho Pro", serif;
	font-family: 'Noto Serif JP', "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
}
#main h3{
	font-size: 2.2rem;
	font-weight: bold;
	/*font-family: 'Noto Serif JP', "Yu Mincho", "Source Han Serif", "Hiragino Mincho Pro", serif;
	font-family: 'Noto Serif JP', "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
}
.container {
	/*width: 980px;
	margin: 0 auto;*/
}
.main-contents {
	width: 100%;
}
.inner1040{
	width: 1040px;
	margin: auto;
}
/* button */
.button-1{
	/*width: 98%;*/
	width: 100%;
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /*box-shadow: 8px 8px 0px 0px #dcc48d;*/
    background: #fff;
	border: 1px solid #B89B81;
}
.button-1 a{
    display: block;
    font-size: 1.6rem;
    color: #B89B81;
    text-decoration: none;
    line-height: 50px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
}
.eff-1{
	width: 100%;
    height: 50px;
    left: -320px;
    top: -50px;
    background: #B89B81;
    position: absolute;
    transition: all .2s ease;
    z-index: 1
}
.button-1:hover .eff-1{
	left:0;
	top:0;
}
.button-1:hover a{
	color:#fff;
}
.button-2{
	width: 98%;
    height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0px 0px #dcc48d;
    background: #B89B81;
	border: 1px solid #fff;
}
.button-2 a{
    display: block;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    line-height: 50px;
    transition: all .5s ease;
    z-index: 2;
    position: relative;
}
.eff-2{
	width: 100%;
    height: 50px;
    left: -320px;
    top: -50px;
    background: #fff;
    position: absolute;
    transition: all .2s ease;
    z-index: 1
}
.button-2:hover .eff-2{
	left:0;
	top:0;
}
.button-2:hover a{
	color:#B89B81;
}
.btn{
}
.btn p{
	text-align: center !important;
}
.btn p a{
	display: block;
	border: 1px solid #333;
	padding: 8px;
	font-weight: normal;
	transition-property:all; 
	transition-duration: 0.5s;
}
.btn p a:hover{
	color: #fff;
	border: 1px solid #fff;
	background: #68b9a4;
}
footer{
	background: #68b9a4;
	padding: 80px;
}
footer .heading{
	text-align: center;
	margin-bottom: 40px;
}
footer .heading h2{
	display: inline-block;
}
footer .heading h2 img{
	width: 100%;
	height: auto;
}
footer .f-box{
	display: flex;
    justify-content: space-around;
}
footer .f-box .box-l{
	display: flex;
    justify-content: space-around;
    width: 50%;
    padding: 40px;
}
footer .f-box .box-l ul{
	border-left: 1px solid #fff;
    padding-left: 20px;
}
footer .f-box .box-l ul li{
	padding-bottom: 10px;
}
footer .f-box .box-l ul li a{
	color: #fff;
	transition-property: opacity;
	transition-duration: 0.5s;
}
footer .f-box .box-l ul li a:hover{
	opacity: 0.5;
}
footer .f-box .box-r{
    width: 50%;
    padding: 40px;
}
footer .f-box .box-r h3,
footer .f-box .box-r p,
footer .f-box .box-r p a{
	color: #fff;
}
footer .f-box .box-r h3{
	font-size: 1.8rem;
	font-weight: bold;
	padding-bottom: 20px;
}
footer .f-box .box-r p a{
	font-size: 1.8rem;
	font-weight: bold;
	transition-property: opacity;
	transition-duration: 0.5s;
}
footer .f-box .box-r p a:hover{
	opacity: 0.5;
}
footer p.copyright{
	color: #fff;
	padding: 10px 0;
	text-align: center;
}
/* popup */
#popup {
	position: fixed;
	bottom: 10px;
	right: 20px;
}
#popup a {
	display: block;
	z-index: 999;
}
#popup a:hover {
	text-decoration: none;
	opacity: 0.7;
}

/* 閉じるボタン */
.close-button {
	width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #333;
    padding: 0px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
	top: -20px;
	left: -16px;
   /*width: 10px;
    height: 10px;
    background: #fff;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;*/
}
.close-button:hover {
  background: #fff;
}

/* pagetop */
#pageTop {
	position: fixed;
	bottom: 20px;
	left: 20px;
}
#pageTop a {
	display: block;
	z-index: 999;
	padding: 6px;
	border-radius: 30px;
	width: 40px;
	height: 40px;
	background-color: #68b9a4;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}
/* pankuzu */
.pankuzu{
	background-color: #efefef;
}
.cd-breadcrumb {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
}
.cd-breadcrumb::after {
	content: "";
	display: table;
	clear: both;
}
.cd-breadcrumb li {
	display: inline-block;
	float: left;
	margin: 0.5rem 0;
}
.cd-breadcrumb li::after {
	display: inline-block;
	content: '\00bb';
	margin: 0 .6rem;
	color: #68b9a4;
}
.cd-breadcrumb li:last-of-type::after {
	display: none;
}
.cd-breadcrumb li > * {
  display: inline-block;
  font-size: 1.4rem;
  color: #333333;
}
.cd-breadcrumb li.current > * {
	color: #333333;
}
.cd-breadcrumb a {
	transition: all .3s ease 0s;
}
.cd-breadcrumb a:hover {
	color: #68b9a4;
}
p.contact-tel{
	margin-bottom: 5px !important;
}
a.contact-tel{
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	color: #0e1937;
    text-align: center;
    padding: 10px;
    border: 1px solid #0e1937;
}
/* web-interview */
#web-interview {
	position: fixed;
	bottom: 60px;
	left: 20px;
}
#web-interview a {
	display: block;
	z-index: 999;
	padding: 6px;
	text-decoration: none;
	text-align: center;
}
#web-interview a:hover {
	text-decoration: none;
	opacity: 0.7;
}
.spview {
	display: none;
}
.pcview {
	display: block;
}
/* -----Common styleここまで----- */

/* -----top----- */
#top .mainvis{
	position: relative;
	padding: 0px;
	margin-bottom: 80px;
}
#top .mainvis img{
	width: 100%;
	height: auto;
}
#top .mainvis ul{
	overflow: hidden;
}
#top .mainvis p{
	position: absolute;
	/*top: 178px;*/
	left: 176px;
	bottom: 48px;
}
#top .mainvis p img{
	width: 90%;
	height: auto;
}
/*#top .mainvis{
	height: 80%;
	/*margin-top: 80px;*/
	/*margin-bottom: 80px;
	margin-left: 80px;
	margin-right: 80px;
}*/
/*#top .vegas-wrapper{
	display: flex;
    align-items: flex-end;
    width: 86%;
    margin: 0 40px;
}*/
/*#top .mainvis .inner h2{
	margin-bottom: 40px;
}
#top .mainvis .inner p{
	font-size: 2.4rem;
    margin-bottom: 40px;
}*/
#top .main-contents .top-contents-box{
	/*margin-bottom: 80px;*/
}
/*#top .main-contents .top-contents-box:last-child{
	margin-bottom: 0;
}*/
#top .slick-dots {
	display: none !important;
}
#arrow {
	display: none !important;
}
#top .sentence{
	margin-bottom: 40px;
}
#top .box_n00 {
	padding: 40px 0;
	margin-bottom: 40px;
	background: #68b9a4;
}
#top .box_n00 .heading{
	text-align: center;
	margin-bottom: 40px;
}
#top .box_n00 h2{
	display: inline-block;
	text-align: center;
	font-weight: bold;
	border-bottom: 1px solid #fff;
	color: #fff;
	padding: 0 40px;
}
#top .box_n00 .tx-box p{
	text-align: center;
	font-weight: bold;
	color: #fff;
}
#top .box_n01 {
	border-bottom: 1px solid #333333;
	margin-bottom: 80px;
	padding-bottom: 80px;
}
#top .box_n01 .heading{
	margin-bottom: 80px;
}
#top .box_n01 h2.title{
	font-weight: bold;
	font-size: 4rem;
}
#top .box_n01 h2.title img{
	width: 40%;
	height: auto;
}
#top .box_n01 .flex{
	margin-bottom: 80px;
}
#top .box_n01 .box-01,
#top .box_n01 .box-02{
	width: 48%;
}
#top .box_n01 .box-01 img{
	width: 100%;
	height: auto;
}
#top .box_n01 .box-02{
	padding: 0 16px;
}
#top .box_n01 .box-02 h2{
	margin-bottom: 40px;
}
#top .box_n01 .box-02 p{
	margin-bottom: 40px;
}
#top .box_n01 .box-02 p.tx{
	font-size: 1.6rem;
}
#top .box_n02{
	border-bottom: 1px solid #333333;
	padding-bottom: 80px;
	margin-bottom: 80px;
}
#top .box_n02 .heading{
	margin-bottom: 40px;
}
#top .box_n02 h2{
	font-weight: 900;
}
#top .box_n02 p{
}
#top .box_n02 .heading h2 img{
	width: 40%;
	height: auto;
}
#top .box_n02 .check-box{
	width: 30%;
    background: #efefef;
    margin-bottom: 20px;
}
#top .box_n02 .check-box .number{
    margin-bottom: 16px;
}
#top .box_n02 .check-box .number img{
	width: 20%;
	height: auto;
}
#top .box_n02 .icon{
	text-align: center;
	margin-bottom: 24px;
}
#top .box_n02 .icon img{
	width: 40%;
	height: auto;
	vertical-align: bottom;
}
#top .box_n02 .tx{
	width: 100%;
	padding: 0 16px 24px;
}
#top .box_n02 .tx p{
	text-align: center;
}
#top .box_n03{
	background: #e4eaf5;
	text-align: center;
	padding: 80px;
}
#top .box_n03 .heading{
	text-align: center;
	margin-bottom: 40px;
}
#top .box_n03 h2{
	text-align: center;
	font-weight: bold;
}
#top .box_n03 h3{
	/*text-align: left;*/
	text-align: center;
	margin-bottom: 20px;
}
#top .box_n03 p{
	text-align: left;
}
#top .box_n03 .feature-box{
	width: 30%;
	background: #fff;
	position: relative;
	padding: 140px 40px 80px;
	margin-bottom: 20px;
}
#top .box_n03 .feature-box img{
	width: 20%;
	position: absolute;
	top: 0;
	left: 0;
}
#top .box_n03 .feature-box img.feature-icon{
	width: 24%;
	position: absolute;
	top: 8%;
	left: 36%;
}
#top .box_n04{
	background: #eff6f6;
	text-align: center;
	padding: 80px;
}
#top .box_n04 .heading{
	text-align: center;
	margin-bottom: 40px;
}
#top .box_n04 h2{
	text-align: center;
	font-weight: bold;
}
#top .box_n04 h3{
	text-align: center;
}
#top .box_n04 p{
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 16px;
}
#top .box_n04 .can-box{
	width: 30%;
	background: #fff;
	position: relative;
	padding: 30px 20px 30px 20px;
	/*padding: 60px 20px 30px 20px;*/
	margin-bottom: 40px;
}
#top .box_n04 .can-box img.icon{
	width: 24%;
	position: absolute;
	top: -30px;
	left: 111px;
}
#top .box_n04 .can-box p.img-box img{
	/*width: 100%;*/
	width: 80%;
	height: auto;
}
#top .box_n04 .can-box a{
	display: block;
	font-size: 1.4rem;
	padding-bottom: 4px;
	transition: all 0.3s ease 0s;
}
#top .box_n04 .can-box a:hover{
	opacity: 0.5;
}
#top .news{
	border-bottom: 1px solid #333333;
	text-align: center;
	margin-bottom: 80px;
	padding: 0 0 80px;
}
#top .news .heading{
	margin-bottom: 40px;
}
#top .news h2.title{
	text-align: left;
}
#top .news h2 img{
	width: 40%;
	height: auto;
}
#top .news .heading p{
	text-align: left;
}
#top .news .news-contents{
	margin: 0 auto 20px;
}
#top .news .news-contents .news-list{
	padding: 20px;
}
#top .news .news-contents .news-list img{
	width: 100%;
	height: auto;
	padding-bottom: 20px;
}
#top .news .news-contents .news-list h3{
	font-size: 1.8rem;
	text-align: left;
	padding-bottom: 10px;
    border-bottom: 1px solid #68b9a4;
    margin-bottom: 20px;
}
#top .news .news-contents .news-list p{
}
#top .news .news-contents .news-list p.tx_01{
	text-align: left;
}
#top .news .news-contents .news-list p.tx_02 a{
	display: block;
	border: 1px solid #333;
    padding: 10px;
	transition-property:all; 
	transition-duration: 0.5s;
}
#top .news .news-contents .news-list p.tx_02 a:hover{
	color: #fff;
	border: 1px solid #fff;
	background: #68b9a4;
}
#top .news p.news-link a{
	margin: auto;
	display: block;
	color: #333;
	border: 1px solid #333;
    padding: 10px;
	transition-property:all; 
	transition-duration: 0.5s;
}
#top .news p.news-link a:hover{
	color: #fff;
	border: 1px solid #fff;
	background: #68b9a4;
}
#top .box_n08{
	padding-bottom: 80px;
}
#top .box_n08 .heading{
	text-align: center;
	margin-bottom: 40px;
}
#top .box_n08 h2{
	display: inline-block;
	text-align: center;
	font-weight: bold;
}
#top .box_n08 .box-01,
#top .box_n08 .box-02{
	width: 48%;
}
#top .box_n08 .box-01 img,
#top .box_n08 .box-02 img{
	width: 100%;
	height: auto;
	padding-bottom: 20px;
}
#top .box_n08 .box-01 p.tx_01,
#top .box_n08 .box-02 p.tx_01{
	padding-bottom: 20px;
}
#top .box_n08 .box-01 p.tx_02 a,
#top .box_n08 .box-02 p.tx_02 a{
	display: block;
	text-align: center;
	border: 1px solid #333;
	padding: 20px;
	transition-property:all; 
	transition-duration: 0.5s;
}
#top .box_n08 .box-01 p.tx_02 a:hover,
#top .box_n08 .box-02 p.tx_02 a:hover{
	color: #fff;
	border: 1px solid #fff;
	background: #68b9a4;
}
#top .box_n09{
}
#top .box_n09 iframe{
	width: 100%;
}
#top .box_n10{
	background: #68b9a4;
	padding: 80px;
}
#top .box_n10 .heading{
	text-align: center;
	margin-bottom: 40px;
}
#top .box_n10 h2{
	display: inline-block;
	text-align: center;
	font-weight: bold;
	color: #fff;
}
#top .box_n10 p{
	color: #fff;
}
#top .info .box-01 ul li{
	padding: 16px;
    border-bottom: 1px solid #333;
    margin-bottom: 16px;
}
#top .info .box-01 ul li a{
	display: block;
}
/* -----topここまで----- */

/* -----subpage Common style----- */
.second .container{
	width: 1040px;
	margin: 0 auto;
}
.second .mainvis-sub_01{
	height: 40vh;
	display: flex;
	align-items: center;
}
.second .mainvis-sub_02{
	background: url("../img/second/subvis_02_30191585_m.jpg") no-repeat center center;
	background-size: cover;
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.second .mainvis-sub_03{
	background: url("../img/second/subvis_03.jpg") no-repeat center center;
	background-size: cover;
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.second .mainvis-sub_04{
	background: url("../img/second/subvis_04.jpg") no-repeat center center;
	background-size: cover;
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.second .mainvis-sub_05{
	background: url("../img/second/subvis_05.jpg") no-repeat center center;
	background-size: cover;
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.second .mainvis-sub_06{
	background: url("../img/second/subvis_06.jpg") no-repeat center center;
	background-size: cover;
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.second .mainvis-sub_07{
	background: url("../img/second/subvis_07.jpg") no-repeat center center;
	background-size: cover;
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.second .main-title{
	width: 1040px;
	margin: 0 auto;
}
.second .main-title p{
	padding-bottom: 8px;
}
.second .main-title h1{
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.4;
}
.second .main-title h1 span{
	display: block;
	font-size: 1.6rem;
	text-align: center;
}
.second h2.title img{
	vertical-align: bottom;
	margin-right: 8px;
	width: 4%;
	height: auto;
}
.second .titlebox{
    margin-bottom: 40px;
}
.second .titlebox h2{
	font-size: 2.4rem !important;
	line-height: 1.4;
}
.second .img-box{
	width: 100%;
	margin-bottom: 80px;
}
.second .img-box img{
	width: 100%;
	height: auto;
}
.second .main-contents .top-contents-box{
	margin-bottom: 80px;
}
.second .top-contents-box .box-l,
.second .top-contents-box .box-r{
	width: 50%;
}
.second .top-contents-box .box-l img,
.second .top-contents-box .box-r img{
	width: 100%;
	height: auto;
}
.second .top-contents-box .box-l p{
	padding: 0 20px;
}
.second .top-contents-box .point-box{
	border: 4px solid #ccc;
    padding: 20px;
	margin-bottom: 40px;
	position: relative;
}
.second .top-contents-box .point-box img{
	position: absolute;
	top: 4px;
	left: 4px;
}
.second .top-contents-box .point-box h2.title{
	font-size: 2rem !important;
	font-weight: bold;
    border-bottom: 1px dotted #333;
    margin-bottom: 8px;
}
.second .top-contents-box .mmpg-box{
	border: 4px solid #ccc;
    padding: 20px;
	margin-bottom: 40px;
}
.second .top-contents-box .mmpg-box h2.title{
	font-size: 2rem !important;
	font-weight: bold;
    border-bottom: 1px dotted #333;
    margin-bottom: 8px;
}
.second .top-contents-box .mmpg-box p{
	margin-bottom: 20px;
}
.second .top-contents-box .mmpg-box ul{
	display: flex;
	justify-content: space-around;
}
.second .top-contents-box .mmpg-box ul li{
	width: 16%;
}
.second .top-contents-box .mmpg-box ul li img{
	width: 100%;
	height: auto;
}
.second .box_n03 .inner{
	width: 100%!important;
	margin: auto;
}
/* -----subpage Common styleここまで----- */

/* -----service----- */
.second .service{
	border-bottom: 1px solid #333;
	padding-top: 80px;
	padding-bottom: 80px;
}
.second .service .box-01{
	width: 48%;
}
.second .service .box-01 img{
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
.second .service .box-01 h3{
	text-align: left;
	margin-bottom: 16px;
}
.second .service .box-02{
	width: 48%;
}
.second .service .box-02 img{
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
.second .service .box-02 h3{
	text-align: left;
	margin-bottom: 16px;
}
.second .service .box-02 p{
	margin-bottom: 24px;
}
/* -----serviceここまで----- */

/* -----cleaning・construction----- */
.second .advantage_contents{
	border-bottom: 1px solid #333;
	padding-bottom: 80px;
}
.second .advantage_contents .box-01{
	width: 48%;
	margin-bottom: 40px;
}
.second .advantage_contents .box-01 img{
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
.second .advantage_contents .box-01 h3{
	text-align: center;
	margin-bottom: 16px;
}
.second .advantage_contents .box-02{
	width: 48%;
}
.second .advantage_contents .box-02 img{
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
.second .advantage_contents .box-02 h3{
	text-align: center;
	margin-bottom: 16px;
}
.second .example{
	padding: 0 0 80px;
}
.second .example .heading{
	margin-bottom: 40px;
}
.second .example h2.title{
	text-align: left;
}
.second .example h2 img{
	width: 40%;
	height: auto;
}
.second .example .heading p{
	text-align: left;
}
.second .example .news-contents{
	margin: 0 auto;
}
.second .example .news-contents .news-list{
	padding: 20px;
	text-align: center;
}
.second .example .news-contents .news-list img{
	width: 100%;
	height: auto;
	padding-bottom: 20px;
}
.second .example .news-contents .news-list h3{
	font-size: 1.8rem!important;
	text-align: left;
	padding-bottom: 10px;
    border-bottom: 1px solid #68b9a4;
    margin-bottom: 20px;
}
.second .example .news-contents .news-list p{
}
.second .example .news-contents .news-list p.tx_01{
	text-align: left;
}
.second .example .news-contents .news-list p.tx_02 a{
	display: block;
	border: 1px solid #333;
    padding: 10px;
	transition-property:all; 
	transition-duration: 0.5s;
}
.second .example .news-contents .news-list p.tx_02 a:hover{
	color: #fff;
	border: 1px solid #fff;
	background: #68b9a4;
}
.second .example p.news-link a{
	margin: auto;
	display: block;
	color: #333;
	border: 1px solid #333;
    padding: 10px;
	transition-property:all; 
	transition-duration: 0.5s;
}
.second .example p.news-link a:hover{
	color: #fff;
	border: 1px solid #fff;
	background: #68b9a4;
}
.second .flow{
	padding-bottom: 80px;
}
.second .flow .box-01{
	width: 48%;
}
.second .flow .box-01 img{
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
.second .flow .box-01 h3{
	text-align: center;
	margin-bottom: 16px;
}
.second .flow .box-02{
	width: 48%;
}
.second .flow .box-02 img{
	width: 100%;
	height: auto;
	margin-bottom: 16px;
}
.second .flow .box-02 h3{
	border-bottom: 1px dotted #333;
	margin-bottom: 16px;
	padding: 0 0 8px 0;
	font-size: 2rem;
	font-weight: bold;
	
}

/* -----cleaning・constructionここまで----- */

/* -----work----- */
.second .work{
	padding-top: 80px;
}
.second .work .work-box{
	width: 30%;
	margin-bottom: 40px;
}
.second .work .work-box img{
	width: 100%;
	height: auto;
}
.second .work .work-box h3{
	font-size: 1.8rem!important;
	padding-bottom: 16px;
}
.second .work .work-box p.tx_02 a {
    display: block;
	text-align: center;
    border: 1px solid #333;
    padding: 10px;
    transition-property: all;
    transition-duration: 0.5s;
}
.second .work .work-box p.tx_02 a:hover{
	color: #fff;
	border: 1px solid #fff;
	background: #68b9a4;
}
.second .gallery ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;	
}
.second .gallery ul::after {
	display: block;
	content:"";
	width: 32%;
}
.second .gallery ul li{
	width: 48%;
	margin-bottom: 10px;
}
.second .gallery ul li a{
	display: block;
	transition: all .3s ease 0s;
}
.second .gallery ul li a:hover{
	opacity: .5;
}
.second .gallery ul li a img{
	width: 100%;
	height: auto;
}
/* -----workここまで----- */

/* -----access----- */
.second .access table{
	width: 100%;
}
.second .access table,
.second .access table td,
.second .access table th{
	border: 1px solid #ccc;
}
.second .access table td,
.second .access table th{
	padding: 10px 20px;
}
.second .access table th{
	background: #efefef;
	text-align: left;
	width: 40%;
}
.second .access table td{
	width: 60%;
}
.second .access p{
	margin-top: 20px
}
.second .access p img{
	width: 100%;
	height: auto;
}
/* -----accessここまで----- */

/* -----news----- */
.second .news-box{
	padding-top: 24px;
}
.second .news-box ul li a{
	display: block;
    font-size: 1.4rem;
    border-bottom: 1px dotted #ccc;
    padding: 20px 20px;
	transition: all .3s ease 0s;
}
.second .news-box ul li a:hover{
	color: #fff;
	background: #68b9a4;
	border-bottom: 1px solid #68b9a4;
}
.second .news-contents p img{
	width: 100%;
	height: auto;
}
.second .pagenation {
	margin: 20px 0 0 0;
}
.second .pagenation ul{
	display: flex;
	justify-content: space-around;
}
.second .pagenation ul li{
	font-size: 1.4rem;
}
/* -----newsここまで----- */

/* -----qa----- */
.second .faq-detail{
	margin-bottom: 40px;
}
.second .faq-detail dt{
	border: 1px solid #ccc;
	text-align: left;
}
.second .faq-detail dd{
	text-align: left;
}
/* -----qaここまで----- */

/* -----contact----- */
select{
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 1em;
    background-size: 20px;
    background-position: right center;
    height: 40px;
    line-height: 3rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #CCC;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
input{
    text-indent: 1em;
    height: 40px;
    line-height: 3rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #CCC;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
textarea{
    text-indent: 1em;
    height: 140px;
    line-height: 3rem;
    font-size: 1.4rem;
    vertical-align: middle;
    border:1px solid #CCC;
    margin-bottom:20px;
	border-radius: 0px;
	width: 100%;
}
.contact table{
	margin: 20px auto;
	width: 100%;
}
.contact th{
	font-size: 1.4rem;
	text-align: left;
	vertical-align: top;
	width: 24%;
}
.contact td{
	width: 76%;
}
p.policy-link{
	margin-bottom: 20px;
	text-align: center;
}
p.form-btn{
	display: flex;
	justify-content: space-between;
}
p.form-btn input{	
	background: #68b9a4;
	color: #fff;
    transition: all .2s ease;
    border:1px solid #68b9a4;
}
p.form-btn input:hover{	
	background: #fff;
	border: 1px solid #68b9a4;
	color: #68b9a4;
}
.check{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.check label {
    font-size: 1.4rem;
    padding: 10px;
    transition: .3s ease-in-out;
}
.check input {
    height: auto;
    margin-bottom: 0;
    vertical-align: baseline;
    width: auto;
}
p.contact-tx{
	padding: 24px 0;
}
/* -----contactここまで----- */

/* -----responsive----- */
@media only screen and (max-width: 1023px) {
	header .inner {
		padding: 0 40px;
	}
	header h1 img {
		width: 80%;
	}
	header h2 img {
		width: 80%;
	}
	#main{
		margin: 0;
	}
	#main h2 {
		font-size: 2rem;
	}
	#main h3 {
		font-size: 1.6rem;
	}
	.container{
		width: 100%;
		flex-direction: column;
	}
	.main-contents{
		width: 100%;
	}
	.inner980 {
		width: 88%;
	}
	#pagetop{
		margin-bottom: 0;
	}
	footer {
		padding: 40px;
	}
	footer .heading {
		margin-bottom: 0px;
	}
	footer .heading h2 img {
		width: 40%;
		height: auto;
	}
	footer .f-box .box-l {
		padding: 20px 10px;
	}
	footer .f-box .box-r {
		padding: 20px 10px;
	}
	.pankuzu {
		padding: 0 40px;
	}
	.inner1040{
		width: 90%;
	}
	/*#top .mainvis {
		height: 56vh;
		/* margin-top: 80px; */
		/*margin-bottom: 40px;
		margin-left: 20px;
		margin-right: 20px;
	}*/
	/*#top .mainvis .inner h2.m_01 img{
		width: 50%;
	}
	#top .mainvis .inner h2.m_02 img{
		width: 80%;
	}*/
	#top .mainvis {
		padding: 0px;
		margin-bottom: 40px;
	}
	#top .mainvis p{
		/*top: 80px;*/
		left: 16px;
		bottom: 16px;
	}
	#top .mainvis p img{
		width: 80%;
		height: auto;
	}
	#top .main-contents .top-contents-box {
		margin-bottom: 40px;
	}
	#top .box_n01 ul li {
		font-size: 1.4rem;
	}
	#top .box_n02 {
		padding: 40px;
	}
	#top .box_n02 .support {
		padding: 20px 0px;
	}
	#top .box_n02 .support p {
		width: 22%;
		padding: 16px;
	}
	#top .box_n03 {
		padding: 40px;
	}
	#top .box_n03 .inner {
		width: 88%;
	}
	#top .box_n04 {
		padding: 40px;
	}
	#top .box_n04 .magazine {
		padding: 40px 0px;
	}
	#top .box_n05 {
		padding: 0 40px;
	}
	#top .box_n05 .point_contents {
		flex-wrap: wrap;
	}
	#top .box_n05 .point_contents .point_box {
		width: 46%;
		margin-bottom: 20px;
	}
	#top .box_n06 {
		padding: 0 40px;
	}
	#top .box_n06 .advantage_contents {
		width: 88%;
	}
	#top .box_n06 .advantage_contents a .advantage_box .box-l {
		width: 50%;
	}
	#top .box_n06 .advantage_contents a .advantage_box .box-r {
		width: 50%;
		padding: 20px 20px;
	}
	#top .box_n07 {
		padding: 40px;
	}
	#top .news {
		padding: 0 40px;
	}
	#top .news .news-contents {
		width: 100%;
	}
	#top .news p.news-link a {
		width: 100%;
	}
	#top .box_n08 {
		padding: 40px;
	}
	#top .box_n08 .heading p{
		text-align: left;
	}
	#top .box_n09 {
		padding: 40px;
	}
	#top .box_n09 .heading p{
		text-align: left;
	}
	#top .box_n09 p a {
		width: 100%;
	}
	#top .news .heading {
		margin-bottom: 20px;
	}
	#top .box_n10 {
		padding: 40px;
	}

	#top .box_n02 .check-box {
		width: 48%;
	}
	#top .box_n03 .feature-box {
		width: 48%;
	}
	#top .box_n04 .can-box {
		width: 48%;
	}
	#top .box_n04 .can-box img.icon {
		left: 120px;
	}
	.second .mainvis-sub_01,
	.second .mainvis-sub_02,
	.second .mainvis-sub_03,
	.second .mainvis-sub_04,
	.second .mainvis-sub_05,
	.second .mainvis-sub_06,
	.second .mainvis-sub_07 {
		height: 30vh;
		/*height: 24vh;*/
		margin-bottom: 40px;
	}
	.second .main-title {
		width: 90%;
		margin: auto;
	}
	.second .main-title h1 {
		font-size: 2rem;
	}
	.second .container {
		width: 96%;
	}
	.second .staffbox {
		width: 48%;
	}
	.contact table {
		width: 100%;
	}
}
@media only screen and (max-width: 767px) {
	body, th, td, h1, h2, h3, h4, h5, h6, pre, input, textarea, option, div, p, dt, dd, li, address {
		font-size: 1.4rem;
	}
	.mb0{
		margin-bottom: 0 !important;
	}
	.mb40{
		margin-bottom: 40px;
	}
	header {
		height: 60px;
	}
	header .inner {
        padding: 0 10px;
    }
	header h1 {
		height: 60px;
	}
	header h1 img {
		width: 56%;
		height: auto;
	}
	header h2 {
		display: none;
	}
	nav ul {
		padding-top: 52px;
	}
	#main{
		margin: 0 10px 40px;
	}
	#main h2{
		font-size: 1.6rem !important;
	}
	#main h3{
		font-size: 1.6rem;
	}
	.inner980 {
        width: 90%;
    }
	.button-1 {
		width: 100%;
		/*width: 70%;*/
	}
	.button-1 a {
		font-size: 1.2rem;
	}
	.flex {
		flex-wrap: wrap;
		/*flex-direction: column;*/
	}
	.flex2 {
		flex-direction: column;
	}
	.flex3 {
		flex-direction: column;
	}
	.flex4 {
		flex-direction: column-reverse;
	}
	footer .f-box {
		flex-wrap: wrap;
	}
	footer .f-box .box-l {
		width: 100%;
		padding: 20px 0;
		flex-direction: column;
	}
	footer .f-box .box-l .box-l_01{
		width: 100%;
	}
	footer .f-box .box-l .box-l_02{
		width: 100%;
	}
	footer .f-box .box-r {
		width: 100%;
		padding: 20px;
	}
	.footer_fix_btn {
		position:fixed;
		bottom:0;
		width:100%;
		text-align:center;
		background:#68b9a4;
		box-shadow: 0px -2px 11px 0px #ccc;
	}
	.footer_fix_btn ul{
		display: flex;
	}
	.footer_fix_btn ul li {
		width:100%;
		border-right: 1px solid #eeeeee;
		background-color: #68b9a4;
	}
	.footer_fix_btn ul li+ li {
		border-right: 1px solid #eeeeee;
	}
	.footer_fix_btn ul li a {
		display:block;
		padding:10px 0 0;
		width:100%;
		text-decoration:none;
	}
	.footer_fix_btn ul li a img{
		width: 60%;
		height: auto;
	}
	.pankuzu {
		padding: 0 8px;
	}
	.spview {
		display: block;
	}
	.pcview {
		display: none!important;
	}	
	#pageTop {
		position: fixed;
		bottom: 80px;
		right: 20px;
	}
	#popup {
		display: none !important;
	}
	/*#top .mainvis {
		height: 24vh !important;
		/*margin-top: 50px;
		margin-bottom: 20px;*/
		/*margin: 0 0 20px 0;
	}*/
	/*#top .vegas-wrapper {
		width: 90%;
		margin: auto;
	}
	#top .mainvis .inner h2.m_01 img{
		width: 60%;
	}
	#top .mainvis .inner h2.m_02 img{
		width: 100%;
	}*/
	#top .mainvis p{
		/*top: 202px;*/
		left: 34px;
		bottom: 24px;
	}
	#top .mainvis p img{
		width: 80%;
		height: auto;
	}
	#top .box_n00 .tx-box p {
		text-align: left;
	}
	#top .box_n01 {
		padding-bottom: 40px;
	}
	#top .box_n01 .heading {
		margin-bottom: 40px;
	}
	#top .box_n01 h2.title img {
		width: 80%;
		height: auto;
	}
	#top .box_n01 .box-02 h2 {
		margin-bottom: 20px;
	}
	#top .box_n01 .box-02 p {
		margin-bottom: 20px;
	}
	#top .box_n01 .box-02 p img {
		width: 60%;
		height: auto;
	}
	#top .box_n02 .heading {
		margin-bottom: 20px;
	}
	#top .box_n02 .heading h2 img {
		width: 80%;
		height: auto;
	}
	#top .box_n02 .check-box {
		width: 100%;
	}
	#top .box_n03 .feature-box {
		width: 100%;
	}
	#top .box_n04 .can-box {
		width: 100%;
	}
	#top .box_n02 .icon {
		width: 60%;
		text-align: center;
		margin: auto;
		padding-bottom: 16px;
	}
	#top .box_n02 .icon img {
		width: 50%;
		height: auto;
		vertical-align: text-bottom;
	}
	#top .box_n02 .tx {
		width: 100%;
	}
    #top .box_n03 {
        padding: 40px 0;
    }
	#top .box_n04 .can-box img.icon {
        /*left: 140px;*/
		left: 50%;
		transform: translate(-50%);
		-webkit-transform: translate(-50%);
		-ms-transform: translate(-50%);
    }
	#top .box_n04 .can-box {
		padding: 20px 20px 20px 20px;
	}
	#top p.sub_txt {
		width: 90%;
		margin: 0 auto 20px;
		text-align: center;
	}
	#top .top-contents-box .box-01 {
		width: 100%;
	}
	#top .top-contents-box .box-02 {
		width: 100%;
		margin-bottom: 20px;
	}
	#top .heading h2 img {
		width: 100%;
		height: auto;
    }
	#top .heading p {
		text-align: left;
    }
	#top .box_n01 .box-02 p.tx {
		font-size: 1.4rem;
	}
	#top .box_n02 {
        padding: 20px 0;
    }
	#top .box_n02 p {
		text-align: left;
	}
	#top .box_n02 .support p {
        width: 48%;
        padding: 8px;
    }
	#top .box_n03 .inner {
        width: 100%;
    }
	#top .box_n04 {
        padding: 20px 0;
    }
	#top .box_n04 .magazine {
        padding: 10px 0px;
    }
	#top .box_n04 .magazine p {
		width: 50%;
		padding: 16px;
	}
	#top .box_n05 {
        padding: 0 10px;
    }
	#top .box_n06 {
        padding: 0 10px;
    }
	#top .box_n06 .advantage_contents a .advantage_box {
		flex-wrap: wrap;
	}
	#top .box_n06 .advantage_contents a .advantage_box .box-l {
        width: 100%;
    }
	#top .box_n06 .advantage_contents a .advantage_box .box-r {
		width: 100%;
        padding: 20px 20px;
    }
	#top .box_n07 {
        padding: 20px;
    }
	#top .box_n07 .heading {
		margin-bottom: 20px;
	}
	#top .box_n07 .faq-detail dt {
		font-size: 2rem;
		/*font-size: 1.2rem;*/
	}
	#top .news {
        padding: 0 10px 40px;
    }
	#top .news h2.title img{
		width: 80%;
		height: auto;
	}
	#top .box_n08 {
        padding: 20px;
    }
	#top .box_n08 h2 {
		padding-bottom: 10px;
	}
	#top .box_n08 .box-01 {
		margin-bottom: 40px;
	}
	#top .box_n08 .box-02 img {
		width: 80%;
		height: auto;
	}
	#top .box_n09 {
        padding: 20px;
    }
	#top .box_n09 h2 {
		padding-bottom: 10px;
	}
	#top .box_n10 {
        padding: 20px;
    }
	#top .box_n10 h2 {
		padding-bottom: 10px;
	}
	.cd-breadcrumb {
		padding: 0 10px;
	}
	.second .mainvis-sub_01,
	.second .mainvis-sub_02,
	.second .mainvis-sub_03,
	.second .mainvis-sub_04,
	.second .mainvis-sub_05,
	.second .mainvis-sub_06,
	.second .mainvis-sub_07 {
		/*height: 16vh;
		height: 32vh;*/
		padding-top: 60px;
		margin-bottom: 40px;
	}
	.second .main-title h1 {
		font-size: 2rem;
		line-height: 1.6;
		/*padding-bottom: 20px;*/
	}
	.second .img-box {
		width: 100%;
		margin-bottom: 40px;
	}
	.second .titlebox {
		margin-bottom: 20px;
	}
	.second .titlebox img {
		width: 8%;
	}
	.second .top-contents-box .box-l,
	.second .top-contents-box .box-r {
		width: 100%;
	}.second .top-contents-box .box-l p {
		padding: 0 20px 20px;
	}
	.second .service {
		padding-top: 0px; 
		padding-bottom: 0px;
	}
	.second .work {
		padding-top: 0px; 
		padding-bottom: 0px;
	}
	.second .work .work-box {
		width: 100%;
	}
	.second .access table th {
		text-align: left;
	}
	.second .access table td,
	.second .access table th {
		display: block;
		border: none;
		width: 100%;
	}
	.second .gallery ul li {
		width: 49%;
	}
	.second .map2 p img{
		width: 100%;
	}
	.second .staffbox {
		width: 100%;
	}
	.second h2.title img {
		width: 9%;
	}
	.contact th {
		display: block;
		width: 100%;
	}
	.contact td {
		display: block;
		width: 100%;
	}
	p.policy-link{
		text-align: left;
	}
	/*hover解除*/
	.eff-0,
	.eff-1,
	.eff-2{
		display: none;
	}
}
/* ---------------------------------------------------------------------------------------responsiveここまで */
