@charset "UTF-8";
/* CSS Document */
#wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  #wrapper {
    min-width: 1024px;
  }
}
@media screen and (max-width: 767px) {
  #wrapper {
    width: 100%;
  }
}

.spNoDisplay {
  display: block;
}

@media screen and (min-width: 1024px) {
  .pcNoDisplay {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .spNoDisplay {
    display: none !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.77;
}

/* FONT */
/* 明朝 */
.font-MC {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* Eng */
.en {
  font-family: "Didact Gothic", sans-serif;
  letter-spacing: 0.1em;
}

.wrapper {
  margin: 0;
  padding: 0;
}

/* Chrome画像ボケ対策 */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* HEADER
--------------------------------------------- */
#header {
  /*max-width: 1240px;*/
  min-width: 1024px;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #header {
    width: 100%;
    height: 50px;
    /*display: none;*/
    background-color: #000000;
  }
}
#header a.header-logo {
  width: 12%;
  margin-left: 3%;
}
@media screen and (max-width: 767px) {
  #header a.header-logo {
    width: 100%;
    max-height: 50px;
  }
}
#header a.header-logo img {
  display: block;
  width: 100%;
  max-width: 172px;
  height: auto;
}
@media screen and (max-width: 767px) {
  #header a.header-logo img {
    width: auto;
    max-height: 46px;
  }
}
#header ul.pc-nav {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #header ul.pc-nav {
    display: none;
  }
}
#header ul.pc-nav li {
  width: 20%;
  text-align: center;
  position: relative;
}
#header ul.pc-nav li a {
  color: #FFFFFF;
  display: inline-block;
  position: relative;
  font-size: 14px;
  text-decoration: none;
}
#header ul.pc-nav li a::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  content: "";
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  transition: 0.3s;
  transform: translateX(-50%);
}
#header ul.pc-nav li a:hover::after, #header ul.pc-nav li a.active::after {
  width: 100%;
}
#header ul.pc-nav .header-sdgs img {
  width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hidden {
  background-color: #000000 !important;
  transition: all 1s ease;
}

/*--------------------------------------------------

     SP GLOBAL NAV (COMMON)

---------------------------------------------------*/
.drawer_menu {
  display: none;
}
.drawer_menu .drawer_button {
  color: #FFFFFF;
  display: none;
}
.drawer_menu .drawer_button .drawer_bar {
  background-color: #CD5408;
}

@media screen and (max-width: 767px) {
  .drawer_menu {
    display: block;
  }
  .drawer_menu .drawer_bg {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    background-color: rgba(51, 51, 51, 0);
    display: none;
    top: 0;
    left: 0;
  }
  .drawer_menu .drawer_button {
    display: block;
    background-color: #FFFFFF;
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 1001;
    text-align: center;
    outline: none;
  }
  .drawer_menu .drawer_button .drawer_bar {
    display: block;
    width: 30px;
    height: 2px;
    transition: all 0.2s;
    transform-origin: center;
    position: absolute;
    left: 10px;
  }
  .drawer_menu .drawer_button .drawer_bar1 {
    top: 13px;
  }
  .drawer_menu .drawer_button .drawer_bar2 {
    top: 24px;
  }
  .drawer_menu .drawer_button .drawer_bar3 {
    opacity: 0;
    top: 24px;
  }
  .drawer_menu .drawer_button .drawer_bar4 {
    top: 35px;
  }
  .drawer_menu .drawer_button.active .drawer_bar1 {
    opacity: 0;
  }
  .drawer_menu .drawer_button.active .drawer_bar2 {
    transform: rotate(137deg);
  }
  .drawer_menu .drawer_button.active .drawer_bar3 {
    opacity: 1;
    transform: rotate(-137deg);
  }
  .drawer_menu .drawer_button.active .drawer_bar4 {
    opacity: 0;
  }
  .drawer_menu .drawer_button.active .drawer_menu_text {
    display: none;
  }
  .drawer_menu .drawer_button.active .drawer_close {
    display: block;
  }
  .drawer_menu .drawer_text {
    text-align: center;
    font-size: 10px;
  }
  .drawer_menu .drawer_close {
    letter-spacing: 0.08em;
    display: none;
  }
  .drawer_menu .drawer_menu_text {
    display: block;
  }
  .drawer_menu .drawer_nav_wrapper {
    width: 100vw;
    height: 100%;
    transition: all 0.2s;
    transform: translate(100vw);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: #E3E3E3;
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 50px;
  }
  .drawer_menu .drawer_nav {
    display: block;
    position: relative;
    border-top: 2px #FFFFFF solid;
    margin: 0;
  }
  .drawer_menu .drawer_nav li {
    height: auto;
    line-height: 50px;
    position: relative;
    border-bottom: 1px solid #FFFFFF;
  }
  .drawer_menu .drawer_nav li a {
    color: #000000;
    display: block;
    text-align: left;
    padding-left: 7%;
    background: url("../images/common/link-arrow_black.svg") no-repeat 95% center;
    text-decoration: none;
  }
  .drawer_menu .drawer_nav li a:hover {
    text-decoration: none;
  }
  .drawer_menu .drawer_nav_wrapper.open {
    transform: translate(0);
  }
  .drawer_menu.left .drawer_button {
    right: auto;
    left: 32px;
  }
  .drawer_menu.left .drawer_nav_wrapper {
    transform: translate(-250px);
    right: auto;
    left: 0;
  }
  .drawer_menu.left .drawer_nav_wrapper.open {
    transform: translate(0);
  }
  .touch-btn {
    color: #555;
    position: absolute;
    top: 0.25rem;
    right: 0;
    display: block;
    z-index: 10;
    width: 100%;
    height: 50px;
    text-align: center;
    vertical-align: middle;
  }
  /*矢印*/
  span.arrow {
    display: block;
    position: absolute;
    top: 0;
    right: 5%;
  }
  span.arrow::after {
    content: "❯";
    color: #FFFFFF;
    font-size: 16px;
  }
  .rotate {
    transform: rotate(90deg);
    transition: all 0.35s;
  }
}
/*--------------------------------------------------

    中面共通

---------------------------------------------------*/
/*タイトル*/
.inner-main {
  width: 100%;
  height: 200px;
  padding-top: 100px;
  position: relative;
  margin-bottom: 50px;
  /*&::after{
  	content: '';
  	width: 50%;
  	height: 100%;
  	background-color: #7C491C;
  	position: absolute;
  	left: 50%;
  	top: 0;
  	mix-blend-mode: multiply;
  	opacity: 0.5;
  }*/
}
@media screen and (max-width: 767px) {
  .inner-main {
    height: 150px;
    padding-top: 50px;
    margin-bottom: 25px;
  }
}
.inner-main::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
  position: absolute;
  left: 0%;
  top: 0;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.inner-main.survey {
  background: url("../images/survey/survey_image.jpg") no-repeat center center;
  background-size: cover;
}
.inner-main.improvement {
  background: url("../images/improvement/improvement_image.jpg") no-repeat center center;
  background-size: cover;
}
.inner-main.other {
  background: url("../images/other/other_image.jpg") no-repeat center center;
  background-size: cover;
}
.inner-main.company, .inner-main.policy {
  background: url("../images/common/company_main_image.jpg") no-repeat center 25%;
  background-size: cover;
}
.inner-main.contact {
  background: url("../images/common/contact_main_image.jpg") no-repeat center center;
  background-size: cover;
}
.inner-main h1 {
  font-size: 40px;
  color: #FFFFFF;
  text-align: center;
  z-index: 1;
  position: relative;
  padding-top: 40px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .inner-main h1 {
    font-size: 7vw;
  }
}
.inner-main h1 span {
  display: block;
  font-size: 14px;
  color: #9B9B9B;
}
.inner-main p {
  text-align: center;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .inner-main p {
    width: 90%;
    font-size: 3.47vw;
    margin: 0 auto;
  }
}

