@charset UTF-8;
body {
  position: relative;
  margin: 0 auto;
}
img {
  width: 100%;
}
header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(20px, 5.333333333333333vw, 40px);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  background:rgba(255,255,255,0.5);
}

@media (min-width: 1025px) {
  header {
    padding: clamp(30px, 3.125vw, 60px) clamp(40px, 4.6875vw, 90px);
    padding: clamp(20px, 2.125vw, 60px) clamp(40px, 4.6875vw, 90px);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  header {
    padding: clamp(10px, 2.998500749625187vw, 20px);
  }
}

.header-container {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 1.2fr 2fr;
  grid-template-columns: 1.2fr 2fr;
}

.header-logo {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 2.6rem;
}

@media (max-width: 768px) and (orientation: landscape) {
  .header-logo {
    width: clamp(70px, 17.991004497751124vw, 140px);
  }
}

.logo-link {
  display: block;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.logo-link:hover {
  opacity: 0.6;
}

.header-logo .logo-img {
  width: 75px;
  vertical-align: text-top;
}
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    padding-right: clamp(30px, 8vw, 60px);
    padding-bottom: clamp(30px, 8vw, 60px);
    padding-left: clamp(30px, 8vw, 60px);
    transition-duration: 300ms;
    transform: translateX(200%);
    overflow: auto;
    /* ナビメニューの背景色を変えたい時 */
    background-color: rgba(0, 0, 0, .6);
  }

  .nav-menu.active {
    transform: translateX(0);
  }
}

@media (min-width: 1025px) {
  .nav-menu {
    padding-top: 0 !important;
  }
}

@media (min-width: 1025px) {
  .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: clamp(20px, 2.0833333333333335vw, 40px);
  }
}

@media (max-width: 1024px) {
  .menu-item {
    /* 各ナビメニューの下線を変えたい時 */
    /*border-style: solid;
    border-color: #fff;
    border-bottom-width: 1px*/
    border-bottom: 1px solid #fff;
  }
}

.menu-link {
  display: block;
  color: #000;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.menu-link:hover {
  opacity: 0.6;
}

.nav-menu.active .menu-link {
  color: #fff;
}
.menu-link img {
  width: 80%;
}
@media (max-width: 1024px) {
  .menu-link {
    font-size: clamp(14px, 1.0416666666666667vw, 20px);
    padding-top: clamp(10px, 2.6666666666666665vw, 20px);
    padding-bottom: clamp(10px, 2.6666666666666665vw, 20px);
    text-align: center;
    /* ナビメニューの文字色を変えたい時 */
    color: #000;
  }
}

@media (min-width: 1025px) {
  .menu-link {
    font-size: clamp(16px, 1.0416666666666667vw, 20px);
  }
}

.hamburger-button {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: clamp(13px, 3.466666666666667vw, 26px);
  margin-right: 0;
  margin-left: auto;
  cursor: pointer;
}

