@charset "utf-8";

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;

}
@font-face {
  font-family: 'kazesawa';
  src: url('../font/Kazesawa-Bold.woff');
}

@font-face {
  font-family: 'kakugo';
  src: url('../font/kakugo_large.ttf');
}


body {
  color : #3E3A39;
  font-size: 1.6rem;
  font-family: 'kakugo';
  font-weight: 500;
  font-style: normal;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.1em;
}

.wrap {
  overflow: hidden;
}




@media(min-width: 961px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}


li {
  list-style: none;
}



a {
  text-decoration: none;
}






/* nav hamburger */
/*============================
top-header
============================*/
#top-head {
  width: 100%;
  height: 80px;
  background: #0075C2;
  display: flex;
  position: fixed;
  z-index: 999;
}

#top-head .inner {
  float: left;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*logo style*/
.header-logo img {
  height: 65px;
  vertical-align: middle;
}

/*nav style*/
#top-head nav ul {
  display: flex;
  list-style-type: none;
}

/*nav link style*/
#top-head nav ul li a {
  text-decoration: none;
  padding: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: .2s;
}

#top-head nav ul li a span {
  font-size: .6em;
  letter-spacing: .08em;
}

#top-head nav ul .contact a {
  background-color: #9CBB59;
  color: #fff;
  height: 80px;
}

#top-head nav ul .contact a:hover  {
  color: #fff;
  background-color: #f1b04e;
}
#top-head nav ul li a:hover {
  color: #f1b04e;
}

#nav_toggle {
  display: none;
}

/* top-headerここまで */



/*============================
nav sp
============================*/
@media screen and (max-width:980px) {

  /*hamburger menu style*/
  #nav_toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    top: 4px;
    z-index: 999;
  }

  #nav_toggle div {
    position: relative;
  }

  /*hamburger menu close style*/
  #nav_toggle span {
    display: block;
    height: 2px;
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }

  #nav_toggle span:nth-child(1) {
    top: 0px;
  }

  #nav_toggle span:nth-child(2) {
    top: 10px;
  }

  #nav_toggle span:nth-child(3) {
    top: 20px;
  }

  /*hamburger menu open style*/
  .open #nav_toggle span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav_toggle span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }



  /*nav style*/
  #top-head nav {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    width: 100%;
    background: #0075C2;
    z-index: 998;
    padding-bottom: 20px;
  }

  #top-head nav ul {
    display: block;
    width: 80%;
    margin: 0 auto ;
  }

  #top-head nav ul li {
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
  }

  #top-head nav ul li:last-child {
    border: none;
  }

  /*nav link style*/
  #top-head nav ul li a {
    display: block;
    padding: 12px;
  }

  #top-head {
    padding-top: 0;
  }


  /* top-headerここまで */


}
/* animation */




.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* to-contact-button */
.to-contact {
  max-width : 346px;
  width: 90%;
  height : 82px;
margin: 0 auto;
}

      
/* button */
.btn,
a.btn {
width: 100%;
font-size: 2.3rem;
font-weight: normal;
line-height: 1.5;
position: relative;
display: inline-block;
padding: 1rem 4rem;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 0.3s;
transition: all 0.3s;
text-align: center;
vertical-align: middle;
text-decoration: none;
letter-spacing: 0.1em;
color: #fff;
border-radius: 0.5rem;
border-radius: 10px;
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
}

a.btn-flat {
overflow: hidden;
padding: 1.5rem 6rem;
color: #fff;
border-radius: 0;
background: #3E3A39;
border-radius: 10px;
}

a.btn-flat span {
position: relative;
}

