@charset "utf-8";

/* all container  */
html {
	margin-top:0 !important;
}
.pc {
  display: block;
}
.header *,
.contents * {
  box-sizing: border-box;
}
.contents .sectionInner {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}

/* util */
.textwrap--left {
  text-align: left;
}
.textwrap--center {
  text-align: center;
}
.textwrap--right {
  text-align: right;
}

/* header */
.head.header {
  position: fixed;
  top: 0;
  z-index: 100000;
  width: 100%; height: 80px;
  background: #fff;
  max-width: none;
  border-bottom: 1px solid #C5C7C8;
  color: #333;
}
.header__inner {
  max-width: 1200px; height: 80px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.header__logo {
  display: flex; align-items: center; align-content: center;
}
.header__logo a img {
  display: block;
  max-width: 178px;
}

.header__nav {
  display: flex; justify-content: flex-end; align-items: center; align-content: center;
  height: 80px;
}
.header__nav__list {
  order: -1;
  display: flex;
  padding: 0;
  list-style: none;
}
.header__nav__list__item {
  padding: 30px 10px;
}
.header__nav__list__item a {
  position: relative;
  font-size: 16px;
  color: #333333;
}
.header__nav__list__item > a {
  white-space: nowrap;
}
.header__nav__list__item--arrow > a {
  padding-right: 18px;
}

.header__nav__list__item:last-of-type {
    padding-right: 0px;
}
.header__nav__list__item--arrow > a:after {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid #5c5a5a;
  border-bottom: none;
  border-left: none;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 4px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.navchild__heading {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}

.header__lang {
  position: relative;
  padding-left: 40px;
}
.header__lang::before {
  content: '';
  position: absolute; top: 0; left: 20px; bottom: 0;
  display: block; width: 1px; height: 80%; margin: auto 0;
  background: #989898;
}
.header__lang a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  font-size: 15px;
}
.header__lang img  {
  display: inline-block;
  margin-right: 6px;
}

.globalNav,
.headNavSP {
  display: none;
}
.navchild {
  background: #F4F5F6;
  position: absolute;
  display: none;
  width: 100%;
  z-index: 1000;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  margin: auto;
}
.navchild__inner {
  padding: 32px 40px;
  margin: auto;
  max-width: 1160px;
}
.navchild__inner h4 {

}
.navchild__underpages {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;

}
.navchild__col {
  width: calc((100% - 18px * 2) / 3);
}
.navchild__col:not(:first-child) {
  margin-left: 18px;
}
.navchild__col:nth-child(3n + 1) {
  margin-left: 0;
}
.navchild__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #C5C7C8;
}