.hamburger-lines {
  position: relative;
  width: clamp(40px, 10.666666666666666vw, 90px);
  height: clamp(13px, 3.466666666666667vw, 26px);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

@media (max-width: 1024px) {
  .hamburger-lines {
    width: clamp(40px, 10.666666666666666vw, 90px);
    height: clamp(13px, 3.466666666666667vw, 26px);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hamburger-lines {
    width: clamp(30px, 7.496251874062969vw, 50px);
    height: clamp(15px, 2.998500749625187vw, 20px);
  }
}

.hamburger-lines.active {
  height: 1px;
}

.hamburger-lines .line {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: clamp(1px, .26666666666666666vw, 2px);
  margin: auto;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  /* ハンバーガーメニューの線の色を変えたい時 */
  background-color: #000;
}

.hamburger-lines.active .line {
  /* ハンバーガーメニューオープン時の線の色を変えたい時 */
  background-color: #fff;
}

.hamburger-lines .line:nth-child(1) {
  top: 0;
}

.hamburger-lines .line:nth-child(2) {
  bottom: 0;
}

@media (min-width: 1025px) {

  /* タブレットサイズ以上でハンバーガーメニューを丸ごと非表示 */
  .hamburger-button {
    display: none;
  }
}
/*=============
slick
=============*/

.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /*height: 100vh;*/
  margin: 0;
}
.full div.img01 {
  background-image: url(https://125naroom.com/demo/img/simple01.jpg);
}
.full div.img02 {
  background-image: url(https://125naroom.com/demo/img/simple02.jpg);
}
.full div.img03 {
  background-image: url(https://125naroom.com/demo/img/simple03.jpg);
}
.full .slick-dots {
  bottom: 4%;
  z-index: +1;
}

/*=============
base
==============*/
html, body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.w1000 {
  width: 1000px;
  margin: 0 auto;
}
.m-top150 {
  margin-top: 150px;
}
.text-red {
  color: #ff0000;
}
.text-left {
  text-align: left;
}
.news .green {
  display: block;
  color: #2c993e;
  font-size: 1rem;
}
.top-wrap {
  position: relative;
}
.top-wrap h2 {
  position: absolute;
  top: 65%;
  left: 5%;
  font-weight: bold;
  font-size: 3.6rem;
  color: #fff;
  line-height: 70px;
}
.news h2 {
  font-weight: bold;
  font-size: 2rem;
}
.news-wrap {
  margin-bottom: 50px;
}
.news-wrap .article {
  width: 1000px;
  margin: 0 auto;
}
.news-wrap .article li a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
}
.news-wrap .article li a p {
  width: 13%;
  padding: 25px 15px;
}
.news-wrap .article li a h3 {
  width: 87%;
  font-size: 1.2rem;
  font-weight: bold;
}
.about-wrap {position: relative;
  padding: 100px 0 200px 0;
  background: #f0f0f0;
  z-index: 0;
}
.about-wrap h2 {
  margin-left: 20px;
  font-size: 8rem;
  font-weight: bold;
  color: #fff;
}
.about-wrap div::before {
  background-image: url(https://w2525.gokujou.biz/w2525/w2525-wp/wp-content/themes/w2525/images/about-bk.png);
}
.about-wrap div div h3 {
  margin: 30px 0;
  font-size: 2rem;
  font-weight: bold;
}
.about-wrap div div p {
  font-size: 1.2rem;
  line-height: 50px;
}
.about-wrap .left {
  z-index: 1000;
}
.about-wrap .character {
  position: absolute;
  top: 30%;
  left: inherit;
  right: 15%;
  width: 200px;
}
.about-wrap .map {
  position: absolute;
  top: 30%;
  left: inherit;
  right: 0;
  width: 70%;
  z-index: -1;
}
.about-wrap a.btn {
  float: right;
  margin-top: 50px;
}
.service-wrap {
  padding-bottom: 150px;
}
.service-wrap h2 {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
.service-wrap .green {
    display: block;
    color: #2c993e;
    font-size: 1rem;
}
.service-wrap .flex {
  display: flex;
  padding-bottom: 100px;
}
.service-wrap .flex:nth-child(even) {
  flex-direction: row-reverse;
}
.service-wrap .flex div {
  width: 50%;
}
.service-wrap .flex div h3 {
  padding: 10px 30px;
  background: #2c993e;
  color: #fff;
  font-size: 2rem;
}
.service-wrap .flex div h3::after {
  float: right;
  padding-top: 7px;
  font-family: "Font Awesome 5 Free";
  content: '\f35a';
  font-weight: 900;
}
.service-wrap .flex div p {
  display: flex;
  justify-content: space-around;
  margin: 50px 0;
}
.service-wrap .flex div .icon {
  width: 200px;
  float: right;
}
.service-wrap .flex:nth-child(even) div .icon {
  float: left;
}
.service-wrap .flex:nth-child(5) div .icon {
  width: 350px;
}
.contact-wrap {
  position: relative;
  padding: 50px 0;
  background: #2c993e;
}
.contact-wrap .top {
  position: relative;
  width: 1100px;
  margin: 0 auto;
}
.contact-wrap .top h2 {
  display: inline-block;
  background: #fff;
  color: #2c993e;
  font-size: 2rem;
  padding: 10px 30px;
}
.contact-wrap .top h3 {
  margin: 20px 0;
  color: #fff;
  font-size: 3.4rem;
}
.contact-wrap .top img {
  position: absolute;
  top: -140px;
  right: 0;
  width: 250px;
}
.contact-wrap .bottom ul {
  display: flex;
  justify-content: space-between;
}
.contact-wrap .bottom ul li {
  width: 30%;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}
.contact-wrap .bottom ul li div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-wrap .bottom ul li div img {
  width: auto;
  height: 30px;
}
.contact-wrap .bottom ul li div p {
  margin-left: 5px;
}
.contact-wrap .bottom ul li div p span {
  font-size: 2rem;
  font-weight: bold;
  color: #2c993e;
  vertical-align: sub;
  border-bottom: double 6px;
}
.contact-box {
  margin-top: 20px;
  background: #2c993e;
  border-radius: 50px;
  font-weight: bold;
  color: #fff;
}
.contact-wrap .bottom ul li .contact-box {
  height: 52.5px;
}
.contact-wrap .bottom ul li:nth-child(1) .contact-box {
  font-size: 2rem;
}
.contact-text {
  margin-top: 20Px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}
.contact-box a {
  color: #fff;
}
.work-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 245px;
}
.work-wrap::before {
    background: linear-gradient(to bottom left, #fdfdfd, #f1f1f1);
    width: 100%;
    height: 245px;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
}
.work-wrap .grid .inner {
  display: flex;
}
.work-wrap .grid .inner li {
  width: 50%;
  text-align: center;
}
.work-wrap .grid .inner li a {
    width: 100%;
    height: 100%;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    color: #fff;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.work-wrap .grid .inner li a figure {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  background-color: #000; /*背景に黒を指定*/
}
.work-wrap .grid .inner li a figure img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.7;/*画像を透過させる*/
}
.work-wrap .grid .inner li .link-text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    font-weight: 500;
    transform: translate(-50%, -50%);
}
.work-wrap .grid .inner li .link-text .jp {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
}
.work-wrap .grid .inner li .link-text .en {
  display: block;
  font-size: 20px;
}
.top-footer {
  position: relative;
  padding: 200px 0 140px;
}
.top-footer .footer_contact {
  width: 62.5%;
  height: 232px;
  margin-left: auto;
  position: absolute;
  top: -116px;
  right: 0;
}
.top-footer .footer_contact a {
    background-image: linear-gradient(to right, #2c993e 0%, #52ab61 51%, #8ebf90 100%);
    background-size: 200% auto;
    width: 100%;
    height: 100%;
    padding-left: 10.5%;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    transition: .3s;
    -ms-flex-align: center;
    align-items: center;
}
.top-footer .footer_contact a::after {
    background: url(../images/footer_ico_arrow_w.png) no-repeat;
    background-size: contain;
    width: 12px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 7.5%;
    content: '';
    transform: translateY(-50%);
}
.top-footer .footer_contact_jp {
    letter-spacing: .1em;
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}
.top-footer .footer_contact_en {
    margin-left: 3%;
    font-size: 16px;
    color: #fff;
}
footer {
  position: relative;
  margin-top: 50px;
    /*padding: 200px 0 140px;*/
}
footer .footer_inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}
footer .footer_logo {
    position: absolute;
    top: 15px;
    left: 10px;
    font-size: 2rem;
    font-weight: bold;
}
footer .footer_nav {
    padding-top: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    align-items: center;
}
footer .footer_nav_item {
    margin-left: 50px;
    font-size: 15px;
}
footer .footer_copy {
    margin-top: 5px;
    letter-spacing: .1em;
    font-size: 12px;
    color: #c3c3c3;
}

.waste, .main-service {
  /*margin-top: 115.45px;*/
  /*padding: clamp(20px, 2.125vw, 60px) clamp(40px, 4.6875vw, 90px);*/
}
.waste .top {
  position: relative;
}
.business_service_header {
    background: linear-gradient(to bottom left, #2c993e, #2c993e);
    padding: 110px 0 252px;
    position: relative;
    color: #fff;
}
.all_l_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}
.business_service_content_title {
    margin-top: 30px;
}
.business_service_content_title_jp {
    display: block;
    font-size: 32px;
    font-weight: bold;
}
.business_service_content_title_jp {
    display: block;
    font-size: 32px;
    font-weight: 500;
}
.business_service_header_img {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    width: calc(50% + 44px);
    height: 515px;
    position: absolute;
    top: 115px;
    left: calc(50% - 44px);
}
.waste .business_service_header_img {
    background-image: url(https://w2525.gokujou.biz/w2525/w2525-wp/wp-content/themes/w2525/images/general-waste-top-bk.jpg);
}
.business_service_header_obj {
    /*width: 100%;*/
    position: absolute;
    top: 496px;
    /*left: calc(60% - 140px);*/
    right: calc(0% - 0px);
    z-index: 5;
    line-height: 1;
    font-family: 'Oswald', sans-serif;
    font-size: 120px;
    font-size: 12.4vw;
    font-weight: 700;
    color: rgba(38, 38, 38, .04);
}
.business_service_header_obj span {
  position: absolute;
  right: 0;
}
.business_service_features {
    background-color: #fff;
    width: 54.375%;
    margin-top: -178px;
    margin-right: auto;
    padding: 75px 78px 75px 0;
    position: relative;
    z-index: 3;
}
.business_service_features_body {
    max-width: 600px;
    margin-left: auto;
    padding-left: 10px;
}
.business_service_features_text {
    margin-top: 2.3em;
    line-height: 1.82;
    letter-spacing: .1em;
    font-size: 16px;
}


.waste .top .top-inner {
  margin-bottom: 300px;
  padding: 15% 0;
  background: #2c993e;
}
.waste .top .top-inner .text {
  width: 1200px;
  margin-top: -5%;
}
.waste .top .top-inner .text h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}
.waste .top .top-inner .img {
  position: absolute;
  top: 50px;
  right: 0;
  width: 100%;
}
.waste .top .top-inner .bk {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 60%;
  background: #fff;
  padding: 10% 0;
}
.waste .top .top-inner .bk p {
  line-height: 35px;
}
.waste .top .top-inner .bk-text {

}
.waste .top .top-inner .img h3 {
  font-size: 5rem;
  font-weight: bold;
  color: #f8f8f8;
  text-align: right;
}
.waste .service h2 {
  position: relative;
  margin-bottom: 50px;
  padding-left: 15px;
  font-weight: bold;
}
.waste h2.l-border::before {
  background-color: #dcdcdc;
  width: 2px;
  height: calc(100% - 6px);
  position: absolute;
  top: 3px;
  left: 1px;
  content: '';
}
.waste h2.l-border::after {
  background-color: #2d993f;
  width: 2px;
  height: 14px;
  position: absolute;
  top: 3px;
  left: 1px;
  content: '';
}
.waste .service .inner {
  width: 1000px;
  margin: 0 auto;
}
.waste .service .inner li {
  margin: 5px 0
}
.waste .service .inner h3 {
  margin: 70px 0 30px 0;
  font-weight: bold;
}
.waste .flow h2 {
  position: relative;
  margin-bottom: 50px;
  padding-left: 15px;
  font-weight: bold;
}
.waste .flow div {
  text-align: center;
}
.waste .flow div img {
  width: initial;
}
.waste .price h2 {
  position: relative;
  margin-bottom: 50px;
  padding-left: 15px;
  font-weight: bold;
}
.waste .price .inner {
  width: 1000px;
  margin: 0 auto;
}.waste .price .inner .box {
  margin-bottom: 20px;
}
.waste .price .inner .box li {
  display: flex;
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid #2c993e;
}
.waste .price .inner .box li:nth-child(even) {
  background: #f8f8f8;
}
.waste .price .inner .box li p {
  width: 33%;
  text-align: center;
}
.waste .price .inner .box li:nth-child(1) p  {
  text-align: center;
  color: #2c993e;
  font-size: 1.2rem;
  font-weight: bold;
}
.waste .price .inner .box li p:nth-child(3) {
  text-align: center;
}
.waste .inner .table-box {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
.waste .inner .table-box th {
  width: 33%;
  padding: 20px;
  border-bottom: 1px solid #2c993e;
  text-align: center;
  color: #2c993e;
  font-size: 1.2rem;
  font-weight: bold;
}
.waste .inner .table-box td {
  width: 33%;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #2c993e;
}
.waste .inner .table-box .table-bg {
  background: #f8f8f8;
}
.other .inner .text {
  font-size: 1.2rem;
  font-weight: bold;
}
.other .inner div.text-box {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 50px;
  line-height: 40px;
}
.corner-label {
  margin-top: 50px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  background: #e9f5eb;
}
.corner-label::before {
  display: block;
  content: '例①';
  background: rgb(45 153 63);
  width: 10em;
  height: 10em;
  color: #ffffff;
  text-align: center;
  line-height: 16.5em;
  transform: rotate(-45deg);
  position: absolute;
  top: -5em;
  left: -5em;
  font-size: 1.6rem;
}
.corner-label:nth-of-type(2)::before {
  display: block;
  content: '例②';
}
.corner-label:last-child {
  margin-bottom: 50px;
}
.corner-label ul {
  width: 600px;
  margin: 0 auto;
}
.waste .service .inner .corner-label ul li {
  margin: 0;
  padding: 15px 0;
}
.waste .price .inner .text {
  margin-top: 50px;
  text-align: center;
}
.waste .price .inner .text span {
  font-weight: bold;
}
.waste .area .inner .text {
  margin-top: 50px;
  text-align: center;
}
.waste .service .contact-wrap .top h2 {
  margin-bottom: 0;
}
.waste .service .contact-page {
  margin-top: 50px;
}
.waste .service .contact-page .bottom ul {
    display: flex;
    justify-content: space-evenly;
}
.waste .service .contact-page .bottom ul li {
  width: 30%;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 3px solid #2c993e;
}
.waste .service .contact-page .bottom ul li div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.waste .service .contact-page .bottom ul li div img {
    width: auto;
    height: 30px;
}
.waste .service .contact-page .bottom ul li div p {
    margin-left: 5px;
}
.waste .service .contact-page .bottom ul li div p span {
    font-size: 2rem;
    font-weight: bold;
    color: #2c993e;
    vertical-align: sub;
    border-bottom: double 6px;
}
.waste .service .contact-page .contact-box {
    margin-top: 20px;
    background: #2c993e;
    border-radius: 50px;
    font-weight: bold;
    color: #fff;
}
.waste .service .contact-page .bottom ul li div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.waste .service .contact-page .bottom ul li .contact-box {
    height: 52.5px;
}
.waste .service .contact-page .bottom ul li:nth-child(1) .contact-box {
    font-size: 2rem;
}
.industrial .price .inner .box li {
  justify-content: space-around;
}
.industrial .price .inner .box li p {
  width: 45%;
  text-align: center;
}
.industrial .price .inner .text {
  text-align: left;
}
.service-wrap .service-box {
  margin-top: 100px;
}
.service-wrap .service-box .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.service-wrap .service-box .inner li {
  display: flex;
  flex-direction: column;
  width: 48%;
  margin-bottom: 30px;
  border: 2px solid #2c993e;
}
.service-wrap .service-box .inner .flex {
  display: inline-block;
  padding: 0;
}
.service-wrap .service-box .inner .flex div:nth-child(1) {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 315px;
  background: url(https://w2525.gokujou.biz/w2525/w2525-wp/wp-content/themes/w2525/images/service-img01.jpg)no-repeat center / cover rgba(255,255,255,0.5);
  background-blend-mode:lighten;
}
.service-wrap .service-box .inner li:nth-child(2) .flex div:nth-child(1) {
  background-image: url(https://w2525.gokujou.biz/w2525/w2525-wp/wp-content/themes/w2525/images/service-img02.jpg);
}
.service-wrap .service-box .inner li:nth-child(3) .flex div:nth-child(1) {
  background-image: url(https://w2525.gokujou.biz/w2525/w2525-wp/wp-content/themes/w2525/images/service-img03.jpg);
}
.service-wrap .service-box .inner li:nth-child(4) .flex div:nth-child(1) {
  background-image: url(https://w2525.gokujou.biz/w2525/w2525-wp/wp-content/themes/w2525/images/service-img04.jpg);
}
.service-wrap .service-box .inner li:nth-child(5) .flex div:nth-child(1) {
  background-image: url(https://w2525.gokujou.biz/w2525/w2525-wp/wp-content/themes/w2525/images/service-img05.jpg);
}
.service-wrap .service-box .inner li:nth-child(6) .flex div:nth-child(1) {
  background-image: url(https://w2525.gokujou.biz/w2525/w2525-wp/wp-content/themes/w2525/images/service-img06.jpg);
}
.service-wrap .flex::before {
  width: 100%;
}
.service-wrap .service-box .inner .flex div::before{
  width: 100%;
  height: 315px;
　z-index: 0;
　content: "";
　display: block;
　position: absolute;
　top: 0;
　left: 0;
　background-color: rgba(0,0,0,0.5);
}
.service-wrap .service-box .inner .flex div .icon {
  float: none;
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  width: 30%;
  height: initial;
}
.service-wrap .service-box .inner li:nth-child(5) .flex .icon {
  width: 50%;
}
.main-service .service-wrap .flex div:nth-child(2) {
  width: 80%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.main-service .service-wrap .flex div h3 {
  padding: 0;
  background: none;
  color: #2c993e;
}
.main-service .service-wrap .flex div p {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0;
}
.main-service .service-wrap .flex div p::after {
  position: absolute;
  top: 20%;
  right: -30px;
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
  color: #2c993e;
  font-size: 2rem;
}
.company .company-wrap .company-box .img {
  text-align: center;
}
.company .company-wrap .company-box .img .icon  {
  width: 300px;
  margin: 0 auto;
}
.company .company-wrap .company-box h2 {
  position: relative;
  margin-bottom: 50px;
  padding-left: 15px;
  font-weight: bold;
}
.company .company-wrap .company-box h2::before {
  background-color: #dcdcdc;
  width: 2px;
  height: calc(100% - 6px);
  position: absolute;
  top: 3px;
  left: 1px;
  content: '';
}
.company .company-wrap .company-box h2::after {
  background-color: #2d993f;
  width: 2px;
  height: 14px;
  position: absolute;
  top: 3px;
  left: 1px;
  content: '';
}
.company .company-wrap .company-box .box {
  width: 800px;
  margin: 0 auto;
}
.company .company-wrap .company-box .box p {
  padding-left: 20px;
  line-height: 40px;
}
.company .company-wrap .company-box .box .sing {
  margin-top: 50px;
  text-align: right;
}
.company .company-wrap .company-box .box .sing img {
  width: 200px;
}
.company .company-wrap .guidance {
  width: 800px;
  margin: 0 auto;
  margin-top: 150px;
}
.company .company-wrap .guidance h2 {
  position: relative;
  margin-bottom: 50px;
  padding-left: 15px;
  font-weight: bold;
}
.company .company-wrap .guidance h2::before {
  background-color: #dcdcdc;
  width: 2px;
  height: calc(100% - 6px);
  position: absolute;
  top: 3px;
  left: 1px;
  content: '';
}
.company .company-wrap .guidance h2::after {
  background-color: #2d993f;
  width: 2px;
  height: 14px;
  position: absolute;
  top: 3px;
  left: 1px;
  content: '';
}
.company .company-wrap .guidance .flex {
  width: 800px;
  margin: 0 auto;
}
.company .company-wrap .guidance .flex ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}
.company .company-wrap .guidance .flex ul li {
  margin-bottom: 35px;
  padding-bottom: 15px;
  font-size: 1.4rem;
}
.company .company-wrap .guidance .flex ul .title {
  display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-around;
  width: 30%;
  border-bottom: 2px solid #000;
}
.company .company-wrap .guidance .flex ul .text {
  width: 65%;
  border-bottom: 2px solid #2d993f;
}
.company .company-wrap .map {
  width: 800px;
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 150px;
}
.company .company-wrap .map h2 {
  position: relative;
  margin-bottom: 50px;
  padding-left: 15px;
  font-weight: bold;
}
.company .company-wrap .map h2::before {
  background-color: #dcdcdc;
  width: 2px;
  height: calc(100% - 6px);
  position: absolute;
  top: 3px;
  left: 1px;
  content: '';
}
.company .company-wrap .map h2::after {
  background-color: #2d993f;
  width: 2px;
  height: 14px;
  position: absolute;
  top: 3px;
  left: 1px;
  content: '';
}
.company .company-wrap .map .box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.company .company-wrap .map .box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.privacy .privacy-wrap .privacy-inner {
  width: 1000px;
  margin: 0 auto;
}
.privacy .privacy-wrap .privacy-inner h2 {
    position: relative;
    margin-bottom: 50px;
    padding-left: 15px;
    font-weight: bold;
}
.privacy .privacy-wrap  .privacy-inner h2::before {
  background-color: #dcdcdc;
  width: 2px;
  height: calc(100% - 6px);
  position: absolute;
  top: 3px;
  left: 1px;
  content: '';
}
.privacy .privacy-wrap .privacy-inner h2::after {
  background-color: #2d993f;
  width: 2px;
  height: 14px;
  position: absolute;
  top: 3px;
  left: 1px;
  content: '';
}
.privacy .privacy-wrap .privacy-box {
  margin-bottom: 150px;
  padding: 20px;
}
.privacy .privacy-wrap .privacy-box .box {
  width: 800px;
  margin: 0 auto;
  line-height: 30px;
}
.privacy .privacy-wrap .privacy-box .box h3 {
  margin-top: 30px;
  color: #2d993f;
}
.blog .blog-wrap .blog-inner {
  margin-bottom: 150px;
}
.blog .blog-wrap .blog-inner h2 {
  position: relative;
  margin-bottom: 50px;
  padding-left: 15px;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
.blog .blog-wrap .blog-inner .green {
    display: block;
    color: #2c993e;
    font-size: 1rem;
}
.blog .blog-inner .blog-box ul {
  display: flex;
  flex-direction: column;
  width: 1000px;
  margin: 0 auto;
}
.blog .blog-inner .blog-box ul li {
  width: 100%;
  border-bottom: 1px solid #000;
}
.blog .blog-inner .blog-box .modListNews__item__data {
  display: flex;
  align-items: center;
  padding: 20px;
}
.blog .blog-inner .blog-box .modListNews__item__data .datetime,.blog .blog-inner .blog-box .modListNews__item__data .tag {
  width: 10%;
  text-align: center;
}
.blog .blog-inner .blog-box .modListNews__item__data .modListNews__item__title {
  width: 75%;
  margin: 0 auto;
  font-weight: bold;
  font-size: 1.2rem;
}
.recruit .recruit-wrap .recruit-box .box {
  width: 1000px;
  margin: 0 auto;
}
.recruit .recruit-wrap .recruit-box .img {
    text-align: center;
}
.recruit .recruit-wrap .recruit-box .img .icon {
  width: 300px;
  margin: 0 auto;
}
.recruit .recruit-wrap .recruit-box h2 {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  color: #2c993e;
  font-weight: bold;
}
.recruit .recruit-wrap .recruit-box p {
  width: 600px;
  margin: 0 auto;
  line-height: 40px;
}
.recruit .recruit-wrap .recruitment {
  width: 1000px;
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 150px;
}
.recruit .recruit-wrap .recruitment h2 {
    position: relative;
    margin-bottom: 50px;
    padding-left: 15px;
    font-weight: bold;
}
.recruit .recruit-wrap .recruitment h2::before {
    background-color: #dcdcdc;
    width: 2px;
    height: calc(100% - 6px);
    position: absolute;
    top: 3px;
    left: 1px;
    content: '';
}
.recruit .recruit-wrap .recruitment h2::after {
    background-color: #2d993f;
    width: 2px;
    height: 14px;
    position: absolute;
    top: 3px;
    left: 1px;
    content: '';
}
.recruit .recruit-wrap .recruitment .flex {
  width: 800px;
  margin: 0 auto;
}
.recruit .recruit-wrap .recruitment .flex h3 {
  font-weight: bold;
  margin-bottom: 50px;
}
.recruit .recruit-wrap .recruitment .flex ul {
  display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}
.recruit .recruit-wrap .recruitment .flex ul .title {
  display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    width: 30%;
    border-bottom: 2px solid #000;
}
.recruit .recruit-wrap .recruitment .flex ul li {
  margin-bottom: 35px;
  padding-bottom: 15px;
}
.recruit .recruit-wrap .recruitment .flex ul .text {
  width: 65%;
  border-bottom: 2px solid #2d993f;
  text-align: left;
}
/*　ContactForm7のテーブル化レスポンシブ調整　*/
.contact-table {
  width: 1000px;
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 150px;
  padding: 50px;
  border: 1px solid #eef7ef;
  box-shadow: 0 0 10px #eef7ef;
}
/*テーブルを親要素の幅いっぱいに伸ばす*/
.table-res-form {
    width: 100%;
    border-spacing: 0;
}
/*一行ごとに上ボーダー*/
.table-res-form tr {
    border-top: 1px #DDD solid;
}
/*一番上の行だけボーダーなし*/
.table-res-form tr:first-child {
    border-top: none;
}
/*奇数行だけ背景色つける*/
.table-res-form tr:nth-child(2n+1) {
    background: #eee;
}
/*thとtd内の余白指定*/
.table-res-form th, .table-res-form td {
    padding: 1.5em;
}
/*th（項目欄）は30%幅、テキストを右寄せ*/
.table-res-form th {
    width: 30%;
    text-align: right;
}
/*「必須」部分のスタイリング*/
.table-res-form .requied {
    font-size: 0.8em;
    color: #FFF;
    display: inline-block;
    padding: 0.3em 0.3em 0.2em;
    background: red;
    border-radius: 2px;
}

/*ここから768px以下の指定*/

@media only screen and (max-width: 768px) {
  .table-res-form th, .table-res-form td {
    width: 100%;
    display: block;
  }
  .table-res-form th {
    padding-bottom: 0;
    text-align: left;
  }
  .table-res-form .empty {
    display: none;
  }
}

/*ここまで768px以下の指定---終わり*/

/*ここから入力欄のスタイル指定*/

/*各入力フォームスタイリング*/
.table-res-form input[type="text"], input[type="email"], textarea {
    border: 1px #89BDDE solid;
    padding: 0.5em;
    border-radius: 5px;
    margin-bottom: 0.5em;
    width: 100%;
}
/*入力欄にフォーカスしたら変化*/
.table-res-form input[type="text"]:focus, textarea:focus {
    background: #EEFFFF;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}
/*送信ボタンスタイリング*/
.table-res-form input[type="submit"] {
    border: 1px #158227 solid;
    padding: 0.5em 4em;
    border-radius: 5px;
    background: #2c993e;
    color: #fff;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
    font-weight: bold;
}
/*送信ボタン・マウスオーバー時スタイリング*/
.table-res-form input[type="submit"]:hover {
    background: #006599;
    box-shadow: none;
}
.blog .blog-wrap .blog-inner .article-wrap h2{
  margin-top: 10px;
  padding-bottom: 15px;
  text-align: left;
  border-bottom: 1px solid #000;
}
.entry_body {
  width: 800px;
  margin: 0 auto;
}
.entry_body p img {
  margin-bottom: 10px;
}
.articleBox {
  display: flex;
  margin-top: 100px;
  margin-bottom: 100px;
}
.articleBox li {
  width: 50%;
}
.articleBox li a {
  display: inline-block;
}
.articleBox .left {

}
.articleBox .right {
  text-align: right;
}
/*ボタン
-----------------------------------------------------*/
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
}
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}
#inline-radio .calc-container {
  display: block;
  width: 100%;
  max-width: 100%!important;
  margin: 80px auto 0;
  counter-reset: number 0;
  padding: 0;
}
#inline-radio .calc-container-wrapper .calc-container.vertical .calc-list {
  margin: 80px auto 0;
}
#inline-radio .calc-container-wrapper .calc-container.vertical .calc-fields .calc-item-title .ccb-calc-heading {
  background-color: #ddff00;
  padding: 37px 20px 27px;
  text-align: center;
  font-weight: bold!important;
  font-size: 24px!important;
  letter-spacing: 0.2em;
}

#inline-radio .calc-container .calc-subtotal .calc-subtotal-wrapper .calc-item-title .ccb-calc-heading {
  padding: 37px 20px 27px;
  text-align: center;
  font-weight: bold!important;
  font-size: 24px!important;
}
#inline-radio .calc-container-wrapper .calc-container .calc-list .calc-fields-container {
  max-width: 970px!important;
  margin: 80px auto 0;
}
#inline-radio .calc-container-wrapper .calc-container .calc-list .calc-fields-container .calc-container .calc-list .calc-item {
  margin-top: 100px;
}
#inline-radio .calc-container .calc-list .calc-list-inner {
  padding: 0!important;
  border: none!important;
}
#inline-radio .calc-container-wrapper .calc-fields .calc-list-inner .calc-fields-container .calc-item:nth-child(n + 2) {
  margin-top: 100px;
}
#inline-radio .calc-radio-wrapper.default input[type=radio] {
  display: none;
}
#inline-radio .calc-radio-wrapper.default {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 5px;
  column-gap: 20px;
  row-gap: 20px;
}
#inline-radio .calc-radio-wrapper.default label {
  width: calc((97% - 11px) / 3);
}
#inline-radio .calc-container-wrapper .calc-list-inner .calc-item .calc-radio-wrapper.default label .calc-radio-label {
  justify-content: center;
  background-color: #f3f3f3;
  padding: 22px 0;
  transition: .3s;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 0.14em;
  width: 100%;
  font-size: 18px!important;
  font-weight: bold!important;
}
#inline-radio .calc-container-wrapper .calc-list-inner .calc-item .calc-radio-wrapper.default input[type=radio]:checked + .calc-radio-label {
  background-color: #ddff00;
}
#inline-radio .calc-container-wrapper .calc-list-inner .calc-item .calc-item__title {
  position: relative;
  font-size: 20px!important;
  letter-spacing: 0.12em;
  padding: 4px 10px 5px 65px;
  border-bottom: 1px solid #ecebeb;
  margin-bottom: 20px;
}
#inline-radio .calc-container-wrapper .calc-list-inner .calc-item .calc-item__title::before {
  counter-increment: number 1;
  content: counter(number);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #3e3a39;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