a.btn-flat:before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
content: '';
-webkit-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
-webkit-transform: translateX(-96%);
transform: translateX(-96%);
background : -moz-linear-gradient(-98.62% -65.83% -15.35deg,rgba(113, 113, 113, 1) 0.56%,rgba(119, 119, 119, 1) 23.58%,rgba(255, 255, 255, 1) 71.91%,rgba(234, 234, 234, 1) 76.72%,rgba(179, 179, 179, 1) 86.67%,rgba(118, 118, 118, 1) 96.63%);
  background : -webkit-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  background : -webkit-gradient(linear,-98.62% -65.83% ,100.3% 89.2% ,color-stop(0.0056,rgba(113, 113, 113, 1) ),color-stop(0.2358,rgba(119, 119, 119, 1) ),color-stop(0.7191,rgba(255, 255, 255, 1) ),color-stop(0.7672,rgba(234, 234, 234, 1) ),color-stop(0.8667,rgba(179, 179, 179, 1) ),color-stop(0.9663,rgba(118, 118, 118, 1) ));
  background : -o-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  background : -ms-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#717171', endColorstr='#767676' ,GradientType=0)";
  background : linear-gradient(105.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  opacity : .8;
}

a.btn-flat:hover:before {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}

@media screen and (max-width:390px) {
  .btn,
a.btn  {
  font-size: 2rem;
}
}

/* button end */


.main-v {
  width: 100%;
  position: relative;
  margin-top: 60px;
}
.main-v img {
  width: 100%;
}


.main-v .top-title {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #066292;
  text-shadow: 0 0 2px #888;
  width: 90%;
  font-family: 'kakugo';
  font-weight: 900;
  text-align: center;
  font-size: 1.8vw;
}

@media screen and (max-width:768px) {
  .main-v .top-title {
      font-size: 4.6vw;
  }
}


/* 共通 */
@media screen and (min-width:769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}



.container {
  max-width: 1100px;
  width: 90%;
  margin: 0px auto;
  text-align: center;
}

.container-b {
  max-width: 1000px;
  width: 90%;
  margin: 0px auto;
}

.title-a {
  color: #0075C2;
	display: flex;
	justify-content: center;
	align-items: center;
  font-size: 2.6rem;
	text-align: center;
}

.title-a::before,
.title-a::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #0075C2;
}

.title-a::before {
	margin-right: 20px;
}
.title-a::after {
	margin-left: 20px;
}



.heading06 {
	position: relative;
	padding-top: 50px;
	padding-bottom: 20px;
  padding-right: 50px;
	font-size: 2.8rem;
	text-align: right;
  font-weight: 900;
  z-index:3;
  width: 90%;
  text-shadow: 1px 2px 3px rgba(255, 255, 255, 1);
}


.heading06::before {
	content: attr(data-en);
	position: absolute;
	top: -20px;
	right: -10%;
  color: rgba(0, 117, 194,.3);
	font-size: 8rem;
  z-index: -1;
  width: 100%;
}

.heading06::after {
  display: block;
	content: '';
	position: absolute;
	top: -4%;
	right: 350px;
	transform: rotate(30deg);
	width: 1px;
	height: 110px;
	background-color: #0075C2;
}

.heading05 {
	position: relative;
	padding-bottom: 50px;
	font-size: 2.3rem;
	text-align: center;
  width: 200px;
}

.heading05::before {
  position: absolute;
bottom: 33%;
  left: 50%;
  transform: translateX(-50%);
	content: attr(data-en);
	display: block;
	color: #0075C2;
	font-size: .7em;
	text-transform: uppercase;
}

.heading05::after {
	content: attr(data-en);
  display: block;
	content: '';
	position: absolute;
	top: -4%;
	left: 15%;
	transform: rotate(30deg);
	width: 1px;
	height: 70px;
	background-color: #0075C2;
}

.heading05-b {
	position: relative;
	padding-bottom: 50px;
	font-size: 2.3rem;
	text-align: center;
  width: 200px;
  margin-left: 25px;
}
.heading05-b::before {
  position: absolute;
bottom: 33%;
  left: 50%;
  transform: translateX(-50%);
	content: attr(data-en);
	display: block;
	color: #0075C2;
	font-size: .7em;
	text-transform: uppercase;
}

.heading05-b::after {
	content: attr(data-en);
  display: block;
	content: '';
	position: absolute;
	top: -4%;
	left: 0%;
	transform: rotate(30deg);
	width: 1px;
	height: 70px;
	background-color: #0075C2;
}

.sub-title {color: #0075C2;
  text-align: center;
  font-size: 2.3rem;
}

