

h2 {
  vertical-align: center;
  /*text-align: center;*/
}



body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
	background-color: #565051;
	 font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ＭＳ ゴシック",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
}

#company {
	 width: 100%;
  margin: 0;
  padding: 0;
background-image: url(../images/main_company.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
 
 
}


#result {
	 width: 100%;
  margin: 0;
  padding: 0;
background-image: url(../images/main_result.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
 
 
}

#recruit {
	 width: 100%;
  margin: 0;
  padding: 0;
background-image: url(../images/main_recruit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
 
 
}

#faq {
	 width: 100%;
  margin: 0;
  padding: 0;
background-image: url("../images/main_faq.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
 
 
}

#form {
	 width: 100%;
  margin: 0;
  padding: 0;
background-image: url(../images/main_form.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
 
 
}

/*-------------------------------------*/
/* 全画面スライドショー */
/*-------------------------------------*/



.fullscreen-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-01, .img-02, .img-03{
   position: absolute;
   top:0;
   left:0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-repeat: no-repeat;

}
.img-01{
   background-image: url('../images/main_top001.jpg');
   animation: slide-animation-01 24s infinite;
}
.img-02{
   background-image: url('../images/main_top002.jpg');
   animation: slide-animation-02 24s infinite;
}
.img-03{
   background-image: url('../images/main_top003.jpg');
   animation: slide-animation-03 24s infinite;
}




@keyframes slide-animation-01 {
    0% {opacity: 1; transform: scale(1.0);}
  30% {opacity: 1;}
  40% {opacity: 0; transform: scale(1.15);}
  90% {opacity: 0}
100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
    0% {opacity: 0;}
  30% {opacity: 0; transform: scale(1.1);}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-03 {
    0% {opacity: 0;}
  60% {opacity: 0;  transform: scale(1.0);}
  70% {opacity: 1;}
  90% {opacity: 1;}
100% {opacity: 0; transform: scale(1.1);}
}
	

/*-------------------------------------*/
/* ナビゲーション */
/*-------------------------------------*/


.top-nav {
	position: fixed;
	width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
opacity: 0.85;
 /* background: linear-gradient(to left, #f46b45, #eea849);*/
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #000;
  height: 70px;
  padding: 1em;
	z-index: 1000;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
		
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
	font-size: 16px;
}



.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #000;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 800px) {
	

	
	
	
  .menu-button-container {
    display: flex;
	
  }

  .menu {
    position: absolute;
    top: 0;
    margin-top: 70px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
	   
  }

  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
	
	  
	  
  }

  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu > li {
    display: flex;
	  
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
   background-color: rgba(0,0,0,1.0);
	  
    z-index: 1000;
  }
	
.menu li a {
 color: #fff;
	padding: 0 100px;
	 
}


  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}

/*-------------------------------------*/
/* ナビゲーション　end */
/*-------------------------------------*/




a {
 color: #862A25;
	font-weight: 500;
}





 a:hover, a:focus {
	color: #517FB0;
  text-decoration: none;
}
a:focus {
  outline: none;
}
body {
  margin: 0;
  padding: 0;
/*background-image: url(../images/main_top001.jpg);*/
  /*background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;*/
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
}
.tm-logo {
  margin-bottom: 25px;
}
p {
  margin: 0 0 20px;
  line-height: 1.8;
	color:#fff; 
	font-size: 16px;
}
.tm-box-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#home {
  padding-top: 10em;
}
.content {
  padding-right: 0%;
  padding-left: 0%;
}

.content-base {
	width: 100%;
	height: auto;
	background-color: rgba(255,255,255,0.8);
  padding: 40px;
	margin-top: 50px;
 
}

.content-base-70 {
	width: 70%;
	display: block;
	margin: auto;
	
	height: auto;
	background-color: rgba(82,71,71,0.8);
  padding: 40px;
	text-align: center;
	
 
}

.content-base-70 p {
	
	
	color: #fff;
 margin: 0px;
}

.content-base p {
	color: #000;
	 line-height: 1.6;
}

.content-item {

  padding-right: 5%;
  padding-left: 5%;
  min-height: 470px !important;
}
.content-item p:last-child {
  margin-bottom: 0;
}
.background.content-item-1 {
		margin-top: 100px;
  padding: 30px 65px;
}
.tm-content-box {
  padding: 55px 45px;
}
.main-title {
  font-weight: 300;
  font-size: 30px;
  line-height: 1.4;
  margin-top: 30px;
  margin-bottom: 30px;
	
	 color: #fff;
  font-family: "ヒラギノ明朝 Pro W6", Hiragino Mincho Pro, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	letter-spacing: 0.2em;
	
}

.main-title02 {
  font-weight: 300;
  font-size: 34px;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 8px;
	
	 color: #fff;
  font-family: "ヒラギノ明朝 Pro W6", Hiragino Mincho Pro, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	letter-spacing: 0.4em;
	
}




 .content-pagetitle h2 {

 
 text-align: left;
	margin-top: 150px;
	 text-shadow: 1px 1px 2px #000;
	
}

/*-------------------------------------*/
/* 会社案内　 */
/*-------------------------------------*/


