@charset "utf-8";
/* CSS Document */
body {
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 16px;
	color: #333333;
	position: relative;
}
a {
	text-decoration: none;
	color: #333333;
}
img {
	max-width: 100%;
	vertical-align: bottom;
	display: block;
}
ul {
	list-style: none;
}
.wrap {
	width: 85%;
	margin: 0 auto;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex-2 {
	width: 48%;
}
.flex-3 {
	width: 31%;
}
.even {
	flex-direction: row-reverse;
}
.txt p {
	margin-bottom: 20px;
	line-height: 1.8;
}
.white {
	color: #fff;
}

/*==================================================
ヘッダー
===================================*/
#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
	background: rgba(255,255,255,1.00);
}
.header-wrap {
	display: flex;
	width: 98%;
	margin: 0 auto;
	align-items: center;
	padding: 10px 0;
}
.header-left {
	width: 15%;
}
.header-right {
	width: 85%;
	margin-left: auto;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}
.header-right .top {
	width: 20%;
}
.header-right .btm {
	width: 80%;
}
.header-right .tel {
	font-weight: 600;
	font-size: 28px;
	color: #68A8C4;
}
.header-right .tel:hover {
	opacity: 0.7;
}

/*==================================================
グローバルメニュー
===================================*/
.nav-menu-wrap {
	width: 100%;
	margin-left: auto;
}
.menu {
    position: relative;
    width: 100%;
	text-align: center;
}
.menu > li {
    float: left;
    width: 20%;
	position: relative;
}

.menu > li a {
    display: block;
	font-size: 16px;
	position: relative;
}

.menu > li:hover::before {
    content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #075F85;
	position: absolute;
	bottom: -12px;
	right: 50%;
	transform: translateX(50%);
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li a:hover {
    background: #68A8C4;
	color: #FFFFFF;
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #CDE8F3;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	z-index: 99;
}

li.menu__single:hover ul.menu__second-level {
    top: 60px;
    visibility: visible;
    opacity: 1;
	z-index: 99;
}
.menu__second-level li a {
	padding: 10px 0;
	color: #707070;
}





/*==================================================
メインビジュアル
===================================*/
#mv {
	position: relative;
	z-index: 1;
	padding-top: 80px;
	padding-bottom: 160px;
}
#mv::after {
	content: "";
	width: 80%;
	height: 50%;
	background: #CDE8F3;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
#mv .bg {
	background-image: url("img/top/mv.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 90%;
	max-width: 1710px;
	height: 80vh;
}
#mv .cp {
	position: absolute;
	bottom: 50%;
	right: 50px;
	transform: translateY(50%);
	z-index: 1;
}
#mv .cp div {
	color: #68A8C4;
	font-size: 32px;
	padding: 20px 10px;
	background: rgba(255,255,255,0.75);
	margin-bottom: 15px;
}


/*==================================================
ご挨拶
===================================*/
#greeting {
	margin-top: 160px;
}
#greeting .wrap {
	max-width: 1100px;
}
.index-ttl {
	text-align: center;
	font-size: 36px;
	color: #68A8C4;
	margin-bottom: 55px;
}


/*==================================================
消防設備の業務
===================================*/
#index-fire {
	margin-top: 150px;
}
#index-fire .wrap {
	max-width: 1500px;
}
.w-50 {
	width: 50%;
}
#index-fire .w-50 {
	margin-bottom: 80px;
}
#index-fire .w-50 .ttl {
	text-align: center;
	margin: 25px auto;
	color: #68A8C4;
	font-weight: 600;
	font-size: 28px;
}
#index-fire .w-50 p {
	max-width: 600px;
	margin: 0 auto;
}
#index-fire .reason {
	max-width: 1300px;
	margin: 0 auto;
	padding: 65px 0;
	background: rgba(205,232,243,0.60);
}


/*==================================================
電気工事の業務
===================================*/
#index-electric {
	margin-top: 150px;
}
#index-electric .wrap {
	max-width: 1100px;
}
.more {
	width: 70%;
	max-width: 280px;
	margin: 50px auto 0;
}
.more-btn {
	display: block;
	text-align: center;
	color: #FFFFFF;
	position: relative;
	z-index: 1;
	padding: 15px 0;
	background: #68A8C4;
}
.more-btn::after {
	content: "";
	width: 45px;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: 50%;
	right: 0;
	transform: translateY(50%);
	z-index: 1;
}
.more-btn:hover {
	opacity: 0.7;
}