.sub-title span {
  display: inline-block;
}
@media screen and (max-width:768px) {
  .heading06 {
    
    margin-top: 50px;
  }
}

@media screen and (max-width:599px) {
  .heading06 {
    font-size: 2.3rem;
  }
  
  .heading06::before {
    top: -5px;
    font-size: 6rem;
  }

  .heading06::after {
    top: -4%;
    right: 300px;
    height: 100px;
  }

  .title-a {
    font-size: 2.1rem;
  }

  .title-a::before,
.title-a::after {
	width: 30px;
}
  
}
@media screen and (max-width:480px) {
  .title-a {
    font-size: 4.5vw;
    flex-direction: column;
  }

  .title-a::before{
display: none;
  }
  .title-a::after {
    margin: 5px auto;
    width: 50%;
    height: 2px;
  }
}

@media screen and (max-width:428px) {
  .heading06 {
    font-size: 5.5vw;
    z-index:3;
  }
  
  
  .heading06::before {
    top: 5px;
    font-size: 5rem;
    right: 0%;
  }

  .heading06::after {
    top: -4%;
    left: 12%;
    height: 100px;
  }
}

.flex-b {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width:768px) {
  .flex-b {
    display:block;
    margin:0 auto;
  }
}

/* footer */

footer {
  background-color: #172a88;
  width: 100%;
  height: 60px;
}

footer p {
  color: #fff;
  text-align: center;
  line-height: 60px;
}


  /* footer */

  footer {
    background-color: #0075C2;
    width: 100%;
    height: 60px;
  }

  footer p {
    color: #fff;
    text-align: center;
    line-height: 60px;
  }






  /* index.html */

  
  .top-page {
    background: url(../img/top_bg.png)no-repeat;
    background-color:rgba(255,255,255,0.7);
    background-blend-mode:lighten;
    background-size: cover;
    min-height: 100vh;
    background-position: bottom;
    padding-bottom: 40px;
  }

 .aboutus-txt {
  text-align: left;
  padding: 30px ;
  background-color: rgba(255,255,255,0.8);
  line-height: 2;
 }
  
.service {
  margin: 50px auto;
  width: 90%;
  max-width: 1200px;
  background : -moz-linear-gradient(-98.62% -65.83% -15.35deg,rgba(113, 113, 113, 1) 0.56%,rgba(119, 119, 119, 1) 23.58%,rgba(255, 255, 255, 1) 71.91%,rgba(234, 234, 234, 1) 76.72%,rgba(179, 179, 179, 1) 86.67%,rgba(118, 118, 118, 1) 96.63%);
  background : -webkit-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  background : -webkit-gradient(linear,-98.62% -65.83% ,100.3% 89.2% ,color-stop(0.0056,rgba(113, 113, 113, 1) ),color-stop(0.2358,rgba(119, 119, 119, 1) ),color-stop(0.7191,rgba(255, 255, 255, 1) ),color-stop(0.7672,rgba(234, 234, 234, 1) ),color-stop(0.8667,rgba(179, 179, 179, 1) ),color-stop(0.9663,rgba(118, 118, 118, 1) ));
  background : -o-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  background : -ms-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#717171', endColorstr='#767676' ,GradientType=0)";
  background : linear-gradient(105.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  opacity : .8;
padding:30px ;
border-radius: 10px;
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
}

.service-list {
  display: flex;
  gap: 35px;
}

.service-item {
  background: url(../img/service01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 250px;
  width: 25%;
  position: relative;
  padding: 20px;
}

.service-item:nth-child(2) {
  background: url(../img/service02.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}

.service-item:nth-child(3) {
  background: url(../img/service03.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}
.service-item:nth-child(4) {
  background: url(../img/service04.jpg)no-repeat;
  background-size: cover;
  background-position: center;
}



.service-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .5) ;
  transition: .2s ease-in-out;
}
.service-item:hover::before {
  background-color: rgba(0, 117, 194, .6);
  transition-delay:.25s ;
}

.service-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 1em 2em;
  text-align: center;
}

.service-item-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: bold;
  transition: .2s ease-in-out;
  color: #3E3A39;
}

