@charset "utf-8";
/* CSS Document */


/**********************************************************/
/* PC */
/**********************************************************/


/* general */
html{
  font-size: 62.5%; /*16px × 62.5% = 10px*/
  width: 100%;
}
body{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #333;
  font-feature-settings: "palt"; /* 自動カーニング */
  letter-spacing:0.15em;
  line-height: 1;
  min-width: 1240px;
}
img{
  max-width: 100%;
  vertical-align:bottom;
  image-rendering: -webkit-optimize-contrast;
}
a{
  color: #4B4B4B;
  text-decoration: none;
  transition: 0.3s;
}
a:hover{
  opacity: 1;
  transition: 0.3s;
}

/* ◎ここから */
* {
  box-sizing: border-box;
}

/* flex */
.flex{
  display: flex;
}
/*右から左へ横並び*/
.reverse{
  flex-direction: row-reverse;
}
.wrap{
  flex-wrap: wrap;
}
.flex-start{
  align-items: flex-start;
}
.pc{
  display: block;
}
.sp{
  display: none;
}


/* font-family */
.serif{
  font-family: 'Noto Serif', serif;
}
.roboto{
  font-family:'Roboto', sans-serif;
}
.gothic{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.semibold{
  font-weight:600;
}
.bold{
  font-weight: bold;
}
.inner {
  max-width: 1240px;
  margin: 0 auto;
}
.inner2 {
  max-width: 1340px;
  margin: 0 auto;
}
/**********************************
 縦書き
**********************************/
.vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.tate-chu-yoko{
  text-combine-upright: all;
-webkit-text-combine: horizontal;/*Safari */
}

/**********************************
 その場でふわっ
**********************************/

.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/**********************************
 下からふわっ
**********************************/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-50px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}
.fadeInTrigger,
.fadeUpTrigger,
.fadeLeftTrigger{
  opacity: 0;
}


/**********************************
 順番にアニメーション
**********************************/