#inline-radio .calc-container .calc-subtotal .calc-subtotal-wrapper .calc-item-title.calc-accordion {
  display: none;
}
#inline-radio .calc-container-wrapper .calc-container .calc-list .show-unit {
  display: none;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  text-align: center;
}
#inline-radio .calc-container-wrapper .calc-container .calc-list .calc-subtotal-list .sub-list-item.total {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  text-align: center;
}

#inline-radio .calc-container-wrapper .calc-container .calc-list .calc-subtotal-list .sub-list-item.total span {
  position: relative;
  width: 50%;
  font-size: 20px !important;
  letter-spacing: 0.12em;
  padding: 4px 10px 5px 10px;
}
#inline-radio .calc-container-wrapper .calc-container .calc-list .calc-subtotal-list .sub-list-item.total span.sub-item-value {
  font-size: 44px!important;
}
@media only screen and (max-width: 768px) {
  #inline-radio .calc-container-wrapper .calc-container .calc-list .calc-fields-container {
    width: 96%;
  }
  #inline-radio .calc-radio-wrapper.default {
    column-gap: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5px;
    row-gap: 5px;
  }
  #inline-radio .calc-radio-wrapper.default label {
    width: calc((100% - 5px) / 2);
  }
  #inline-radio .calc-container-wrapper .calc-fields .calc-list-inner .calc-fields-container .calc-item:nth-child(n + 2) {
    margin-top: 50px;
  }
  #inline-radio .calc-container-wrapper .calc-container .calc-list .calc-subtotal-list .sub-list-item.total span {
    width: 30%;
    font-size: 14px !important;
  }
  #inline-radio .calc-container-wrapper .calc-container .calc-list .calc-subtotal-list .sub-list-item.total span.sub-item-value {
    width: 60%;
    font-size: 34px !important;
  }
}
/*clearfix
-----------------------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix:before {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  display: block;
}
@media only screen and (max-width: 768px) {
  .w1200 {
    width: 100%;
  }
  .w1000 {
    width: 100%;
  }
  .m-top150 {
    margin-top: 100px;
  }
  .header-container {
    display: flex;
  }
  .header-logo {
    width: 80%;
    font-size: 1.6rem;
  }
  .header-logo .logo-img {
    width: 45px;
    margin-right: 5px;
  }
  .menu-link img {
    width: 50%;
  }
  .menu-item:nth-child(7) img {
    width: auto;
  }
  .top-wrap {
    margin-top: 89.59px;
  }
  .top-wrap h2 {
    font-size: 2.2rem;
    line-height: 45px;
  }
  .news h2 {
    font-size: 1.6rem;
  }
  .news-wrap .article {
    width: 98%;
  }
  .news-wrap .article li a p {
    width: 30%;
    padding: 25px 10px;
  }
  .news-wrap .article li a h3 {
    width: 70%;
  }
  .about-wrap {
    padding: 100px 0;
  }
  .about-wrap h2 {
    margin-left: 0;
    font-size: 4rem;
  }
  .about-wrap div div h3 {
    font-size: 1.6rem;
  }
  .about-wrap div div p {
    font-size: initial;
    line-height: 30px;
  }
  .about-wrap .left {
    width: 98%;
    margin: 0 auto;
  }
  .about-wrap .map {
    top: 20%;
    width: 100%;
  }
  .about-wrap .character {
    display: none;
  }
  .about-wrap a.btn {
    margin-top: 30px;
  }
  .contact-wrap .top {
    width: 100%;
  }
  .service-wrap .flex {
    display: inline-block;
  }
  .service-wrap .flex div {
    width: 100%;
  }
  .service-wrap .flex div p {
    display: inline-block;
    width: 98%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .service-wrap .flex .flex-box {
    width: 100%;
  }
  .service-wrap .flex .flex-box ul {
    display: flex;
    align-items: center;
  }
  .service-wrap .flex .flex-box ul li:nth-child(1) {
    width: 70%;
  }
  .service-wrap .flex .flex-box ul li:nth-child(2) {
    width: 30%;
  }
  .service-wrap .flex:nth-child(6) .flex-box ul li {
    width: 100%;
  }
  .service-wrap .flex div .icon {
    width: 100%;
  }
  .service-wrap .flex:nth-child(5) div .icon {
    width: 100%;
  }
  .contact-wrap .top h2 {
    font-size: 1.6rem;
  }
  .contact-wrap .top img {
    width: 30%;
  }
  .contact-wrap .top h3 {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .contact-wrap .bottom ul {
    flex-direction: column;
  }
  .contact-wrap .bottom ul li {
    width: 98%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .contact-text {
    font-size: 1.2rem;
  }
  .work-wrap .grid .inner {
    flex-direction: column;
  }
  .work-wrap .grid .inner li {
    width: 100%;
    margin-bottom: 20px;
  }
  .work-wrap .grid .inner li:last-child {
    margin-bottom: 0;
  }
  .top-footer .footer_contact {
    width: 92.5%;
    height: 150px;
  }
  .top-footer .footer_contact_jp {
    font-size: 20px;
  }
  .top-footer {
    padding: 50px 0;
  }
  footer .footer_logo {
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
  }
  footer .footer_nav {
    padding: 27px 6.4% 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer .footer_nav_item {
    width: 50%;
    margin: 10px 0 10px;
    text-align: center;
    font-size: 14px;
  }
  footer .footer_nav_item .menu-link img {
    width: auto;
  }
  footer .footer_nav_item:nth-child(even) {
    border-left: 1px solid #ccc;
  }
  footer .footer_copy {
    text-align: center;
  }
  .company .company-wrap .company-box .img {
    width: 50%;
    margin: 0 auto;
  }
  .company .company-wrap .company-box .img .icon {
    width: 100%;
  }
  .company .company-wrap .company-box .box p {
    width: 98%;
    margin: 0 auto;
    padding: 0;
    line-height: 30px;
  }
  .blog .blog-inner .blog-box ul {
    align-items: center;
    width: 98%;
  }
  .blog .blog-inner .blog-box .modListNews__item__data {
    padding: 20px 10px;
  }
  .blog .blog-inner .blog-box .modListNews__item__data .datetime, .blog .blog-inner .blog-box .modListNews__item__data .tag {
    width: 25%;
  }
  .company .company-wrap .company-box .box,.company .company-wrap .guidance {
    width: 100%;
  }
  .company .company-wrap .guidance .flex {
    width: 98%;
    margin: 0 auto;
  }
  .company .company-wrap .guidance .flex ul .title,.company .company-wrap .guidance .flex ul li {
    font-size: initial;
  }
  .company .company-wrap .map {
    width: 98%;
  }
  .recruit .recruit-wrap .recruit-box .box {
    width: 100%;
  }
  .recruit .recruit-wrap .recruit-box .img {
    width: 50%;
    margin: 0 auto;
  }
  .recruit .recruit-wrap .recruit-box .img .icon {
    width: 100%;
  }
  .recruit .recruit-wrap .recruit-box p {
    width: 98%;
    line-height: 30px;
  }
  .recruit .recruit-wrap .recruitment {
    width: 100%;
  }
  .recruit .recruit-wrap .recruitment .flex {
    width: 98%;
  }
  .waste, .main-service {
    margin-top: 89.59px;
  }
  .waste .top {
    margin-bottom: 100px;
  }
  .business_service_header {
    padding: 110px 0 252px;
    position: relative;
    color: #fff;
  }
  .business_service_header {
    padding: 65px 0 0;
  }
  .business_service_content_title {
    margin-top: 0;
  }
  .business_service_header_img {
    width: 93.33%;
    height: auto;
    margin: 30px 0 0 auto;
    position: relative;
    top: inherit;
    left: inherit;
  }
  .business_service_header_img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .business_service_features {
    width: auto;
    margin: 60px 0 0;
    padding: 0 24px;
  }
  .business_service_header_obj {
    width: auto;
    top: inherit;
    bottom: -1.5em;
    left: inherit;
    right: 0;
    font-size: 46px;
  }
  .business_service_header_obj {
    width: 100%;
    left: 0;
    right: inherit;
    white-space: nowrap;
  }
  .business_service_header_obj span {
    float: right;
    position: static;
  }
  .waste .service .inner {
    width: 98%;
  }
  .waste .flow div img {
    width: 100%;
  }
  .waste .price .inner .box li {
    padding: 10px;
    align-items: center;
  }
  .corner-label::before {
    display: block;
    content: '例①';
    background: rgb(45 153 63);
    width: 10em;
    height: 10em;
    color: #ffffff;
    text-align: center;
    line-height: 17.5em;
    transform: rotate(-45deg);
    position: absolute;
    top: -6em;
    left: -6em;
    font-size: 1.4rem;
  }
  .corner-label ul {
    width: 100%;
  }
  .contact-wrap .top {
    margin-bottom: 0;
  }
  .waste .service .contact-page .bottom ul {
    flex-direction: column;
  }
  .waste .service .contact-page .bottom ul li {
    width: 98%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .waste .service .contact-page .bottom ul li:last-child {
    /*margin-bottom: 100px;*/
  }
  .contact-table {
    width: 98%;
    margin-top: 0;
    padding: 10px;
  }
  .privacy .privacy-wrap .privacy-inner {
    width: 100%;
  }
  .privacy .privacy-wrap .privacy-box .box{
    width: 98%;
  }
  .service-wrap {
    padding-bottom: 50px;
  }
  .waste .service .inner {
    flex-direction: column;
  }
  .service-wrap .service-box .inner li {
    width: 100%;
  }
  .main-service .service-wrap .flex div:nth-child(2) {
    width: 95%;
  }
  .main-service .service-wrap .flex div h3 {
    margin: 5% 0;
  }
  .main-service .service-wrap .flex div p {
    width: 90%;
  }
  .main-service .service-wrap .flex div p::after {
    top: 35%;
    right: -40px;
  }
  .entry_body {
    width: 98%;
  }
  .entry_body p {
    white-space: pre;           /* CSS 2.0 */
    white-space: pre-wrap;      /* CSS 2.1 */
    white-space: pre-line;      /* CSS 3.0 */
    white-space: -pre-wrap;     /* Opera 4-6 */
    white-space: -o-pre-wrap;   /* Opera 7 */
    white-space: -moz-pre-wrap; /* Mozilla */
    white-space: -hp-pre-wrap;  /* HP Printers */
    word-wrap: break-word;      /* IE 5+ */
  }
  footer .contact-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: #2c993e;
    border-radius: 0;
    font-weight: bold;
    color: #fff;
    text-align: center;
    z-index: 1000;
  }
  footer .contact-fixed .icon {
    width: auto;
    height: 30px;
  }
  footer .contact-fixed span {
    margin: 0 5px;
    font-size: 1.6rem;
    font-weight: bold;
    vertical-align: initial;
    border-bottom: double 6px;
    color: #fff;
  }
}

@media only screen and (max-width: 640px) {
}
@media screen and (min-width: 541px) {
  .pc_none {
    display: none!important;
  }
}
@media screen and (max-width: 540px) {
  .sp_none {
    display: none!important;
  }
}