.service-item:hover .service-item-title {
  color:#fff ;
  font-weight: bold;
  font-size: 2.7rem;
  transition-delay:.15s ;

}

.service-item a:before,
.service-item a:after {
  position: absolute;
  content: '';
}

.service-item a:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 1px solid #3E3A39;
  border-left: 1px solid #3E3A39;
  transition: ease-in .1s;
}

.service-item a:hover:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transition: ease-in .2s;
}

.service-item a:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 1px solid #3E3A39;
  border-bottom: 1px solid #3E3A39;
  transition: ease-in .1s;
}

.service-item a:hover:before {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transition: ease-in .1s;
}


.service-item-text {
  display: inline-block;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  outline: none;
  opacity: 0;
}

.service-item:hover .service-item-text {
  opacity: 1;
  transition: ease-in .1s;
  transition-delay:.2s ;
}


.service-item .service-item-text:hover::after{
left: 20%;
}

@media screen and (max-width:768px) {
  
/* service */
.service {
  width: 90%;
}

  .service-list {
    flex-direction: column;
  }
  .service-item {
    width: 100%;
  }
}

.about {
  padding: 50px 0;
}

.about .flex-b {
  gap: 30px;
  margin: 30px;
}

.about-button {
  width: 50%;
  height: 150px;
}

.about-button p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background : -moz-linear-gradient(6.99% 16.48% -15.35deg,rgba(113, 113, 113, 1) 0.56%,rgba(119, 119, 119, 1) 23.58%,rgba(255, 255, 255, 1) 71.91%,rgba(234, 234, 234, 1) 76.72%,rgba(179, 179, 179, 1) 86.67%,rgba(118, 118, 118, 1) 96.63%);
  background : -webkit-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  background : -webkit-gradient(linear,6.99% 16.48% ,205.67% 171.32% ,color-stop(0.0056,rgba(113, 113, 113, 1) ),color-stop(0.2358,rgba(119, 119, 119, 1) ),color-stop(0.7191,rgba(255, 255, 255, 1) ),color-stop(0.7672,rgba(234, 234, 234, 1) ),color-stop(0.8667,rgba(179, 179, 179, 1) ),color-stop(0.9663,rgba(118, 118, 118, 1) ));
  background : -o-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  background : -ms-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#717171', endColorstr='#767676' ,GradientType=0)";
  background : linear-gradient(105.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  opacity : .8;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 2rem;
  color: #3E3A39;
  font-weight: 600;
  line-height: 2;
  border-radius: 10px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
}