/* globalnav sp only */
.globalNav {
  color: #333;
}
.globalNav li {
  text-align: center;
  height: auto;
  min-height: 40px;
}
.globalNav li .globalNav__parent {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0 15px;
  box-sizing: border-box;
  color: #6f6f6f;
  font-size: 115%;
}
.globalNav li.globalNav__btn--arrow > .globalNav__parent:after {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid #5c5a5a;
  border-bottom: none;
  border-left: none;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 6px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.globalNav li.globalNav__btn--arrow.open > .globalNav__parent:after {
  top: 9px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.globalNav__accordion {
  display: none;
}
.globalNav__accordion li {
  border-bottom: 1px solid #C5C7C8;
}
.globalNav__accordion li:last-child {
  border-bottom: none;
}
.globalNav__accordion__heading {
  font-size: 13px;
  font-weight: bold;
}

/* breadcrumb */
.breadcrumb {
  max-width: 1160px;
  margin: auto;
  padding: 12px 0;
  color: #333;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  padding: 0;
  list-style: none;
}
.breadcrumb ul li {
  font-size: 13px;
  padding: 0;
  position: relative;
}
.breadcrumb ul li:not(:first-child)::before {
  display: inline-block;
  content: '';
  width: 6px;
  height: 6px;
  border: 1px solid #5c5a5a;
  border-bottom: none;
  border-left: none;
  margin: auto;
  position: absolute;
  top: 0;
  right: calc(100% + 10px);
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadcrumb ul li:not(:first-child) {
  margin-left: 24px;
}

.breadcrumb--bottom {
  max-width: 1160px;
  padding-top: calc(var(--s)*110); padding-bottom: calc(var(--s)*12);
}
.breadcrumb--bottom ul li {
  color: #0C4DAE;
}
.breadcrumb--bottom ul li a {
  color: #333;
}


/* heading */
.header .heading01,
.header .heading02,
.header .heading03,
.header .heading04,
.header .heading05,
.contents .heading01,
.contents .heading02,
.contents .heading03,
.contents .heading04,
.contents .heading05 {
  color: #333333;
  font-weight: 700;
  padding: 0;
  margin: 0;
  line-height: 1.7;
  border: none;
  background: none;
}
.header .heading01,
.contents .heading01 {
  font-size: 50px;
}
.header .heading02,
.contents .heading02 {
  font-size: 40px;
  padding-bottom: 28px;
}
.header .heading03,
.contents .heading03 {
  font-size: 31px;
  padding-bottom: 20px;
}
.header .heading04,
.contents .heading04 {
  font-size: 24px;
  padding-bottom: 20px;
}
.header .heading05,
.contents .heading05 {
  font-size: 20px;
  padding-bottom: 20px;
}
.header .heading02--bold,
.header .heading03--bold,
.header .heading04--bold,
.header .heading05--bold,
.contents .heading02--bold,
.contents .heading03--bold,
.contents .heading04--bold,
.contents .heading05--bold {
  font-weight: bold;
}

/* text */
.contents .txt {
  font-size: 13px;
  margin-bottom: 20px;
}
.contents .lead {
  font-size: 16px;
  padding-bottom: 20px;
}

/* list */
.contents .list li {
  position: relative;
  padding-left: 1.28em;
  font-size: 16px;
}
.contents .list li:before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #C5C7C8;
  border: solid 1px #C5C7C8;
  border-radius: 51%;
  font-size: 8px;
}
.contents .list--od {
  position: relative;
  padding-left: 1.2em;
  counter-reset: cnt;
  padding-bottom: 20px;
}
.contents .list--od li {
  position: relative;
  list-style-type: none;
  font-size: 16px;
}
.contents .list--od li:before {
  counter-increment: cnt;
    content: counter(cnt) ".";
    position: absolute;
    top: 1em;
    left: 3em;
    top: 0;
    left: -1.2em;
}
.contents .list li:last-child,
.contents .list--od li:last-child {
  padding-bottom: 0;
}
.contents .list li > .list,
.contents .list--od li > .list--od {
  padding-top: 8px;
  padding-bottom: 0;
}

/* link */
.header .textlink,
.contents .textlink {
  font-size: 16px;
}
.header .textlink--pdf,
.contents .textlink--pdf {
  font-size: 16px;
  color: #333333;
  position: relative;
}
.header .textlink--pdf:after,
.contents .textlink--pdf:after {
  display: inline-block;
  content: '';
  background: url(/wp-content/themes/cas/img/pdf_btn.png) no-repeat;
  width: 19px;
  height: 19px;
  background-size: contain;
  margin-left: 8px;
}
.header .textlink--outer,
.contents .textlink--outer {
  font-size: 16px;
  color: #333333;
  position: relative;
}
.header .textlink--outer:after,
.contents .textlink--outer:after {
  display: inline-block;
  content: '';
  background: url(/wp-content/themes/cas/img/icon_outer-link_2.png) no-repeat;
  width: 14px;
  height: 14px;
  background-size: contain;
  margin-left: 8px;
}
.header .btnlink--toList,
.contents .btnlink--toList {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #333333;
  padding-bottom: 20px;
}
.header .btnlink--toList:after,
.contents .btnlink--toList:after {
  content: "";
  display: inline-block;
  background: url(/wp-content/themes/cas/img/icon_arrow3_gray.png) no-repeat center center;
  background-size: auto;
  width: 40px;
  height: 40px;
  margin-left: 11px;
  border: 1px solid #C5C7C8;
  border-radius: 50%;
}
.header .btnlink--toUnder,
.contents .btnlink--toUnder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: #333333;
  padding-bottom: 12px;
  border-bottom: 1px solid #C5C7C8;
  position: relative;
  margin-bottom: 12px;
  text-align: left;
}
.header .btnlink--toUnder:after,
.contents .btnlink--toUnder:after {
  content: "";
  display: inline-block;
  background: url(/wp-content/themes/cas/img/icon_arrow3_gray.png) no-repeat center center;
  background-size: auto;
  width: 40px;
  height: 40px;
  min-width: 40px;
}
.header .btnlink--heading,
.contents .btnlink--heading {
  font-size: 31px;
}

.header .flexWrap--col2 .flexWrap__image,
.contents .flexWrap--col2 .flexWrap__image {
  font-size: 0;
  display: block;
  margin-bottom: 25px;
}
.header .flexWrap--col3 .flexWrap__image,
.contents .flexWrap--col3 .flexWrap__image {
  font-size: 0;
  display: block;
  margin-bottom: 16px;
}
.header .flexWrap--col2 .btnlink--heading,
.contents .flexWrap--col2 .btnlink--heading {
  margin-bottom: 23px;
}
.header .flexWrap--col3 .btnlink--heading,
.contents .flexWrap--col3 .btnlink--heading {
  font-size: 24px;
  margin-bottom: 16px;
}

.contents .btn {
  display: inline-block;
  margin-bottom: 20px;
}
.contents .btn.btn--mbNone {
  margin-bottom: 0;
}
.contents .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 62px;
  background: #fff;
  border: 1px solid #6F6F6F;
  position: relative;
  padding: 0 54px 0 20px;
  transition: all .4s ease;
}
.contents .btn a:after {
  content: "";
  display: inline-block;
  background: url(/wp-content/themes/cas/img/icon_arrow3_gray.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 14px;
  height: 8px;
}
.contents .btn__text {
  display: block;
  width: 100%;
  position: relative;
  text-align: left;
  font-size: 16px;
  color: #333333;
}
.contents .btn a:hover {
  background: #E4E5E6;
  text-decoration: none;
}
.contents .btn.btn--strong a {
  background: #6F6F6F;
  border: 1px solid #6F6F6F;
}
.contents .btn.btn--strong a:after {
  background: url(/wp-content/themes/cas/img/icon_arrow3_white.png) no-repeat center center;
  background-size: contain;
}
.contents .btn.btn--strong .btn__text {
  color: #fff;
}
.contents .btn.btn--strong a:hover {
  background: #4E4E4E;
  background-color: #4E4E4E;
}

/* tag */
.contents .tags {
  margin-top: 16px;
}
.contents .tagBox {
  display: inline-block;
  padding: 0;
  margin: 4px 0;
}
.contents .tagBox a {
  display: inline-block;
  border: 1px solid #6F6F6F;
  border-radius: 16px;
  padding: 4px 12px;
  color: #6F6F6F;
  transition: all .4s ease;
  font-size: 13px;
}
.contents .tagBox a:hover {
  background: #E4E5E6;
  color: #6F6F6F;
  text-decoration: none;
}

/* flexwrap col */
.contents .flexWrap {
  display: flex;
  justify-content: stretch;
}
.contents .flexWrap--between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.contents .flexWrap--center {
  display: flex;
  justify-content: center;
}
.contents .flexWrap--col2,
.contents .flexWrap--col3 {
  display: flex;
  flex-wrap: wrap;
}
.contents .flexWrap--col2 .flexWrap__col {
  width: calc((100% - 18px * 1) / 2);
  margin-bottom: 40px;
}
.contents .flexWrap--col3 .flexWrap__col {
  width: calc((100% - 18px * 2) / 3);
  margin-bottom: 40px;
}

.contents .topNewscenterBlock .flexWrap__col > a {
    max-height:220px;
	min-height:220px;
    height:100%;
    display:flex;
    align-items:center;
}

.contents .topNewscenterBlock .flexWrap__col > a img {
    height: auto;
    max-height: inherit;
    width: 100%;
    max-width: fit-content;
    display:block;
    margin:0 auto;
}

.contents .relatedContent__list__card__img {
  max-height:220px;
  height:100%;
  display:flex;
  align-items:center;
}

.contents .relatedContent__list__card__img img {
  height:100%;
  display:block;
  margin:0 auto;
}

.contents .flexWrap--col2 .flexWrap__col:not(:first-child),
.contents .flexWrap--col3 .flexWrap__col:not(:first-child) {
  margin-left: 18px;
}
.contents .flexWrap--col2 .flexWrap__col:nth-child(2n + 1) {
  margin-left: 0;
}
.contents .flexWrap--col3 .flexWrap__col:nth-child(3n + 1) {
  margin-left: 0;
}

.contents .pageMv {
  max-width: 1366px; height: auto;
  margin: 0 auto 80px;
  padding: 44px 103px;
  color: #333;
}
.contents .pageMv__inner {
  width: 61%;
}
.contents .pageMv .heading01 {
  margin: 0;
  font-size: calc(var(--s)*60); line-height: 1.7; font-weight: 700; white-space: nowrap;
  color: inherit;
}
.contents .pageMv .heading01 small {
  display: block;
	font-size: calc(var(--s)*20); line-height: 1.25; font-weight: 700;
	text-transform: uppercase;
}
.contents .pageMv .heading03 {
  margin: 0;
  font-size: calc(var(--s)*60); line-height: 1.7; font-weight: 700; white-space: nowrap;
  color: inherit;
}
.contents .pageMv__copy {
  margin: 0 0 calc(var(--s)*10);
  font-size: calc(var(--s)*24); font-weight: 600;
}
.contents .pageMv__lead {
  font-size: calc(var(--s)*16);
}

.contents .pageMv.newscenterTop {
  background: url(/wp-content/themes/cas/img/mv/mv_newscenter_top.png) no-repeat;
  margin-bottom: 40px;
}
.contents .pageMv.corp {
  background: url(/wp-content/themes/cas/img/mv/mv_corp.png) right no-repeat;
  background-size: 100% 100%;
}
.contents .pageMv.sustainability {
  background: url(/wp-content/themes/cas/img/mv/img-sus-mv.png) right no-repeat;
  background-size: cover;
  color: #fff;
}
/* SP */
@media screen and (max-width: 768px) {
  .contents .pageMv {padding: 0; margin-bottom: calc(var(--s)*80);}
  .contents .pageMv__inner {width: unset;}
  .contents .pageMv .heading01 {margin-bottom: calc(var(--s)*180); font-size: calc(var(--s)*70);}
  .contents .pageMv .heading01 small {margin-top: calc(var(--s)*20); font-size: calc(var(--s)*34);}
  .contents .pageMv__copy {margin-bottom: calc(var(--s)*40); font-size: calc(var(--s)*40);}
  .contents .pageMv__lead {font-size: calc(var(--s)*28); text-align: left;}

  .contents .pageMv.newscenterTop {
    height: calc(var(--s)*256); padding: calc(var(--s)*40) 0 0 !important;
    background: url(/wp-content/themes/cas/img/mv/mv_newscenter_top-sp.png) no-repeat;
    background-size: cover;
  }
  .contents .pageMv.corp {
    background: url(/wp-content/themes/cas/img/mv/mv_corp-sp.png) no-repeat;
    background-size: contain;
  }
  .contents .pageMv.corp .heading01 {
    color: #fff;
  }

  .contents .pageMv.corp .pageMv__inner {
    width: auto;
  }

  .contents .pageMv.sustainability {
    background: url(/wp-content/themes/cas/img/mv/img-sus-mv-sp.png) no-repeat;
    background-size: contain;
  } 
  .contents .pageMv.sustainability .pageMv__copy,
  .contents .pageMv.sustainability .pageMv__lead {color: #333;}
}

/* tab */
.contents .tabs {
  max-width: 1160px;
  margin: 40px auto 0;
  padding: 0 20px;
  border-bottom: 1px solid #C5C7C8;
}
.contents .tabsWrap {
  display: flex;
  justify-content: right;
  align-items: flex-end;
}
.contents .tabs__item {
  width: 100%;
  max-width: 190px;
  height: 64px;
  font-size: 16px;
}
.contents .tabs__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: -1px;
  height: 100%;
  color: #333333;
  border: 1px solid #E4E5E6;
  border-bottom: 1px solid #C5C7C8;
  background: #E4E5E6;
  transition: all .4s ease;
}
.contents .tabs__item a:hover {
  border: 1px solid #C5C7C8;
  background: #C5C7C8;
}
.contents .tabs__item:not(:first-child) {
  margin-left: 14px;
}
.contents .tabs__item.current a {
  border: 1px solid #C5C7C8;
  border-bottom: 1px solid #fff;
  position: relative;
  background: #fff;
}
.contents .tabs__item.current a:before {
  content: "";
  position: absolute;
  display: block;
  top: -5px;
  width: calc(100% + 2px);
  border-top: 6px solid #C5C7C8;
  left: -1px;
  right: 0;
  margin: auto;
}

/* pager */
.contents .pager {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-bottom: 20px;
}
.contents .pager__item {
  padding: 0;
}
.contents .pager__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #C5C7C8;
  width: 50px;
  height: 50px;
  font-size: 16px;
  background: #fff;
  color: #444444;
}
.contents .pager__item:not(:first-child) {
  margin-left: 20px;
}
.contents .pager__item.current a {
  border: 1px solid #6F6F6F;
  background: #6F6F6F;
  color: #fff;
}
.contents .pager__item--next a::before,
.contents .pager__item--prev a::before {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  border: 1px solid #5c5a5a;
  border-bottom: none;
  border-left: none;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  right: 3px;
}
.contents .pager__item--prev a::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: auto;
  left: 3px;
}

