@charset "UTF-8";

:root {

  /* 基本色 */
  --colorBlack: #333333;
  --colorWhite: #ffffff;

  /* グレー系 */
  --colorGray01: #3b4043;
  --colorGray02: #e1e1e1;
  --colorGray03: #f5f9fa;
  --colorGray04: #e2e2e2;

  /* ブルー系 */
  --colorBlue01: #10218b;
  --colorBlue02: #005ab4;
  --colorBlue03: #3bc0e2;
  --colorBlue04: #8bc5ff;
  --colorBlue05: #f0f8ff;
  --colorBlue06: #E7F8FB;
  --colorBlue07: #ECF1FF;

  /* レッド系 */
  --colorRed01: #d83a56;
  --colorRed02: #ff1756;
  --colorRed03: #ff3300;

  /* オレンジ系 */
  --colorOrange01: #fe5804;
  --colorOrange02: #ff892a;
  --colorOrange03: #ffa800;
  --colorOrange04: #ff7800;

  /* イエロー系 */
  --colorYellow01: #ffffee;

  /* グリーン系 */
  --colorGreen01: #005043;
  --colorGreen02: #03873a;
  --colorGreen03: #0eaa7f;
  --colorGreen04: #79cebf;
  --colorGreen05: #c1f4eb;
  --colorGreen06: #bcd5a0;
  --colorGreen07: #f2fbf1;

  /* font size */
  --fz10: 0.625rem;
  --fz12: 0.75rem;
  --fz14: 0.875rem;
  --fz16: 1rem;
  --fz18: 1.125rem;
  --fz20: 1.25rem;
  --fz22: 1.375rem;
  --fz24: 1.5rem;
  --fz26: 1.625rem;
  --fz28: 1.75rem;
  --fz30: 1.875rem;
  --fz32: 2rem;
  --fz34: 2.125rem;
  --fz36: 2.25rem;
  --fz48: 3rem;

  /* font family */
  --ff-shippori: "Shippori Mincho", serif;
  --ff-jost: "Jost", sans-serif;
  --ff-noto-sans: "Noto Sans JP", sans-serif;

  /* box shadow */
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/* ===========================================
 * 共通
 * ======================================== */

@media screen and (min-width: 768px) {
  #contents {
    min-width: 1240px;
  }
}
@media screen and (max-width: 767px) {
  #contents {
    padding: 0;
  }
}
.section__inner {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .section__inner {
    margin-bottom: 50px;
  }
}

/* fonts */
.ff-shippori {
  font-family: "Shippori Mincho", serif;
}
.ff-jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
}
.ff-noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

/* ページタイトル */
.page-title {
  width: 100%;
  max-width: 1240px;
  padding: 0 15px;
  margin: 0 auto;
}
.page-title h1 {
  font-size: var(--fz24);
  font-weight: bold;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .page-title h1 {
    font-size: 5vw;
  }
}

/* 別タブアイコン */
.icon-new-tab {
  margin-left: 5px;
  vertical-align: middle;
}

.button-wrapper {
  max-width: 320px;
  margin: 40px auto 0;
}
.button-wrapper.--lg {
  max-width: 580px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .button-wrapper.--lg {
    max-width: 305px;
    margin: 0 auto 60px;
  }
}

/* ナビゲーション
------------------------------------------ */
.cmp_navigation {
  position: sticky;
  top: -0.1px;
}

/* 追従ボタン
------------------------------------------ */
.cmp_conversion_btns {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 1000px;
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}
.cmp_conversion_btns.is-fixed {
  opacity: 1;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .cmp_conversion_btns {
    width: 100%;
    left: 0;
    transform: none;
  }
}

/* TOPに戻るボタンの調整 */
@media screen and (max-width: 767px) {
  #pagetopBlock {
    z-index: 799;
  }
  #contents.sustainability~#footer #pagetopBlock {
    bottom: 70px !important;
    right: 5px !important;
  }
}
@media screen and (min-width: 320px) {
}


/* ===========================================
 * TOPページ
 * ======================================== */