.about-button:last-child p{
  background : -moz-linear-gradient(-98.62% -65.83% -15.35deg,rgba(113, 113, 113, 1) 0.56%,rgba(119, 119, 119, 1) 23.58%,rgba(255, 255, 255, 1) 71.91%,rgba(234, 234, 234, 1) 76.72%,rgba(179, 179, 179, 1) 86.67%,rgba(118, 118, 118, 1) 96.63%);
  background : -webkit-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  background : -webkit-gradient(linear,-98.62% -65.83% ,100.3% 89.2% ,color-stop(0.0056,rgba(113, 113, 113, 1) ),color-stop(0.2358,rgba(119, 119, 119, 1) ),color-stop(0.7191,rgba(255, 255, 255, 1) ),color-stop(0.7672,rgba(234, 234, 234, 1) ),color-stop(0.8667,rgba(179, 179, 179, 1) ),color-stop(0.9663,rgba(118, 118, 118, 1) ));
  background : -o-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  background : -ms-linear-gradient(-15.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#717171', endColorstr='#767676' ,GradientType=0)";
  background : linear-gradient(105.35deg, rgba(113, 113, 113, 1) 0.56%, rgba(119, 119, 119, 1) 23.58%, rgba(255, 255, 255, 1) 71.91%, rgba(234, 234, 234, 1) 76.72%, rgba(179, 179, 179, 1) 86.67%, rgba(118, 118, 118, 1) 96.63%);
  opacity : 1;
}

.about-button p span {
  background : #C9CACA;
  border: #3E3A39 solid 1px;
  border-radius: 35px;
  padding: 10px 20px;
  display: block;

}

@media screen and (max-width:768px) {
  .about .flex-b {
    gap: 30px;
    margin: 0px;
  }
  .about-button {
    width:100%;
    margin: 30px auto;
  }
  
}

/* company-profile */
.company-profile-p {
  padding: 50px 0;
}


.company-profile {
  width: 100%;
    border-collapse: separate;
    border-spacing: 0px 15px;
  }

  
  .company-profile th,
  .company-profile td {
  padding: 20px;
  border-bottom: 1px solid #0075c2;
  }
  
  .company-profile th {
  font-weight: bold;
  background-color: #0075c2; 
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  color: #fff;
  width: 25%;
  }

  .company-profile td {
    width: 75%;
  }
  .company-profile td p {
    text-align: left;
    width: 400px;
    margin: 0 auto 0 200px ;
  }
  
  @media screen and (max-width: 768px) {
  .company-profile,
  .company-profile tr,
  .company-profile td,
  .company-profile th {
  display:inline-block;
  width:100%;
  border-collapse: collapse;
  border-spacing: none;
  }

  .company-profile th {
  clip-path:none;
  }

  .company-profile th ,
  .company-profile td {
    border: #0075C2 solid 1px;
  } 
  .company-profile td p  {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  }
.map {
  max-width:900px ;
  width: 90%;
  margin: 0px auto 30px;
}

.map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

@media screen and (max-width:599px) {
  .map iframe {
    width: 100%;
    aspect-ratio: 1;
  }
  
}

/* company-profile end */
  /* index.html end */

  /* product.html */
  .product-page {
    background: url(../img/product_bg.jpg)no-repeat;
    background-color:rgba(255,255,255,0.7);
    background-blend-mode:lighten;
    background-size: cover;
    min-height: 100vh;
    background-position: bottom;
    padding-bottom: 40px;
  }

  .sub-top-title {
    width: 80%;
    max-width: 400px;
  }

  .sub-top-title img {
    width: 100%;
  }

  .main-v .sub-top-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .product-hl li {
    margin: 10px auto;
  }

  .product-hl li h2 {
    background-color: #0075C2;
    border-radius:35px ;
    padding: 10px 20px;
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
  }

  .product-list {
    padding: 100px 0 50px;
  }


    .parent {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(4, 1fr);
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      margin: 0 auto;
      }
      
      .parent img {
        width: 100%;
      }

      .div1 { grid-area: 1 / 1 / 2 / 5; }
      .div2 { grid-area: 1 / 5 / 2 / 9; }
      .div3 { grid-area: 1 / 9 / 2 / 13; }
      .div4 { grid-area: 2 / 1 / 3 / 5; }
      .div5 { grid-area: 2 / 5 / 3 / 9; }
      .div6 { grid-area: 2 / 9 / 3 / 13; }
      .div7 { grid-area: 3 / 1 / 4 / 4; }
      .div8 { grid-area: 3 / 4 / 4 / 7; }
      .div9 { grid-area: 3 / 7 / 4 / 10; }
      .div10 { grid-area: 3 / 10 / 4 / 13; }
      .div11 { grid-area: 4 / 1 / 5 / 5; }
      .div12 { grid-area: 4 / 5 / 5 / 9; }
      .div13 { grid-area: 4 / 9 / 5 / 13; }

      @media screen and (max-width:768px) {
        .parent {
          display: grid;
          grid-template-columns: repeat(12, 1fr);
          grid-template-rows: repeat(7, 1fr);
          grid-column-gap: 0px;
          grid-row-gap: 0px;
          }
          
          .div1 { grid-area: 1 / 1 / 2 / 7; }
          .div2 { grid-area: 1 / 7 / 2 / 13; }
          .div3 { grid-area: 2 / 1 / 3 / 7; }
          .div4 { grid-area: 2 / 7 / 3 / 13; }
          .div5 { grid-area: 3 / 1 / 4 / 7; }
          .div6 { grid-area: 3 / 7 / 4 / 13; }
          .div7 { grid-area: 4 / 1 / 5 / 7; }
          .div8 { grid-area: 4 / 7 / 5 / 13; }
          .div9 { grid-area: 5 / 1 / 6 / 7; }
          .div10 { grid-area: 5 / 7 / 6 / 13; }
          .div11 { grid-area: 6 / 1 / 7 / 7; }
          .div12 { grid-area: 6 / 7 / 7 / 13; }
          .div13 { grid-area: 7 / 1 / 8 / 7; }
      }
  /* product.html end */

  /* equipment.html */
  .equipment-page {
    background: url(../img/equipment_bg.jpg)no-repeat;
    background-color:rgba(255,255,255,0.7);
    background-blend-mode:lighten;
    background-size: cover;
    min-height: 100vh;
    background-position: bottom;
    padding-bottom: 40px;
  }

  .parent-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    }
    
      .parent-2>.div1 { grid-area: 1 / 1 / 2 / 2; 
    padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.4);

}
      .parent-2>.div2 { grid-area: 1 / 2 / 2 / 3; 
    padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.4);

}
      .parent-2>.div3 { grid-area: 2 / 1 / 3 / 2; 
    padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.4);

}
      .parent-2>.div4 { grid-area: 2 / 2 / 3 / 3; 
    padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.4);

}

    .parent-2 img {
      width: 90%;
    }

    .eqp-name {
      width: 90%;
      margin: 0 auto;
      text-align: left;
    }

    @media screen and (max-width:768px) {
      .parent-2 {
        display: block;
        }
        .parent-2>div {
          margin: 20px auto;
        }
    }

    .eqp-detail {
      padding: 100px 0 50px;
    }
    
    .details {
      width: 100%;
      border-collapse: separate;
      border-spacing:  0 10px ;
    }

