@charset "UTF-8";


/*----------------------

 */


/* story */

@media all and (min-width: 769px) {
  body {
    font-size: 1.6rem;
    overflow: auto;
  }
}

.Container__inner .MainContents .MainContents__inner {
  overflow-x: unset;
}

.MainContents__inner {
  width: 100%;
  margin-top: 60px;

}

.MainContents .content {
  width: 100%;
}

.MainContents .content.story {
  background-color: #fafafa;
  padding-top: 80px;
  padding-bottom: 80px;
}


.content .heading {
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.content .heading .contentTitle {
  font-size: 46px;
  color: #333333;
}

.content_inr-wrap {
  width: 1200px;
  margin: 0 auto;
}

.content_inr-wrap h3 {
  font-size: 28px;
  color: #333333;
}

/* button */

.btn_wrap {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_wrap .btn_inr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_wrap .btn_inr .btn_story_typeB {
  display: block;
  width: auto;
  padding: 12px 60px 12px 30px;
  border-radius: 10px;
  background: #ffffff;
  color: #666666;
  text-decoration: none;
  border: 3px solid #666666;
  font-weight: bold;
  position: relative;
}

.btn_wrap .btn_inr .btn_story_typeB:hover {
  background: #ffffff;
  color: #333333;
  text-decoration: none;
  border: 3px solid #333333;

}

/* card */

.card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}



.card-container a.card_wrap {
  width: 31%;
  display: flex;
  position: relative;
}

.latestposts_inr-wrap .card-container a.card_wrap:nth-child(n+4) {
  display: none;
}

.card {
  background-color: #ffffff;
  padding: 0 0 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.card .card_inr {
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}

.card .card_inr .description {
  flex-grow: 1;
}

a:hover .card {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 12px 12px 0 0;
}

.card .img-wrap {
  width: 372px;
  height: 164px;
  overflow: hidden;
}

.card .image {
  width: 100%;
  aspect-ratio: 25 / 11;
  border-radius: 12px 12px 0 0;
  transition: all 0.2s ease-in-out;
}

a:hover .card .image {
  transform: scale(1.1);
}

.card-container .card .card_info {
  height: 44px;
  width: 100%;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-container .card .card_info .card_info_category {
  display: inline-block;
  width: auto;
  height: 22px;
}

.card-container .card .card_info .card_info_category img {
  width: auto;
  height: 22px;
}

.card-container .card .card_info .card_datetime {
  font-size: 14px;
  color: #333333;
}


.card-container .card .description {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  line-height: 30px;
}

a:hover .card .description {
  text-decoration: underline;
}

.card-container .card .card_tags {
  width: 100%;
  padding: 4px 0;
}

.card-container .card .card_tags .card_tag:nth-child(1) {
  margin-left: 0;
}

.card-container .card .card_tags .card_tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 14px;
  color: #009944;
}

/* その他のスタイル */

:root {
  --gray: #f7f5f5;
  --padding: 24px;
  --base-color: #fcfcfc;
  --primary-color: #62b2f7;
  --text-color: #333333;
}


a {
  text-decoration: none;
}

img {
  object-fit: contain;
}

.global-header .brand-title {
  font-family: "Concert One", cursive;
  font-size: 40px;
  text-align: center;
}

.global-header .brand-title b {
  color: var(--primary-color);
}

.label {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.main {
  padding-inline: var(--padding);
}


.MainContents .content.category {
  background-color: #F2F2F2;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* category */

.category_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.category_list::after {
  content: "";
  display: block;
  width: 388px;
  height: 0;
}

.category_list .category_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 388px;
  height: auto;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;

}

.category_list .category_card .cat_title_img {
  height: 32px;
  width: auto;
  text-align: center;
  margin: 20px 0;
  padding: 0 16px;
}

.category_list .category_card .cat_title_img img {
  display: inline-block;
  height: 100%;
}

.category_list .category_card .cat_thumbnail {
  width: auto;
  height: 215px;
  overflow: hidden;
}

.category_list .category_card .cat_thumbnail img {
  transition: all 0.2s ease-in-out;
}

.category_list .category_card a:hover .cat_thumbnail img {
  transform: scale(1.1);
}

.category_list .category_card .cat_title_ja {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 32px;
  color: #333333;
}

.category_list .category_card .cat_link_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  color: #333333;
  position: relative;
}

.category_card a:hover .cat_link_txt {
  text-decoration: underline;
}

.cat_link_info{
	font-size: 18px;
    align-items: center;
    margin: 0;
    color: #333333;
    position: relative;
	text-decoration: underline;
	}
.cat_link_info:after{
	font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "\ea3c";
    font-size: 20px;
    color: #666666;
    position: absolute;
    bottom: 2px;
    left: 180px;
    z-index: 10;
	}

@media all and (max-width: 769px){
 .cat_link_info{
	font-size: 16px;
    align-items: center;
    margin: 12px 0 30px;
    color: #333333;
    position: relative;	
	}
 .cat_link_info:after{
    left: 162px;
	}
	}

div:has(.category_01) .card-container a.card_wrap:not(:has(.sort_cate_connectivity)) {
  display: none;
}

div:has(.category_02) .card-container a.card_wrap:not(:has(.sort_cate_accessibility)) {
  display: none;
}

div:has(.category_03) .card-container a.card_wrap:not(:has(.sort_cate_innovation)) {
  display: none;
}

div:has(.category_04) .card-container a.card_wrap:not(:has(.sort_cate_collaboration)) {
  display: none;
}

div:has(.category_05) .card-container a.card_wrap:not(:has(.sort_cate_responsibility)) {
  display: none;
}


/* tag */

.content.tags {
  padding: 40px 0 60px;
  border-bottom: 4px solid #E6E6E6;
}

.tag_group {
  width: 100%;
}

.tag_group .tag_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.tag_group .tag_list .tag {
  display: inline-block;
  width: auto;
  font-size: 20px;
  font-weight: bold;
  color: #39B570;
  padding: 8px 20px;
  border: 2px solid #39B570;
  border-radius: 24px;
}

.tag_group .tag_list a:hover .tag {
  color: #ffffff;
  background-color: #39B570;
}


.fv_leadArea__inner .Button__item {}

.fv_leadArea__inner .Button__item .Button__moduleA {
  margin-inline: 0;
  margin-top: 40px;
  max-width: 380px;
}

.fv_leadArea__inner .Button__item .Button__moduleA a {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  box-shadow: none;

}

div:has(.tag_01) .card-container a.card_wrap:not(:has(.sort_tag_atm)) {
  display: none;
}

div:has(.tag_02) .card-container a.card_wrap:not(:has(.sort_tag_account)) {
  display: none;
}

div:has(.tag_03) .card-container a.card_wrap:not(:has(.sort_tag_service)) {
  display: none;
}

div:has(.tag_04) .card-container a.card_wrap:not(:has(.sort_tag_dx)) {
  display: none;
}

div:has(.tag_05) .card-container a.card_wrap:not(:has(.sort_tag_reliability)) {
  display: none;
}

div:has(.tag_06) .card-container a.card_wrap:not(:has(.sort_tag_no-one)) {
  display: none;
}


div:has(.tag_07) .card-container a.card_wrap:not(:has(.sort_tag_next-generation)) {
  display: none;
}

div:has(.tag_08) .card-container a.card_wrap:not(:has(.sort_tag_challenge)) {
  display: none;
}

div:has(.tag_09) .card-container a.card_wrap:not(:has(.sort_tag_future)) {
  display: none;
}

/* article */

.heading_lv3 {
  margin-bottom: 44px;
}

.heading_lv3 h3 {
  font-size: 28px;
  color: #333333;
}

.heading_lv3 p {
  font-size: 20px;
  color: #333333;
  margin-top: 18px;
}

.heading_area {
  width: 100%;
  height: auto;
  background-color: #eeeeee;
}

.heading_area.category_01 {
  background-color: #eeeeee;
}

.heading_area .heading_area_inr {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 32px 0;

}

.heading_area .heading_area_inr .heading_icon {
  width: 40px;
  height: auto;
  max-height: 40px;
  margin-right: 18px;

}

.heading_area .heading_area_inr .heading_icon img {
  object-fit: contain;
  max-height: 40px;
}

.heading_area .heading_area_inr .article_list_title {
  font-size: 32px;
  text-align: left;
  color: #333333;
  font-weight: bold;
}


/* sp */

@media all and (min-width: 769px) {}

@media all and (max-width: 769px) {

  .heading_area .heading_area_inr {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 20px 10px 20px 16px;
  }

  .heading_area .heading_area_inr .article_list_title {
    font-size: 18px;
  }

  .MainContents .content.story {
    background-color: #fafafa;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .content_inr-wrap {
    width: 100%;
    margin: 0 auto;
  }

  .card-container {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    padding: 0 18px;
  }


  .card-container a.card_wrap {
    width: 100%;
    display: flex;
    position: relative;
  }


  .card {
    display: flex;
    flex-direction: column;
  }

  .card .img-wrap {
    width: 100%;
    height: auto;
  }

  .MainContents .content.category {
    background-color: #F2F2F2;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .heading_lv3 {
    margin-bottom: 20px;
    padding: 8px 16px;
  }

  .heading_lv3 h3 {
    font-size: 20px;
    color: #333333;
  }

  .heading_lv3 p {
    font-size: 16px;
    color: #333333;
    margin-top: 18px;
  }

  .category_list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .category_list .category_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
  }

  .category_list .category_card .cat_thumbnail {
    display: none;
  }

  .C-Branding-detail__container a {
    width: 100%;
    height: 100%;
  }

  .content.tags {
    padding: 0 0 32px;
    border-bottom: 4px solid #E6E6E6;
  }

  .tag_group .tag_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    align-items: flex-start;
    gap: 14px;
    padding: 0 10px;
  }

  .tag_group .tag_list a {
    display: inline-block;
    width: auto;
  }

  .tag_group .tag_list .tag {
    display: inline-block;
    width: auto;
    font-size: 16px;
    font-weight: bold;
    color: #39B570;
    padding: 4px 10px;
    border: 2px solid #39B570;
    border-radius: 16px;
    margin-left: 0;
  }
}