.contents .sectionBlock {
  background: #F4F5F6;
  padding: 80px 0;
  margin-bottom: 40px;
}


/* news */
/* .contents .newsList {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.contents .newsList__card {
  width: calc(100% / 2 - 18px);
  max-width: 374px;
}
.contents .newsList__card:nth-child(2n) {
  margin-left: 18px;
}
.contents .newsList__card:nth-child(n + 3) {
  margin-top: 40px;
}
.contents .newsList__card__img {
  display: block;
  font-size: 0;
  min-height: 220px;
  max-height:220px;
  height:100%;
  display:flex;
  align-items:center;
}
.contents .newsList__card__img img {
  height: auto;
  max-height: inherit;
  width: 100%;
  max-width: fit-content;
  display:block;
  margin:0 auto;
  object-fit: contain;
}
.contents .labelsWrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}
.contents .categoryLabel {
  display: inline-block;
  background: #fff;
  color: #6F6F6F;
  font-size: 13px;
  padding: 2px 0;
  border: 1px solid #6F6F6F;
  min-width: 103px;
  text-align: center;
}
.contents .categoryLabel--attempt {
  background: #6F6F6F;
  color: #fff;
  border-color: #6F6F6F;
}
.contents .categoryLabel--press {
  background: #4DB9DA;
  color: #fff;
  border-color: #4DB9DA;
}
.contents .categoryLabel--news {
  background: #fff;
  color: #4DB9DA;
  border-color: #4DB9DA;
}
.contents .dateLabel {
  margin-left: 8px;
  font-size: 16px;
}
.contents .cardTitle {
  margin-top: 16px;
  font-size: 20px;
  color: #333333;
}
.contents .cardTitle a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  word-break : break-word ;
}
.contents .cardTitle a:hover {
  text-decoration-color: #6F6F6F;
}

.contents .newsList__card__title {
  margin-top: 16px;
  font-size: 20px;
}
.contents .newsList__card__title a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  word-break: break-word;
}
.contents .newsList__card__title a:hover {
  text-decoration-color: #6F6F6F;
}
.contents .newsList__card__tags {
  margin-top: 8px;
} */

