@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
a:hover {
filter: alpha(opacity=50);
opacity: 0.5;
    transition:  .5s;
}
a {
    color: #999999;
    text-decoration: none;
}
.center {
    text-align: center;
}
section {
/*    margin-top: 6%;*/
}
#wrap {
width: 100%;
}
.inner {
    width: 90%;
}

nav #logo{
text-indent:100%;
white-space:nowrap;
overflow:hidden;
line-height: 0;
}
.txt_center {
    text-align: center;
}
.txt_left {
    text-align: left;
}
.txt_right {
    text-align: right;
}
.txt_narrow{
  /*  font-feature-settings: "palt" 1;*/
    letter-spacing: -0.025em;
}
header h1
{
text-indent:100%;
white-space:nowrap;
overflow:hidden;
line-height: 0;
}
/* デザインA（PC）***************************************/
body {
    font-size: 16px;
    line-height: 1.75em;
}

.pc {
        display: block;
    }
.tablet {
        display: none;
    }
.sp {
        display: none;
    }




/* デザインB（タブレット） ***************************************/
@media screen and (max-width : 1024px) {
/* タブレット用レイアウト に収めるデザインはこの中に記述 */
body {
    font-size: 14px;
    line-height: 1.75em;
/*    padding:5%;*/
}

.pc {
        display: none;
    }
.tablet {
        display: block;
    }
.sp {
        display: none;
    }
}
/* デザインC（スマホ） ***************************************/
@media screen and (max-width : 599px) {
/* スマホ用レイアウト に収めるデザインはこの中に記述 */
body {
        font-size: 12px;
    line-height: 1.75em;
     font-feature-settings: "palt";
}
.pc {
        display: none;
    }
.tablet {
        display: none;
    }
.sp{
        display:block;
    }
}
/* **************************************************
▶ナビゲーション
/* デザインA（PC）ナビゲーション
***************************************/
#menu-btn-check {
    display: none;
}
#menu-content {
    background: #fff;
    width: 100%;
    height: 80px;
}
nav {
    position: fixed;
    top:0;
    text-align: center;
    width: 100%;
    height: 80px;
    z-index: 100;
    background: #fff;
}
nav a {
   color:#999; 
    text-decoration: none;
}
nav #logo {
    background: url("../img/h1_pc_sustainability.png");
    width: 260px;
    height: 37px;
    left:20px; 
    top:21.5px;
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
    position: absolute;
}
ul#menu {
margin-top:30px;
right:20px; 
position: absolute;
}
ul#menu li {
    display: inline-block;
    margin: 0 20px;
/*    padding: 3px 7px;*/
    text-align: center;
    font-size: 13px;
    color: #000;
    font-weight: 400;
}
.top .nav-top>a,
.policy .nav-policy>a,
.commitment .nav-commitment>a,
.priority .nav-priority>a,
.report .nav-report>a
{
border-bottom: 3px solid #c00;
color: #000;
}

/* ***************************************
▶ナビゲーション
デザインB（タブレット＆スマホ）
***************************************/
@media screen and (max-width : 1024px) {
/* タブレット用レイアウト に収めるデザインはこの中に記述 */
    nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top:0;
    text-align: center;
background: rgba(255, 255, 255, 0.9);
    border-bottom: none; 
    }
#menu-btn-check {
    display: none;
}
 .menu-btn {
    position: fixed;
    top: 0.25em;
    right: 0.25em;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 100;
/*    background-color: #000;*/
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background-color: #999;
    position: absolute;
}
.menu-btn span:before {
    bottom: 10px;
}
.menu-btn span:after {
    top: 10px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
}
.menu-content ul#menu {
    padding: 1.5em;
	width: 90%;
	margin: 3em auto;
}
.menu-content ul#menu li {
    display: block;
    border-bottom: dotted 1px #666;
 text-align: center;
    font-size: 1em;
	line-height: 2em;
    padding: 5px 15px 5px 0;
    position: relative;
}
.menu-content ul#menu li a {
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;

}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 90;
/*	background: rgba(0, 0, 0, 0.8);*/
/*	background: rgba(255, 255, 255, 0.8);*/
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background: #ccc;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background: #ccc;
}
}


/***************************************************
★コンテンツ
/* デザインA（PC）
***************************************/
section {
    padding: 60px 0;
}
header {
    width: 100%;
    margin-top: 80px;
}
header #mv {
    width: 100%;