.eqp-size {
  width: 30%;
}

.details th {
width: 50%;
text-align: left;
font-size: 1.8rem;
color: #0075C2;
}


.details .eqp-num {
  width: 20%;
  min-width: 50px;
  color: #0075C2;
  text-align: right;
}

.eqp-num span {
  font-size: 1.2em;
}


.details .eqp-size {
  width: 30%;
  text-align: center;
  margin: 0 0 0 auto;
  font-size: 1.6rem;
  background-color: #0075C2;
  color: #fff;
  padding: 5px 10px;
  border-radius: 35px;
}
.non-eqp-size {
  opacity: 0;
}

@media screen and (max-width:768px) {
  .details th,
  .details td,
  .details .eqp-size,
  .details .eqp-num  {
    display: block;
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }
  .details td {
    border-bottom: #0075C2 dashed 1px ;
    margin-bottom: 20px;
  }
}
  /* equipment.html end */

  /* quality.html */
  .quality-page {
    background: url(../img/quality_bg.png)no-repeat;
    background-color:rgba(255,255,255,0.9);
    background-blend-mode:lighten;
    background-size: cover;
    min-height: 100vh;
    background-position: bottom;
    padding-bottom: 40px;
  }

  .quality-hl  {
    padding: 50px 0 ;
  }

.quality-hl-box {
  background-color: #0075C2;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  width: 50%;
  line-height: 2.2;
}
.quality-hl .flex-b {
  gap: 30px;
}

.quality-hl-box h2 {
  font-size: 2.6rem;
  padding: 10px 0; 
}

.quality-hl-box p {
  font-size: 2.2rem;
}

.quality-hl-box p  span {
  font-size: .8em;
}

@media screen and (max-width:768px) {
  .quality-hl  {
    padding: 150px 0 50px;
  }
  .quality-hl-box {
    width: 100%;
  }

  .quality-hl-box {
    margin: 30px auto ;
  }

  .quality-hl-box h2 {
    font-size: 2.4rem;
  }
  
  .quality-hl-box p {
    font-size: 2rem;
  }
}

.parent-3,
.parent-3-2 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
}

.parent-3-ch {
  padding: 20px ;
  background-color: #fff;
  border:#0075C2 solid 2px ;
  border-radius: 10px;
  position: relative;
}

