@charset "UTF-8";
.strengths1, .strengths2, .strengths3 {
  opacity: 0;
}
.header-bg {
  background-color: rgba(255, 255, 255, 0.00);
}
.header-bg.header-bgscroll {
  transition: 0.7s;
  background-color: rgba(255, 255, 255, 1.00);
}
.top-color {
  color: #FFF;
}
.top-color.after-color {
  color: #333;
  transition: 0.7s;
  text-decoration: none;
}
main {
  background-color: #fff;
  margin-top: 60px;
  margin-left: 140px;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
/*私たちについて*/
.top-images {
  height: 100vh;
}
.top-images img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  background-attachment: fixed;
  position: fixed;
}
/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 56%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}
/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -21px;
  top: -23px;
  /*テキストの形状*/
  color: #333;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #333;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.section_summary {
  /*  max-width: 1300px;*/
  margin: 0 auto;
  padding-top: 60px;
  overflow: hidden;
  /*  overflow-x: hidden;*/
  width: 100%;
}
.section_summary__images-area {
  /*  max-width: 510px;*/
  /*  max-height: 325px;*/
  width: 510px;
  min-width: 370px;
  margin-left: 105px;
  margin-top: 40px;
  margin-right: 35px;
  /*  height: 325px;*/
  /*  flex-shrink: 0;*/
  /*  margin: 40px 35px 0 105px;*/
}
.section_summary__images-area img {
  /*  object-fit: cover;*/
  width: 100%;
  /*  height: 100%;*/
  display: block;
}
.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  /*  margin: 0 auto 0 -360px;*/
  display: flex;
  /*  justify-content: center;*/
  justify-content: space-between;
  position: relative;
}
.container:before {
  display: block;
  content: "";
  width: 100vw;
  height: 482px;
  /* background-color: #F8F8F8; */
  position: absolute;
  left: 300px;
  top: 0;
  z-index: -1;
}
/*
.section_summary__description {
  background-color: #F8F8F8;
  margin-left: 360px;
}
*/
.container_r {
  max-width: 545px;
  padding: 70px 0 20px 70px;
  margin-right: 105px;
  /*  padding: 40px;*/
}
.section_summary__description h2 {
  text-align: left;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 40px;
}
.section_summary__description p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-right: 75px;
  margin-bottom: 65px;
  text-align: justify;
}

.detail-btn a {
  text-decoration: none;
  background-color: #336190;
  border: 1px solid transparent;
  color: #fff;
  width: 260px;
  height: 50px;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: auto;
  transition: 0.3s;
}
.detail-btn a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #fff transparent;
}
.detail-btn a:hover {
  background-color: #fff;
  border: 1px solid #336190;
  color: #336190;
  opacity: 1.0;
}
.detail-btn a:hover::after {
  border-color: transparent transparent #336190 transparent;
  color: #336190;
  opacity: 1.0;
}
@media(max-width: 768px) {
  .top-color.after-color {
  color: #FFF;
}
  .scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 50%;
    bottom: 5px;
    /*全体の高さ*/
    height: 50px;
  }
  main {
    margin-left: 0;
  }
  .top-images {
    margin-top: 60px;
    min-width: 100%;
    height: 100vh;
  }
  .header-bg {
    background-color: rgba(255, 255, 255, 1.00);
  }
  .header-bg.header-bgscroll {
    transition: 0;
    background-color: rgba(255, 255, 255, 1.00);
  }
  .section_summary {
    min-width: 320px;
    margin: 50px auto 0;
  }
  .section_summary__images-area {
    width: 320px;
    min-width: 320px;
    margin: 0 120px 0 0;
    padding-top: 30px;
  }
  .section_summary__images-area img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
  }
  .container {
    min-width: 320px;
    margin: 0 auto;
    display: block;
  }
  .container:before {
    display: block;
    content: "";
    width: 100vw;
    height: 575px;
    /* background-color: #F8F8F8; */
    position: absolute;
    left: 38px;
    top: 0;
    z-index: -1;
  }
  /*
  .section_summary__description {
    margin-left: 38px;
    padding-bottom: 25px;
  }
*/
  .container_r {
    max-width: 640px;
    padding: 28px 30px 30px 30px;
    margin: 0 auto;
    margin-bottom: 20px;
    /*  padding: 40px;*/
  }
  .section_summary__description h2 {
    text-align: left;
    font-size: 2.0rem;
    font-weight: 300;
    margin-bottom: 30px;
  }
  .section_summary__description p {
    max-width: 640px;
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.4rem;
    padding: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
  /* ボタン*/
  .detail-btn a {
    text-decoration: none;
    background-color: #336190;
    border: 1px solid transparent;
    color: #fff;
    width: 150px;
    height: 27px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: auto;
    transition: 0.3s;
  }
  .detail-btn a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent #fff transparent;
  }
}

