@charset "utf-8";

/* --------------------------------------------------------------- */
/* css variable start */
/* --------------------------------------------------------------- */

:root {
  --main-color: #26A69A;
}

/* --------------------------------------------------------------- */
/* css variable end */
/* --------------------------------------------------------------- */

/* common style override */

#container{
  padding-top: 0;
}

/* common style override */


div[id^=P]{
  margin-top: -130px;
  padding-top: 130px;
  pointer-events: none;
}

@media screen{
  /* fadeout config */
  .fadeout{
    position: relative;
    top: 60px;
    opacity: 0;
    pointer-events: none;
    transition:
    1.5s ease opacity,
    1.5s ease top;
  }
  .fadeout.on{
    opacity: 1;
    top: 0;
    pointer-events: auto;
  }
}

/* header */
.header {
  z-index: 50;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  min-width: 1024px;
}
.header__text {
  height: 40px;
  background-color: #fbfbfb;
  padding-right: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__textLink {
  font-size: 1.2rem;
  line-height: 16px;
  color: #4c4d56;
  font-weight: 500;
  text-decoration: underline;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.header__textLink:hover {
  opacity: 50%;
}
.header__nav {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  box-sizing: border-box;
}
.header__nav.isScrolling {
  position: fixed;
  top: 0;
  z-index: 50;
  min-width: 1024px;
}
.header__nav.isWhite {
  background-color: #ffffff;
}

.logo {
  display: inline-block;
}
.logo__link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo__img {
  margin-right: 12px;
  line-height: 0;
}
.logo__link:hover img {
  opacity: 1;
}
.logo__text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 2;
  color: #ffffff;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  flex-shrink: 0;
}
.logo__text.isWhite {
  color: #00A73C;
}

.menu {
  display: flex;
  gap: 24px;
}
.menu__item {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  flex-shrink: 0;
}
.menu__item.isWhite {
  color: #4c4d56;
}
.menu__item:hover, .menu__item.active {
  color: var(--main-color);
}
.menu__item a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.menu__item.isWhite a {
  color: inherit
}
.menu__item:hover a, .menu__item.active a {
  color: inherit
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__tel {
  display: flex;
  flex-direction: column;
  margin-right: 15px;
}
.contact__telNum {
  position: relative;
  margin-left: -20px;
  line-height: 21px;
}
.contact__telNum::before {
  content: url("../../img/header/ico-phone_white.svg");
  margin-right: 8px;
}
.contact__telNum::after {
  content: url("../../img/header/img-telNum_white.svg");
}
.contact__telNum.isWhite::before {
  content: url("../../img/header/ico-phone_grey.svg");
}
.contact__telNum.isWhite::after {
  content: url("../../img/header/img-telNum_grey.svg");
}
.contact__telTime {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.4px;
  color: #ffffff;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.contact__telTime.isWhite {
  color: #4c4d56;
}
.contact__btn {
  height: 48px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #ffffff;
  color: var(--main-color);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.contact__btn:hover {
  background-color: var(--main-color);
  color: #ffffff;
}
.contact__btn.isWhite {
  background-color: var(--main-color);
  color: #ffffff;
}
.contact__btn.isWhite:hover {
  opacity: 0.5;
}
.contact__btnLink {
  padding: 0 20px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 48px;
  display: block;
  border-radius: inherit;
  color: inherit;
  text-decoration: none;
}

/* footer */
.footer {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
}
.footer__link {
  color: #4c4d56;
  margin-bottom: 22px;
  margin-top: 94px;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 30px;
  letter-spacing: 1.3px;
}
.footer__link a:hover {
  opacity: 0.5;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.footer__copyright {
  color: #ffffff;
  text-align: center;
  line-height: 70px;
  width: 100%;
  background-color: #4c4d56;
  letter-spacing: 0.2px;
}
.footer--withButton {
  padding-top: 100px;
  height: auto;
}

/* page-title */
.page-title{
  background: url(../img/index/page_title_bg.jpg) no-repeat center 0 / cover;
}
.page-title .cover{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  width: 1080px;
  height: 420px;
  color: #FFF;
  background: url(../img/index/page_title_icon.png) no-repeat right center;
}
.page-title .cover .title{
  margin-bottom: 30px;
  font-size: 3.2rem;
  line-height: 140%;
}
.page-title .cover .text{
  font-size: 1.5rem;
  line-height: 173%;
}


/* index-title */
.index-title{
  margin-bottom: 50px;
  color: #009933;
  text-align: center;
}
.index-title .main{
  color: #3c3c3c;
  font-size: 3rem;
  line-height: 100%;
}
.index-title .sub{
  margin-bottom: 15px;
  font-size: 1.4rem;
  line-height: 100%;
}


.edit-area{
  padding: 70px 0;
}

/* edit-area weapon */
.edit-area.weapon{
}
.edit-area.weapon .top-text p{
  margin-bottom: 50px;
  line-height: 173%;
}

/* edit-area pickup */
.edit-area.pickup{
  background: #F7F7F7;
}

/* float-set .type01 */
.float-set.type01{
}
.float-set.type01 .photo-box {
  width: 190px;
}
.float-set.type01 .text-box {
  width: calc(100% - 190px - 20px);
}
.float-set.type01 .text-box p{
  margin-bottom: 30px;
  line-height: 173%;
}
.float-set.type01 .text-box p:last-child{
  margin-bottom: 0;
}



/* edit-area why */
.edit-area.why{
}
.edit-area.why .top-text{
  margin-bottom: 40px;
  text-align: center;
}
.edit-area.why .image{
  margin-bottom: 20px;
  text-align: center;
}
.edit-area.why .image-notes{
  font-size: 1.4rem;
  text-align: center;
}
.edit-area.why .iframe-box{
  margin-bottom: 20px;
}
.edit-area.why .iframe-box iframe{
  width: 100%;
  height: 485px;
}


/* edit-area detail */
.edit-area.detail{
  background: #009933;
}
.edit-area.detail .large-title{
  margin-bottom: 30px;
  color: #FFF;
  font-size: 2rem;
  text-align: center;
}
.edit-area.detail .list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.edit-area.detail .list li{
  margin: 0 10px;
}
.edit-area.detail .list li a{
  position: relative;
  display: flex;
  align-items: center;
  color: #009933;
  min-width: 240px;
  height: 100%;
  padding: 15px 20px;
  background: #FFF;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: ease .25s color,ease .25s background,ease .25s border;
}
.edit-area.detail .list li a:hover{
  color: #FFF;
  background: #009933;
  border-color: #FFF;
}
.edit-area.detail .list li a:after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #009933;
  border-right: 2px solid #009933;
  box-sizing: border-box;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.edit-area.detail .list li a:hover:after{
  border-top-color: #FFF;
  border-right-color: #FFF;
}


/* edit-area about */
.edit-area.about{
}
.edit-area.about .list{
  margin-bottom: 70px;
}
.edit-area.about .list li{
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #707070;
}
.edit-area.about .list li:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}
.edit-area.about .list .text-box{
  margin-bottom: 60px;
}
.edit-area.about .list .text-box p{
  margin-bottom: 30px;
  line-height: 173%;
}
.edit-area.about .list .text-box p:last-child{
  margin-bottom: 0;
}

.edit-area.about .list .text-box .notes{
  margin-bottom: 30px;
}
.edit-area.about .list .text-box .notes p{
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.edit-area.about .list .photo-box{
  margin-bottom: 30px;
}

.edit-area.about .list .link-box{
  line-height: 2;
}



/* edit-area service */
.edit-area.service{
  padding: 70px 0 42px;
  background: #f7f7f7;
}
.edit-area.service .list{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.edit-area.service .list li{
  margin: 0 0 28px 28px;
  width: 256px;
}
.edit-area.service .list li:nth-child(3n+1){
  margin-left: 0;
}
.edit-area.service .list li a{
  display: block;
  height: 100%;
  padding: 20px 15px 13px;
  text-decoration: none;
  background: #FFF;
  border: 1px solid #e7e7e7;
  box-sizing: border-box;
}
.edit-area.service .list li .logomark{
  margin-bottom: 19px;
  text-align: center;
}

.edit-area.service .list li .logomark.type01 img{ max-width: 120px;}
.edit-area.service .list li .logomark.type02 img{ max-width: 112px;}
.edit-area.service .list li .logomark.type03 img{ max-width: 82px;}
.edit-area.service .list li .logomark.type04 img{ max-width: 162px;}
.edit-area.service .list li .logomark.type05 img{ max-width: 133px;}
.edit-area.service .list li .logomark.type06 img{ max-width: 179px;}
.edit-area.service .list li .logomark.type07 img{ max-width: 179px;}
.edit-area.service .list li .logomark.type08 img{ max-width: 179px;}
.edit-area.service .list li .logomark.type09 img{ max-width: 162px;}
.edit-area.service .list li .logomark.type10 img{ max-width: 190px;}
.edit-area.service .list li .logomark.type11 img{ max-width: 100%;}

.edit-area.service .list li .photo{
  margin-bottom: 15px;
}
.edit-area.service .list li .photo img{
  max-width: 100%;
  height: auto;
}

.edit-area.service .list li .text{
  height: 50px;

  font-size: 1.4rem;
  line-height: 171%;
  text-align: center;
}
.edit-area.service .list li .readmore{
  font-size: 1.2rem;
  text-align: right;
  line-height: 200%;
  text-decoration: underline;
  transition: ease 0.25s color;
}
.edit-area.service .list li a:hover .readmore{
  color: #b0b0b0;
}






.viewMore__link {
      font-size: 1.8rem;
}