/* KV
------------------------------------------ */
.sustainability .kv-wrapper {
  position: relative;
  margin-bottom: 26px;
}
.sustainability .kv-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.sustainability .kv-image img {
  width: 100%;
  height: auto;
}
.sustainability .kv-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, var(--colorWhite) 0%, var(--colorWhite) 30%, transparent 56%, transparent 100%);
}
.sustainability .kv-title {
  position: absolute;
  top: 26%;
  width: 100%;
  color: var(--colorBlue01);
  font-size: var(--fz48);
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.sustainability .kv-copy__wrapper {
  position: absolute;
  bottom: 5%;
  width: 100%;
}
.sustainability .kv-copy {
  color: var(--colorBlack);
  font-size: var(--fz28);
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}
.sustainability .kv-copy-sub {
  color: var(--colorBlack);
  font-size: var(--fz18);
  text-align: center;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .sustainability .kv-wrapper {
    min-height: 476px;
    margin-bottom: 0;
  }
  .sustainability .kv-image::before {
    background: linear-gradient(0deg, var(--colorWhite) 0%, var(--colorWhite) 12%, transparent 40%, transparent 100%);
  }
  .sustainability .kv-title {
    top: 16%;
    font-size: var(--fz36);
  }
  .sustainability .kv-title img {
    max-width: 236px;
  }
  .sustainability .kv-copy {
    bottom: 10%;
    font-size: var(--fz20);
  }
  .sustainability .kv-copy-sub {
    font-size: var(--fz14);
  }
}

/* top-lead
------------------------------------------ */
#top-lead .section__inner {
  position: relative;
  margin-bottom: 0;
}
#top-lead .section__inner .lead-image {
  position: relative;
  z-index: -1;
}
#top-lead .section__inner .lead-image img {
  width: 100%;
  height: auto;
}
#top-lead .section__inner .top-lead__text-wrapper {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  height: auto;
  max-width: 1240px;
}
#top-lead .section__inner .top-lead__text-wrapper .top-lead__text {
  color: var(--colorGreen01);
  font-size: var(--fz30);
  font-weight: 800;
  text-align: center;
  text-shadow: 0 0 10px var(--colorWhite);
  line-height: 1.65;
}
@media screen and (max-width: 767px) {
  #top-lead .section__inner .top-lead__text-wrapper {
    top: 0;
    justify-content: center;
    padding: 30px 20px 0;
  }
  #top-lead .section__inner .top-lead__text-wrapper .top-lead__text {
    font-size: var(--fz18);
  }
}

/* advantage
------------------------------------------ */

#advantage .section__inner {
  padding: 0 0 220px;
  margin-bottom: 0;
}
#advantage .section__inner.--bg {
  position: relative;
}
#advantage .section__inner.--bg::before,
#advantage .section__inner.--bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--colorWhite) 0%, var(--colorWhite) 33%, var(--colorGreen05) 33%, var(--colorGreen05) 100%);
}
#advantage .section__inner.--bg::before {
  transform: skewY(-5.6deg);
  transform-origin: top left;
}
#advantage .advantage__contents {
  display: flex;
  gap: 80px;
}
#advantage .advantage__contents__head {
  padding: 100px 0 0;
  display: flex;
  flex-direction: column;
}
#advantage .cmp_headline01.--lg {
  font-weight: 800;
  margin-bottom: 50px;
  font-size: 2rem;
}
#advantage .cmp_headline01.--lg::before {
  font-size: 1.5625rem;
}
#advantage .cmp_headline01.--lg::after {
  left: -92px;
  min-width: 514px;
}
#advantage .advantage__contents__head__lead__wrap {
  max-width: 400px;
  align-self: flex-end;
}
#advantage .advantage__contents__head__lead {
  font-size: var(--fz16);
  margin-bottom: 20px;
}
#advantage .advantage__contents__head__lead:last-of-type {
  margin-bottom: 30px;
}
#advantage .advantage__contents__head .cmp_btn01 {
  height: 60px;
}
#advantage .advantage__contents__body {
}
#advantage .cmp_card_item04 {
  width: 680px;
}

@media screen and (max-width: 767px) {
  #advantage .section__inner.--bg {
    padding: 0 0 135px;
  }
  #advantage .section__inner.--bg::before,
  #advantage .section__inner.--bg::after {
  background: linear-gradient(90deg, var(--colorWhite) 0%, var(--colorWhite) 28%, var(--colorGreen05) 28%, var(--colorGreen05) 100%);
}
  #advantage .section__inner.--bg::before {
    transform: skewY(-12deg);
  }
  #advantage .advantage__contents {
    flex-direction: column;
    gap: 0;
  }
  #advantage .advantage__contents__head {
    padding: 10px 0 0;
  }
  #advantage .cmp_headline01.--lg {
    margin-bottom: 35px;
    font-size: var(--fz24);
  }
  #advantage .cmp_headline01.--lg::before {
    font-size: var(--fz20);
  }
  #advantage .cmp_headline01.--lg::after {
    left: 50%;
    min-width: auto;
  }
  #advantage .advantage__contents__head__lead {
    font-size: var(--fz14);
    margin-bottom: 5px;
  }
  #advantage .advantage__contents__head__lead:last-of-type {
    margin-bottom: 0;
  }
  #advantage .cmp_card_item04 {
    width: 100%;
  }
  #advantage .cmp_card_item04:last-of-type {
    margin-bottom: 40px;
  }
}