/* news - sidebar */
.contents .sidebar {
  min-width: 200px;
  max-width: 24%;
  width: 100%;
  margin-right: 10%;
}
.contents .sidebar__wrap:not(:first-child) {
  margin-top: 40px;
}
.contents .sidebar__heading {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 6px;
  border-bottom: 1px solid #6F6F6F;
}
.contents .sidebar__heading--small {
  font-size: 18px;
}
.contents .sidebar__nav__item {
  padding: 0;
}
.contents .sidebar__nav__item a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #333333;
  position: relative;
  border-bottom: 1px solid #E4E5E6;
}
.contents .sidebar__nav__item a:after {
  display: inline-block;
  content: '';
  width: 5px;
  height: 5px;
  border: 1px solid #5c5a5a;
  border-bottom: none;
  border-left: none;
  margin: auto;
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.contents .sidebar__nav__item--child {
  text-indent: 1em;
}
.contents .sidebar__nav__item.current {
  color: #6F6F6F;
  border-bottom: 3px solid #6F6F6F;
}
.contents .sidebar__nav__item.current a {
  color: #6F6F6F;
}
.contents .sidebar__tags {
  margin-top: 4px;
}

/* relatedContent */
.contents .relatedContent {
  padding: 80px 0;
  background: #F4F5F6;
}

.contents .relatedContent__list__card__img {
  display: block;
  font-size: 0;
  min-height: 220px;
  max-height:220px;
  height:100%;
  display:flex;
  align-items:center;
}

.contents .relatedContent__list__card__img img {
  height: auto;
  max-height: inherit;
  width: 100%;
  max-width: fit-content;
  display:block;
  margin:0 auto;
}

.contents .relatedContent__list__card__labels {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}
.contents .relatedContent__list__card__date {
  margin-left: 8px;
  font-size: 16px;
  color: #333333;
}
.contents .relatedContent__list__card__title {
  margin-top: 16px;
  font-size: 20px;
  color: #333333;
}
.contents .relatedContent__list__card__title a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.contents .relatedContent__list__card__title a:hover {
  text-decoration-color: #6F6F6F;
}
.contents .relatedContent__list__card__tags {
  margin-top: 16px;
}
.contents .relatedContent__btnLink {
  margin-top: 28px;
}

.topNewscenterBlock .cardTitle a[target="_blank"] {
    color: #333333;
    position: relative;
    display: inline-block;
}

.topNewscenterBlock .cardTitle a[target="_blank"]:after {
    display: inline-block;
    content: '';
    background: url(/wp-content/themes/cas/img/icon_outer-link_2.png) no-repeat;
    width: 14px;
    height: 14px;
    background-size: contain;
    margin-left: 8px;
}

.topNewscenterBlock .cardTitle a[href$=".pdf"] {
    color: #333333;
    position: relative;
    display: inline-block;
}

.topNewscenterBlock .cardTitle a[href$=".pdf"]:after {
    display: inline-block;
    content: '';
	background:none;
    background: url(/wp-content/themes/cas/img/pdf_btn.svg) no-repeat;
    width: 19px;
    height: 19px;
    background-size: contain;
    margin-left: 8px;
}

/* SP */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .header__nav,
  .navchild {
    display: none;
  }
  .header__logo {
    padding-top: 0.5vw;
    height: unset;
  }
  .headNavSP {
    display: block;
    margin-top: 0;
    position: relative;
    float: right;
    width: calc(var(--s)*49);
    height: calc(var(--s)*42);
  }
  .headNavSP a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .headNavSP span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #4D4D4D;
    border-radius: 999px;
    transition: all .4s;
    box-sizing: border-box;
  }
  .headNavSP span:nth-child(3n+0) {
    top: 0;
  }
  .headNavSP span:nth-child(3n+1) {
    top: calc(var(--s)*18);
  }
  .headNavSP span:nth-child(3n+2) {
    top: calc(var(--s)*36);
  }
  .headNavSP a.active span:nth-child(3n+1) {
    opacity: 0;
  }
  .headNavSP a.active span:nth-child(3n+2) {
    -webkit-transform: translateY(calc(var(--s)*-18)) rotate(45deg);
    transform: translateY(calc(var(--s)*-18)) rotate(45deg);
  }
  .headNavSP a.active span:nth-child(3n+0) {
    -webkit-transform: translateY(calc(var(--s)*18)) rotate(-45deg);
    transform: translateY(calc(var(--s)*18)) rotate(-45deg);
  }
  .globalNav {
    display: none;
    position: fixed; overflow-y: scroll;
    top: calc(var(--s)*100);
    left: 0;
    height: calc(100vh - var(--s)*100);
    background: rgba(255, 255, 255, 0.9);
    z-index: 99999;
    border-top: none;
  }
  .globalNav ul {
    border-top: 1px solid #000;
    margin: 0;
    position: static;
    max-width: none;
  }
  .globalNav .Ja {
    padding: 0 0 20vw;
  }
  .globalNav li {
    float: none;
    border-bottom: 1px solid #000;
  }
  .globalNav__accordion li {
    border-bottom: 1px solid #C5C7C8;
  }
  .globalNav__accordion li a {
    font-size: 13px;
  }
  .globalNav .Ja li {
    width: auto;
  }
  .globalNav li a:hover, .globalNav li.active a {
    border-top: none;
  }
  .globalNav li:after,
  .globalNav li:first-child:before {
    content: none;
  }
  .globalNav li a {
    border-top: none;
  }
  .globalNav li.spBtn {
    display: block;
    height: auto;
    padding-bottom: 20px;
  }
  .globalNav li.spBtn:after {
    content: "";
    display: block;
    clear: both;
    position: static;
  }
  .globalNav li.spBtn a {
    float: left;
    width: 42%;
    margin: 20px 0 0 5%;
    padding-left: 12%;
    border: 1px solid #000;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: left;
  }
  .globalNav .officeListBtn {
    background-image: url(/wp-content/themes/cas/img/icon_offiecelist.png);
    background-position: 5% center;
    background-repeat: no-repeat;
    background-size: auto 75%;
    box-sizing: border-box;
  }
  .globalNav .siteMapBtn {
    background-image: url(/wp-content/themes/cas/img/icon_sitemap.png);
    background-position: 5% center;
    background-repeat: no-repeat;
    background-size: auto 75%;
    box-sizing: border-box;
  }
  .globalNav .twitterBtn {
    background-image: url(/wp-content/themes/cas/img/icon_twitter_sp-menu.png);
    background-position: 5% center;
    background-repeat: no-repeat;
    background-size: auto 75%;
    box-sizing: border-box;
  }
  .globalNav .facebookBtn {
    background-image: url(/wp-content/themes/cas/img/icon_facebook_sp-menu.png);
    background-position: 5% center;
    background-repeat: no-repeat;
    background-size: auto 75%;
    box-sizing: border-box;
  }
  .globalNav .englishBtn,
  .globalNav .japaneseBtn {
    background-image: url(/wp-content/themes/cas/img/icon_translation.png);
    background-position: 5% center;
    background-repeat: no-repeat;
    background-size: auto 75%;
    box-sizing: border-box;
  }
  .globalNav li.spLink {
    display: block;
    height: auto;
    padding: 20px 0 20px 20px;
    box-sizing: border-box;
  }
  .globalNav li.spLink a {
    text-align: left;
  }

  .head.header {
    position: fixed;
    top: 0;
    z-index: 100000;
    width: 100%; height: calc(var(--s)*100);
    background: #fff;
  }
  .header__logo {
    display: block;
  }
  .header__logo a {
    display: block;
  }
  .header__logo a img {
    width: calc(var(--s)*240); max-width: unset;
  }
  .header__inner {
    align-items: center; align-content: center;
    height: calc(var(--s)*100); padding: 0 calc(var(--s)*30);
  }
  .contents img {
    width: 100%
  }
  .contents p a img {
    width: unset;
  }
  .contents .flexWrap {
    display: block;
  }
  .contents .sectionInner {
    padding: 0 20px;
  }
  .header .heading01,
  .contents .heading01 {
    font-size: 34px;
  }
  .header .heading02,
  .contents .heading02 {
    font-size: 31px;
  }
  .header .heading03,
  .contents .heading03 {
    font-size: 24px;
  }
  .header .heading04,
  .contents .heading04 {
    font-size: 20px;
  }
  .header .heading05,
  .contents .heading05 {
    font-size: 16px;
  }
  .textwrapSp--left {
    text-align: left;
  }
  .textwrapSp--center {
    text-align: center;
  }
  .textwrapSp--right {
    text-align: right;
  }

  .contents .flexWrap--col2,
  .contents .flexWrap--col3 {
    display: block;
  }
  .contents .flexWrap--col2 .flexWrap__col,
  .contents .flexWrap--col3 .flexWrap__col {
    width: 100%;
  }
  .contents .flexWrap--col2 .flexWrap__col:not(:first-child),
  .contents .flexWrap--col3 .flexWrap__col:not(:first-child) {
    margin-left: 0;
  }
  .contents .flexWrap--col2 .flexWrap__col {
    margin-bottom: 20px;
  }
  .contents .flexWrap--col3 .flexWrap__col {
    margin-bottom: 20px;
  }
  
  .contents .flexWrap--sp {
    display: flex;
  }
  .contents .flexWrap--sp > a:nth-child(1) {
    width: 32.5%;
    height: 100%;
  }
  .contents .flexWrap--sp > div:nth-child(2) {
    width: 67.5%;
    margin-left: 16px;
  }

  .contents .flexWrap--sp .flexInnerWrap {
    margin-left: 17.5px;
    width: 60%;
  }

  .header .flexWrap--col2 .btnlink--heading,
  .contents .flexWrap--col2 .btnlink--heading {
    font-size: 20px;
  }
  .header .flexWrap--col3 .btnlink--heading,
  .contents .flexWrap--col3 .btnlink--heading {
    font-size: 18px;
  }

  .contents .pageMv {
    padding: calc(var(--s)*120) calc(var(--s)*20) calc(var(--s)*20);
    text-align: center;
  }
  .contents .pageMv .heading01 {
    font-size: calc(var(--s)*80); line-height: 1.5;
  }

  .contents .tabs {
    margin: 20px auto 0;
    padding: 0 14px;
  }
  .contents .tabsWrap {
    justify-content: center;
  }
  .contents .tabs__item {
    width: calc(100% - (14px * 3) / 4);
    max-width: none;
    height: 41px;
    font-size: 13px;
    line-height: 1.23;
    text-align: center;
  }
  .contents .tabs__item:not(:first-child) {
    margin-left: 8px;
  }
  .contents .tabs__item.current {
    height: 47px;
  }
  .contents .tabs__item.current a:before {
    top: -2px;
    border-top: 3px solid #C5C7C8;
    left: -1px;
  }

  .breadcrumb {
    display: none;
  }

  .contents .sectionBlock {
    padding: 20px 0;
    margin-bottom: 40px;
  }
  
  .contents .cardTitle {
    margin-top: 10px;
    font-size: 16px;
  }

  /* newscenter */
  .contents .newscenter {
    padding-bottom: 0;
  }

  /* pager */
  .contents .pager {
    padding-bottom: 40px;
    flex-wrap: wrap;
  }

  .contents .pager__item {
    margin-bottom: 5px
  }

  .contents .pager__item a {
    font-size: 16px;
  }
  .contents .pager__item:not(:first-child) {
    margin-left: 8px;
  }

  .contents .btn {
    width: 100%;
  }

  .contents .newsList {
    display: block;
  }
  .contents .newsList__card {
    width: auto;
    max-width: none;
    display: flex;
    justify-content: flex-start;
  }
  .contents .newsList__card:nth-child(2n) {
    margin-left: 0;
  }
  .contents .newsList__card:nth-child(n + 3),
  .contents .newsList__card:not(:first-child) {
    margin-top: 20px;
  }
  .contents .newsList__card__img {
    width: 32.5%;
    height: 100%;
	display:block;
  }
  .contents .newsList__card__content {
    width: 67.5%;
    margin-left: 16px;
  }
  .contents .labelsWrap {
    display: block;
    margin-top: 0;
  }
  .contents .dateLabel {
    margin-left: 0;
    margin-top: 8px
  }
  .contents .newsList__card__title {
    margin-top: 8px;
    font-size: 16px;
  }
  .contents .newsList__card__tags {
    margin-top: 6px;
  }
  .contents .newsList__card__tags__item {
    margin-top: 8px;
  }

  .contents .sidebar {
    min-width: auto;
    max-width: none;
    margin-right: 0;
    padding-bottom: 40px;
  }

  .contents .relatedContent {
    padding: 40px 0;
  }
  .contents .relatedContent__list__card {
    width: auto;
    max-width: none;
    display: flex;
    justify-content: flex-start;
  }
  .contents .relatedContent__list__card:nth-child(2n) {
    margin-left: 0;
  }
  .contents .relatedContent__list__card:nth-child(n + 3),
  .contents .relatedContent__list__card:not(:first-child) {
    margin-top: 20px;
  }
  .contents .relatedContent__list__card__img {
    width: 32.5%;
    height: 100%;
	display:block;
  }
  .contents .relatedContent__list__card__content {
    width: 67.5%;
    margin-left: 16px;
  }
  .contents .relatedContent__list__card__labels {
    display: block;
    margin-top: 0;
  }
  .contents .relatedContent__list__card__date {
    margin-left: 0;
    margin-top: 8px
  }
  .contents .relatedContent__list__card__title {
    margin-top: 8px;
    font-size: 16px;
  }

}
