@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated:  2010-09-17
Author:  Richard Clark - http: //richclarkdesign.com
Twitter:  @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Cantarell:wght@700&family=Oswald:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

main {
  display: block;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

img[src$=".svg"] {
  display: block;
  width: 100%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* FONT
***************************************************************/


/* 会社概要リンクリスト
***************************************************************/
.companyMenuBox {
  padding-top: 74px;
}

.companyMenuList {
  width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.companyMenuList li {
  width: calc(100% / 6);
}

.companyMenuList li a {
  display: block;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}

.companyMenuList li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: #335167;
}

.companyMenuList li.ls0 a {
  letter-spacing: 0;
}

@media all and (min-width: 681px) {
  .companyMenuList li.act a::before {
    width: 100%;
  }
  .companyMenuList li a::before {
    -webkit-transition: right 0.3s, left 0.3s, width 0.3s;
    transition: right 0.3s, left 0.3s, width 0.3s;
  }
  .companyMenuList li a:hover::before {
    right: auto;
    left: 0;
    width: 100%;
  }
}

@media all and (max-width: 680px) {
  .companyMenuBox {
    padding-top: 0;
  }
  .companyMenuList {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #DEDEDE;
  }
  .companyMenuList li {
    width: calc(100% / 2);
    height: 50px;
    border-bottom: 1px solid #DEDEDE;
  }
  .companyMenuList li:nth-child(odd) {
    border-right: 1px solid #DEDEDE;
  }
  .companyMenuList li.act {
    background: #335167;
  }
  .companyMenuList li.act a {
    color: #fff;
  }
  .companyMenuList li.act a::before {
    content: none;
  }
  .companyMenuList li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    font-size: 14px;
    line-height: 1.3;
    padding-bottom: 0;
  }
  .companyMenuList li a::before {
    content: '';
    position: absolute;
    bottom: auto;
    right: 7px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    width: 7px;
    height: 7px;
    background: none;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
}

/* 会社概要リンクリスト
***************************************************************/


/* SDGSとは
***************************************************************/
.secAboutSdgs {
  background: #F7F7F7;
  padding: 100px 0;
}

.secAboutSdgs .inner {
  width: 1000px;
  margin: auto;
}

.secAboutSdgs .sdgsLogo {
  width: 472px;
  margin: 0 auto 28px;
}

.secAboutSdgs .sdgsList {
  width: 848px;
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.secAboutSdgs .sdgsList li {
  width: calc((100% - (15px * 5))/6);
  margin: 0 15px 15px 0;
}

.secAboutSdgs .sdgsTitle, .secAboutSdgs .sdgsText {
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 36px;
  font-weight: 400;
}

@media all and (min-width: 681px) {
  .secAboutSdgs .sdgsList li:nth-child(6n) {
    margin-right: 0;
  }
}

@media all and (max-width: 680px) {
  .secAboutSdgs {
    padding: 50px 0 80px;
  }
  .secAboutSdgs .inner {
    width: 90.627%;
  }
  .secAboutSdgs .sdgsLogo {
    width: 55.519%;
    margin: 0 auto 10px;
  }
  .secAboutSdgs .sdgsList {
    width: 100%;
    margin: 0 auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .secAboutSdgs .sdgsList li {
    width: calc((100% - (5px * 5))/6);
    margin: 0 5px 5px 0;
  }
  .secAboutSdgs .sdgsList li:nth-child(6n) {
    margin-right: 0;
  }
  .secAboutSdgs .sdgsTitle, .secAboutSdgs .sdgsText {
    font-size: 16px;
    text-align: left;
    letter-spacing: 0;
    line-height: 2;
  }
}

/* SDGSとは
***************************************************************/
/* SDGS：公約
***************************************************************/
.secSdgsPledge {
  background: #F7F7F7;
  padding-bottom: 90px;
}

.secSdgsPledge:last-child {
  padding-bottom: 178px;
}

.secSdgsPledge .pledgeImg {
  width: 100%;
  height: 247px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.secSdgsPledge .pledgeImg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.7;
  z-index: 1;
}

.secSdgsPledge .pledgeImg .pledgeTitle {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  font-size: 34px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #335167;
  text-align: center;
  z-index: 2;
}

.secSdgsPledge .pledgeCont {
  width: 800px;
  margin: 35px auto 0;
}

.secSdgsPledge .pledgeText {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 2;
  margin-bottom: 43px;
}

.secSdgsPledge .sdgsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -12px;
}

.secSdgsPledge .sdgsList li {
  width: calc((100% - (12px * 6))/7);
  margin: 0 12px 12px 0;
}

@media all and (min-width: 681px) {
  .secSdgsPledge .sdgsList li:nth-child(7n) {
    margin-right: 0;
  }
  .secSdgsPledge.pledge01 .pledgeImg {
    background-image: url(../img/sdgs/sdgs_img01.jpg);
  }
  .secSdgsPledge.pledge02 .pledgeImg {
    background-image: url(../img/sdgs/sdgs_img02.jpg);
  }
  .secSdgsPledge.pledge03 .pledgeImg {
    background-image: url(../img/sdgs/sdgs_img03.jpg);
  }
  .secSdgsPledge.pledge04 .pledgeImg {
    background-image: url(../img/sdgs/sdgs_img04.jpg);
  }
}

@media all and (max-width: 680px) {
  .secSdgsPledge {
    padding-bottom: 60px;
  }
  .secSdgsPledge:last-child {
    padding-bottom: 63px;
  }
  .secSdgsPledge .pledgeImg {
    height: 145px;
  }
  .secSdgsPledge .pledgeImg .pledgeTitle {
    font-size: 20px;
    letter-spacing: 0;
  }
  .secSdgsPledge .pledgeCont {
    width: 90.627%;
    margin: 25px auto 0;
  }
  .secSdgsPledge .pledgeText {
    margin-bottom: 25px;
  }
  .secSdgsPledge .sdgsList {
    margin-bottom: -10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .secSdgsPledge .sdgsList li {
    width: calc((100% - (10px * 2))/3);
    margin: 0 10px 10px 0;
  }
  .secSdgsPledge .sdgsList li:nth-child(3n) {
    margin-right: 0;
  }
  .secSdgsPledge.pledge01 .pledgeImg {
    background-image: url(../img/sdgs/sdgs_img01_sp.jpg);
  }
  .secSdgsPledge.pledge02 .pledgeImg {
    background-image: url(../img/sdgs/sdgs_img02_sp.jpg);
  }
  .secSdgsPledge.pledge03 .pledgeImg {
    background-image: url(../img/sdgs/sdgs_img03_sp.jpg);
  }
  .secSdgsPledge.pledge04 .pledgeImg {
    background-image: url(../img/sdgs/sdgs_img04_sp.jpg);
  }
}

/* SDGS：公約
***************************************************************/