/* FOOTER
--------------------------------------------- */
#footer {
  width: 100%;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 0 0 10px 0;
  }
}
#footer .footer-inner {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  #footer .footer-inner {
    width: 100%;
  }
}
#footer .footer-inner ul {
  width: 70%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #footer .footer-inner ul {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 30px;
    background-color: #E3E3E3;
  }
}
#footer .footer-inner ul li {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #footer .footer-inner ul li {
    font-size: 3.47vw;
    width: 50%;
    padding: 3vw 0;
    border-bottom: 1px #FFFFFF solid;
  }
}
#footer .footer-inner ul li a {
  color: #000000;
  text-decoration: none;
  position: relative;
  /*&::before{
  	content: url(../images/common/arrow_rb.png);
  	transform: scale(0.26);
  	position: absolute;
  	top: -13px;
  	left: -20px;

  	@include sp {
  		left: 15%;
  	}
  }*/
}
@media screen and (max-width: 767px) {
  #footer .footer-inner ul li a {
    padding-left: 10vw;
  }
}
#footer .footer-inner ul li a:hover {
  text-decoration: underline;
}
#footer .footer-inner ul li:last-child {
  border-bottom: none;
}
#footer .footer-inner p {
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer .footer-inner p {
    font-size: 3.47vw;
    width: 90%;
    margin: 0 auto;
  }
}
#footer .footer-inner .logos {
  width: 30%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #footer .footer-inner .logos {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 30px;
  }
}
#footer .footer-inner .soil-logo {
  width: 123px;
  position: static;
}
@media screen and (max-width: 767px) {
  #footer .footer-inner .soil-logo {
    position: static;
    width: 30vw;
  }
}
#footer .footer-inner .soil-logo img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}
#footer .footer-inner .soil-logo p {
  display: block;
  background-color: #E3E3E3;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
#footer .footer-inner .geocolor-logo {
  width: 110px;
  position: static;
}
@media screen and (max-width: 767px) {
  #footer .footer-inner .geocolor-logo {
    position: static;
    width: 25vw;
  }
}
#footer .footer-inner .geocolor-logo img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}
#footer .footer-inner .geocolor-logo p {
  display: block;
  background-color: #E3E3E3;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
#footer .footer-inner p.copyright {
  text-align: center;
  font-size: 10px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #footer .footer-inner p.copyright {
    margin-top: 25px;
  }
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 38px;
  height: 38px;
  z-index: 9999;
  background: url("../images/common/arrow_uw.png") no-repeat center center #000000;
  background-size: 50%;
  /*border:1px #FFFFFF solid;*/
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .pagetop {
    display: block;
    position: static;
    width: 100%;
    height: 50px;
    background-color: #000000;
    background-size: 24px auto;
    /*border-bottom:1px #FFFFFF solid;*/
  }
  .pagetop a {
    width: 100%;
    height: 50px;
    text-indent: -9999px;
  }
}
.pagetop a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  /*width:100.1%;
  height:100.1%;*/
  text-indent: -9999px;
}
.pagetop a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
  transition: all 0.3s;
}/*# sourceMappingURL=common.css.map */