@charset "utf-8";


/* 共通 */
html {
	overflow-x: hidden;
	width: 100vw;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
body {
	text-align: center;
}

main {
	overflow-x: hidden;
}

.top-img {
	width: 100%;
	height: 100%;
}
@media screen and (max-width:768px){
	.top-img {
    width: 200vw;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
	}
}

.pc-img {
	display: block;
}
.sp-img {
	display: none;
}

ruby {
	font-size: 2vw;
	font-weight: bold;
	margin-top: 7vw;
}

rt {
	font-size: 1vw;
	font-weight: normal;
}

ul {
	display: inline-flex;
}

li {
	list-style: none;
}

@media screen and (max-width:768px){
	ruby {
		font-size: 5vw;

	}
	rt {
		font-size: 4vw;
	}
	.pc-img {
		display: none;
	}
	.sp-img {
		display: block;

	}
	ul {
		display: flex;
		justify-content: center;
	}
}

/* header */

header {
	display: flex;
	justify-content: space-between;
}

header h1 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-contents {
	display: flex;
}

.header-content {
	display: block;
	text-align: right;
	position: relative;
	padding-right: 2.2vw;
}

.header-content h2 {
	font-size: 1.6vw;
	padding-top: 10px;
	margin: auto;
}

.header-content h2::before {
	content: '';
  display: block;
	position: absolute;
	width: 1.6vw;
	height: 1.6vw;
	background-image: url(/img/tel-logo.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	right: 15vw;
	top: 20%;
}

.header-content ul {
	display: flex;
	font-size: 1vw;
	padding-top: 10px;
}
.header-content li {
	padding: 0 20px;
	border-left: 1px solid #000;
}
.header-content li:last-child {
	border-right: 1px solid #000;
}

.header-contact {
	display: flex;
	background: #FF7F00;
	color: #fff;
	justify-content: center;
	align-items: center;
	padding: 1.3vw 2.4vw;
}
.header-contact:hover {
	transition: background-color 0.5s;
	background: #FEB700;
}
.header-contact img {
	background: #fff;
	border-radius: 50%;
	margin-right: 6px;
}
.header-contact p {
	font-size: 1.25vw;
}
@media screen and (max-width:768px){
	header {
		height: 55px;
	}
	.header-contact {
		margin-top: 3vw;
	}
	.header-contact p {
		font-size: 4vw;
	}
	.header-content h2::before {
		width: 8vw;
		height: 8vw;
		left: 5vw;
		top: 4vw;
	}
}

.header_inner {
  position: relative;
  padding: 15px 0;
}
.logo{
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px
}
.title{
  font-size: 2rem;
  font-weight: 600;
}
.nav {
	display: flex;
	height: 6vw;
	justify-content: right;
}
.nav_item a {
	text-decoration: none;
	display: inline-block;
}

.nav_item a.is-active {
	border-bottom: 1px solid blue;
}


@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px;
    top: 0;
    width: 300px;
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
		background-color: 000;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #000;
    text-decoration: none;
    color: #333;
		font-size: 4vw;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
		background: #000;
  }
  .hamburger_border_center {
    top: 20px;
		background: #000;
  }
  .hamburger_border_bottom {
    top: 26px;
		background: #000;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
		display: block;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
		background: #000;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
		background: #000;
  }
	.header-content h2 {
		font-size: 8vw;
	}
	.header-content ul {
		display: block;
	}
}