/*==================================================
施工事例
===================================*/
#index-example {
	margin-top: 150px;
	padding: 50px 0;
	background: #CDE8F3;
}
#index-example .wrap {
	max-width: 1500px;
}
.ex-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.ex-item {
	width: 24%;
	max-width: 300px;
	margin-bottom: 20px;
}
.ex-item .date {
	color: #68A8C4;
	margin-bottom: 5px;
}



/*==================================================
対応エリア
===================================*/
#area {
	margin-top: 150px;
}
#area .wrap {
	max-width: 1100px;
}
#area .item {
	margin-bottom: 40px;
}
#area .item .ttl {
	font-size: 25px;
	color: #68A8C4;
	font-weight: 600;
	max-width: 300px;
	border-bottom: 1px solid #68A8C4;
	margin-bottom: 15px;
}


/*==================================================
お問い合わせ
===================================*/
#contact {
	margin-top: 100px;
	background: #F3F3F3;
	padding: 50px 0 80px;
}
#contact .wrap {
	max-width: 1100px;
}
#contact p {
	text-align: center;
	max-width: 520px;
	margin: 0 auto 45px;
}
.contact-btn {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.contact-btn .btn {
	width: 45%;
	max-width: 365px;
	background: #CDE8F3;
	padding: 15px 0;
	text-align: center;
	color: #68A8C4;
	font-size: 28px;
	font-weight: bold;
	position: relative;
}
.contact-btn .btn::before {
	content: "";
	width: 98%;
	height: 88%;
	border: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.contact-btn .btn::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-bottom: 10px solid #fff;
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 1;
}
.contact-btn .btn:hover {
	opacity: 0.7;
}


/*==================================================
フッター
===================================*/
#footer {
	background: #CDE8F3;
}
.footer-wrap {
	display: flex;
	max-width: 1300px;
	margin: 0 auto;
	padding: 100px 0 50px;
}
.footer-wrap .left {
	width: 65%;
}
.footer-wrap .right {
	width: 35%;
}
.footer-wrap .c-name {
	font-size: 36px;
	font-weight: bold;
	color: #68A8C4;
	margin-bottom: 25px;
}
.footer-wrap ul li {
	margin-bottom: 15px;
}
.copyright {
	text-align: center;
	padding: 20px 0;
	font-size: 14px;
}



/*==================================================
ページトップボタン
===================================*/
#page_top{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #075F85;
  border-radius: 50%;
	z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}



/*==================================================
会社概要ページ
===================================*/
#mainvsual {
	position: relative;
	z-index: 1;
	padding-top: 80px;
	padding-bottom: 160px;
}
#mainvsual::after {
	content: "";
	width: 80%;
	height: 50%;
	background: #CDE8F3;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
#mainvsual .bg {
	background-image: url("img/subpage.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 90%;
	max-width: 1710px;
	height: 60vh;
}
.page-ttl {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	font-size: 36px;
	color: #68A8C4;
	width: 80%;
	max-width: 390px;
	padding: 20px 0;
	margin: 0 auto;
	background: rgba(255,255,255,0.75);
	text-align: center;
}
.section {
	padding-top: 150px;
}
.section .wrap {
	max-width: 1100px;
}
.sec-ttl {
	font-size: 36px;
	color: #68A8C4;
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
	text-align: center;
}
.sec-ttl::after {
	content: "";
	width: 50px;
	height: 5px;
	background: #075F85;
	position: absolute;
	bottom: -5px;
	right: 50%;
	transform: translateX(50%);
	z-index: 1;
}
.info {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 65px;
}
.info .ttl {
	width: 240px;
	padding: 20px 0;
	color: #68A8C4;
	font-weight: bold;
	text-align: center;
	background: #CDE8F3;
	border-right: 1px solid #f3f3f3;
	border-bottom: 1px solid #f3f3f3;
}
.info ul {
	padding: 20px 0 20px 20px;
	width: calc(100% - 240px);
	border-bottom: 1px solid #f3f3f3;
}
.info ul li {
	margin-bottom: 10px;
}
.info ul li:last-child {
	margin-bottom: 0;
}