/* 川崎市SDGsゴールドパートナー */
.kawasaki-sdgs {
  margin-top: 100px;
  background-color: #F8F8F8;
  padding: 60px 105px;
  display: flex;
  text-align: left;
  justify-content: center;
}

.sdgs-pic_wra img {
  max-width: 370px;
}

.sdgs-text_wra {
  padding-left: 80px;
  max-width: 730px;
}

.sdgs-text_wra p {
  text-align: left;
  padding-top: 20px;
  font-size: 1.8rem;
  line-height: 3.4rem;
}

.sdgs-text_wra h2 {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: left;
  line-height: 4.8rem;
}
.sdgs-text_wra img {
  max-width: 309px;
  text-align: left;
  margin-top: 30px;
}
.sdgs-text_wra a {
  word-break: break-all;
}

@media(max-width: 768px) {
  .kawasaki-sdgs {
    margin-top: 50px;
    background-color: #F8F8F8;
    padding: 40px 22px;
    display: flex;
    text-align: center;
    flex-direction: column;
    margin-bottom: 50px;
  }
  
  .sdgs-pic_wra img {
    max-width: 270px;
  }
  
  .sdgs-text_wra {
    padding-left: 0;
  }
  
  .sdgs-text_wra p {
    text-align: left;
    padding-top: 20px;
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
  
  .sdgs-text_wra h2 {
    font-size: 2.0rem;
    font-weight: 600;
    text-align: left;
    line-height: 3.2rem;
    padding-top: 15px;
  }
  .sdgs-text_wra img {
    max-width: 309px;
    text-align: left;
    margin-top: 30px;
  }
  
}

/*３つの強み*/
.section_strengths {
  margin: 120px auto;
}
.section_strengths ul {
  max-width: 1300px;
  list-style: none;
  margin: 0 auto;
}
.section_strengths li {
  display: inline-block;
  max-width: 290px;
  align-items: center;
  margin: 60px 54px 60px 54px;
  vertical-align: top;
}
/*
.section_strengths li:last-child {
  margin-right: 0;
}
*/
/*
.strengths-textarea {
 margin: 0 0 0 auto;
}
*/
.section_strengths h3 {
  margin-top: -35px;
  font-size: 3.8rem;
  font-weight: 600;
  text-align: center;
  padding-left: 30px;
}
.strengths-text {
  top: 0;
  margin: 0 auto;
}
.strengths-icon {
  margin-top: 20px;
  width: 180px;
}
.strengths-icon__line {
  display: block;
  margin: 0 auto;
}
.section_strengths p {
  margin-top: 35px;
  font-size: 1.8rem;
  text-align: justify;
}
.delay-time {
  animation-delay: 0.1s;
}
.delay-time2 {
  animation-delay: 0.5s;
}
.delay-time3 {
  animation-delay: 0.9s;
}
@media(max-width: 768px) {
  .section_strengths {
    margin: 0 auto;
  }
  .section_strengths ul {
    max-width: 1300px;
    list-style: none;
    margin: 0 auto;
  }
  .section_strengths li {
    display: inline-block;
    max-width: 375px;
    min-width: 320px;
    align-items: center;
    margin: 0;
    padding: 40px 7px;
    /*    margin: 40px 42px 40px 42px;*/
    vertical-align: top;
  }
  .strengths-textarea {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .strengths-textarea-r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .strengths-textarea h3 {
    margin-top: -30px;
    font-size: 3.2rem;
    font-weight: 600;
    text-align: left;
    padding-left: 44px;
  }
  .strengths-textarea-r h3 {
    margin-top: -30px;
    font-size: 3.2rem;
    font-weight: 600;
    text-align: right;
    padding-right: 35px;
  }
  .strengths-text {
    top: 0;
    margin: 0;
    height: 58px;
  }
  .strengths-icon {
    margin-top: 0px;
    width: 120px;
  }
  .strengths-icon__line {
    display: block;
    margin: 0 auto;
  }
  .section_strengths p {
    margin-top: 15px;
    padding: 0 43px;
    font-size: 1.6rem;
    line-height: 2.5rem;
    text-align: justify;
  }
}
/*各ページへのリンク*/
.section_link {
  margin-bottom: 160px;
}
.section_link__images-bg {
  background-color: rgba(255, 255, 255, 0.85);
  width: 630px;
  height: 360px;
  margin-left: auto;
}
.section_link__images-bg-2 {
  background-color: rgba(255, 255, 255, 0.85);
  width: 630px;
  height: 360px;
  margin-right: auto;
}
.section_link__images-bg h2 {
  font-size: 2.6rem;
  font-weight: 600;
  padding: 45px 0 45px 85px;
  text-align: left;
}
.section_link__images-bg-2 h2 {
  font-size: 2.6rem;
  font-weight: 600;
  padding: 45px 0 45px 85px;
  text-align: left;
}
.section_link__images-bg p {
  max-width: 540px;
  font-size: 1.8rem;
  line-height: 3.0rem;
  font-weight: 400;
  padding: 0 0 45px 55px;
  text-align: left;
  text-align: justify;
}
.section_link__images-bg-2 p {
  max-width: 540px;
  font-size: 1.8rem;
  line-height: 3.0rem;
  font-weight: 400;
  padding: 0 0 40px 55px;
  text-align: left;
  text-align: justify;
}
.section_link__images-area1 {
  background-image: url("../images/pc/top-link01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding: 40px 0;
}
.section_link__images-area2 {
  background-image: url("../images/pc/top-link02.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding: 40px 0;
}
.section_link__images-area3 {
  background-image: url("../images/pc/top-link03.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding: 40px 0;
}
.link-area {
  max-width: 1090px;
  margin: 0 auto;
}
/* ボタン*/
.detail-btn1 a {
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #336190;
  color: #336190;
  width: 260px;
  height: 50px;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 50px;
  margin-left: auto;
  transition: 0.3s;
}
.detail-btn1 a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #336190 transparent;
}
.detail-btn1 a:hover {
  background-color: #336190;
  border: 1px solid #fff;
  color: #fff;
  opacity: 1.0;
}
.detail-btn1 a:hover::after {
  border-color: transparent transparent #fff transparent;
  color: #fff;
  opacity: 1.0;
}
@media(max-width: 768px) {
  .section_link {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .section_link__images-bg {
    background-color: rgba(255, 255, 255, 0.85);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 25px 30px 25px;
  }
  .section_link__images-bg-2 {
    background-color: rgba(255, 255, 255, 0.85);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 25px 30px 25px;
  }
  .section_link__images-bg h2 {
    font-size: 1.8rem;
    font-weight: 600;
    max-width: 460px;
    margin: 0 auto;
    padding: 30px 0 30px 0px;
    text-align: left;
  }
  .section_link__images-bg-2 h2 {
    font-size: 1.8rem;
    font-weight: 600;
    max-width: 460px;
    margin: 0 auto;
    padding: 30px 0 20px 0px;
    text-align: left;
  }
  .section_link__images-bg p {
    min-width: auto;
    max-width: auto;
    font-size: 1.2rem;
    line-height: 1.9rem;
    font-weight: 400;
    padding: 0 0 30px 0;
    margin: 0 auto;
    text-align: left;
  }
  .section_link__images-bg-2 p {
    min-width: auto;
    max-width: auto;
    font-size: 1.2rem;
    line-height: 1.9rem;
    font-weight: 400;
    padding: 0 0 30px 0;
    margin: 0 auto;
    text-align: left;
  }
  .section_link__images-area1 {
    background-image: url("../images/sp/top-link01@2x.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
    padding: 6% 6%;
  }
  .section_link__images-area2 {
    background-image: url("../images/sp/top-link02@2x.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
    padding: 6% 6%;
  }
  .section_link__images-area3 {
    background-image: url("../images/sp/top-link03@2x.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
    padding: 6% 6%;
  }
  .link-area {
    /* min-width: 375px; */
    margin: 0 auto;
  }
  /* ボタン*/
  .detail-btn1 {
    max-width: 460px;
    margin: 0 auto;
  }
  .detail-btn1 a {
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #336190;
    color: #336190;
    width: 120px;
    height: 25px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 0px;
    margin-left: auto;
    transition: 0.3s;
  }
  .detail-btn1 a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent #336190 transparent;
  }
}
/*差し替え致します*/
.section_replace {
  max-width: 1300px;
  min-height: 303px;
  margin: 0 auto 140px;
  padding-left: 105px;
  position: relative;
}
.section_replace h3 {
  width: 80%;
  margin-bottom: 40px;
  padding: 25px 0 15px 100px;
  border-bottom: solid 1px #336190;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: left;
  float: left;
}
.section_replace__imagearea {
  position: absolute;
  top: 0;
  right: 105px;
  width: 460px;
  height: 293px;
}
.section_replace__imagearea img {
  width: 100%;
  height: 100%;
  z-index: 100;
  box-shadow: 10px 10px 0px #336190;
}
.section_replace p {
  font-size: 1.8rem;
  line-height: 3.1rem;
  text-align: justify;
  padding-bottom: 15px;
  max-width: 485px;
  margin-left: 60px;
  margin-right: 630px;
}
/*小売も可能です*/
.section-retail {
  max-width: 1300px;
  min-height: 303px;
  margin: 0 auto 140px;
  padding-right: 105px;
  position: relative;
}
.section-retail h3 {
  position: relative;
  width: 80%;
  margin-bottom: 40px;
  padding: 25px 100px 15px 0;
  border-bottom: solid 1px #336190;
  font-size: 3.0rem;
  font-weight: 600;
  text-align: right;
  float: right;
}
.section-retail__imagearea {
  position: absolute;
  top: 0;
  left: 105px;
  width: 460px;
  height: 293px;
}
.section-retail__imagearea img {
  width: 100%;
  height: 100%;
  z-index: 100;
  box-shadow: 10px 10px 0px #336190;
}
.section-retail p {
  font-size: 1.8rem;
  line-height: 3.1rem;
  text-align: justify;
  padding-bottom: 15px;
  max-width: 485px;
  margin-right: 60px;
  margin-left: 630px;
}
@media(max-width: 768px) {
  /*差し替え致します*/
  .section_replace {
    max-width: 1300px;
    min-height: 303px;
    margin: 0 auto 70px;
    padding: 0 22px;
    position: static;
  }
  .section_replace h3 {
    width: 185px;
    padding: 0 0 10px 0;
    border-bottom: solid 1px #336190;
    font-size: 2.0rem;
    font-weight: 600;
    text-align: center;
    float: none;
    margin: 0 auto 20px;
  }
  .section_replace__imagearea {
    position: static;
    margin: 0 auto 30px;
    width: 270px;
    height: 172px;
  }
  .section_replace__imagearea img {
    width: 100%;
    height: 100%;
    z-index: 100;
    box-shadow: 10px 10px 0px #336190;
  }
  .section_replace p {
    font-size: 1.4rem;
    line-height: 2.4rem;
    text-align: left;
    padding: 0 20px 15px;
    margin: 0 auto;
  }
  /*小売も可能です*/
  .section-retail {
    max-width: 1300px;
    min-height: 303px;
    margin: 0 auto;
    padding: 0 22px;
    position: static;
  }
  .section-retail h3 {
    width: 185px;
    padding: 0 0 10px 0;
    border-bottom: solid 1px #336190;
    font-size: 2.0rem;
    font-weight: 600;
    text-align: center;
    float: none;
    margin: 0 auto 20px;
  }
  .section-retail__imagearea {
    position: static;
    margin: 0 auto 26px;
    width: 270px;
    height: 172px;
  }
  .section-retail__imagearea img {
    width: 100%;
    height: 100%;
    z-index: 100;
    box-shadow: 10px 10px 0px #336190;
  }
  .section-retail p {
    font-size: 1.4rem;
    line-height: 2.4rem;
    text-align: left;
    padding: 0 20px 15px;
    margin: 0 auto;
  }
}
@media(max-width: 1180px) {
  /*差し替え致します*/
  .section_replace {
    max-width: 1300px;
    min-height: 303px;
    margin: 0 auto 70px;
    padding: 0 22px;
    position: static;
  }
  .section_replace h3 {
        width: 300px;
    padding: 0 20px 15px 20px;
    border-bottom: solid 1px #336190;
    font-size: 2.0rem;
    font-weight: 600;
    text-align: center;
    float: none;
    margin: 0 auto 30px;
  }
  .section_replace__imagearea {
    position: static;
    margin: 0 auto 50px;
  }
  .section_replace__imagearea img {
    width: 100%;
    height: 100%;
    z-index: 100;
    box-shadow: 10px 10px 0px #336190;
  }
  .section_replace p {
    max-width: 680px;
    font-size: 1.4rem;
    line-height: 3.0rem;
    text-align: left;
    padding: 0 20px 15px;
    margin: 0 auto;
  }
  /*小売も可能です*/
  .section-retail {
    max-width: 1300px;
    min-height: 303px;
    margin: 0 auto;
    padding: 0 22px;
    position: static;
  }
  .section-retail h3 {
        width: 300px;
    padding: 0 20px 15px 20px;
    border-bottom: solid 1px #336190;
    font-size: 2.0rem;
    font-weight: 600;
    text-align: center;
    float: none;
    margin: 0 auto 30px;
  }
  .section-retail__imagearea {
    position: static;
    margin: 0 auto 30px;
  }
  .section-retail__imagearea img {
    width: 100%;
    height: 100%;
    z-index: 100;
    box-shadow: 10px 10px 0px #336190;
  }
  .section-retail p {
    font-size: 1.4rem;
    line-height: 3.0rem;
    text-align: left;
    padding: 0 20px 15px;
    margin: 0 auto;
    max-width: 680px;
  }
}
.section_contact-form {
  margin-bottom: 0;
}