@media only screen and (min-width: 769px) {
  .header_inner{
    width: 100%;
		height: 6vw;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .logo{
    padding: 6px 0 6px 10px
  }
  .nav_list{
    text-align: right;
  }
  .nav_list li{
    display: inline-block;
    text-align: right;
    padding: 0 20px;
  }
  .nav_list li a{
    font-weight: 600;
		color: #000;
		text-decoration: none;
  }
}

/* footer */

.footer {
	background: #78BBE6;
}

.footer ul {
	padding-left: 0;
	padding: 1.25vw 0;
}

.footer li {
	padding: 0 1.3vw;
	border-left: 1px solid #000;
}
.footer li:last-child {
	border-right: 1px solid #000;
}

.footer li a {
	color: #000;
	font-size: 1vw;
	text-decoration: none;
}

.footer-logo-text {
	display: flex;
	padding: 15px 5px 15px 20px;
}

small {
	margin: auto 30% auto 20%;
}

@media screen and (max-width:768px){
	.footer ul {
		padding-left: 0;
		padding: 4.25vw 0;
	}
	.footer li a {
		font-size: 2.5vw;
	}
	small {
		margin: auto 5% auto 0;
	}
}

/* TOP */
.top-header {
	background: url(/img/top-header.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 9vw;
	padding-bottom: 15vw;
	padding-left: 8vw;
}

.top-header-left {
	width: 50%;
}

.top-header-text {
	font-size: 1.6vw;
}

.top-header-text__text {
	font-size: 2vw;
}

.top-header-text__ttl {
	font-size: 4vw;
}

.top-header-contactBtn {
	background-color: #FF7F00;
	width: 19vw;
	padding: 0.8vw 1.6vw;
}

.top-header-contactBtn:hover {
	transition: background-color 0.5s;
	background: #FEB700;
}

.top-header-contactBtn a {
	font-size: 1.25vw;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.top-header-contactBtn img {
	background: #fff;
	border-radius: 50%;
	margin-right: 0.7vw;
}

.greeting {
	width: 51vw;
	max-width: 740px;
	margin: 6.9vw auto 0;
}

.greeting p {
	font-size: 1.25vw;
	margin-top: 2.7vw;
	text-align: left;
}

.service {
	margin: 0 auto;
}

.service-main {
	display: flex;
	padding-top: 2.7vw;
	padding-bottom: 2vw;
}

.service-main__img {
	width: 19vw;
	height: auto;
	display: flex;
	margin-right: 2vw;
	color: #fff;
	justify-content: center;
	align-items: center;
	padding: 7vw 0;
}

.service-main__img:last-child {
	margin-right: 0;
}

.fire-inspection {
	background: url(/img/inspection.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.Firefighting-equipment-construction {
	background: url(/img/Facility.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.emergency-training {
	background: url(/img/Rectangle.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.Various-inspections {
	background: url(/img/Various-point.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.service-btn {
	display: inline-flex;
	font-size: 1.25vw;
	background-color: #0F92E5;
	padding: 0.8vw 1.6vw;
	color: #fff;
	border-radius: 0.3vw;
	align-items: center;
	justify-content: center;
}
.service-btn:hover {
	transition: background-color 0.5s;
	background: #0FB2E5;
}

.service-btn img {
	background-color: #fff;
	font-size: 4vw;
	border-radius: 50%;
	margin-right: 0.7vw;
}

.top-contact {
	margin-bottom: 7.8vw;
}

.contact-btn {
	margin: 2vw auto 0;
}

.contact-text {
	background-color: #DCE1E4;
	width: 40vw;
	font-size: 2.25vw;
	padding: 40px 0;
	margin: 0 auto 2vw;
}

.contact h1  {
	font-size: 1.6vw;
}

.contact p {
	font-size: 0.8vw;
}

@media screen and (max-width:768px){
	.top-header {
		padding-top: 5vw;
		padding-bottom: 5vw;
		padding-left: 3vw;
	}
	.top-header-left {
		width: 65%;
	}
	.top-header-text {
		font-size: 4vw;
		text-align: left;
		padding-left: 5vw;
	}
	.top-header-text__text {
		font-size: 4vw;
	}
	.top-header-contactBtn {
		width: 75%;
	}
	.top-header-contactBtn a {
	font-size: 4vw;
	padding: 2vw 0;
	}
	.top-header-contactBtn img {
		width: 30px;
		height: 30px;
	}
	.greeting {
		width: 90vw;
	}
	.greeting p {
		font-size: 4vw;
	}
	.service-main {
		display: block;
	}
	.service-main__img {
		width: 100%;
		height: 40vw;
		font-size: 4vw;
		margin-bottom: 20px;
	}
	.contact-text {
		width: 90%;
		font-size: 4vw;
	}
	.service-btn {
		width: 100%;
		font-size: 4vw;
		padding: 2vw 0;
	}
	.service-btn img {
		width: 30px;
		height: 30px;
	}
	.contact p {
		font-size: 4vw;
		padding: 2vw;
	}
}

/* about */
.about {
	width: 83vw;
	max-width: 1200px;
	text-align: left;
	margin: 7vw auto;
}

.about tr {
	border: 1px solid #DCE1E4;
}

.about-left {
	width: 19vw;
	font-size: 1.3vw;
	background-color: #78BBE6;
	padding-left: 1.7vw;
}

.about-right {
	font-size: 1.2vw;
	padding: 1vw 0 1vw 2vw;
}

.access {
	width: 68vw;
	max-width: 990px;
	margin: 6.9vw auto 6.9vw;
}
.access-main-address {
	margin-top: 2.7vw;
	margin-bottom: 2vw;
}
.access-main-address p {
	text-align: left;
	font-size: 1.2vw;
}

.access-main-shop {
	font-size: 1.6vw;
	font-weight: bold;
}

.access-map {
	display: flex;
}

.access-map iframe {
	width: 50%;
}

.access-route {
	background: #DCE1E4;
	margin: auto;
	padding: 3vw 6vw;
	font-size: 1.2vw;
	margin-left: 2vw;
}

.access-route-koiwa {
	margin-bottom: 1.3vw;
}

.access-route span {
	font-weight: bold;
}

.access-route__bus {
	position: relative;
	text-align: left;
	padding-left: 30px;
}

.access-route__bus::before {
	content: '';
  display: block;
	width: 1.6vw;
	height: 1.6vw;
	background-image: url(/img/bus.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	left: 7px;
}

@media screen and (max-width:768px){
	.about {
		width: 90vw;
	}
	.about-left {
		font-size: 4.25vw;
		width: 25vw;
	}
	.about-right {
		font-size: 4vw;
	}
	.access {
		width: 90%;
	}
	.access-route__bus::before {
		top: 3px;
		width: 3vw;
		height: 3vw;
	}
	.access-main-address p {
		font-size: 4vw;
	}
	.access-map {
		display: block;
	}
	.access-map iframe {
		width: 100%;
	}
	.access-route {
		font-size: 4vw;
		margin-left: 0;
	}
}

/* service */
.service {
	width: 69vw;
	max-width: 1200px;
	margin: 6.9vw auto 6.9vw;
}
.service-box {
	padding-bottom: 2.7vw;
}
.service-box img {
	width: 50%;
}
.service-box:nth-child(even){
	display: flex;
	flex-direction: row-reverse;
	gap: 2vw;
}
.service-box:nth-child(odd){
	display: flex;
	gap: 2vw;
}
.service-contents {
	margin: auto;
	text-align: left;
}
.service-ttl {
	border-left: 5px solid #0F92E5;
	padding-left: 5px;
}

@media(max-width : 750px ){
	.service {
		width: 90vw;
	}
	.service-box {
		margin-bottom: 30px;
	}
	.service-box:nth-child(even){
		flex-direction: column-reverse;
	}
	.service-box:nth-child(odd){
		flex-direction: column-reverse;
	}
	.service-box img {
		width: 100%;
		height: 100%;
	}
	.service-ttl {
		font-size: 4vw;
	}
	.service-text {
		font-size: 4vw;
		padding-top: 2vw;
	}
}

/* contact */
.contact {
	width: 65vw;
	max-width: 990px;
	margin: 6.9vw auto;
}

form{
  width:100%;
}
.item{
  overflow: hidden;
	display: flex;
	padding: 1.25vw 0;
}
.item-left {
	display: flex;
	width: 30%;
	align-items: center;
}
.required {
	background: #FF7F00;
	color: #fff;
	padding: 5px;
	margin-right: 10px;
}
.label{
  float: left;
}
.inputs{
  float: left;
	width: 70%;
}
input[type="text"],input[type="tel"],input[type="email"]{
	background: #DCE1E4;
  border-radius:5px;
  font-size: 1vw;
	width: 70%;
}
textarea{
	background: #DCE1E4;
  border-radius:5px;
  height: 27vw;
  font-size: 1vw;
}
.btn-area{
  text-align: center;
	width: 70%;
	background: #FF7F00;
	margin: 0 0 0 auto;
}
.btn-area:hover {
	transition: background-color 0.5s;
	background: #FEB700;
}
input[type="submit"] {
	color: #fff;
	width: 100%;
	padding: 0.7vw 0;
}

@media screen and (max-width:768px){
	.contact {
		width: 90vw;
	}
	.item{
		display: block;
	}
	.item-left {
		width: auto;
		padding-bottom: 15px;
	}
	input[type="text"],input[type="tel"],input[type="email"]{
		width: 100%;
		height: 30px;
	}
	.inputs{
		width: 100%;
	}
	.btn-area{
		width: 100%;
		margin-top: 15px;
	}
}

/* privacy */
.privacy {
	width: 69vw;
	max-width: 990px;
	text-align: left;
	margin: 6.9vw auto;
}

.pravacy-header__text {
	font-size: 1.25vw;
}

.privacy-poricy {
	margin-top: 2vw;
}

.privacy-poricy-header {
	display: flex;
	border-bottom: 1px solid #000;
	padding-bottom: 5px;
	align-items: center;
}

.privacy-poricy-number {
	display: flex;
	background-color: #0F92E5;
	font-size: 24px;
	color: #fff;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	margin-right: 5px;
}

.privacy-poricy-ttl {
	font-size: 1.6vw;
	font-weight: bold;
}

.privacy-poricy-text {
	padding-top: 0.7vw;
	font-weight: 500;
	font-size: 1.25vw;
}

.president-name {
	text-align: right;
	padding-top: 1vw;
	font-weight: 500;
}

@media screen and (max-width:1280px){

}

@media screen and (max-width:768px){
	.privacy {
		width: 90vw;
	}
	.privacy-poricy-number {
		font-size: 5.25vw;
		width: 5.5vw;
		height: 5.5vw;
	}
	.pravacy-header__text {
		font-size: 3.5vw;
	}
	.president-name {
		font-size: 11px;
	}
	.privacy-poricy-header {
		padding-bottom: 1.5vw;
	}
	.privacy-poricy-ttl {
		font-size: 3.25vw;
	}
	.privacy-poricy-text {
		font-size: 4vw;
	}
}