.delay-time02{
animation-delay: 0.2s;
}
.delay-time04{
animation-delay: 0.4s;
}
.delay-time06{
  animation-delay: 0.6s;
}
.delay-time08{
  animation-delay: 0.8s;
}
.delay-time10{
  animation-delay: 1s;
}
.delay-time12{
  animation-delay: 1.2s;
}
.delay-time14{
  animation-delay: 1.4s;
}
.box{
	opacity: 0;
}
/**********************************
タイトル
**********************************/
.side-ttl{
  font-size: 1.5rem;
  font-weight: bold;
  border: solid 1px #333333;
  padding: 22px 18px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.sec-ttl{
  font-size: 2.2rem;
  font-weight: bold;
  color: #BE0000;
  position: relative;
  font-family:'Roboto', sans-serif;
  margin-bottom: 70px;
}
.sec-ttl::after{
  position: absolute;
  content: "";
  width: 437px;
  height: 1px;
  background: #707070;
  top: 45px;
  left:0;
}
.sec-sbttl{
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.8;
  font-family: 'Noto Serif', serif;
}

.inner-ttl{
  font-size: 3.6rem;
  font-weight: 500;
  position: relative;
  text-align: center;
  font-family: 'Noto Serif', serif;
}
.inner-ttl::after{
  position: absolute;
  content: "";
  width: 408px;
  height: 1px;
  background: #707070;
  top: 50px;
  left:50%;
  transform: translateX(-50%);
}
.inner-sbttl{
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 30px;
  color: #BE0000;
  text-align: center;
  font-family:'Roboto', sans-serif;
}
.top-ttl{
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  color: #fff;
}
.top-ttl::after{
  position: absolute;
  content: "";
  width: 437px;
  height: 1px;
  background: #fff;
  top: 50px;
  left:0;
}
.top-sbttl{
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
  margin-top: 48px;
}
/**********************************
header
**********************************/
header{
  position: fixed;/*fixedを設定して固定*/
  z-index: 99;/*最前面へ*/
  top:0;/*位置指定*/
  left:0;/*位置指定*/
	height: 100px;/*高さ指定*/
	width:100%;/*横幅指定*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:rgba(255,255,255,0.9);
	color:#fff;
	text-align: center;
  border-top:solid 15px #000;
  border-right:solid 15px #000;
}
header h1{
  width: 255px;
  margin-left: 50px;
}
header nav{
  margin-right: 50px;
}
header nav a:hover{
  opacity: 1;
}
.red{
  color: #BE0000;
}
header ul li{
  margin-right: 30px;
  padding-top: 10px;
  letter-spacing: 0;
}
.header-c_btn{
  padding-top: 0;
  margin:auto;
}
.header-c_btn a{
  margin-right: 0;
  background: #BE0000;
  box-shadow: 0px 0px 8px #909090;
  border-radius: 11px;
  padding: 10px 28px;
  color: #fff;
  display: block;
  border: solid 1px #BE0000;
}
.header-c_btn a:hover{
  background-color: #fff;
  color: #BE0000;
}

/**********************************
header.foonter内 縦のメニュー
**********************************/
nav ul a:hover{
  color: #be0000;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
  display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/ 
nav ul li{
  position: relative;
  margin-right: 30px;
}
.h--boder:hover{
  border-bottom: solid 2px #fff;
}
/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 25px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #4B4B4B;
  border-right: 2px solid #4B4B4B;
  transform: rotate(135deg);
}
/*== 2階層目の設定 */
.has-child.has-child-1::before{
  left: 35px;
}
/*下の階層を持っているulの指定*/
nav li.has-child ul{
  position: absolute;
  left:0;
  top:40px;
  z-index: 4;
  background:#000;
  width:180px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
nav li.has-child ul li{
  margin-right: 0px;
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
  color: #fff;
}

nav li.has-child ul li:last-child a{
  border-bottom:none;
}

nav li.has-child ul li:hover,
nav li.has-child ul li:active{
  background:#be0000;
}
.has-child li {
  margin-right: 0;
  padding-top: 0;
}
.has-child li:last-of-type {
  background: #000;
  box-shadow:none;
  border-radius:0;
  padding: 0;
}
.has-child li:last-of-type:hover{
  background-color: #be0000;
}
.has-child li a{
  display: block;
  padding: 10px 0;
  border-bottom:solid 1px rgba(255,255,255,0.6);
}
.has-child li a:hover{
  opacity: 1;
}
.nav-color{
  color: #be0000;
}
/**********************************
ハンバーガー
**********************************/
.openbtn1{
  display: none;
}
.openbtn1 {
  position: fixed;
  z-index: 1000;
  top: 30px;
  right: 3%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #363636;
  width: 30px;
}
.openbtn1 span:nth-of-type(1) {
  top:15px; 
}
.openbtn1 span:nth-of-type(2) {
  top:25px;
}
.openbtn1 span:nth-of-type(3) {
  top:35px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn1.active span:nth-of-type(2) {
  display: none;
}
.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

/**********************************
ハンバーガー内メニュー
**********************************/
#g-nav{
  position:fixed;
  z-index: -1;
  opacity: 0;/*はじめは透過0*/
  top:0;
  width:100%;
  height: 100vh;/*ナビの高さ*/
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}
#g-nav.panelactive{
  opacity: 1;
  z-index:999;
}
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav .g-nav {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 240px;
}
#g-nav.panelactive .g-nav {
  display: block;
}
#g-nav ul.g-nav li{
  list-style: none;
  text-align: center;
  font-size: 2rem;
  margin-right: 0;
}
#g-nav .g-nav li a{
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #000;
  padding: 25px 0;
}
#g-nav summary {
  width: 100%;
  background: none;
  margin-bottom: 10px;
  padding: 10px 20px;
  position: relative;
  font-weight: bold;
}
#g-nav summary {
  color: #000; 
}
#g-nav details ul{
  border: solid 1px #000;
  width: 180px;
  margin: 0 auto;
}
#g-nav details ul li{
  border-bottom: solid 1px #fff;
  background: #000;
}
#g-nav .g-nav details ul li a{
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 0;
}
#g-nav .g-nav details ul li:last-of-type{
  border-bottom:none;
}
#g-nav .g-nav details li:last-of-type a {
  background: none;
  width: auto;
  height: auto;
  font-size: 0.9rem;
  box-shadow:none;
  border-radius: none;
  display: block;
  margin-top:0;
}
/**********************************
固定のボタン（TEL、MAIL、LINE）
**********************************/
a.line-right {
  position: fixed;
  top: 213px;
  right: 0;
  padding: 11px 14px;
  background: #00BE07;
  color: #fff;
  text-orientation: upright;
  border-radius: 11px 0 0 11px;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.5);
  letter-spacing: 0;
  z-index: 3;
  border: solid 1px #00BE07;
}
a.line-right:hover{
  background-color: #fff;
  color: #00BE07;
}

.tel-bg .arrow{
  margin: 53px 40px auto 67px;
  width: 27px;
}
.tel-bg .sowa_logo{
  margin: 20px auto auto 0;
  width: 270px;
  height: auto;
  object-fit: contain;
}

.tel{
  position: fixed;
  bottom: 0;
  right: 0;
  background: #000;
  color: #fff;
  z-index: 900;
  padding:10px 42px 15px 50px; 
  align-items: flex-end;
  line-height: 1;
  transition: 0.3s;
}
a.tel:hover{
  opacity: 1;
  background: #BE0000;
  box-shadow: -1px -1px 5px rgba(0,0,0,0.3);
}