background: url("../img/mv_pc2024.jpg");
    padding-top: 29.6%;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
}

/*NEWS*/
#newsWrap {
    background: #f4f5f6;
}
.newsArea {
    width: 960px;
    margin: auto;
}
ul.newsInner {
    width: 100%;
    font-size: 0;
}
ul.newsInner li {
    vertical-align: top;
    display: inline-block;
}
ul.newsInner li:nth-child(1) {
    width: 100px;
}
ul.newsInner li:nth-child(1) h2 {
        font-size: 30px;
    font-weight: 500;
}
ul.newsInner li:nth-child(2)  {
    width: 860px;
    font-size: 14px;
    line-height: 1.5em;
    max-height: 200px;
    height: auto;
    overflow: auto;
}
ul.newsInner li:nth-child(2) div.news {
    display: flex;
    width: 100%;
    padding: 1% 2%;
    border-bottom: 1px dotted #999;
    align-items:flex-start;
}
div.news .date {
    width: 90px;
    color: #666;
        font-weight: 400;
}
div.news .cate {
    width: 100px;
    margin-right: 15px;
    
}
div.news .cate img {
    width: 100%;
    margin-top: 2%;
}
div.news .newsTit {
    width: 655px;
    font-weight: 500;
}
div.news .newsTit a {
    color: #000;
}

/*各コンテンツバナー*/
.cntntBnrArea {
    width: 90%;
    max-width: 1024px;
    margin: auto;
}
.cntntBnrInner {
    width: 100%;
height: 100%;
    position: relative;
    margin-bottom: 60px;
}
.cntntBnr {
    width: 37.5%;
    max-width: 384px;
height: 100%;
    max-height: 200px;
    left: 62.5%;
    top:0;
    position: absolute;
    padding: 3%;
    display: flex;
    color: #fff;
    align-items: center;
    font-size: 18px;
    justify-content: space-between;
    font-weight: 400;
}
.cntntBnr i {
    font-size: 24px;
}


/***************************************************
★フッター
***************************************/
footer {
    width: 100%;
    background: url("../img/footer_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    padding: 3% 2% 2%;
        margin-top: 3%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}
.footer_logo {
    width: 230px;
    text-align: left;
}
.footer_logo img {
    width: 100%;
}
footer p {
    font-size: 12px;
    line-height: 1.5em;
}
#subNavWrap {
    width: 100%;
    text-align: right;
}
#subNavWrap a{
    color: #000;
}
#subNavWrap ul.subNav li {
display: inline-block;
    margin-left: 2%;
}
#subNavWrap ul.subNav li i {
    color: #c00;
    font-size: 14px;
    padding-left: 0.5em;
}
/***************************************************
★コンテンツ
/* デザインB（タブレット）
***************************************/
@media screen and (max-width : 1024px) {
/* タブレット用レイアウト に収めるデザインはこの中に記述 */
section {
    padding: 7% 0;
}
header {
    width: 100%;
    margin-top: 50px;
}
header #mv {
    width: 100%;
background: url("../img/mv_sp2024.jpg");
    padding-top: 50.8%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
    
/*NEWS*/
.newsArea {
    width: 90%;
    margin: auto;
}
ul.newsInner {
    width: 100%;
    font-size: 0;
}
ul.newsInner li {
    vertical-align: top;
    display: inline-block;
}
ul.newsInner li:nth-child(1) {
    width: 10%;
}
ul.newsInner li:nth-child(1) h2 {
        font-size: 24px;
    font-weight: 500;
}
ul.newsInner li:nth-child(2)  {
    width: 90%;
    font-size: 12px;
    line-height: 1.5em;
    max-height: 200px;
    height: auto;
    overflow: auto;
}
ul.newsInner li:nth-child(2) div.news {
    display: flex;
    width: 100%;
    padding: 1% 2%;
    border-bottom: 1px dotted #999;
    align-items:flex-start;
}
div.news .date {
    width: 13%;
    color: #666;
        font-weight: 400;
}
div.news .cate {
    width: 11%;
    margin-right: 15px;
    
}
div.news .cate img {
    width: 100%;
    margin-top: 2%;
}
div.news .newsTit {
    width: 76%;
    font-weight: 500;
}
div.news .newsTit a {
    color: #000;
}
    
/*各コンテンツバナー*/
.cntntBnrArea {
    width: 90%;
    margin: auto;
}
    .cntntBnrArea img {
          width: 100%;
    }
.cntntBnrInner {
    width: 100%;
height: 100%;
    position: relative;
    margin-bottom: 7%;
}
.cntntBnr {
    width: 37.5%;
height: 100%;
    left: 62.5%;
    top:0;
    position: absolute;
    padding: 3%;
    display: flex;
    color: #fff;
    align-items: center;
    font-size: 16px;
    justify-content: space-between;
    font-weight: 400;
}
.cntntBnr i {
    font-size: 20px;
}
/***************************************************
★フッター
***************************************/
footer {
    width: 100%;
    background: url("../img/footer_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    padding: 3% 2% 2%;
    display: flex;
    justify-content: space-between;
        font-size: 11px;
}
.footer_logo {
    width: 200px;
    text-align: left;
}
.footer_logo img {
    width: 100%;
}
footer p {
    font-size: 11px;
    line-height: 1.5em;
}
#subNavWrap {
    width: 100%;
    text-align: right;
}
#subNavWrap a{
    color: #000;
}
#subNavWrap ul.subNav li {
display: inline-block;
    margin-left: 2%;
}
#subNavWrap ul.subNav li i {
    color: #c00;
    font-size: 13px;
    padding-left: 0.5em;
}
    
}