/* icon-font */

@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoon.eot?7zgkqj');
  src: url('fonts/icomoon.eot?7zgkqj#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?7zgkqj') format('truetype'),
    url('fonts/icomoon.woff?7zgkqj') format('woff'),
    url('fonts/icomoon.svg?7zgkqj#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* use icon-font 
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
*/

.btn_wrap .btn_inr .btn_story_typeB::after {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\ea3c";
  font-size: 20px;
  color: #333333;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all 0.1s ease-in-out;
}

.btn_wrap .btn_inr .btn_story_typeB:hover::after {
  transform: translateY(-50%) translateX(4px);
}

.card-container a.card_wrap::after {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\ea3c";
  font-size: 20px;
  color: #333333;
  position: absolute;
  transition: all 0.1s ease-in-out;
  position: absolute;
  bottom: 16px;
  right: 12px;
  z-index: 10;
}

.card-container a.card_wrap:hover::after {
  transform: translateX(4px);
}

.category_list .category_card .cat_link_txt:after {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\ea3c";
  font-size: 20px;
  color: #666666;
  position: absolute;
  transition: all 0.1s ease-in-out;
  position: absolute;
  bottom: 2px;
  right: 66px;
  z-index: 10;
}

@media all and (max-width: 769px) {
  .category_list .category_card .cat_link_txt:after {

    right: 20px;

  }
}

.materiality-box{
	margin: -60px 0 40px;
	padding-bottom: 60px;
	border-bottom: 2px solid #E6E6E6;
}
.materiality-box h4{
	font-size: 20px;
}
.materiality-box p{
	font-size: 18px;
}
.materiality-box .vision-area{ 
	width: 1200px; 
	margin:20px auto 0 ;
}
.materiality-box .social-issues-area{ 
	width: 1200px; 
	margin: 30px auto -30px;
}

@media all and (max-width: 769px){
	.materiality-box{
		margin: -40px 0 40px; 
		padding:0 16px;}
	.materiality-box .vision-area{ 
		width: 100%; 
		margin: 0 auto; 
		padding: 30px 0;
	}
	.materiality-box .social-issues-area{
		width: 100%; 
		margin: 0 auto; 
		padding:0 0 30px;
	}
	.materiality-box h4{
		font-size: 18px;
	}
	.materiality-box p{
		font-size: 16px;
	}	
}