/* reference-case
------------------------------------------ */
#reference-case .section__inner {
  margin-bottom: 0;
}
#reference-case .section__inner.--bg {
  position: relative;
  padding: 25px 0 85px;
}
#reference-case .section__inner.--bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: skewY(8deg);
  transform-origin: top right;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--colorGray03);
}
#reference-case .cmp_headline01 {
  position: absolute;
  top: -64px;
  left: 0;
}
#reference-case .cmp_card_item01 .cmp_card_thumbnail {
  overflow: hidden;
}
#reference-case a.link_img .cmp_card_img {
  transition: all 0.3s ease-out;
}
#reference-case a.link_img:hover .cmp_card_img {
  filter: brightness(80%);
  transform: scale(1.2);
}
@media screen and (max-width: 767px) {
  #reference-case .section__inner.--bg {
    padding: 88px 0 78px;
  }
  #reference-case .cmp_headline01 {
    top: 0px;
  }
}

/* conversion
------------------------------------------ */
#conversion .section__inner {
  margin: 230px 0 116px;
}
#conversion .section__inner.--bg {
  position: relative;
  background: url(../images/conversion-bg.jpg) no-repeat bottom / cover;
  min-height: 400px;
}
#conversion .cmp_container {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}
#conversion .lead {
  width: 100%;
  color: var(--colorBlack);
  font-size: var(--fz28);
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
}
#conversion a.cmp_btn01 {
  height: 80px;
}
@media screen and (max-width: 767px) {
  #conversion .section__inner {
    margin: 116px 0 100px;
  }
  #conversion .section__inner.section__inner.--bg {
    background: url(../images/conversion-bg_sp.jpg) no-repeat bottom / cover;
    min-height: 1250px;
  }
  #conversion .cmp_container {
    top: -10%;
    width: 100%;
  }
  #conversion .lead {
    font-size: var(--fz20);
    margin-bottom: 30px;
  }
  #conversion a.cmp_btn01 {
    font-size: var(--fz16);
    height: 60px;
  }
}

/* other-content
------------------------------------------ */
#other-content .section__inner {
  position: relative;
  padding: 93px 0 60px;
  margin-bottom: 50px;
}
#other-content .section__inner.--bg {
  background-color: var(--colorBlue05);
}
#other-content .cmp_headline01 {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #other-content .cmp_headline01 {
    top: -34px;
  }
}

/* topics
------------------------------------------ */
#topics .section__inner {
  margin-bottom: 100px;
}
#topics .section__inner.--bg {
  background-color: var(--colorWhite);
}
#topics .cmp_headline01 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #topics .section__inner {
    margin-bottom: 60px;
  }
  #topics .cmp_headline01 {
    margin-bottom: 10px;
  }
}


/* ===========================================
 * 下層ページ
 * ======================================== */

/* intro-section
------------------------------------------ */
#intro-section .section__inner {
  margin: 52px 0 74px;
}
#intro-section .intro-section__text-wrapper {
  text-align: center;
}
#intro-section .intro-section__text {
  font-family: var(--ff-noto-sans);
  font-size: var(--fz24);
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  #intro-section .section__inner {
    margin: 32px 0 68px;
  }
  #intro-section .intro-section__text {
    font-size: var(--fz18);
  }
}

/* 新着情報,新着動画
------------------------------------------ */
#top-contents .top-contents__block {
  position: relative;
  background-color: #eefbff;
  padding: 86px 0 50px;
}
#top-contents .top-contents__block .cmp_headline02 {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
#top-contents .top-contents__block .cmp_single_column_container {
  max-width: 640px;
  margin: 0 auto;
}
#top-contents .top-contents__block .cmp_single_column_container.--row-layout {
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  #top-contents .top-contents__block {
    position: relative;
    background-color: #eefbff;
    padding: 66px 0 40px;
    margin-bottom: 40px;
  }
  #top-contents .top-contents__block .cmp_single_column_container {
    padding: 0;
  }
}

/* 記事,動画,資料一覧ページ
------------------------------------------ */
#media-section .section__inner {
  margin-top: 80px;
}
#media-section .cmp_headline01 {
  font-size: var(--fz24);
  margin-bottom: 20px;
  font-weight: 700;
}
#media-section .cmp_grid_container {
  gap: 43px;
}
@media screen and (max-width: 767px) {
  #media-section .cmp_headline01 {
    font-size: var(--fz20);
    font-weight: 600;
  }
  #media-section .section__inner {
    margin-top: 50px;
  }
  #media-section .cmp_grid_container {
    gap: 30px;
  }
}

