@charset "utf-8";
/* CSS Document */

body {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
}

.br-sp {
  display: none;
}

.br-800 {
  display: none;
}

.br-900 {
  display: none;
}

@media screen and (max-width:899px) {
  .br-900 {
    display: block;
  }
}


@media screen and (max-width:799px) {
  .br-800 {
    display: block;
  }
}

@media screen and (max-width:559px) {
  .br-sp {
    display: none;
  }
}

@media screen and (max-width:399px) {
  .br-sp {
    display: block;
  }
}


/* ―――———――――　読み込み　―――――――――――― */

#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.effect-fade {
  opacity: 0;
  -webkit-transform: translate(0, 0px);
  -ms-transform: translate(0, 0px);
  transform: translate(0, 0px);
}

.effect-fade-2 {
  -webkit-animation: fadeIn 1s ease-in-out forwards;
  animation: fadeIn 1s ease-in-out forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 45px);
    transform: translate(0, 45px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 45px);
    transform: translate(0, 45px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}


/* ―――———――――　ヘッダー　―――――――――――― */

.header-area {
  width: 100%;
  height: 125px;
  background-color: #ffffff;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 999;
}

.header-inner {
  width: 1000px;
  height: 100%;
  margin: 0 auto;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-N {
  height: 55px;
  width: auto;
}

.header_logo {
  width: 152.13px;
  height: auto;
}

.nav-sns-area {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navi-global {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.08em;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu {
  margin-right: 30px;
}

.menu {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.menu::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.menu:hover::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.undermenus {
  width: 180px;
  height: auto;
  position: absolute;
  display: none;
  font-size: 14px;
  color: #FFF;
}

.undermenu-top {
  margin: 28px 0 0 0;
  padding: 28px 30px 7px 30px;
  background-color: #6E6E6E;
}

.undermenu {
  padding: 7px 30px;
  background-color: #6E6E6E;
}

.undermenu-bottom {
  padding: 7px 30px 28px 30px;
  background-color: #6E6E6E;
}

.undermenu-top:hover {
  color: #dbdbdb;
}

.undermenu:hover {
  color: #dbdbdb;
}

.undermenu-bottom:hover {
  color: #dbdbdb;
}


.open-anime {
  display: block;
  -webkit-animation: open-anime 0.5s ease forwards;
  animation: open-anime 0.5s ease forwards;
}

@-webkit-keyframes open-anime {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes open-anime {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}


.close-anime {
  display: block;
  -webkit-animation: close-anime 0.3s ease forwards;
  animation: close-anime 0.3s ease forwards;
}

@-webkit-keyframes close-anime {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 0;
  }
}

@keyframes close-anime {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 0;
  }
}


.sns-icons {
  margin-left: 10px;
}

.sns-icon {
  margin-right: 18px;
}


@media screen and (max-width:999px) {

  .header-area {
    width: 100%;
    height: 90px;
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .header-inner {
    width: 100%;
    height: 100%;
    padding: 22px 25px;
    display: block;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .logo-N {
    height: 45px;
    width: auto;
  }

  .logo-N>a>img {
    height: 45px;
    width: auto;
  }

  .nav-sns-area {
    display: none;
  }

  .navi-global {
    display: none;
  }

}



/* ―――———――――　ページタイトルとパンくずリスト　―――――――――――― */

.title-area {
  width: 100%;
  height: 200px;
  background-color: #F5F5F5;
  margin-top: 125px;
}

.title-inner {
  width: 1000px;
  height: 200px;
  margin: 0 auto;
  position: relative;
}

.breadcrumbs {
  font-size: 12px;
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  position: absolute;
  top: 20px;
  left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumbs_bottom_area {
  width: 100%;
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  border-bottom: solid 1px #F5F5F5;
}

.breadcrumbs_bottom {
  width: 1000px;
  margin: 0 auto;
  padding-left: 50px;
  padding-bottom: 30px;
  padding-top: 30px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-page {
  color: #000;
}

.middle-page {
  color: #969696;
}


.middle-page::before {
  content: "＞";
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 9px;
  margin: 0 10px;
  vertical-align: middle;
}


.now-page {
  color: #969696;
}

.now-page::before {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  content: "＞";
  font-size: 9px;
  margin: 0 10px;
  vertical-align: middle;
}


.title {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.title_ja {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #6E6E6E;
}

.title_en {
  width: auto;
  height: 40px;
}



@media screen and (max-width:999px) {

  .title-area {
    width: 100%;
    height: 180px;
    background-color: #F5F5F5;
    margin-top: 0px;
  }

  .title-inner {
    width: 100%;
    height: 180px;
    margin: 0 auto;
    position: relative;
  }

  .breadcrumbs {
    display: none;
  }

  .breadcrumbs_bottom_area {
    display: none;
  }

  .breadcrumbs_bottom {
    display: none;
  }
}


@media screen and (max-width:559px) {

  .title_ja {
    font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #6E6E6E;
  }

  .title_en {
    height: 25px;
    width: auto;
  }
}

/* ―――———――――　サービスの導入　―――――――――――― */
.service_overview {
  width: 1000px;
  height: auto;
  margin: 0 auto;
  padding: 120px 450px 120px 50px;
  background-image: url(../images/overview.png);
  background-position: right 90px top 50%;
  background-size: 250px 283.33px;
  background-repeat: no-repeat;
}

.service_overview>h2 {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.6em;
  color: #000000;
}

.service_overview>h2>span {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #00A968;
  line-height: 3.5em;
}

.service_overview>p {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 15px;
  line-height: 2em;
  color: #6E6E6E;
  margin-top: 28px;
}


@media screen and (max-width:999px) and (min-width:800px) {
  .service_overview {
    width: 100%;
    padding: 100px 50px 100px 50px;
    background-image: url(../images/overview.png);
    background-position: right 50px top 50%;
    background-size: 25%;
  }

  .service_overview>h2 {
    width: 100%;
    min-width: 415px;
  }

  .service_overview>p {
    width: 63%;
    min-width: 415px;
  }
}


@media screen and (max-width:799px) and (min-width:560px) {
  .service_overview {
    width: 100%;
    margin: -30px auto 0;
    padding: 200px 50px 70px 50px;
    background-image: url(../images/overview.png);
    background-position: right 50% top 0px;
    background-size: 160px;
    text-align: center;
  }

  .service_overview>h2 {
    width: 100%;
    min-width: 0px;
  }

  .service_overview>p {
    width: 100%;
    min-width: 0px;
  }
}

@media screen and (max-width:610px) {
  .service_overview>h2 {
    font-size: 4vw;
    text-align: center;
  }
}

@media screen and (max-width:559px) {
  .service_overview {
    width: 100%;
    margin: -25px auto 0;
    padding: 210px 25px 50px 25px;
    background-image: url(../images/overview.png);
    background-position: right 50% top 0px;
    background-size: 150px;
  }

  .service_overview>h2 {
    width: 100%;
    min-width: 0px;
    font-size: 17px;
  }

  .service_overview>h2>span {
    font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #00A968;
    line-height: 3.5em;
  }

  .service_overview>p {
    width: 100%;
    min-width: 0px;
    font-size: 14px;
    margin-top: 24px;
  }
}

.br_sp_490 {
  display: none;
}

@media screen and (max-width:490px) {
  .br_sp_490 {
    display: block;
  }
}

@media screen and (max-width:290px) {
  .service_overview>h2 {
    font-size: 5.3vw;
  }
}

/* ―――———――――　メイン画像　―――――――――――― */
.main_img {
  width: 100%;
  height: 268px;
  margin: 0 auto;
  display: block;
  background-image: url(../images/print_main.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.main_img2 {
  width: 100%;
  height: 268px;
  margin: 0 auto;
  display: block;
  background-image: url(../images/print_main2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width:559px) {
  .main_img {
    height: 160px;
  }

  .main_img2 {
    height: 160px;
  }
}




/* ―――———――――　メイン画像　―――――――――――― */
.main_img_pc {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.main_img_pc2 {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.main_img {
  display: none;
}

.main_img2 {
  display: none;
}

@media screen and (max-width:559px) {
  .main_img_pc {
    display: none;
  }

  .main_img_pc2 {
    display: none;
  }

  .main_img {
    width: 100%;
    height: 160px;
    margin: 0 auto;
    display: block;
    background-image: url(../images/print_main.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .main_img2 {
    width: 100%;
    height: 160px;
    margin: 0 auto;
    display: block;
    background-image: url(../images/print_main2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}



/* ―――———――――　サービス内容の見出し　―――――――――――― */

.content_area {
  width: 1000px;
  height: auto;
  margin: 0 auto;
  padding: 100px 50px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.content_area.last_area {
  margin-bottom: 50px;
  padding: 70px 50px 70px;
  background: #eefff8;
}

.content_area.last_area>.content_inner>.content_block>p {
  border-bottom: solid 1px #969696;
  margin-bottom: 20px;
  padding: 0 0 20px;
}

.content_area.last_area>.content_inner>.content_block {
  margin-bottom: 0;
}

.content_check {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 15px;
}

.content_check {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 15px;
}

/* tr に区切り線 */
.content_check tr {
  border-bottom: 1px solid #d6dbe0;
}

/* rowspan開始行だけ線を消す */
.content_check tr.no-border {
  border-bottom: none;
}



/* th / td */
.content_check th,
.content_check td {
  padding: 18px 20px;
  vertical-align: middle;
}

.content_check>tbody>tr.no-border>td {
  padding-bottom: 0;
}

.content_check th {
  width: 120px;
  font-weight: 900;
  color: #00A968;
  text-align: left;
  white-space: nowrap;
}

.content_check td {
  color: #6E6E6E;
  line-height: 1.7;
}

/* 最後の行の線は消す */
.content_check tr:last-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .content_check {
    font-size: 14px;
  }

  .content_check tr {
    display: block;
    padding: 10px 0;
  }

  .content_check th,
  .content_check td {
    display: block;
    width: 100%;
    padding: 6px 16px;
  }

  .content_check th {
    padding-top: 12px;
  }

  .content_check td {
    padding-bottom: 12px;
  }
}


.content_title {
  width: 340px;
  height: auto;
}

.title_line {
  width: 40px;
  height: 2px;
  background-color: #00A968;
  margin-bottom: 25px;
}

.content_title>h3 {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 23px;
  color: #000;
  line-height: 1.2em;
}

#subtitle {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #000;
}

.content_title>h3>span {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #6E6E6E;
  letter-spacing: 0.05em;
}



@media screen and (max-width:999px) {
  .content_area {
    width: 100%;
    padding: 100px 50px 10px;
  }

  .content_title {
    width: 40%;
    min-width: 200px;
    margin-right: 25px;
  }
}

@media screen and (max-width:559px) {
  .content_area {
    padding: 75px 25px 10px;
    display: block;
  }

  .content_title {
    width: 100%;
    min-width: 0px;
    margin-right: 0px;
    margin-bottom: 60px;
    text-align: center;
  }

  .title_line {
    margin: 0 auto 25px;
  }

  .content_title>h3 {
    font-size: 19px;
    line-height: 1.2em;
  }

  .content_title>h3>span {
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  #subtitle {
    font-size: 17px;
  }

}



/* ―――———――――　サービス内容　―――――――――――― */

.content_inner {
  width: 560px;
  height: auto;
}

.content_inner h4 {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 27px;
  color: #000;
  line-height: 1.7em;
}

@media screen and (max-width:565px) and (min-width:560px) {
  .h4_565 {
    font-size: 3.6vw !important;
  }
}

.content_inner>p {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 14px;
  line-height: 2em;
  color: #6E6E6E;
  margin-bottom: 95px;
}

.content_block {
  width: 100%;
  height: auto;
  margin: 0 auto 90px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h5 {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #00A968;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}

h5>span {
  border-bottom: solid 2px #00A968;
  padding: 0 10px;
  font-size: 10px;
  vertical-align: 11px;
}


.content_block>p {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 14px;
  line-height: 2em;
  color: #6E6E6E;
}

.content_block>p.dot {
  display: flex;
}

.content_block>p.dot::before {
  content: "・";
}

.content_block_img {
  width: 100%;
  height: 165px;
  background-image: url(../images/sub_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 36px 0;
}

.content_inner_img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 46px auto 0px;
}

.content_block_img_2 {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 36px;
  margin-bottom: 100px;
}

/*---水なし印刷の特徴----*/

.w_350_1,
.w_350_2 {
  width: 350px;
  height: auto;
}

.mt_60 {
  margin-top: 60px;
}

.mb_20 {
  margin-bottom: 20px;
}

.wpa_text {
  font-size: 12px !important;
  margin: 30px 0;
}

.butterflymark {
  width: 170px;
  height: auto;
  object-fit: contain;
  float: right;
  margin-top: -350px;
}

.more {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 15px;
  color: #00A968;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.more>span {
  padding-left: 0px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.more:hover>span {
  padding-left: 30px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.carbon_offset {
  width: 100%;
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 14px;
  line-height: 2em;
  color: #6E6E6E;
  margin-bottom: 20px;
}

@media screen and (max-width:999px) {
  .more:hover>span {
    padding-left: 0px;
    -webkit-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
  }
}

@media screen and (max-width:919px) {
  .w_350_1 {
    width: 58%;
    height: auto;
  }

  .w_350_2 {
    width: 100%;
    height: auto;
  }

  .butterflymark {
    width: 39%;
    max-width: 170px;
    height: auto;
    float: right;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: -75%;
  }
}


@media screen and (max-width:899px) {
  .butterflymark {
    margin-top: calc(-5% - 450px);
  }
}

@media screen and (max-width:780px) {
  .butterflymark {
    margin-top: calc(-5% - 510px);
  }
}

@media screen and (max-width:685px) {
  .butterflymark {
    margin-top: calc(-5% - 560px);
  }
}


@media screen and (max-width:650px) {
  .w_350_1 {
    width: 100%;
    height: auto;
  }

  .butterflymark {
    width: 170px;
    height: auto;
    float: none;
    display: block;
    margin: 0 auto 30px;
  }

  .content_block>h4 {
    font-size: 2.9vw;
  }

  .wpa_text {
    margin: 15px 0;
  }
}

@media screen and (max-width:559px) {
  .content_block>h4 {
    font-size: 17px;
  }
}


/*---その他の取り組み----*/
.content_block_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 50px;
}

.content_block_inner_text {
  width: 300px;
  height: auto;
}

h6 {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #00A968;
  margin-bottom: 20px;
  line-height: 1.5em;
}

.content_block_inner_text>p {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 14px;
  color: #6E6E6E;
  line-height: 2em;
  text-align: justify;
}

.content_block_inner>img {
  width: 220px;
  height: auto;
}


@media screen and (max-width:920px) {
  .content_block_inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .content_block_inner_text {
    width: 60%;
    height: auto;
  }

  .content_block_inner>img {
    width: 35%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media screen and (max-width:699px) {
  .content_block_inner {
    display: block;
  }

  .content_block_inner_text {
    width: 100%;
    height: auto;
  }

  .content_block_inner>img {
    width: 100%;
    max-width: 220px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    margin: 20px auto 0;
  }
}

@media screen and (max-width:610px) and (min-width:560px) {
  h6 {
    font-size: 2.4vw;
  }
}

@media screen and (max-width:559px) {
  h6 {
    font-size: 15px;
  }
}




@media screen and (max-width:999px) {
  .content_inner {
    width: 100%;
    max-width: 560px;
  }

  .content_inner>h4 {
    line-height: 1.7em;
  }
}

@media screen and (max-width:999px) and (min-width:770px) {
  .content_inner {
    width: 100%;
    max-width: 560px;
  }

  .content_inner>h4 {
    line-height: 1.7em;
  }
}

@media screen and (max-width:769px) and (min-width:560px) {
  .content_block_img {
    width: 100%;
    width: calc(100% + 50px);
    height: 165px;
  }

  .content_block_img_2 {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

}



@media screen and (max-width:600px) and (min-width:560px) {
  h5 {
    font-size: 3vw;
  }
}


@media screen and (max-width:559px) {
  .content_inner>h4 {
    font-size: 17px;
    line-height: 1.8em;
    margin-bottom: 20px;
  }

  h5 {
    font-size: 17px;
  }

  h5>span {
    vertical-align: 10px;
  }

  .content_block_img {
    width: 100%;
    width: calc(100% + 50px);
    height: 165px;
    margin-left: -25px;
  }

  .content_block_img_2 {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}


/* ―――———―――― オンデマンド　―――――――――――― */

.boder_line {
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background-color: #E6E6E6;
}

.recommended_list {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #6E6E6E;
  line-height: 1.5em;
  margin-left: -15px;
}

.recommended_list>li {
  margin-bottom: 10px;
  text-indent: -1em;
  padding-left: 2em;
}


.mb_60_2 {
  margin-bottom: 65px !important;
}

.empty {
  width: 100%;
  height: 30px;
}

@media screen and (max-width:999px) {
  .mb_60_2 {
    margin-bottom: 90px !important;
  }

  .empty {
    width: 100%;
    height: 0px;
  }
}

@media screen and (max-width: 590px) and (min-width: 560px) {
  .h4_590 {
    font-size: 3.4vw !important;
  }
}

@media screen and (max-width:559px) {
  .recommended_list {
    font-size: 15px;
  }
}

/* ―――———――――　環境マーク　―――――――――――― */

.mb_0 {
  margin-bottom: 0px !important;
}

.mark_list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mark_list>li {
  width: 270px;
  height: auto;
  border: solid 1px #E6E6E6;
  padding: 40px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 20px;
  margin-bottom: 20px;
}

.mark_list>li:nth-child(2n) {
  margin-right: 0px;
}

#h7_1,
#h7_2,
#h7_3,
#h7_4,
#h7_5 {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000;
  line-height: 1.2em;
  display: block;
  margin-top: 0px;
  text-align: left;
}

.nonvoc_vegetable {
  line-height: 1.7em !important;
}

.mark_list>li:nth-child(2) {
  padding: 33px 30px 40px;
}

.mark_list>li:nth-child(2)>#h7_2 {
  line-height: 1.1em;
}

#h7_1>span {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #00A968;
}

#h7_2>span {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #00A968;
}

#h7_3>span {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #00A968;
}

#h7_4>span {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #00A968;
}

#h7_5>span {
  font-family: 'Noto Sans JP', A1 Gothic M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #00A968;
}

.mark_list>li>p {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 14px;
  color: #6E6E6E;
  line-height: 2em;
  margin-top: 25px;
  text-align: justify;
}

.mark_area {
  width: 100%;
  height: auto;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.vegetable_li {
  padding: 35px 30px 40px !important;
}

.mark_area>div {
  width: 47%;
}


.mark_flex {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}


.bf {
  width: 112px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 25px;
}

.fsc {
  width: 90px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 25px;
}

.non_voc {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.vegetable {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.green {
  width: 74px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 30px;
}


.mark_area>p {
  width: 100%;
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 12px;
  color: #6E6E6E;
  margin-top: 13px;
}


.mark_area>div>p {
  width: 100%;
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 12px;
  color: #6E6E6E;
  margin-top: 13px;
}

.vegetable_area>p {
  margin-top: 15.5px !important;
}


.small {
  font-size: 0.6em;
  vertical-align: super;
}

.color {
  color: #000 !important;
}


.img_eco {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 40px;
}

.mb_60 {
  margin-bottom: 65px !important;
}


@media screen and (max-width:930px) {
  .mark_list>li {
    width: 45%;
    height: auto;
  }

  .fsc {
    width: 100%;
    max-width: 90px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
}


@media screen and (max-width:860px) {
  .mark_list>li {
    width: 100%;
    height: auto;
    border: solid 1px #6E6E6E;
    padding: 40px 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .fsc {
    width: 100%;
    max-width: 90px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: 35px;
  }

  .non_voc {
    width: 100%;
    max-width: 142px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: 0px;
  }

  .vegetable {
    margin-top: 0px;
  }

  .green {
    width: 74px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: 35px;
  }

  .mark_flex {
    align-items: flex-start;
    margin-top: 30px;
  }

}


@media screen and (max-width: 610px) and (min-width: 560px) {
  .h5_610 {
    font-size: 2.7vw !important;
  }
}

@media screen and (max-width: 300px) {
  .h5_300 {
    font-size: 5.7vw !important;
  }
}

@media screen and (max-width: 570px) and (min-width: 560px) {
  #h7_570 {
    font-size: 3.4vw !important;
  }
}


/* ―――———――――　水なし印刷　―――――――――――― */
.flex_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex_area>div>p {
  width: 270px;
  height: auto;
}

.flex_area>div>p {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 14px;
  line-height: 2em;
  color: #6E6E6E;
}

.waterless_imgs {
  width: 255px;
  height: auto;
}

.waterless_imgs>div {
  margin-bottom: 35px;
}

.waterless_imgs>div>img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.waterless_imgs>div>p {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 13px;
  color: #6E6E6E;
  margin-top: 10px;
  text-align: center;
  line-height: 1.5em;
}

.mb_35 {
  margin-bottom: 35px !important;
}

@media screen and (max-width: 920px) {
  .flex_area {
    display: block;
  }

  .flex_area>div>p {
    width: 100%;
    height: auto;
  }

  .waterless_imgs {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
  }

  .waterless_imgs>div {
    margin-right: 20px;
  }

  .waterless_imgs>div:nth-child(2) {
    margin-right: 0px;
  }
}

@media screen and (max-width: 650px) {
  .waterless_imgs {
    width: 100%;
    height: auto;
    display: block;
  }

  .waterless_imgs>div {
    margin-right: 0px;
  }
}


@media screen and (max-width: 559px) {
  .waterless_imgs {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px;
  }

  .waterless_imgs>div {
    margin-right: 20px;
  }

  .waterless_imgs>div:nth-child(2) {
    margin-right: 0px;
  }
}




@media screen and (max-width: 450px) {
  .waterless_imgs {
    width: 100%;
    height: auto;
    display: block;
  }

  .waterless_imgs>div {
    margin-right: 0px;
  }
}

.br_800 {
  display: none;
}

@media screen and (max-width: 800px) {
  .br_800 {
    display: block;
  }
}



/* ―――———――――　フッター　―――――――――――― */

.footer-area {
  width: 980px;
  margin: 50px auto 20px;
  padding: 0 50px;
  position: relative;
  box-sizing: border-box;
}


.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


.company_name_logo {
  width: 190px;
  height: 68.69px;
}


.office {
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 12px;
  line-height: 1.8em;
  margin-top: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #6E6E6E;
}

.headoffice {
  margin-right: 20px;
}

.office_title {
  font-family: 'Noto Sans JP', A1ゴシック M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 13px;
  line-height: 3em;
}


.footer-links {
  font-family: 'Noto Sans JP', A1ゴシック M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 13px;
  line-height: 2em;
  color: #6E6E6E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-links-inner {
  margin-right: 50px;
}

.link_category {
  font-family: 'Noto Sans JP', A1ゴシック M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: bold;
  color: #000;
}

.link_category_2 {
  font-family: 'Noto Sans JP', A1ゴシック M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-weight: bold;
  color: #000;
  margin-bottom: 26px;
}


.copy {
  width: 980px;
  box-sizing: border-box;
  margin: 0 auto 50px;
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
  font-size: 10px;
  text-align: right;
  color: #6E6E6E;
}


.outer_logo {
  position: absolute;
  bottom: 3px;
  right: 0;
  display: flex;
  align-items: center;
}

.outer_logo div {
  display: flex;
  align-items: center;
}

.footer_logo {
  width: 60px;
  height: auto;
  object-fit: contain;
}

.wpa_logo,
.econet_logo {
  margin-right: 15px;
}

.sp-company_name_logo {
  display: none;
}

.sp-sns-icons {
  display: none;
}

.sp-headoffice {
  display: none;
}

.jpps_logo {
  height: 35px;
  width: auto;
  object-fit: contain;
  margin-right: 5px;
}

.security_action_logo {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.jpps__link a {
  text-decoration: underline;
  color: #00a968;
}


@media screen and (max-width:999px) {

  .footer-area {
    width: 100%;
    height: 620px;
    margin: 0 auto;
    padding: 60px 25px 48px 25px;
    position: relative;
    border-top: solid 1px #DCDCDC;
    text-align: center;
  }

  .footer-inner {
    display: none;
  }

  .sp-company_name_logo {
    display: inline-block;
    width: 140px;
    height: auto;
    margin-bottom: 35px;
  }

  .sp-sns-icons {
    display: block;
    width: 127px;
    height: 27px;
    margin: 0 auto 35px auto;
  }

  .glyph-logo-sp {
    width: 25px;
    height: auto;
  }

  .f_logo-sp {
    width: 27px;
    height: auto;
  }

  .twitter_logo-sp {
    width: 26px;
    height: auto;
    margin-bottom: 2px;
  }

  .sp-sns-icon {
    margin-right: 20px;
  }

  .sp-headoffice {
    display: block;
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
    font-size: 14px;
    color: #6E6E6E;
    line-height: 1.5em;
    margin: 0 auto 30px auto;
  }

  .sp-office_neme {
    display: block;
    font-size: 14px;
    color: #000;
    margin-bottom: 5px;
  }

  .copy {
    width: 100%;
    font-size: 12px;
    text-align: center;
    line-height: 1.5em;
    padding: 0 0px;
    margin: 0 auto 50px;
  }

  .outer_logo {
    position: absolute;
    bottom: 40px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
  }

  .wpa_logo {
    margin-right: 0px;
  }

  .wpa_logo>img {
    height: 29px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
  }

  .jpps_logo,
  .econet_logo {
    margin-right: 20px;
  }

  .econet_logo>img {
    height: 35px;
    width: auto;
    object-fit: contain;
  }
}

@media screen and (max-width:399px) {
  .footer-area {
    width: 100%;
    height: 620px;
    margin: 0 auto;
    padding: 60px 25px 48px 25px;
    position: relative;
    border-top: solid 1px #DCDCDC;
    text-align: center
  }
}



/* ―――———――――　SPグローバルメニュー　―――――――――――― */

.sp-nav-cover {
  display: none;
}

.sp-menu_wrapper {
  display: none;
}

.sp-nav-br {
  display: none;
}

.page_top {
  display: none;
  display: inline-block;
  width: 52px;
  height: 52px;
  position: fixed;
  bottom: 22px;
  right: 25px;
  z-index: 7777;
}

.page_top>a {
  width: 100%;
  height: 100%;
}

.page_top>a>img {
  width: 52px;
  height: 52px;
}


@media screen and (max-width:999px) {

  .sp-nav-cover {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 22px;
    right: 15px;
    z-index: 9000;
  }

  .sp-nav {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }

  .line {
    position: absolute;
    left: 10px;
    width: 30px;
    height: 3px;
    background-color: #000;
  }

  .line1 {
    top: 10px;
  }

  .line2 {
    top: 22px;
  }

  .line3 {
    top: 34px;
  }

  .line {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .clicked .line1 {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 22.5px;
    background-color: #fff;
  }

  .clicked .line2 {
    width: 0px;
  }

  .clicked .line3 {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 22.5px;
    background-color: #fff;
  }

  .sp-menu_wrapper {
    display: block;
  }

  .sp-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow-y: auto;
    z-index: 8888;
  }

  .sp-menu {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .sp-menu::-webkit-scrollbar {
    display: none;
  }

  .sp-menu-inner {
    width: 100%;
    height: auto;
    padding: 58px 40px;
    background-size: cover;
    background-image: url(../images/sp-nav-backgrond.jpg);
  }

  .clicked .sp-menu {
    left: 0px;
  }

  .sp-menu>.sp-menu-inner>ul {
    border-bottom: solid 1px #fff;
  }

  .sp-menu>.sp-menu-inner>ul>li {
    margin-bottom: 27px;
  }

  .sp-menu>.sp-menu-inner>ul>li>a {
    font-family: 'Noto Sans JP', A1ゴシック M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
    font-size: 20px;
    color: #fff;
  }


  .sp-undermenus {
    padding: 20px 0px 0px 40px;
    font-family: 'Noto Sans JP', A1ゴシック M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
    font-size: 16px;
    color: #fff;
  }

  .sp-undermenu {
    margin-bottom: 20px;
  }

  .sub-menus {
    width: 100%;
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .sub-menu {
    font-family: 'Noto Sans JP', A1ゴシック M, "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
    font-size: 16px;
    color: #fff;
    margin: 0.5em 1em 0.5em 0;
  }


  .sp-nav-sns-icons {
    display: block;
    width: 155px;
    margin-top: 40px;
  }

  .sp-nav-sns-icon {
    margin-right: 22px;
  }

  .f_logo_wh {
    width: 35px;
    height: auto;
  }

  .glyph-logo_wh {
    width: 30px;
    height: auto;
  }

  .twitter_logo_wh {
    width: 33.25px;
    height: auto;
  }

  .sp-nav-office {
    margin-top: 39px;
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.7em;
  }

  .sp-nav-map {
    margin-top: 27px;
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
    font-size: 18px;
    color: #fff;
    height: 28px;
    border-bottom: solid 2px #fff;
    display: inline-block;
  }

  .sp-nav-copy {
    margin-top: 39px;
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Hiragino Sans", sans-serif;
    font-size: 12px;
    color: #fff;
    line-height: 1.5em;
  }
}


@media screen and (max-width:340px) {
  .sp-nav-br {
    display: block;
  }
}





/*あとで追加 ---------------------------*/
.green-power-text {
  font-size: 13.5px !important;
  line-height: 1.9 !important;
}

.text-small {
  font-size: 75%;
  line-height: 1;
}