.tel span{ 
  font-size:3.8rem;
}
.tel img{ 
  width: 25px;
  margin:0 10px 5px 0;
}



/**********************************
　ファーストビュー
**********************************/
.fv{
  width: 100%;
  height: 100vh;
  position: relative;
}
.fv::after{
  position: fixed;
  top:0;
  right: 0;
  content: "";
  width: 15px;
  height: 100%;
  background: #000;
}
.chibakun-wrap{
  position: absolute;
  top:118px;
  right: 70px;
  width: 84px;
  height: 103px;
}
.chibakun-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**********************************
  駆除対象
**********************************/
.service-sec{
  margin: 100px auto 120px;
  text-align: center;
}
.service-sec ul li{
  width: 20%;
  margin-top: 50px;
}
.service-sec ul li img{
  height: 99px;
}
.service-sec ul li h4{
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  font-family: 'Noto Serif', serif;
}
.service-sec ul li h4::after{
  position: absolute;
  content: "";
  width: 123px;
  height: 1px;
  background: #707070;
  top: 24px;
  left:50%;
  transform: translateX(-50%);
}
.service-sec ul:first-of-type li:nth-of-type(4) h4::after {
    top: 44px;
}
.service-sec ul li h5{
  font-size: 2rem;
  font-weight: bold;
  color: #BE0000;
  margin-top: 10px;
  font-family:'Roboto', sans-serif;
}
.service-sec ul li p {
  font-size: 1.6rem;
  width: 80%;
  text-align: center;
  margin: auto;
  letter-spacing: 0.2em;
  line-height: 1.6;
  font-family: 'Noto Serif', serif;
}
.beast{
  background-image: url("../images/service/beast-bg.jpg");
}
.pest{
  background-image: url("../images/service/pest-bg.jpg");
}

.beast,
.pest{
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1034px 492px;
}
.service-sec dl{
  margin-top: 14px;
}
.service-sec dt{
  font-size: 2.2rem;
  color: #BE0000;
}
.service-sec dd{
  width: 555px;
  margin: 9px auto 44px;
}
.service-sec .sec_btn {
  padding: 16px 0;
}


