@charset "UTF-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  font-size: 1em;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {
  max-width: 100%;
}

.sp-only {
  display: none!important;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none!important;
  }
  .sp-only {
    display: block!important;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/

.c-header {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.c-header__logo {
  width: 30%;
  float: left;
  display:flex;
  align-items: center;
}

.c-header__logo h1 {
  margin: 0;
  width: 100%;
}

.c-headersp .c-gnavisp{
  display:none;
}
/* Main menu
------------------------------------------------------------*/
.c-gnavi {
  width: 70%;
  float: right;
  height: 100px;
}

.c-gnavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  float:right;
}

.c-gnavi ul li {
  height: 100%;
  padding: 0px 18px;
}

.c-gnavi ul li:nth-last-child(2) {
  padding-right:23px;
}

.c-gnavi ul li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333333;
  text-decoration: none;
  position:relative;
  font-family: "小塚ゴシック Pro";
}

.c-gnavi > ul li a:hover{
  opacity:1;
}

.c-gnavi > ul li a:before{
  content: "";
  position: absolute;
  bottom: 35px;
  left: 0;
  height: 2px;
  width: 0;
  opacity: 0;
  background-color: #04508E;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-gnavi > ul li a:hover:before {
    width: 100%;
    opacity: 1;
}

.c-gnavi ul li:last-of-type{
  padding: 0px;
}

.c-gnavi ul li:last-of-type a {
  background-color: #FCEE21;
  padding: 0px 36px;
}

.c-gnavi ul li:last-of-type a:before {
  content: "";
  display:none;
}