.parent-3-ch>h3 {
  position: absolute;
  background-color: #0075C2;
  color: #fff;
  border-radius: 35px;
  padding: 3px 20px;
  font-size: 2rem;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 300px;
  width: 90%;
}

.parent-3-ch>.name-s {
  position: absolute;
  background-color: #0075C2;
  color: #fff;
  border-radius: 35px;
  padding: 3px 20px;
  font-size: 1.9rem;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 300px;
  width: 90%;
  line-height: 1.5;
}


.parent-3 img,
.parent-3-2 img {
  width: 100%;
}

@media screen and (max-width:900px) {
  .parent-3-ch>h3 {
font-size: 2vw;
  }
  .parent-3-ch>.name-s {
    font-size: 1.9vw;
  }
}

@media screen and (max-width:599px) {
  .parent-3,
.parent-3-2 {
  display: block;
  margin: 0 auto;
}


.parent-3-ch {
margin: 30px 0;
}

.parent-3-ch>h3 {
  font-size: 2rem;
    }
    .parent-3-ch>.name-s {
      font-size: 1.8rem;
    }
}

  /* quality.html end */


  /* contact.html */
/* mail.html */
  .contact-page {
    background: url(../img/contact_bg.png)no-repeat;
    background-color:rgba(255,255,255,0.97);
    background-blend-mode:lighten;
    background-size: cover;
    min-height: 100vh;
    background-position: bottom;
    padding-bottom: 40px;
  }

.mailform {
  padding: 50px 0;
  position: relative;
}
.contact-form-parts {
  margin-top: 30px;
  padding: 0;
  text-align: center;
}

.content-wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 900px;
}


#formWrap {
  width: 100%;
  margin: 0 auto;
  color: #555;
  line-height: 120%;
  font-size: 90%;
  text-align: left;
}

table.formTable {
  width: 100%;
  margin: 0 auto 20px;
  border-collapse: collapse;
  border-spacing: 15px 20px;
}


table.formTable th {
  /* border:1px solid #ccc; */
  padding: 5px;
}

table.formTable td {
  padding: 10px;
}

table.formTable th {
  width: 40%;
  font-weight: 700;
  /* background:#4ba8de; */
  color: #3e3a39;
  vertical-align: middle;
  text-align: left;
  background: #f1f1f1;
  padding-left: 15px;
  border: #fff solid 2px;
}

.formTable .caution-text {
  color: red;
  font-size: 1.3rem;
}
table.formTable textarea {
  width: 100%;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  background-color: #fff;
}


.contact-button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸    */
  font-weight: 700;
  font-size: 16px;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 12px 12px;
  /* 余白       */
background-color: #9cbb59;/* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 2px 2px 0px #dcdddd;
  /* 影の設定 */
  /* 枠の指定 */
  width: 100%;
  max-width: 150px;
  border: #9cbb59 solid 2px;
}

.contact-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #9cbb59 ;
  /* 背景色     */
  background: #ffffff;
  border:#9cbb59 solid 2px;
  /* 文字色     */
}

.reset-button {
  background: #fff;
  /* 背景色     */
  color: #9cbb59;
  /* 文字色     */
}

.reset-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #fff;
  /* 背景色     */
  background: #9cbb59;
  /* 文字色     */
}


.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-wrapper input {
  margin-bottom: 20px;
}


.m-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.m-form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}



.button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸       */
  font-size: 12pt;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 10px 25px;
  /* 余白       */
  background: #333333;
  /* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 1px 1px #666666;
  /* 影の設定 */
  border: 1px solid #333333;
  /* 枠の指定 */
}

.button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #333333;
  /* 背景色     */
  background: #ffffff;
  /* 文字色     */
}

@media screen and (max-width:599px) {
  #formWrap {
    width: 100%;
    margin: 0 auto;
  }

  table.formTable th, table.formTable td {
    width: auto;
    display: block;
    padding-bottom: 0;
  }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
    padding: 5px;
    
  }

  input[type="text"], textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  input[type="submit"], input[type="reset"], input[type="button"] {
    /* display:block; */
    height: 40px;
  }

}

/* mailform.html end */
/* mail.html end */
  /* contact.html end */