/*==================================================
お問い合わせページ
===================================*/
.contactform {
    margin: 60px auto;
    padding: 30px 0;
	max-width: 1000px;
}
.contact-table {
	width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse;
}
.contact-item,
.contact-body {
	padding: 20px 10px;
	border: 1px solid #ccc;
}

.contact-item {
  text-align: left; /* テキスト左寄せ */
  width: 25%; /* 横幅30%指定（グレーの背景色部分） */
	background: #CDE8F3;
	color: #68A8C4;
}

.contact-body {
  width: 75%; /* 横幅70%指定（白背景色部分） */
}
.form-text {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-textarea {
  width: 100%;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


.contact-submit {
  width: 250px; /* 横幅指定 */
  background-color: #CDE8F3; /* 背景色 */
  color: #075F85; /* 文字色 */
  font-weight: bold; /* 文字の太さ */
  display: block; /* インライン要素をブロック要素に変更 */
  margin: 0 auto; /* 中央寄せ */
  font-size: 20px; /* 文字の大きさ */
  padding: 15px 0; /* 内側の余白 */
  border-radius: 100vh; /* 角丸指定 */
  border: 1px solid #CDE8F3;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.contact-submit:hover {
	opacity: 0.7;
}
.contact-item span {
    background: #fff;
	color: #075F85;
    padding: 3px 10px;
    margin-left: 8px;
    font-size: 15px;
    border-radius: 50px;
    position: relative;
    top: -2px;
}



/*==================================================
施工事例ページ
===================================*/
#example {
	margin-bottom: 15rem;
}



/*==================================================
電気工事ページ
===================================*/
.flex-ttl {
	font-size: 25px;
	font-weight: 600;
	color: #68A8C4;
	margin-bottom: 20px;
	border-left: 5px solid #075F85;
	padding-left: 5px;
}
.flex-box {
	display: flex;
	flex-wrap: wrap;
}
.flex-box .flex-3 {
	width: 33.3%;
	padding: 0 10px;
	margin-bottom: 50px;
}
.flex-box .flex-3 img {
	margin: 0 auto;
}
.flex-box .ttl {
	font-size: 22px;
	font-weight: bold;
	color: #68A8C4;
	padding: 15px 0;
}
.content {
	margin-bottom: 60px;
}
.bg-blue {
	padding: 40px 0;
	background: #CDE8F3;
	margin: 90px auto;
}
.bg-blue .item {
	width: 90%;
	margin: 0 auto 30px;
}
.bg-blue .item:last-child {
	margin-bottom: 0;
}
.bg-blue .ttl {
	color: #68A8C4;
	font-size: 25px;
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 3px solid #68A8C4;
}
h3.ttl {
	padding: 20px 0 20px 30px;
	font-size: 25px;
	color: #FFFFFF;
	background: #68A8C4;
	border-left: 5px solid #075F85;
	margin-bottom: 40px;
}
.box {
	border: 1px solid #68A8C4;
	padding: 25px 3%;
	margin-bottom: 40px;
}
.box .ttl {
	font-size: 22px;
	margin-bottom: 10px;
	font-weight: bold;
	color: #68A8C4;
}
.fee {
	width: 80%;
	border-collapse: collapse;
	margin: 90px auto 0;
}
.fee th, .fee td {
	width: 33.3%;
	padding: 15px 0;
	text-align: center;
	border: 1px solid #DFDFDF;
}
.fee th {
	background: #CDE8F3;
}
.equipment {
	font-size: 20px;
	color: #68A8C4;
	font-weight: bold;
	margin-bottom: 10px;
}
.flow-item {
	padding: 20px;
	background: #CDE8F3;
	margin-bottom: 80px;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flow-item::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 30px solid #075F85;
	position: absolute;
	bottom: -60px;
	right: 50%;
	transform: translateX(50%);
	z-index: 1;
}
.flow-item:last-child::after {
	display: none;
}
.flow-item .img {
	width: 35%;
}
.flow-item .txtbox {
	width: 60%;
}
.flow-item .ttl {
	font-weight: bold;
	font-size: 20px;
	color: #68A8C4;
	margin-bottom: 10px;
}



/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.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);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}