.company-block3 dl {
  display: flex;
  flex-flow: row wrap;
  border-bottom: 1px solid #999;
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: 100%;
	font-size: 16px;
}
.company-block3 dl dt {
  flex-basis: 18%;
  padding-right: 20px;
  font-weight: bold;
  color: #425B7A;
}
.company-block3 dl dd {
  flex-basis: 82%;
  padding-right: 10px;
  line-height: 1.8;
}
.company-block3 dl:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.company-block3 dl dd .txt-red {
  color: #ff0000;
}


/*-------------------------------------*/
/* 施工実績　 */
/*-------------------------------------*/

.row-feature03 {
  display: block;
  
  margin: 10px auto;
}
.row-feature03 ul {

  display: flex;
 
	flex-direction:row;
	flex-wrap: wrap;
  justify-content: space-around !important;
  padding-inline-start: 0px;
	list-style: none;
}
.row-feature03 li {
	flex-direction: column;
	 width: 45%;
  margin: 15px 5px 5px 5px;
  padding: 5px 15px;
	background-color: #f2f2f2;
}
li.line-box {
  border: 1px solid #999;
	
}

/*-------------------------------------*/
/* Faq　 */
/*-------------------------------------*/


.accordion  {
  margin: 0px auto 0px;
	padding: 0px;
}

.accordion_title {
  position: relative;
  border: none;
  display: block;
  list-style: none;
  width: 100%;
  cursor: pointer;
   background: #0068b7;
	color: #fff;
  padding: 1.0em 1.0em 1.0em;
	 margin: 0px auto 0px;
 /* line-height: 1.6em;*/
}

summary.accordion_title::-webkit-details-marker {
  display:none;
}

.accordion_title:after {
  content: "＋";
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  line-height: 1;
  padding: 0;
  pointer-events: none;
	
}

.accordion::details-content {
  opacity: 0;
  block-size: 0;
   transition: .5s;
  transition-property: display, opacity, block-size, padding;
  transition-behavior: allow-discrete;
  line-height: 1.6em;
  background: #ffffff;
	 padding: 1.0em 1.6em 0.4em;
	
}

.accordion .accordion_content {
  padding: 0 1.4em;
	
}

.accordion .accordion_content > *:first-of-type {
  margin-top: 0;
}

.accordion .accordion_content > *:last-of-type {
  margin-bottom: 0;
}

.accordion[open]::details-content {
  opacity: 1;
  block-size: auto;
  block-size: calc-size(auto, size);
	
}

.accordion[open] .accordion_content {
  padding: 1.4em;
	
}

.accordion[open] .accordion_title:after {
  content: "ー";
	
}

/*-------------------------------------*/
/* Faq　end */
/*-------------------------------------*/





.contact-title {
  font-weight: 300;
  font-size: 34px;
  line-height: 1.4;
  margin-bottom: 30px;
}
.dark-blue-text {
  color: #006699;
}