/* include area
------------------------------------------ */
#lower-page__include-area #advantage .section__inner {
  margin-bottom: 58px;
  padding: 0 0 60px;
}

#lower-page__include-area #conversion .section__inner {
  margin: 262px 0 50px;
}
#lower-page__include-area #conversion .cmp_container {
  top: -50%;
}
@media screen and (max-width: 767px) {
  #lower-page__include-area #advantage .section__inner {
    margin-bottom: 50px;
  }
  #lower-page__include-area #advantage .section__inner.--bg {
    padding: 0 0 40px;
  }
  #lower-page__include-area #conversion .section__inner {
    margin: 184px 0 50px;
  }
  #lower-page__include-area #conversion .cmp_container {
    top: -10%;
  }
}

/* 支援サービスページ
------------------------------------------ */
.support #advantage .section__inner {
  margin: 90px 0 58px;
  padding: 0 0 60px;
}

.support #conversion .section__inner {
  margin: 280px 0 50px;
}

.support #advantage .section__inner.--bg::before,
.support #advantage .section__inner.--bg::after {
  background: linear-gradient(90deg, var(--colorBlue05) 0%, var(--colorBlue05) 40%, var(--colorGreen05) 40%, var(--colorGreen05) 100%);
}
.support #advantage .section__inner.--bg::before {
  transform: unset;
}

@media screen and (max-width: 767px) {
  .support #advantage .section__inner {
    margin: 50px 0;
  }
  .support #advantage .section__inner.--bg {
    padding: 30px 0 40px;
  }
  .support #advantage .section__inner.--bg::before,
  .support #advantage .section__inner.--bg::after {
    background: linear-gradient(90deg, var(--colorBlue05) 0%, var(--colorBlue05) 28%, var(--colorGreen05) 28%, var(--colorGreen05) 100%);
  }
  .support #conversion .section__inner {
    margin: 184px 0 40px;
  }
}

/* 導入事例ページ
------------------------------------------ */
 .section__inner.--bg.--casestudy {
  z-index: 1;
}
#top-contents .top-contents__block__casestudy {
  position: relative;
  background-color: #eefbff;
  padding: 86px 0 224px;
}
#top-contents .top-contents__block__casestudy .cmp_headline02 {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
#top-contents .top-contents__block__casestudy .cmp_single_column_container {
  max-width: 640px;
  margin: 0 auto;
}
#top-contents .top-contents__block__casestudy .cmp_single_column_container.--row-layout {
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  #top-contents .top-contents__block__casestudy {
    position: relative;
    background-color: #eefbff;
    padding: 66px 0 54px;
  }
  #top-contents .top-contents__block__casestudy .cmp_single_column_container {
    padding: 0;
  }
}

/* ===========================================
 * Next START ボタン
 * ======================================== */
.cmp_container a.action1 {
  margin-top: 57px;
  display: block;
  color: inherit;
}
.cmp_container a.action1:hover {
  text-decoration: none;
  opacity: .5;
  transition: 0.3s ease-in;
}

/*--------------------------------------------------
sustainability TOP
--------------------------------------------------*/
#ecovadis-lead .section__inner{
    position: relative;
    margin-bottom: 0;
    z-index: 2;
    text-align: center;
}
#ecovadis-lead .section__inner a:hover {
    opacity: 0.7;
}
@media screen and (min-width: 768px) {
#ecovadis-lead .section__inner{
    margin-top: 40px;
}
}
@media only screen and (max-width: 767px) {
#ecovadis-lead .section__inner img{
    width: 100%;
}
}
/*--------------------------------------------------
sustainability トピックスページ　H2
--------------------------------------------------*/
.topic_title{
    margin: 60px 0 60px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
    font-size: 3.4rem;
}
.topic_title_detail{
    font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
.topic_title{
    margin: 40px 0 40px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
    font-size: 2.4rem;
}
}

/*--------------------------------------------------
sustainability トピックスページ　navigation
--------------------------------------------------*/
.topic_navigation ul li span{
    font-size: 14px;
}
.topic_navigation .cmp_nav_menu_btn span{
    font-size: 14px;
}
@media only screen and (max-width: 767px) {
.topic_navigation .cmp_accordion_body_item a{
    font-size: 15px;
}
.topic_navigation .cmp_accordion_footer a{
    font-size: 16px;
}
}