.c-gnavi ul li:last-of-type a:hover {
  background-color: #000000;
  color: #ffffff;
  opacity: 1;
}
.c-menu{
  display:none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer1 {
  padding: 43px 0px 55px;
  background-color: #04508E;
  color:#ffffff;
}

.c-footer1__left{
  width: 800px;
}

.c-footer1__right{
  width: 400px;
}

.c-footer1__left img{
  margin-bottom:25px;
  width:250px;
}

.c-footer1__left h3{
  font-size:2.4rem;
  line-height: 1.2;
  margin-bottom: 25px;
}

.c-footer1__item{
  margin-bottom: 25px;
}

.c-footer1__item h4{
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight:bold;
  padding-bottom: 10px;
}

.c-footer1__item p{
  font-size: 1.6rem;
  line-height: 1.2;
  padding-bottom:10px;
  font-weight: 500;
}

.c-footer1__right h2{
  font-size: 2.4rem;
  line-height: 1.2;
  padding-bottom: 17px;
  padding-top: 12px;
}

.c-footer1__right ul li{

}

.c-footer1__right ul li a{
  text-decoration: none;
  font-weight:500;
  font-size:1.6rem;
  line-height: 1.2;
  display:block;
  padding:14px 17px 14px 17px;
  position: relative;
  overflow: hidden;
}

.c-footer1__right ul li a:before{
  content:"•";
  display:block;
  position:absolute;
  color:#ffffff;
  left:3px;
  font-size:0.8rem;
  line-height: 1.2;
  top:50%;
  transform:translateY(-50%);
}

.c-footer1__right ul li a:after{
  content: "";
  position: absolute;
  border-bottom: 2px dashed #ffffff;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
}

.c-footer1__right ul li a:hover{
  opacity: 1;
  color:#ffffff;
  background-color: #06436d;
}

.c-footer2 {
  height: 308px;
  background-color: #ffffff;
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
body {
  font-family: "メイリオ", "Meiryo", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.4rem;
  min-width: 1200px;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.l-container {
  width: 1200px;
  margin: 0 auto;
}

.l-main {
  width: 800px;
  float: left;
}

.l-sidebar {
  width: 350px;
  margin-left: 50px;
  float: left;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
.l-btn {
  padding-bottom: 23px;
  position: relative;
}

.l-btn--news {
  text-align: right;
  padding-bottom: 45px;
}

/*
------------------------------------------------------------*/
.c-btn1 {
  width: 300px;
  height: 50px;
  background-color: #0071BC;
  display: flex;
  margin: 0 auto;
  font-size:1.7rem;
  line-height: 1;
  font-weight:600;
  align-items: center;
  justify-content: center;
  color:#ffffff;
  border-radius:4px;
}

.c-btn1:hover{
  text-decoration: none;
  opacity:1;
  color:#ffffff;
  background-color: #06436D;
}

.c-btn2 {
  width: 320px;
  height: 45px;
  color: #ffffff;
  background-color: #035c8e;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 600;
  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;
  border-radius: 4px;
  text-decoration: none;
  position: absolute;
  text-align: center;
  right: 0px;
}

.c-btn2:hover {
  opacity: 1;
  color: #ffffff;
  text-decoration: none;
}

.c-btn__top {
  position: fixed;
  right: 40px;
  bottom: 80px;
  z-index: 999;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.c-btn__top:hover {
  opacity: 1
}

.c-btn__top:hover img{
  opacity: 1;
}

.c-btn__top--none {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title1 {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 5px solid #FCEE21;
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: 2px;
  width: 100%;
}

.c-title1--diff {
  padding-bottom: 20px;
}

.c-title1--modify {
  color: #035C8E;
  padding-bottom: 30px;
}

.c-title1--page {
  font-size: 2.8rem;
  line-height: 1.8;
  margin-bottom: 77px;
}

.c-title1--blue {
  color: #0071BC;
}

.c-title1--factory {
  margin-bottom: 65px;
}

.c-title2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  height: 55px;
  background-color: #04508E;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
}

.c-title3{
  text-align: center;
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/

.c-table1 {
  width: 100%;
}

.c-table1 tr td {
  font-size: 1.6rem;
  line-height: 2;
}

.c-table1 tr td:nth-child(2) {
  padding-left: 25px;
}

.c-table2 {
  width: 100%;
}

.c-table2 tr td {
  font-size: 1.6rem;
  line-height: 2;
}

.c-table2 tr td:nth-child(1) {
  width: 160px;
}

.c-table2 tr td:nth-child(3) {
  padding-left: 15px;
}
.c-table3{
  width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
.c-table3 tbody:before{
  content:"@";
  display:block;
  line-height:20px;
  text-indent:-99999px;
}
.c-table3 th{
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 600;
  background-color: #e2efda;
  border: 1px solid #000;
  text-align: center;
  height: 40px;
}
.c-table3 td{
  font-size: 1.6rem;
  line-height: 1.2;
  border: 1px solid #666666;
  height: 30px;
  text-align: center;
}
.c-table3 td.c-left{
  text-align: left;
  padding-left: 15px;
}
.c-table3 tr .c-blue, .c-table3 tr .c-yellow{
  text-align: center;
}
.c-table4{
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
}
.c-tabs__content .c-listpost:first-child .c-table4 tr:nth-child(even){
  background-color: #d9d9d9;
}
.c-tabs__content .c-listpost:last-child .c-table4 tr:nth-child(even){
  background-color: #dfe9f1;
}
.c-table4 tr td{
  text-align: center;
  border: 1px solid #999999;
  font-size: 1.3rem;
  line-height: 1.2;
  height: 25px;
}
.c-table4 tr td.c-left{
  text-align: left;
  padding-left: 15px;
}
.c-table4 tr td.c-right{
  text-align: right;
}
.c-table4 tr td.c-blue1{
  color: #0000ff;
  font-size: 1.5rem;
  line-height: 1.2;
}
.c-table4 tr td.c-blue2{
  background-color: #dfe9f1;
}
.c-table4 tr td.c-white{
  background-color: #ffffff;
}

/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
post
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-post1 {
  /* width:400px; */
  padding: 128px 55px 70px;
  position: relative;
  float: left;
}

.c-post1:nth-child(odd) {
  background-color: #F2F2F2;
}

.c-post1:nth-child(even) {
  background-color: #FFFFFF;
}

.c-post1__title {
  position: absolute;
  top: -4%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.c-post1__text p:first-of-type {
  color: #04508E;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  padding-bottom: 51px;
}

.c-post1__text p:last-of-type {
  font-size: 1.8rem;
  text-align: justify;
  font-weight: 500;
  line-height: 1.8;
  overflow: hidden;
  -webkit-line-clamp: 7;
  text-overflow: ellipsis;
  max-height: 224px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: #000000;
}

.c-post2 {
  width: 385px;
  border-right: 4px solid #cccccc;
  border-bottom: 4px solid #cccccc;
  background-color: #ffffff;
  margin-right: 22px;
}

.c-post2:nth-child(3n) {
  margin-right: 0px;
}

.c-post2--diff {
  margin-bottom: 30px;
}

.c-post2__img {
  height: 300px;
  background-color: #E5E5E5;
  display:block;
}

.c-post2__img img{
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  -o-object-fit: cover;
  object-fit: cover;
}

.c-post2__text {
  padding: 20px 30px 23px;
}

.c-post2__text > p:nth-child(1) {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  padding-bottom: 18px;
  color:#000000;
}

.c-post2__text > a:nth-child(2) {
  font-size: 2.4rem;
  line-height: 1;
  color: #0071BC;
  font-weight: 600;
  margin-bottom: 26px;
  display: block;
  text-decoration: none;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 20px;
}

.c-post2__txt{
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  max-height: 135px;
  overflow: hidden;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color:#000000;
}
.c-post3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

.c-post3__date{
  display: flex;
  align-items:center;
}

.c-post3 .c-post3__date p {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-right: 24px;
  font-weight: 500;
  color: #000000;
}

.c-post3 .c-post3__date a{
  display: block;
  background-color: #c1272d;
  font-weight: 600;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.5;
  text-decoration: none;
  padding: 0 10px;
}

.c-post3 .c-post3__date a:first-of-type:hover {
  opacity: 1;
}

.c-post3 > a {
  margin-left: 30px;
  font-size: 1.7rem;
  line-height: 1.2;
  display: block;
  cursor: pointer;
  width:100%;
  color:#000000;
}

.c-post3 > a:hover {
  border-bottom: 1px solid #999999;
  text-decoration: none;
  color:inherit;
}

.c-post3:nth-child(5) {
  margin-bottom: 35px;
}

.c-post4 {
  width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  border: 1px solid #DDDDDD;
}

.c-post4__image {
  width: 110px;
  height: 110px;
  margin-right: 20px;
  display:flex;
  align-items:center;
  justify-content: center;
}

.c-post4__image img {
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.c-post4 > a {
  width: 230px;
  padding-top: 15px;
  line-height: 1.8;
}

.c-post4 > a:hover {
  color: inherit;
}

.c-post4--diff {
  margin-bottom: 50px;
}

.c-post4--modify {
  width: 100%;
  padding: 20px 15px;
  border-top: none;
  border-right: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}

.c-post4--modify:nth-child(1) {
  border-top: 1px solid #DDDDDD;
}

.c-post4--modify a {
  width: 200px;
}

.c-post4--modify .c-post4__image {
  width: 100px;
  height: 100px;
}

.c-post4--modify .c-post4__text {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 6px;
}

.c-post4--modify .c-post4__text span {
  position: relative;
  padding-left: 23px;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.c-post4--modify .c-post4__text span:after {
  content: "";
  position: absolute;
  left: 0px;
  background: url(../images/ico-clock.png) no-repeat;
  color: #9B9898;
  width: 16px;
  height: 16px;
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-post4--modify .c-post4__text > a {
  font-size: 1.4rem;
  line-height: 1.8;
  color: inherit;
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-post5 {
  width: 240px;
  float: left;
  margin-bottom: 20px;
}

.c-post5:hover {
  text-decoration: none;
  color:inherit;
}

.c-post5:nth-child(3n+2) {
  margin: 0px 40px;
}

.c-post5 p {
  margin: 15px 0px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.c-post5__image{
  height:160px;
}
.c-post5__image img{
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  -o-object-fit: cover;
  object-fit: cover;
}

/*------------------------------------------------------------
other
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-mainvisual {
  height: 800px;
  background-color: #ffffff;
}
.c-mainvisual .c-mainvisual__slide {
  height: 100%;
  overflow: hidden;
}

.c-mainvisual .c-mainvisual__slide .c-slide {
  height: 100%;
}

.c-mainvisual .c-mainvisual__slide .c-slide img {
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  -o-object-fit: cover;
  object-fit: cover;
}

.c-mainvisual__business img{
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  -o-object-fit: cover;
  object-fit: cover;
}

.c-mainvisual__profile {
  height: 600px;
  background: url("../images/top2_image1.png") no-repeat;
  background-size: cover;
}

.c-mainvisual__profile .c-mainvisual__text {
  text-align: center;
  padding-top: 100px;
}

.c-mainvisual__profile .c-mainvisual__text p:first-of-type {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  padding-bottom: 50px;
}

.c-mainvisual__profile .c-mainvisual__text p:last-of-type {
  font-size: 1.6rem;
  line-height: 2;
  color: #ffffff;
}

.c-mainvisual__detail img {
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  -o-object-fit: cover;
  object-fit: cover;
}

.c-mainvisual__factory {
  height: 350px;
  background: url("../images/mainvisual_factory.png") no-repeat;
  background-size: cover;
}

.c-mainvisual__factory .c-mainvisual__text {
  text-align: center;
  padding-top: 100px;
}

.c-mainvisual__factory .c-mainvisual__text p:first-of-type {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  padding-bottom: 25px;
}

.c-mainvisual__factory .c-mainvisual__text p:last-of-type {
  font-size: 1.6rem;
  line-height: 2;
  color: #ffffff;
}

.c-mainvisual__blog {
  height: 350px;
  background: url("../images/mainvisual_factory.png") no-repeat;
  background-size: cover;
  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;
}

.c-mainvisual__blog .c-mainvisual__text p {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  padding-bottom: 25px;
}

.c-mainvisual__policy img{
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  -o-object-fit: cover;
  object-fit: cover;
}

.c-widget form {
  margin-bottom: 50px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.c-widget form input[type=search] {
  width: 100%;
  border: none;
  background: #F2F2F2;
  height: 40px;
  padding: 0px 10px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 40px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.c-widget__cnt ul {
  padding: 10px 15px 25px;
}

.c-widget__cnt ul li a {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 5px 0px;
  display: block;
}

.c-widget__cnt ul li a:hover {
  text-decoration: none;
}

.c-widget--modify1 {
  margin-bottom: 60px;
}

.c-widget--modify2 .c-widget__cnt ul {
  padding: 0;
}

.c-widget--modify2 .c-widget__cnt ul li a {
  padding: 10px 18px;
  border-top: none;
  border-right: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  display: block;
}

.c-widget--modify2 .c-widget__cnt ul li:nth-child(1) a {
  border-top: 1px solid #DDDDDD;
}

.c-form__search {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #222222;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.c-form__search input[type=submit] {
  border: 0;
  background: url(../images/ico-search.png) no-repeat;
  text-indent: 40px;
  width: 16px;
  height: 16px;
}

.c-breadcum {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-breadcum ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap:wrap;
}

.c-breadcum ul li a {
  text-decoration: none;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1.2;
}

.c-breadcum ul li + li {
  padding-left: 8px;
}

.c-breadcum ul li:last-of-type {
  color: #0071BC;
}

.slick-list{
  height:100%!important;
}
.slick-track{
  height:100%!important;
}
.c-copyright{
  text-align: center;
  margin-top:50px;
  display:none;
  font-size: 1.4rem;
  line-height: 1.5;
}

.c-pagination{
  width:785px;
  margin: 0 auto;
  position:relative;
  margin-top: 10px;
  height:50px;
  display:flex;
  align-items: center;
}
.c-pagination a{
  font-size:1.8rem;
  line-height: 1.8;
  color:#4D4D4D;
  font-weight: 600;
}

.c-pagination a.is-next{
  position:absolute;
  right:35px;
  top:0px;
}

.c-pagination a.is-prev{
  position:absolute;
  left:0px;
  top:0px;
}

.c-gnavi > ul li.current-menu-item a:before{
  opacity: 1;
  width:100%;
}

.c-post2__img img {
	visibility: hidden;
}

.fadeIn {
	-webkit-animation: animat_show 0.8s;
	animation: animat_show 0.8s;
	visibility: visible !important;
}

@-webkit-keyframes animat_show{
	0%{opacity:0}
	100%{opacity:1}
}

/* Loading */
#loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#loading-wrapper #is-progress {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  top: 0;
  height: 3px;
  background-color: #04508E;
  z-index: 1005;
}

.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-top{
  padding-top:100px;
}
.p-top1 {
  padding-top: 160px;
  background-color: #04508E;
}

.p-top1 .p-top1__cnt {
  margin-top: 176px;
  background: url("../images/bg02.png");
  padding:20px 0px;
}

.p-top1 .p-top1__cnt .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0px;
}

.p-top2 {
  height: 600px;
  overflow: hidden;
  position: relative;
}
.p-top2__inner{
  padding-top:110px;
  width: 100%;
}

/*.p-top2__img{
  width: 100%;
  background:transparent;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}*/

.p-top2__img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.p-top2__img img{
  /*height:600px;
  width: 100%;
  font-family: 'object-fit: cover;';
  -o-object-fit: cover;
  object-fit: cover;*/
}

.p-top2__cnt {
  color: #ffffff;
  width: 910px;
  margin: 0 auto;
  padding-top: 67px;
}

.p-top2__cnt p {
  font-size: 1.8rem;
  line-height: 2.1;
  font-weight: 500;
  text-align: justify;
}

.p-top3 {
  padding-top: 70px;
  background-color:#fff;
}

.p-top3__inner {
  padding: 45px 0px;
  width: 100%;
}

.p-top4 {
  padding-top: 90px;
  background: url("../images/bg02.png");
}

.p-top4__cnt {
  padding-top: 75px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width:100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*------------------------------------------------------------
Css of profile page
------------------------------------------------------------*/
.p-profile{
  padding-top:100px;
}
.p-profile1 {
  background-color: #04508E;
  padding-top: 100px;
}

.p-profile1__cnt {
  background: url("../images/bg02.png");
}

.p-profile1__cnt p {
  width: 880px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  padding: 102px 0px;
}

.p-profile1__image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-profile1__image img {
  width: 20%;
  height: 100%;
  font-family: 'object-fit: cover;';
  -o-object-fit: cover;
  object-fit: cover;
}

.p-profile1__text {
  background-color: #ffffff;
  padding: 100px 0px;
}

.p-profile1__text h3 {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #04508e;
  text-align: center;
}

.p-profile1__text p {
  padding: 60px 0px 10px;
}

.p-profile2 {
  background-color: #04508E;
  padding-top: 54px;
}

.p-profile2__inner {
  background-color: #ffffff;
}

.p-profile2__cnt {
  width: 880px;
  margin: 0 auto;
  padding: 67px 0px;
}

.p-profile2__cnt dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #BFBFBF;
}

.p-profile2__cnt dl dt, .p-profile2__cnt dl dd {
  padding: 16px 0px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-profile2__cnt dl dt {
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #BFBFBF;
}

.p-profile2__cnt dl dd {
  width: 760px;
  padding-left: 25px;
}

.p-profile2__cnt dl:last-of-type {
  border-bottom: 1px solid #BFBFBF;
}

.p-profile3 {
  background-color: #04508E;
  padding-top: 54px;
}

.p-profile3__inner {
  background-color: #ffffff;
}

.p-profile3__cnt {
  width: 880px;
  margin: 0 auto;
  padding: 70px 0px 93px;
}

.p-profile3__cnt dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #BFBFBF;
}

.p-profile3__cnt dl dt, .p-profile3__cnt dl dd {
  padding: 16px 0px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-profile3__cnt dl dt {
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
  border-right: 1px solid #BFBFBF;
}

.p-profile3__cnt dl dd {
  width: 760px;
  padding-left: 25px;
}

.p-profile3__cnt dl dd p {
  line-height: 1.6;
}

.p-profile3__cnt dl:last-of-type {
  border-bottom: 1px solid #BFBFBF;
}

/*------------------------------------------------------------
Css of blog page
------------------------------------------------------------*/
.p-blog{
  padding-top: 100px;
}
.p-blog1 {
  padding: 100px 0px;
}

.p-blog1__wrapper{
  display: flex;
  flex-wrap: wrap;
}

.p-blog1__common {
  padding: 15px 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width:100%;
}

.p-blog1__common span {
  position: relative;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  padding: 0px 20px;
  display: block;
}

.p-blog1__common span:first-of-type {
  border-right: 1px solid #aaaaaa;
}

.p-blog1__common span:first-of-type:after {
  content: "";
  position: absolute;
  left: 0px;
  background: url("../images/ico-clock.png") no-repeat;
  color: #9B9898;
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-blog1 h2 {
  font-size: 3.4rem;
  line-height: 1.2;
  color: #04508e;
  padding-bottom: 10px;
  border-bottom: 2px solid #04508e;
  width:100%;
  margin-bottom: 50px;
}

.p-blog1__text {
  padding: 0px 0px 40px;
}

.p-blog1__text p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.p-blog1__text p:first-of-type {
  padding-bottom: 30px;
}

.p-blog1__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-blog1__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-blog1__social li {
  margin-right: 10px;
}

.p-blog1__note {
  padding: 30px 23px;
  background-color: #fafafa;
  margin: 50px 0px;
  display: flex;
  flex-wrap: wrap;
}

.p-blog1__note span{
  border-right: 1px solid #DCDCDC;
  line-height: 1;
}

.p-blog1__note span:last-of-type{
  border-right: none;
}

.p-blog1__pencil {
  position: relative;
  padding: 0px 15px 0px 20px;
}

.p-blog1__pencil:after {
  content: "";
  background: url("../images/ico-edit.png") no-repeat;
  left: 0;
  width: 15px;
  height: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-blog1__file {
  position: relative;
  padding: 0px 20px 0px 35px;
}

.p-blog1__file:after {
  content: "";
  background: url("../images/ico-folder.png") no-repeat;
  left: 15px;
  width: 15px;
  height: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-blog1__tag {
  position: relative;
  padding: 0px 20px 0px 35px;
}

.p-blog1__tag:after {
  content: "";
  background: url("../images/ico-tag.png") no-repeat;
  left: 15px;
  width: 15px;
  height: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-blog1__comment {
  position: relative;
  padding: 0px 20px 0px 35px;
}

.p-blog1__comment:after {
  content: "";
  background: url("../images/ico-comment.png") no-repeat;
  left: 15px;
  width: 15px;
  height: 14px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-blog1__cnt {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.p-blog1__cat {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-blog1__notfound{
  text-align: center;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.2;
}

/*------------------------------------------------------------
Css of business page
------------------------------------------------------------*/
.p-business{
  padding-top:100px;
}
.p-business1{
  background-color: #04508E;
  padding-top: 60px;
}
.p-business1__inner{
  width: 100%;
}
.p-business1__cnt{
  background-color: #ffffff;
  padding: 75px 0px 0px;
}
.p-business1__box{
  width: 1010px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-business1__left{
  width: 450px;
  margin-right: 110px;
}
.p-business1__right{
  width: 450px;
}
.p-business1__text h3{
  font-size: 1.8rem;
  line-height: 1.8;
  color: #04508e;
  padding-bottom: 2px;
  border-bottom: 1px solid #808080;
}
.p-business1__txt{
  padding: 10px 0px 65px;
}
.p-business1__txt p{
  font-size: 1.6rem;
  line-height: 2.1;
  color: #333333;
}
.p-business1__txt h4{
  font-size: 1.6rem;
  line-height: 2.1;
  color: #036eb8;
  margin-top: 20px;
}
.p-business1__txt ul li{
  padding-left: 20px;
  position: relative;
  font-size: 1.6rem;
  line-height: 2.1;
  color: #333333;
}
.p-business1__txt ul.p-business1__point li:before{
  content:"・";
  position: absolute;
  top:50%;
  left: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-business1__square dl{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-business1__square dl dt, .p-business1__square dl dd{
  padding-left: 30px;
  font-size: 1.6rem;
  line-height: 2.1;
  color: #333333;
  position: relative;
  font-weight: 500;
}
.p-business1__square dl dt:before, .p-business1__square dl dd:before{
  content:"□";
  position: absolute;
  top:50%;
  left: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-business1__square dl dt{
  width: 40%;
}
.p-business1__square dl dd{
  width: 60%;
}
.p-business1__square dl dt.c-w100{
  width: 100%;
}
.p-business1__txt--diff{
  padding-left: 20px;
}
.p-business2{
  background-color: #04508E;
  padding-top: 60px;
}
.p-business2__inner{
  width: 100%;
}
.p-business2__cnt{
  background-color: #ffffff;
  padding: 75px 0px;
}
.p-business2__cnt ul{
  width: 100%;
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: center;
}
.p-business2__cnt ul li{
  padding-left: 20px;
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
.p-business2__cnt ul li:before{
  content:"●";
  position: absolute;
  top:50%;
  left: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-business2__cnt ul li:first-child{
  margin-right: 30px;
}
.p-business2__cnt ul li:first-child:before{
  color: #ffc000;
}
.p-business2__cnt ul li:last-child:before{
  color: #00b0f0;
}

/*------------------------------------------------------------
Css of factory page
------------------------------------------------------------*/
.p-factory{
  padding-top:100px;
}
.p-factory1 {
  background-color: #04508E;
  padding-top: 60px;
}

.p-factory1__inner {
  width: 100%;
}

.p-factory1__cnt {
  background-color: #ffffff;
  padding: 75px 0px;
}

.p-factory1__cnt p {
  width: 880px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}

.p-factory2 {
  background: url("../images/bg02.png");
  padding: 60px 0px 5px;
}

.p-factory2__inner {
  width: 100%;
  margin-bottom: 55px;
}

.p-factory2__cnt p {
  width: 880px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}

.p-factory3 {
  background-color: #04508E;
  padding-top: 60px;
}

.p-factory3__inner {
  width: 100%;
}

.p-factory3__wrapper {
  background-color: #ffffff;
}

.p-factory3__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 65px 0px 60px;
  width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid #808080;
}

.p-factory3__cnt:last-of-type {
  border-bottom: none;
}

.p-factory3__text {
  font-size: 1.6rem;
  line-height: 2;
}

.p-factory3__text h3 {
  font-size: 1.8rem;
  color: #04508E;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid #808080;
}

.p-factory3__left {
  width: 450px;
  margin-right: 50px;
}

.p-factory3__right {
  width: 500px;
}

.p-factory3__txt {
  padding: 10px 0px;
  margin-bottom: 15px;
}

.p-factory3__txt h4 {
  font-size: 1.6rem;
  line-height: 2;
}

.p-factory4 {
  height: 500px;
}

/*------------------------------------------------------------
Css of facility page
------------------------------------------------------------*/
.p-facility{
  padding-top: 100px;
}
.p-facility1 {
  padding-top: 75px;
  background-color: #04508E;
}
.p-facility1__inner {
  width: 100%;
}
.p-facility1__cnt{
  background-color: #ffffff;
  padding-top: 60px;
}


/*------------------------------------------------------------
Css of policy page
------------------------------------------------------------*/
.p-security{
  padding-top: 100px;
}
.p-policy1 {
  padding-top: 75px;
  background-color: #04508E;
}

.p-policy1__inner {
  width: 100%;
}

.p-policy1__wrapper {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 140px;
}

.p-policy1__cnt {
  width: 800px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}

.p-policy1__cnt p {
  padding-bottom: 30px;
}

.p-policy1__cnt p:last-of-type {
  float: right;
  padding-top: 10px;
  padding-bottom: 0px;
  text-align: right;
}
/*------------------------------------------------------------
Css of contact page
------------------------------------------------------------*/
.p-contact{
  padding-top: 100px;
}
.p-contact1 {
  padding-top: 75px;
  background-color: #04508E;
}
.p-contact1__inner{
  width: 100%;
}
.p-contact1__wrapper{
  width: 100%;
  background-color: #ffffff;
}
.p-contact1__cnt{
  padding-top: 60px;
  font-family: "Noto Sans JP", sans-serif;
  color: #4d4d4d;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__cnt{
    padding: 40px 20px 0px;
  }
}
.p-contact1__text{
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.75;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__text{
    padding-bottom: 40px;
  }
}
.p-contact1__form{
  padding: 40px 30px 0px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form{
    padding: 40px 0px 0px;
  }
}
.p-contact1__form dl{
  display: flex;
  flex-wrap: wrap;
}
.p-contact1__form dl + dl{
  margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form dl + dl{
    margin-top: 20px;
  }
}
.p-contact1__form dl:nth-child(6){
  padding-bottom: 40px;
  border-bottom: 1px solid #d6d6d6;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form dl:nth-child(6){
    padding-bottom: 20px;
  }
}
.p-contact1__form dl:nth-child(6) dt{
  align-items: flex-start;
  padding-top: 15px;
}
.p-contact1__form dl dt{
  width: 360px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form dl dt{
    width: 100%;
    padding-bottom: 5px;
  }
}
.p-contact1__form dl dt span{
  color: #ea5614;
}
.p-contact1__form dl dd{
  width: calc(100% - 360px);
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__form dl dd{
    width: 100%;
  }
}
.p-contact1__form dl dd input[type="text"], .p-contact1__form dl dd input[type="email"]{
  width: 100%;
  height: 50px;
  background: #f2efef;
  padding: 15px;
  border: 1px solid #d6d6d6;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.75;
}
.p-contact1__form dl dd textarea{
  width: 100%;
  background: #f2efef;
  padding: 10px 15px;
  border: 1px solid #d6d6d6;
  height: 400px;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.75;
}
.p-contact1__form dl dd input.wpcf7-not-valid, .p-contact1__form dl dd textarea.wpcf7-not-valid{
  border: 1px solid #ff0000;
}
::-webkit-input-placeholder { 
  font-size: 1.6rem;
  line-height: 1.625;
  color: #b2b2b2;
}
:-ms-input-placeholder { 
  font-size: 1.6rem;
  line-height: 1.625;
  color: #b2b2b2;
}
::-ms-input-placeholder { 
  font-size: 1.6rem;
  line-height: 1.625;
  color: #b2b2b2;
}
::placeholder { 
  font-size: 1.6rem;
  line-height: 1.625;
  color: #b2b2b2;
}
.p-contact1__submit{
  margin-top: 60px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__submit{
    margin-top: 30px;
  }
}
.p-contact1__submit input[type="submit"]{
  background-color: #00a99d;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 2.36111111111;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}
.p-contact1__submit p{
  position: relative;
}
.wpcf7-spinner{
  position: absolute!important;
  left: 50%;
  margin: 0!important;
  transform: translateX(-50%);
  bottom: -40px;
}
.p-contact1__box{
  background-color: #f2efef;
  padding: 50px 90px 60px 70px;
  margin-top: 120px;
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__box{
    padding: 30px 20px 25px 20px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.p-contact1__left{
  width: 305px;
  margin-right: 140px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__left{
    width: 100%;
    margin-right: 0;
  }
}
.p-contact1__right{
  width: calc(100% - 445px);
}
@media only screen and (max-width: 1199px) {
  .p-contact1__right{
    width: 100%;
    padding-top: 25px;
  }
}
.p-contact1__left h3{
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__left h3{
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
.p-contact1__left h3 span{
  position: relative;
  z-index: 10;
}
.p-contact1__left h3 span:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: #fcee21;
  bottom: 0px;
  left: 0;
  z-index: -1;
}
.p-contact1__box dl{
  display: flex;
  padding-top: 10px;
  justify-content: center;
  align-items: center;
}
.p-contact1__box dl dt{
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #303030;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3461538462;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__box dl dt{
    font-size: 1.4rem;
  }
}
.p-contact1__box dl dd{
  padding-left: 20px;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__box dl dd{
    font-size: 1.4rem;
  }
}
.p-contact1__right h3{
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 3px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__right h3{
    font-size: 1.6rem;
  }
}
.p-contact1__phone{
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 5rem;
  line-height: 1.75;
  font-weight: bold;
  padding-top: 5px;
  color: #303030;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__phone{
    font-size: 3rem;
  }
}
.p-contact1__phone a{
  position: relative;
  padding-left: 65px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__phone a{
    padding-left: 40px;
  }
}
.p-contact1__phone a:before{
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  background: url('https://uedadenki-ss.co.jp/wp-content/uploads/2025/11/ico-phone.svg') no-repeat;
  left: 0;
  top: 22px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__phone a:before{
    width: 33px;
    height: 33px;
    top: 12px;
  }
}
.p-contact1__phone a:hover{
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
}
.p-contact1__phone a span{
  font-size: 2rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 600;
  height: 100%;
  display: inline;
  padding-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .p-contact1__phone a span{
    font-size: 1.3rem;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}
.js-fade01{
  opacity: 0;
  -webkit-transform: translate(0, 60px);
  -ms-transform: translate(0, 60px);
  transform: translate(0, 60px);
}
.is-fade01{
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.is-transition{
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
.is-transition1{
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.is-transition2{
  -webkit-transition: 1.2s;
  transition: 1.2s;
}
.is-transition3{
  -webkit-transition: 1.6s;
  transition: 1.6s;
}
.c-bold{
  font-weight: 600;
}
.c-blue{
  color: #00b0f0;
}
.c-gray{
  background-color: #c0c0c0;
}
.c-gray1{
  background-color: #d9d9d9;
}
.c-yellow{
  color: #ffc000;
}
.c-vertical{
  width: 10px;
  word-wrap: break-word;
  padding: 0px 20px;
}
.c-vertical1{
  width: 10px;
  word-wrap: break-word;
  padding: 0px 10px;
}
.c-tabs{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.c-tabs li{
  width: 498px;
  text-align: center;
  background-color: #04508e;
  opacity: 0.5;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.2;
  height:60px;
  font-weight: 600;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.c-tabs li:first-child{
  margin-right:4px;
}
.c-tabs li.is-active{
  height:90px;
  opacity: 1;
}
.c-tabs li span{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  height:100%;
  cursor: pointer;
}
.c-listpost__inner{
  width: 100%;
  position: relative;
}
.c-listpost .c-listpost__cnt .c-listpost__inner:before{
  content:"";
  position: absolute;
  width: 100%;
  height: 80%;
  background-color: #ffffff;
  z-index: 1;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-listpost .c-listpost__cnt:nth-child(odd) .c-listpost__inner:before{
  background-color: #ffffff;
}
.c-listpost .c-listpost__cnt:nth-child(even) .c-listpost__inner:before{
  background-color: #e6e6e6;
}
.c-listpost__box{
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0px;
  justify-content: center;
  align-items: center;
  position: relative;
}
.c-listpost__left{
  margin-right: 50px;
  width: 400px;
  position: relative;
  z-index: 2;
}
.c-listpost__right{
  position: relative;
  z-index: 2;
  width: 550px;
}
.c-tabs__content .c-listpost__cnt:nth-child(odd){
  background-color: #e5e5e5;
}
.c-tabs__content .c-listpost{
  display: none;
}
.c-tabs__content .c-listpost.is-active{
  display: block;
}

/*Media query 1200px*/
@media (min-width: 1200px){
  .container, .container-lg, .container-md, .container-sm, .container-xl{
    max-width: 1200px;
  }
}

@media only screen and (max-width: 1200px) {
  .c-header__logo{
    width:17%;
  }
  .c-gnavi{
    width: 83%;
  }
}

/*Media query 767px*/
@media only screen and (max-width: 1024px) {
  .c-header{
    height:65px;
    padding: 0 15px;
  }
  .c-header__logo h1 img{
    height:50px;
  }
  .c-gnavi{
    display:none;
    width:100%;
    float:none;
    height:auto;
  }
  .c-gnavi ul{
    position: fixed;
    left:0;
    overflow: scroll!important;
    background-color:#fff;
    width:100%;
    height:100%;
    display:block;
  }
  .c-menu{
    display:block;
    width:70px;
    height:65px;
    position:absolute;
    background-color: #009ef0;
    right:0px;
    top:0px;
    display:flex;
    justify-content: center;
  }
  .c-menu:after{
    content: "MENU";
    color: #fff;
    position: absolute;
    left: 28px;
    bottom: 21px;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: .5px;
    left: 22px;
    bottom: 13px;
    font-size: 0.8rem;
  }
  .c-menu__icon:nth-child(1) {
    top: 17px;
    left:23px;
  }
  .c-menu__icon:nth-child(2) {
    top: 25px;
    left:23px;
  }
  .c-menu__icon:nth-child(3) {
    width: 14px;
    left: 23px;
    top: 33px;
  }
  .c-menu__icon {
    position: absolute;
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  body.menu-open .c-menu__icon{
    width: 22px;
    top: 25px;
  }
  body.menu-open .c-menu__icon:nth-child(1){
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  body.menu-open .c-menu__icon:nth-child(2){
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  body.menu-open .c-menu__icon:nth-child(3){
    display: none;
  }
  .c-headersp .c-gnavisp{
    position:fixed;
    top:65px;
    background-color:#009ef0;
    width:100%;
    z-index: 1000;
  }

  .c-headersp .c-gnavisp ul{

  }
  .c-headersp .c-gnavisp ul li{
    
  }
  .c-headersp .c-gnavisp ul li a{
    padding: 20px 20px;
    display:block;
    border-top:1px solid #ffffff;
    font-size:1.6rem;
    line-height: 1;
    font-weight:600;
    color:#ffffff;
  }

  .c-headersp .c-gnavisp ul li a:hover{
    text-decoration: none;
  }

  .p-top{
    padding-top:65px;
  }
  .c-mainvisual{
    height:auto;
  }
  .p-top1{
    padding: 80px 0px 0px;
  }
  .c-title1{
    font-size:3rem;
    border-bottom: 3px solid #FCEE21;
    padding-bottom: 15px;
  }
  .p-top1 .p-top1__cnt{
    margin-top:120px;
  }
  .c-post1{
    padding:75px 30px 90px;
  }
  .c-post1__title{
    top: -5%;
  }
  .c-post1__title img{
    width:150px;
    height:auto;
  }
  .c-post1__text p:first-of-type{
    font-size:2rem;
    padding-bottom:30px;
  }
  .c-post1__text p:last-of-type{
    font-size:1.4rem;
  }
  .p-top2{
    height:auto;
  }
  .p-top2__inner{
    padding-top: 55px;
  }
  .p-top2__img img{
    height: 326px;
  }
  .p-top2__cnt{
    padding:55px 15px 75px;
    width: 100%;
  }
  .p-top2__cnt p{
    font-size:1.4rem;
  }
  .p-top3{
    padding: 70px 30px 0px;
  }
  .p-top4{
    padding: 70px 30px 0px;
  }
  .p-top4__cnt{
    padding-top: 50px;
  }
  .c-post2{
    width:48%;
    margin-bottom: 30px;
    margin-right:0px;
  }
  .c-header__logo{
    width: 150px;
  }
  .c-footer1{
    padding: 35px 20px;
  }
  .c-footer1__left{
    width:100%;
  }
  .c-footer1__right{
    width:100%;
  }

  .c-post3 p{
    font-size: 1.4rem;
  }
  .c-post3 a:first-of-type{
    font-size: 1.4rem;
  }
  .c-post3 a:last-of-type{
    font-size:1.4rem;
  }
  .c-post2__text > p:nth-child(1){
    font-size:1.4rem;
  }
  .c-post2__text > a:nth-child(2){
    font-size:1.8rem;
    margin-bottom: 13px;
  }
  .c-post2__txt{
    font-size: 1.4rem;
    max-height: 105px;
  }
  .p-profile{
    padding-top:65px;
  }
  .p-blog{
    padding-top:65px;
  }
  .l-main{
    width:100%;
  }
  .l-sidebar{
    width:100%;
    margin-left: 0;
    margin-bottom: 50px;
  }
  .c-post4--modify{
    width:100%;
  }
  .c-post4--modify .c-post4__image{
    width:15%;
  }
  .c-post4--modify .c-post4__image img{
    width:100px;
    height:100px;
  }
  .c-post4--modify .c-post4__text{
    width:85%;
  }
  .c-post4--modify .c-post4__text a{
    width:100%;
  }
  .c-post5{
    width:32%;
  }
  .c-post5:nth-child(3n+2){
    margin: 0px 2%;
  }
  .p-factory{
    padding-top:65px;
  }
  .p-business{
    padding-top:65px;
  }
  .p-factory3__left{
    width:45%;
    margin-right:5%;
  }
  .p-factory3__right{
    width:50%;
  }
  .p-factory2__cnt p{
    width: 100%;
  }
  .c-copyright{
    display:block;
    margin-top: 30px;
  }
  .c-pagination{
    width:100%;
  }
  .c-pagination a.is-next{
    right:0px;
  }
  .c-breadcum {
    padding: 20px 0px 0px;
    height: auto;
  }
  .p-security{
    padding-top: 65px;
  }
  .p-contact{
    padding-top: 65px;
  }
  .c-footer1__left img{
    width:150px;
  }
  .p-blog1__cat{
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  .p-top1 .p-top1__cnt{
    margin-top:80px;
    padding:0;
  }
  .p-top1{
    padding: 50px 20px;
  }
  .c-post1__title img{
    width:100px;
    height:100px;
  }
  .c-post1__title{
    top: 0%;
  }
  .c-title1{
    padding-bottom: 10px;
    width: 100%;
    margin: 0 auto;
    font-size: 2.5rem;
  }
  .c-post2{
    width:100%;
    border: 1px solid #cccccc;
    margin-bottom:20px;
  }
  .c-post3{
    display:block;
  }
  .c-post3 > a{
    margin-left:0;
  }
  .c-post3 .c-post3__date p{
    font-weight: bold;
    font-size: 1.4rem;
    margin-right: 15px;
  }
  .c-post3__date{
    margin-bottom: 15px;
  }
  .c-btn2{
    width: 250px;
    margin: 0 auto;
    position: relative;
    font-size: 1.4rem;
  }
  .p-profile1__text p{
    width:100%;
  }
  .p-profile2__cnt dl dt{
    width:30%;
  }
  .p-profile2__cnt dl dd{
    width:70%;
  }
  .p-profile3__cnt dl dt{
    width:30%;
  }
  .p-profile3__cnt dl dd{
    width:70%;
  }
  .p-profile1{
    padding: 50px 0px 0px;
  }
  .p-profile1__cnt p{
    padding: 40px 20px;
  }
  .l-sidebar{
    margin-bottom: 40px;
  }
  .c-post4{
    width:100%;
    padding:10px;
  }
  .c-post4__image{
    width: 35%;
    margin-right: 5%;
  }
  .c-post4__image img{
    width:110px;
    height:110px;
  }
  .c-post4 > a{
    width:60%;
  }
  .c-post5{
    width:100%;
  }
  .c-post5:nth-child(3n+2){
    margin:0 0 20px;
  }
  .c-post4--modify .c-post4__image{
    width:35%;
  }
  .c-post4--modify .c-post4__text{
    width:60%;
  }
  .c-post4__image img{
    width:90px;
    height:90px;
  }
  .c-post4--modify .c-post4__image img{
    width:90px;
    height:90px;
  }
  .c-mainvisual__detail{
    height:180px;
  }
  .c-breadcum ul li a {
    font-size:1.3rem;
  }
  .p-blog1{
    padding: 35px 20px;
  }
  .c-title2{
    height: 40px;
    font-size:1.4rem;
  }
  .p-blog1 h2{
    font-size:2.5rem;
    margin-bottom:30px;
  }
  .c-widget form{
    margin-bottom: 35px;
    margin-top: 15px;
  }
  .c-widget--modify1{
    margin-bottom: 40px;
  }
  .p-business1__box{
    width: 100%;
  }
  .p-business1__cnt{
    padding: 45px 20px;
  }
  .p-business1__left{
    width: 100%;
    margin-right: 0;
  }
  .p-business1__right{
    width: 100%;
  }
  .p-business1__text h3{
    font-size: 1.4rem;
  }
  .p-business1__txt ul li{
    font-size: 1.2rem;
  }
  .p-business1__txt h4{
    font-size: 1.2rem;
  }
  .p-business1__txt--diff{
    padding-left: 0;
  }
  .p-business1__square dl dt, .p-business1__square dl dd{
    font-size: 1.2rem;
  }
  .p-business1__txt p{
    font-size: 1.2rem;
  }
  .p-business2__cnt{
    padding: 40px 15px;
  }
  .p-business2__cnt ul li{
    font-size: 1.2rem;
  }
  .p-business1__txt{
    padding: 10px 0px 35px;
  }
  .p-factory1__cnt{
    padding: 45px 20px;
  }
  .p-factory2__cnt p{
    padding: 0px 20px;
  }
  .p-factory3__cnt{
    flex-direction: column;
    padding: 65px 20px 60px;
  }
  .p-factory3__left{
    width: 100%;
    margin-right: 0;
  }
  .p-factory3__right{
    width: 100%;
  }
  .p-factory4{
    height:300px;
  }
  .p-profile2__cnt{
    width:100%;
    padding: 50px 0px;
  }
  .p-profile2__inner{
    padding: 0 20px;
  }
  .p-profile3__cnt{
    width:100%;
  }
  .p-profile3__inner{
    padding: 0 20px;
  }
  .c-table2 tr td:nth-child(2){
    width:30px;
  }
  .c-table1 tr td:nth-child(1){
    width:70px;
  }
  .c-table3{
    width: 100%;
  }
  .c-table3 th{
    font-size: 1.2rem;
  }
  .c-table3 td{
    font-size: 1.2rem;
  }
  .p-top2__inner{
    padding: 55px 20px 55px;
  }
  .p-top2__img img{
    height: 431px;
  }
  .p-top2__cnt{
    padding:40px 0px 0px;
  }
  .p-top3{
    padding: 45px 20px 0px;
  }
  .p-top3__inner {
    padding: 35px 0px 0px;
  }
  .p-top4{
    padding: 45px 20px 0px;
  }
  .p-top4__cnt{
    padding-top: 35px;
    padding-bottom: 25px;
  }
  .l-btn{
    padding-left: 20px;
    padding-right: 20px;
  }
  .c-btn1{
    width: 100%;
    height: 45px;
    font-size: 1.4rem;
  }
  .c-post2__text{
    padding: 20px 20px 23px;
  }
  .c-btn__top{
    right: 20px;
  }
  .c-post2__txt{
    max-height: 100px;
  }
  .c-mainvisual__profile{
    height:500px;
  }
  .c-mainvisual__business{
    height:350px;
  }
  .c-title1--page{
    line-height: 1.2;
    font-size:2.5rem;
    margin-bottom: 50px;
    width: calc(100% - 40px);
  }
  .p-profile1__text{
    padding:50px 0px 0px;
  }
  .p-factory2{
    padding: 50px 0px 5px;
  }
  .p-factory2__inner{
    margin-bottom: 50px;
  }
  .p-factory1{
    padding-top: 50px;
  }
  .p-factory3{
    padding-top: 50px;
  }
  .p-factory3__cnt{
    padding: 50px 20px 50px;
  }
  .p-blog1__text{
    padding: 0px 0px 30px;
  }
  .c-footer1__left h3{
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .c-footer1__item{
    margin-bottom: 20px;
  }
  .c-footer1__item h4{
    font-size: 1.4rem;
  }
  .c-footer1__item p{
    font-size: 1.4rem;
  }
  .c-footer1__right h2{
    font-size: 2rem;
    padding-bottom: 12px;
  }
  .c-footer1__right ul li a{
    font-size: 1.4rem;
  }
  .c-pagination a{
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .p-policy1__cnt{
    width:100%;
    padding:0 20px;
  }
  .c-mainvisual__policy{
    height:180px;
  }
  .c-breadcum {
    padding: 20px 20px 0px;
  }
  .p-facility{
    padding-top: 65px;
  }
  .c-tabs li{
    width: 49%;
    font-size: 1.6rem;
  }
  .c-tabs li:first-child{
    margin-right: 2%;
  }
  .c-tabs li.is-active{
    height: 60px;
  }
  .c-listpost__box{
    width: 100%;
  }
  .c-listpost__left{
    width: 100%;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .c-listpost__right{
    width: 100%;
  }
  .c-listpost__box{
    flex-direction: column;
  }
  .c-listpost__inner{
    padding: 0 15px;
  }
  .c-listpost__inner:before{
    display: none;
  }
  .p-facility1{
    padding-top: 40px;
  }
  .p-business1{
    padding-top: 40px;
  }
  .p-contact1{
    padding-top: 40px;
  }
}