.btn {
  border-radius: 0px;
  padding: 10px 25px;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 300;
  margin-right: 15px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.btn:last-child {
  margin-right: 0;
}
.btn-big {
  padding: 10px 40px;
  min-width: 176px;
}
.btn-contact {
  font-size: 2rem;
  padding: 10px 35px;
  font-weight: 300;
  margin-top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-contact:hover, .btn-contact:focus {
  background-color: rgba(47, 47, 47, 0.5);
}
.form-control {
  box-shadow: none;
  font-size: 19px;
  height: auto;
  padding: 13px 17px;
}
.form-group {
  margin-bottom: 24px;
}
.contact-form {
  overflow: hidden;
  margin-left: -15px;
  margin-right: -15px;
}
.content-item input, .content-item textarea {
  border-radius: 0px;
}
.contact-field {
  padding-left: 0;
  padding-right: 0;
}
.footer {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 400;
  padding: 20px;
	
}
.footer a {
  color: #fff;
}
.margin-b-0 {
  margin-bottom: 0;
}
.tm-white-text {
  color: white;
}
.tm-white-bg {
  background-color: white;
}
.tm-white-translucent-bg {
  background-color: rgba(0, 0, 0, 0.5);
}
.tm-black-translucent-bg {
  /*background-color: rgba(0, 0, 0, 0.7);*/
}
.tm-black-translucent-bg > * {
  color: white;
}
.tm-float-section-header {
  position: absolute;
  background-color: #cc3467;
  width: 90%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 50%;
}
.tm-float-section {
  position: relative;
}
.tm-float-section-body {
  position: absolute;
  top: 80px;
  width: 85%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
}
.tm-fa-icon {
  margin-bottom: 50px;
  margin-top: 20px;
  text-align: center;
  width: 100%;
}
h1 {
  margin: 0;
	padding: 0;
}
.tm-btn-primary {
  background-color: #cc3467;
  color: white;
}
.tm-btn-primary:hover, .tm-btn-primary:focus {
  background-color: #e74a7e;
  color: white;
}
.form-control:focus {
  border-color: rgba(204, 52, 103, 1);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(204, 52, 103, 0.075), 0 0 8px rgba(204, 52, 103, 0.6);
}
.tm-img-tl {
  padding-right: 5px;
  padding-bottom: 5px;
}
.tm-img-tr {
  padding-top: 5px;
  padding-right: 5px;
}
.tm-img-bl {
  padding-bottom: 5px;
  padding-left: 5px;
}
.tm-img-br {
  padding-top: 5px;
  padding-left: 5px;
}
.tm-border-box {
  display: inline-block;
}
.tm-gray-border-br {
  border-right: 15px solid #666666;
  border-bottom: 15px solid #666666;
}
.tm-gray-border-tl {
  border-top: 15px solid #666666;
  border-left: 15px solid #666666;
}
.tm-pink-border-tr {
  border-top: 15px solid #cc3467;
  border-right: 15px solid #cc3467;
}
.tm-pink-border-bl {
  border-bottom: 15px solid #cc3467;
  border-left: 15px solid #cc3467;
}
.tm-left-col, .tm-right-col {
  width: 245px;
  float: left;
  max-width: 48%;
}
.tm-right-col {
  margin-left: 15px;
  margin-top: 50px;
}
.tm-img-box-2, .tm-img-box-4 {
  margin-top: 15px;
}
.tm-equal-col-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tm-services-section-padding {
  padding-bottom: 100px;
}
.tm-img {
  width: 100%;
  height: auto;
}
.tm-logo-box {
  text-align: center;
  padding-top: 0px;
}
@media screen and (max-width:1199px) {
  .content-item {
    min-height: 470px !important;
  }
  p {
    margin: 0 0 10px;
  }
  .btn {
    margin-top: 15px;
  }
  textarea#message {
    height: 125px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
  .background {
    padding: 25px;
  }
  .background.content-item-1 {
    padding: 0 30px;
  }
  .btn {
    margin-top: 10px;
  }
  .btn-contact {
    margin-top: 0;
  }
  .form-control {
    font-size: 0.9em;
  }
}

@media screen and (max-width:991px) {
	
	
.img-01{
   background-image: url('../images/main_top001_sp.jpg');
   animation: slide-animation-01 24s infinite;
}
	
.img-02{
   background-image: url('../images/main_top002_sp.jpg');
   animation: slide-animation-02 24s infinite;
}
	
.img-03{
   background-image: url('../images/main_top003_sp.jpg');
   animation: slide-animation-03 24s infinite;
}
	
	
	
	
	.content-base {
	width: 100%;
	height: auto;
	background-color: rgba(255,255,255,0.8);
  padding: 10px;
	margin-top: 50px;
 
}
	
	.content-base-70 {
	width: 70%;
	display: block;
	margin: auto;
	
	height: auto;
	
  padding: 10px;
	text-align: center;
	
 
}
	
  .content-item {
    min-height: inherit !important;
    padding-top: 7%;
    padding-bottom: 10%;
    width: 100%;
  }
  .background p {
    line-height: 27px;
  }
  .background p {
    font-size: 16px;
  }
  .background h2 {
    margin-bottom: 30px;
    margin-top: 0;
  }
  p {
    margin: 0 0 20px;
  }
	
	
	 .company-block3 dl {
    flex-flow: column;
  }
  .company-block3 dl dt {
    flex-basis: 100%;
    padding-right: 0px;
    padding-bottom: 10px;
  }
  .company-block3 dl dd {
    flex-basis: 100%;
    padding-right: 0px;
    line-height: 1.8;
  }
	
 .row-feature03 ul {
    width: 100%;
    flex-direction: column;
    margin: 0 auto;
    display: block;
  }
  .row-feature03 li {
	  width: 80%;
    margin: 15px auto;
    display: block;
    padding: 5px 10px 0px 10px;
  }	
	
	
  .btn {
    margin-top: 20px;
  }
  textarea#message {
    height: inherit;
  }
  .tm-equal-col-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .main-title {
    margin-top: 0;
  }
  .tm-services-section-padding {
    padding-bottom: 60px;
    padding-top: 30px;
  }
  .background.content-item-1 {
	  margin-top: 10px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .tm-section-3 > .content-item {
    display: none;
  }
  .tm-float-section {
    position: static;
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .tm-float-section-header, .tm-float-section-body {
    position: static;
  }
  .tm-float-section-header {
    padding-top: 30px;
    height: 200px;
  }
  .tm-float-section-body {
    margin-top: -110px;
  }
  .tm-fa-icon {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .tm-section-3-header {
    margin-top: 0;
  }
}
@media screen and (max-width:767px) {
  #home {
    padding-top: 62px;
  }
  .main-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width:500px) {
  .btn {
    margin-top: 10px;
  }
  .tm-float-section-body {
    padding: 10px;
    margin-top: -90px;
  }
}
@media screen and (max-width: 480px) {
  .background.content-item-1 {
    padding: 40px 45px;
  }
}
@media screen and (max-width: 460px) {
  .tm-float-section-header {
    height: 220px;
  }
  .tm-float-section-body, .tm-float-section-body .col-lg-12 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 420px) {
  .background {
    padding: 40px 35px;
  }
  .background.content-item-1 {
    padding: 20px 25px;
  }
}