.sustainability-area.Area01 {margin-bottom:60px;}
.sustainability-area.Area02 {margin-bottom:60px;}
.sustainability-area.Area03 {margin-bottom:60px;}
.sustainability-area.Area04 {margin-bottom:60px;}
.sustainability-area.Area05 {margin-bottom:60px;}
.sustainability-area.Area06 {margin-bottom:0px;}


.sustainability-area-wrap .layout {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-bottom:30px;
}


@media (max-width: 768px) {
.sustainability-area-wrap .layout { grid-template-columns: 1fr; }
}


.sustainability-area-wrap .section-item {
border: 1px solid #e5e7eb;
border-radius: 16px;
background: #fff;
box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 1px 1px rgba(0,0,0,.04);
overflow: hidden;
}


.sustainability-area-wrap .section-item__header {
padding: 12px 16px;
}


.sustainability-area-wrap .section-item__title {
margin: 0;
font-size: 1.8rem;
font-weight: 700;
line-height: 1.4;
}


.sustainability-area-wrap .section-item__body {
padding: 12px;
font-size: 1.6rem;
}


.sustainability-area-wrap .is-color01 {background: #091b32;color: #FFF;}
.sustainability-area-wrap .is-color02 {background: #B8193F;color: #FFF;}
.sustainability-area-wrap .is-color03 {background: #beb1aa;color: #FFF;}


.sustainability-area-wrap .section-item:focus-within { outline: 2px solid #93c5fd; outline-offset: 2px; }

  

    /* Grid */
   .sustainability-area-wrap .grid-area { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;     margin-bottom: 20px;}
    @media (max-width: 768px) { .sustainability-area-wrap .grid-area { grid-template-columns: repeat(2, 1fr); } }
    

    /* Card */
    .sustainability-area-wrap .card { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--ring); background: #000; }
    .sustainability-area-wrap .card button { padding: 0; border: 0; background: none; display: block; width: 100%; cursor: pointer; }
    .sustainability-area-wrap .card .media { position: relative; width: 100%; aspect-ratio: 3 / 2; margin: 0px;}
    .sustainability-area-wrap .card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
    .sustainability-area-wrap .card:hover img { transform: scale(1.04); }
    .sustainability-area-wrap .card .barFade { position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0)); pointer-events: none; }
    .sustainability-area-wrap .card .bar { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; padding: 10px 10px; color: #fff; font-weight: 600; text-align: left;}
    .sustainability-area-wrap .card .bar .right { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; opacity: .92; font-weight: 500; }
    .sustainability-area-wrap .card .arrow { width: 20px; height: 20px; fill: currentColor; }

    /* Modal */
    .sustainability-area-wrap .modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; padding: 16px; background: rgba(0,0,0,.7); backdrop-filter: blur(2px); z-index: 150; }
    .sustainability-area-wrap .modal.active { display: flex; }
    .sustainability-area-wrap .panel { width: 100%; max-width: 720px; max-height: 85vh; background: var(--panel); border-radius: 16px; box-shadow: var(--shadow); border: 1px solid var(--ring); overflow: hidden; display: flex; flex-direction: column;background-color: #FFF; }
    .sustainability-area-wrap .panelHeader { display: flex; align-items: flex-start; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid #e5e7eb; }
    .sustainability-area-wrap .titleArea { margin: 0; font-size: 2.2rem; font-weight: 700;margin-top: 5px; }
    .sustainability-area-wrap .close { border: 0; background: none; cursor: pointer; padding: 8px; border-radius: 8px; color: #6b7280; }
    .sustainability-area-wrap .close:hover { background: #f3f4f6; color: #374151; }
    .sustainability-area-wrap .panelBody { padding: 18px 16px; color: #374151; line-height: 1.8; overflow: auto; }
    .sustainability-area-wrap .panelFooter { padding: 14px 16px; border-top: 1px solid #e5e7eb; background: #fff; }
    .sustainability-area-wrap .btnPrimary { width: 100%; border: 0; border-radius: 12px; background: #091b32; color: #fff; padding: 12px 16px; font-weight: 600; cursor: pointer; }
    .sustainability-area-wrap .btnPrimary:hover { opacity: .92; }
	  
	  .sustainability-area-wrap .btnDetail { width: auto; border: 0; border-radius: 12px; background: #B8193F; color: #fff; padding: 12px 16px; font-weight: 600; cursor: pointer; display:block;text-align: center;}
    .sustainability-area-wrap .btnDetail:hover { opacity: .92; text-decoration: none; color: #FFF;}

.sustainability-area-wrap .arrow {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff; /* 背景色 */
  color: #333;            /* 矢印の色 */
  vertical-align: middle;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* 矢印（右向き） */
.sustainability-area-wrap .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 40%;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: transform 0.25s ease; /* ← アニメーションを追加 */
}

/* hover時の効果 */
.sustainability-area-wrap .arrow:hover {
  background-color: #c7d2fe; /* 少し明るく */
}



    /* Utility */
    .sustainability-area-wrap .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


.sustainability-area-wrap .columns {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}


@media (max-width: 768px) {
	
.sustainability-area-wrap .titleArea { margin: 0; font-size: 1.8rem; font-weight: 700;margin-top: 5px; }	
	
.sustainability-area-wrap .columns {
grid-template-columns: repeat(2, 1fr);
}
}
	
	.sustainability-area-wrap .columns a{text-decoration: none;}

.sustainability-area-wrap .item {
border-radius: 16px;
background: #fff;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
overflow: hidden;
border: 1px solid rgba(0,0,0,0.06);
transition: transform 0.25s ease;
}

/*
.item:hover {
transform: translateY(-4px);
} */


.sustainability-area-wrap .image-box {
position: relative;
width: 100%;
aspect-ratio: 3 / 2; /* 768x512 比率 */
overflow: hidden;
}


.sustainability-area-wrap .image-box img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.35s ease;
}


.sustainability-area-wrap .item:hover .image-box img {
transform: scale(1.05);
}


.sustainability-area-wrap .text-box {
padding: 10px;
}


.sustainability-area-wrap .title_columns {
   font-size: 1.6rem;
   font-weight: 700;
   margin: 0 0 2px;
   line-height: 1.5;
}


.sustainability-area-wrap .meta {
display: flex;
align-items: center;
gap: 10px;
	font-size: 1.2rem;
}

@media (max-width: 768px) {
	.sustainability-area-wrap .title_columns {
   font-size: 1.4rem;
   font-weight: 700;
   margin: 0 0 2px;
   line-height: 1.5;
}


.sustainability-area-wrap .meta {
display: flex;
align-items: center;
gap: 10px;
	font-size: 1.2rem;
}
}

.theme__Area {margin-bottom: 0px;}

.theme__Area .toggle.-style07 .toggle__btn a {
    position: relative;
    display: block;
    padding: 0px;
    text-decoration: none;
    color: #231815;
    /* border-left: 5px solid #B8193F; */
}

.theme__Area .toggle.-style07 .toggle__btn a span {
    /* position: absolute; */
    /* top: .2em; */
    /* left: 5px; */
    /* color: #B8193F; */
    font-weight: bold;
    font-size: 2.0rem;
    border-left: 0px solid #B8193F;
    padding:0px;    color: #B8193F;
}
.theme__Area .toggle.-style07 .toggle__btn a::after {
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 15px;
    width: 8px;
    height: 8px;
    border-left: 2px solid #B8193F;
    border-bottom: 2px solid #B8193F;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: 500ms;
    transition: 500ms;
}
.theme__Area .toggle.-style07 .toggle__btn a.is-active::after {
    top: calc(50% - 2px);
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
}
.theme__Area .toggle.-style07 .toggle__btn a::after {
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 15px;
    width: 8px;
    height: 8px;
    border-left: 2px solid #B8193F;
    border-bottom: 2px solid #B8193F;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: 500ms;
    transition: 500ms;
}
.theme__Area .toggle.-style07 .toggle__body {
    padding: 0px 0px;
}
.theme__Area .toggle {
    margin-bottom: 30px;
}
.second-sustainability {padding-bottom: 0px;}
@media (max-width: 768px) {
	.theme__Area .toggle.-style07 .toggle__btn a span {
    /* position: absolute; */
    /* top: .2em; */
    /* left: 5px; */
    /* color: #B8193F; */
    font-weight: bold;
    font-size: 1.5rem;
    border-left: 0px solid #B8193F;
    padding:0px;    color: #B8193F;
}
	.theme__Area .toggle {
    margin-bottom: 20px;
}
	
}


		  .readmore-box {
  max-width: 100%;
  margin: 20px auto;
/*  font-size: 15px;
  line-height: 1.7; */
  position: relative;
}

/* チェックボックス非表示 */
.rm-toggle {
  display: none;
}

/* 本文部分（閉じ高さ80px） */
.rm-content {
  overflow: hidden;
  max-height: 80px;               /* ← 閉じ高さ */
  transition: max-height 0.5s ease;
  position: relative;
}

/* フェード */
.rm-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2em;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  transition: opacity .35s ease;
  pointer-events: none;
  opacity: 1;
}

/* フェード消す */
.rm-toggle:checked ~ .rm-content::after {
  opacity: 0;
}

/* ▼ ボタン（両方向のアニメに対応） */
.rm-label {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid #ccc;
  cursor: pointer;
  user-select: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: #fafafa;

  /* 開く/閉じる どちらも動くアニメ */
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
  opacity: 1;
}

/* 開いた時：上にスッと動く */
.rm-toggle:checked ~ .rm-label {
  transform: translateY(0px);
  opacity: 1;
}

/* 閉じた時：元の位置に戻る */
.rm-toggle:not(:checked) ~ .rm-label {
  transform: translateY(0);
  opacity: 1;
}

/* 「閉じる」はデフォルト非表示 */
.rm-label .close {
  display: none;
}

/* テキスト切替 */
.rm-toggle:checked ~ .rm-label .open {
  display: none;
}
.rm-toggle:checked ~ .rm-label .close {
  display: inline;
}

.second-sustainability .panelBody .box-017 {margin-top: 20px;}


	.second-sustainability .box-017 {
    max-width: 100%;
    margin: 0 auto; margin-bottom: 30px;
   padding: 15px 20px;
    border-top: 5px solid #091b32;
    border-radius: 3px;
    background-color: #f2f2f2;
}

.second-sustainability .box-017 > h3 {
    margin-bottom: .5em;
    color: #091b32;
    font-weight: 600;
        font-size: 2.0rem;
}

.second-sustainability .box-017 > p {
    margin: 0;
    color: #333;
}
					.heading-33 {
    border-bottom: 3px solid #f2f2f2;
}
					
					.second-sustainability .toggle__body em {font-size: 2.0rem;}
.second-sustainability .theme__Area em {font-size: 2.0rem;}
.second-sustainability .title.-style09_02, .second-sustainability .title.-style09_01 {
  margin-top: -0.4em;
  margin-bottom: .5em;
  padding: 0;
  font-weight: bold;
  font-size: 2.0rem;
  color: #B8193F;
}

.second-sustainability .title.-style09_02::before, .second-sustainability .title.-style09_01::before {
  content: "";
  display: inline-block;
  width: 7px;
  margin-right: 5px;
  height: 1.5em;
  border: 2px solid #B8193F;
  border-right: 0;
  -webkit-transform: translateY(0.4em);
          transform: translateY(0.4em);
}

.second-sustainability .title.-style09_02::after, .second-sustainability .title.-style09_01::after {
  content: "";
  display: inline-block;
  width: 7px;
  margin-left: 5px;
  height: 1.5em;
  border: 2px solid #B8193F;
  border-left: 0;
  -webkit-transform: translateY(0.4em);
          transform: translateY(0.4em);
}

.second-sustainability .title.-style09_02 {
  color: #091b32;
}

.second-sustainability .title.-style09_02::before {
  border-color: #091b32;
}

.second-sustainability .title.-style09_02::after {
  border-color: #091b32;
}			
					
.second-sustainability .box.-style07 .box__title {
    position: relative;
    top: 0;
    padding: 8px 20px;
    background-color: #091b32;
    color: white;
    font-size: 2.0rem;
}
					
.second-sustainability .box.-style07 .box__body {
    padding: 20px;
    background-color: #fff;
    border: 2px solid #091b32;
    border-radius: 10px;
}
						.second-sustainability p {
        font-size: 1.6rem; margin-bottom: 10px!important;
    }
.second-sustainability .top-news p{margin-bottom: 0px!important;}
					
					.box-016 {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 1em 1.5em;
    border-left: 5px solid #091b32;
    background-color: #f2f2f2;
    color: #333;
						margin-bottom: 30px;
}
					
.second-sustainability .box-016 > h3 {
    margin-bottom: .5em;
    color: #091b32;
    font-weight: 600;
        font-size: 2.0rem;
}

.second-sustainability .box-016 > p {
    margin: 0;
    color: #333;
}	

.panelBody ul {margin: 0;}
.panelBody em {font-size: 2.0rem;}
					
					
					@media screen and (max-width: 768px) {
					
						.second-sustainability .toggle__body em {font-size: 1.4rem;}
						.panelBody em {font-size: 1.4rem;}
						.second-sustainability .title.-style09_02::before, .second-sustainability .title.-style09_01::before {
  content: "";
  display: inline-block;
  width: 7px;
  margin-right: 5px;
  height: 1.5em;
  border: 1px solid #B8193F;
  border-right: 0;
  -webkit-transform: translateY(0.4em);
          transform: translateY(0.4em);
}

.second-sustainability .title.-style09_02::after, .second-sustainability .title.-style09_01::after {
  content: "";
  display: inline-block;
  width: 7px;
  margin-left: 5px;
  height: 1.5em;
  border: 1px solid #B8193F;
  border-left: 0;
  -webkit-transform: translateY(0.4em);
          transform: translateY(0.4em);
}
						
.second-sustainability .box.-style07 .box__title {
        padding: 5px 10px;
        font-size: 1.4rem;
    }
						
						    .box.-style07 .box__title + .box__body {
        margin-top: -5px;
        padding-top: 15px;
								        padding: 10px 10px; border-radius: 0px;
    }
						
						.second-sustainability .title.-style09_02, .second-sustainability .title.-style09_01 {
  margin-top: -0.4em;
  margin-bottom: .5em;
  padding: 0;
  font-weight: bold;
  font-size: 1.4rem;
  color: #B8193F;
}
						
						
	.second-sustainability .box-017 > h3 {
    margin-bottom: .5em;
    color: #091b32;
    font-weight: 600;
        font-size: 1.4rem;
}				
						.second-sustainability .box-017 {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 15px;
    border-top: 5px solid #091b32;
    border-radius: 3px;
    background-color: #f2f2f2;
}
				
						.second-sustainability .box-016 > h3 {
    margin-bottom: .5em;
    color: #091b32;
    font-weight: 600;
        font-size: 1.4rem;
}
						
					.second-sustainability .notes.-small {
        font-size: 1.4rem;
    }
							.second-sustainability p {
        font-size: 1.4rem;
    }
						
}


.second-sustainability .top-news {
    margin-bottom: 0px;
    padding-top: 0px;
}

.second-sustainability .js-news-tab .swiper-slide {
  display: flex;
  justify-content: center;  /* 横方向中央 */
  align-items: center;      /* 縦方向中央 */
  text-align: center;       /* ← 2行でも中央揃え */
  white-space: normal;      /* ← 2行にしてOK */
  line-height: 1.4;         /* お好みで */
	min-height: 65px;          /* ★ これをつけると高さが揃って中央になる */
}

.second-sustainability .js-news-tab .swiper-slide p {
  margin: 0;
}
#page .second-sustainability .js-news .swiper-button-prev::before, #page .second-sustainability .js-news .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 65px;
    background-color: #091b32;
}
#page .second-sustainability .js-news .swiper-button-next::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 12px;
    width: 8px;
    height: 8px;
    border: 2px solid transparent;
    border-top-color: white;
    border-right-color: white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#page .second-sustainability .js-news .swiper-button-prev::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 27px;
    left: 12px;
    width: 8px;
    height: 8px;
    border: 2px solid transparent;
    border-top-color: white;
    border-left-color: white;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*
#page .second-sustainability .newsList__itemImage {
    position: relative;
    width: 198px;
    height: 120px;
    overflow: hidden;
}
*/

	@media screen and (max-width: 768px) {
		
#page .second-sustainability .top-news {
        margin-bottom: 0;
        padding: 0px 0px 0;
    }
		
#page .second-sustainability .js-news .swiper-button-prev::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    min-width: 30px;
    height: 65px;
    background-color: #091b32;
}
		
#page .second-sustainability .js-news .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    min-width: 30px;
    height: 65px;
    background-color: #091b32;
	right: 0;
}	
		
		/*
#page .second-sustainability .js-news .newsList__itemImage {
        width: 100px;
        height: 67px;
    }
*/	
}

.pageHeader__title span {font-size: 2.4rem;}
.section-item__img {text-align: center;}

@media screen and (max-width: 768px) {
.pageHeader__title span {font-size: 1.4rem;}
.section-item__img img {max-width: 50%; height: auto;}	
	
}