/**********************************
  工事実績
**********************************/
.achievement-sec .ttl-bg{
  background-image: url("../images/common/achievement-bg.jpg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 69.86% 422px;
  padding: 54px 0 249px;
}
.achievement-sec h2{
  margin:0 90px auto auto;
  color: #fff;
  border: solid 1px #fff;
}
.achievement-sec .ttl-box {
  width: 480px;
  height: 152px;
  background: rgba(255,255,255,0.8);
  margin: -172px auto 172px 91px;
}
.achievement-sec .txt-wrap ul{
  margin-left: 91px;
}
.achievement-sec h3,
.achievement-sec h4{
  z-index: 1;
}
.achievement-sec .pic-wrap,
.achievement-sec .txt-wrap{
  width: 50%;
}
.achievement-sec li{
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.achievement-sec .pic-wrap{
  position: relative;
}
.achievement-sec .pic-wrap img:first-of-type{
  position: absolute;
  top:58px;
  left:248px;
  width: 304px;
}
.achievement-sec .pic-wrap img:nth-of-type(2){
  position: absolute;
  top:250px;
  left:0;
  width: 213px;
}
.achievement-sec .pic-wrap img:last-of-type{
  position: absolute;
  top:346px;
  right:0;
  width: 249px;
}
.achievement-sec .inner2 {
  margin: 0 auto 46px;
}
.achievement-sec .sec-bg{
  margin-left: 100px;
  background: #000;
  padding: 10px 0 0 10px;
}
.achievement-sec .sec-bg .txt-wrap{
  border-top:solid 1px #fff;
  border-left:solid 1px #fff;
  color: #fff;
  padding-bottom: 62px;
  width: 100%;
}
.achievement-sec .sec-bg .txt-wrap dt{
  color: #BE0000;
  font-size: 2.6rem;
  padding: 18px 63px;
  border-radius: 5px;
  background: #fff;
  width: 260px;
  letter-spacing: 0.2em;
}
.achievement-sec .sec-bg .txt-wrap .inner{
  margin: 38px auto 60px auto;
  justify-content: center;
}
.achievement-sec .sec-bg .txt-wrap .inner div:last-of-type{
  margin-left: 57px;
}

.achievement-sec .sec-bg .txt-wrap .inner dl{
  width: 453px;
}
.achievement-sec .sec-bg .txt-wrap .inner dl:first-of-type dt{
  margin-bottom: 20px;
}
.achievement-sec .sec-bg .txt-wrap .inner dl:first-of-type dd:last-of-type{
  margin-bottom: 36px;
}

.achievement-sec .sec-bg .txt-wrap .inner dl:nth-of-type(2) dt{
  margin-bottom: 20px;
}
.achievement-sec .sec-bg .txt-wrap .inner dl:last-of-type dt{
  margin-bottom: 20px;
}
.achievement-sec .sec-bg .txt-wrap .inner dd{
  line-height: 2;
  letter-spacing: 0.03em;
}
.achievement-sec .sec-bg .txt-wrap .inner dd.bold{
  font-size:1.6rem;
  line-height: 3;
}
.achievement-sec .sec-bg .txt-wrap .inner dd.bold span{
  font-size:1.2rem;
  font-weight: 400;
}


/**********************************
  よくあるご質問
**********************************/
.question-sec{
  margin: 70px auto 100px;
}
.question-sec h4{
margin-bottom: 47px;
}
.question-sec h5{
  line-height: 2;
  margin-right: 20px;
}
/* オープン時にアニメーションを設定 */
details[open] p {
  animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
details summary{
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary {
  cursor: pointer;
}
details summary::before {
  font-family: FontAwesome;
  content: '\f0d7';
  margin-right: 20px;
  position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	transition: transform 0.5s;
  font-size: 1.8rem;
}
details[open] summary::before {
  content: '\f0d8';
}
summary {
  width: 100%;
  background: #EDEDED;
  margin-bottom: 10px;
  padding: 10px 20px;
  position: relative;
}
summary::marker {
  margin: 0 0 0 auto;
}
summary span{
  font-size: 1.8rem;
  font-weight: 500px;
  margin-right: 20px;
}
details p{
  line-height: 2;
}
details div.flex p{
  margin: 17px 20px 17px 0;
}

details .flex span{
  color: #BE0000;
  font-size: 1.8rem;
  font-weight: 500px;
  margin: 17px 20px;
  line-height: 2;
}







/**********************************
  お問い合わせ
**********************************/
.contact-sec{
  background: #000;
}
.contact-sec div{
  padding: 36px 0 100px;
}
.contact-sec ul{
  background: #fff;
  width: 1000px;
  padding: 32px 0 23px 0;
  margin: -90px auto 0;
  justify-content: center;
}
.contact-sec .side-ttl{
  color: #fff;
  border: solid 1px #fff;
  margin: 0 40px auto auto;
}
.contact-sec .sec-ttl{
  margin-bottom: 63px;
}
.contact-sec .sec-ttl::after {
  width: 254px;
}
.contact-sec li p {
  line-height: 2;
}
.contact-sec li:first-of-type p:first-of-type {
  margin-bottom: 38px;
}
.contact-sec li:first-of-type  {
  width: 43%;
  position: relative;
  padding-left:83px;
}
.contact-sec li:first-of-type::after  {
  position: absolute;
  content: "";
  width: 3px;
  height: 301px;
  background: #EBEBEB;
  top: 0;
  right:0;
}
.contact-sec li:last-of-type  {
  margin-top: 70px;
  padding-left:76px;
  width: 57%;
}
.contact-sec li:last-of-type dt{
  font-size: 1.6rem;
  color: #BE0000;
  margin-left: 96px;
}
.contact-sec li:last-of-type dd{
  font-size: 4.5rem;
  line-height: 1.5;
  font-family:'Roboto', sans-serif;
}
.contact-sec li:last-of-type dd span{
  font-size: 3.5rem;
}
.contact-sec li:last-of-type a.c_btn{
  font-size: 1.5rem;
  background: #BE0000;
  border-radius: 5px;
  width: 326px;
  height: 71px;
  color: #fff;
  display: inline-block;
  padding: 28px 0;
  text-align: center;
  margin: 38px auto 0 50px;
  border: solid 1px #BE0000;
}
.contact-sec li:last-of-type a.c_btn:hover{
  background-color: #fff;
  color: #BE0000;
}
/**********************************
  footer
**********************************/
.footer nav.flex{
  margin: 14px auto 23px;
  justify-content: space-between;
}
.footer img{
  width: 255px;
  margin-bottom: 30px;
}
.footer p{
  line-height: 2;
  font-size: 1.3rem;
}
.footer ul.flex{
  margin-top: 26px;
}
.footer ul.flex li{
  margin-left: 26px;
  margin-right: 0;
}
footer nav li.has-child ul {
    top: -280px;
}
.footer ul.flex .has-child li {
  margin-left: 0;
  text-align: center;
}
.copyright{
  width: 100%;
  background: #000;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  line-height: 2;
}

/**********************************
ボタン
**********************************/
.sec_btn{
  background: #BE0000;
  border-radius: 5px;
  width: 260px;
  height: 49px;
  color: #fff;
  display: inline-block;
  padding: 10px 0;
  text-align: center;
  border: solid 1px #BE0000;
}
.sec_btn:hover{
  background-color: #fff;
  color: #BE0000;
}