/* デザインC（スマホ） ***************************************/
@media screen and (max-width : 599px) {
/* スマホ用レイアウト に収めるデザインはこの中に記述 */
    
/*NEWS*/

ul.newsInner {
    width: 100%;
    font-size: 0;
}
ul.newsInner li {
    vertical-align: top;
    display: list-item;
}
ul.newsInner li:nth-child(1) {
    width: 100%;
    text-align: center;
}
ul.newsInner li:nth-child(1) h2 {
        font-size: 16px;
    font-weight: 500;
}
ul.newsInner li:nth-child(2)  {
    width: 100%;
    font-size: 10px;
    line-height: 1.5em;
    max-height: 140px;
    height: auto;
    overflow: auto;
}
ul.newsInner li:nth-child(2) div.news {
    display: flex;
    flex-wrap:wrap;
    width: 96%;
    padding: 1% 2%;
    border-bottom: 1px dotted #999;
    align-items:flex-start;
}
div.news .date {
    width: 20%;
    color: #666;
        font-weight: 400;
}
div.news .cate {
    width: 20%;
    margin-right: 15px;
    
}
div.news .cate img {
    width: 100%;
    margin-top: 2%;
}
div.news .newsTit {
    width: 90%;
    font-weight: 500;
}
div.news .newsTit a {
    color: #000;
}
/*各コンテンツバナー*/
.cntntBnrArea {
    width: 90%;
    margin: auto;
}
    .cntntBnrArea img {
          width: 100%;
    }
.cntntBnrInner {
    width: 100%;
height: 100%;
    position: relative;
    margin-bottom: 7%;
    }
.cntntBnr {
    font-feature-settings: "palt";
    width: 37.5%;
height: 100%;
    left: 62.5%;
    top:0;
    position: absolute;
    padding: 2%;
    display: flex;
    color: #fff;
    align-items: center;
    font-size: 10px;
/*    font-size: 10px !important;*/
    justify-content: space-between;
    font-weight: 400;
}
.cntntBnr i {
    font-size: 12px;
}
/***************************************************
★フッター
***************************************/
footer {
    width: 100%;
    background: url("../img/footer_bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    padding: 3% 2% 2%;
    display: block;
/*    justify-content: space-between;*/
        font-size: 10px;
}
.footer_logo {
    width: 40%;
    margin: auto;
    text-align: center;
}
.footer_logo img {
    width: 100%;
}
footer p {
    font-size: 10px;
    line-height: 1.5em;
}
#subNavWrap {
    width: 100%;
/*    text-align: left;*/
    text-align: center;
}
#subNavWrap a{
    color: #000;
}
    #subNavWrap ul.subNav {
        width: 96%;
        margin: 0 auto 6% auto;
    }
#subNavWrap ul.subNav li {
display: inline-block;
margin: 0 2%;
}
#subNavWrap ul.subNav li i {
    color: #c00;
    font-size: 12px;
    padding-left: 0.5em;
}
}
