@charset "UTF-8";
/******************** root ********************/
body {
  font-family: 'Roboto','Noto Sans JP',"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ","Meiryo",Arial,"Font Awesome 5 Free",sans-serif;
  font-weight: 400;
}

#container {
  position: relative;
  background-color: #efefef;
}

/******************** スマホ（767px以下） ********************/
/******************** kv ********************/
#kv {
  position: relative;
  background-image: url("../images/kv_sp.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#kv::before {
  float: left;
  padding-top: 50%;
  content: "";
}

#kv::after {
  display: block;
  clear: both;
  content: "";
}

#kv > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  object-fit: cover;
}

#kv .black-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0;
  padding-top: 50%;
  background-color: rgba(28, 38, 28, 0.15);
}

#kv .title {
  position: absolute;
  top: 54%;
  width: 100%;
  font-size: 9.33333vw;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: white;
  text-align: center;
  transform: translateY(-50%);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
}

#kv .title .sub-title {
  font-size: 5.86667vw;
}

/********************header********************/
header {
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  padding-left: 3.46667vw;
  background: #00be74;
  background: linear-gradient(90deg, #639cbf 0%, #3ba4c5 14.28%, #00abc4 28.56%, #00b2bb 42.84%, #00b7aa 57.12%, #00bc92 71.4%, #00be74 85.68%, #00be74 100%);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.fixed-top {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}

header .header-inner {
  margin: 0 auto;
}

header .header-inner .logo {
  float: left;
  width: 133px;
  margin-top: 10px;
}

/********************global-nav********************/
#global-nav {
  position: fixed;
  z-index: 990;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  background: linear-gradient(135deg, #639cbf 0%, #3ba4c5 14.28%, #00abc4 28.56%, #00b2bb 42.84%, #00b7aa 57.12%, #00bc92 71.4%, #00be74 85.68%, #00be74 100%);
  font-size: 24px;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  justify-content: center;
  align-items: center;
}

#global-nav a {
  display: block;
  padding: 10% 0;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  transition: color .6s ease;
}

#global-nav a:hover {
  color: #fff;
}

#global-nav ul {
  list-style: none;
}

#global-nav li {
  opacity: 0;
}

#nav-toggle {
  float: right;
  width: 52px;
  height: 52px;
  text-align: center;
  cursor: pointer;
}

#nav-toggle .burger-icon {
  position: relative;
  width: 20px;
}

#nav-toggle .burger-icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  transition: transform .6s ease-in-out, top .5s ease;
}

#nav-toggle .burger-icon span:nth-child(1) {
  top: 12px;
  left: 16px;
}

#nav-toggle .burger-icon span:nth-child(2) {
  top: 18px;
  left: 16px;
}

#nav-toggle .burger-icon span:nth-child(3) {
  top: 24px;
  left: 16px;
}

#nav-toggle .burger-icon span:nth-child(4) {
  top: 30px;
  left: 6px;
  display: inline-block;
  width: 4em;
  height: auto;
  background: transparent;
  font-size: 10px;
  color: #fff;
}

#nav-toggle .burger-icon span:nth-child(4)::after {
  content: "メニュー";
}

#nav-toggle .burger-icon span:hover span:nth-child(1) {
  top: 4px;
}

#nav-toggle .burger-icon span:hover span:nth-child(3) {
  top: 23px;
}

/* z-index */
#nav-toggle {
  z-index: 10000;
}

/* open */
.open {
  overflow: hidden;
}

.open #nav-toggle {
  position: fixed;
  top: 0;
  right: 0;
}

.open #nav-toggle span {
  background: #fff;
}

.open #nav-toggle span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
  top: 18px;
  left: 50%;
  width: 0;
}

.open #nav-toggle span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

.open #nav-toggle span:nth-child(4)::after {
  content: "閉じる";
}

.open #global-nav {
  visibility: visible;
  opacity: 1;
}

.open #global-nav li {
  opacity: 1;
  transition: transform 1s ease, opacity .9s ease;
  transform: translateX(0);
}

/********************main********************/
#main p {
  font-size: 14px;
  line-height: 1.5;
}

#main .ratio-16-9 {
  position: relative;
}

#main .ratio-16-9::before {
  float: left;
  padding-top: 56.25%;
  content: "";
}

#main .ratio-16-9::after {
  display: block;
  clear: both;
  content: "";
}

#main .ratio-16-9 > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  object-fit: cover;
}

#main .ratio-1-1 {
  position: relative;
}

#main .ratio-1-1::before {
  float: left;
  padding-top: 100%;
  content: "";
}

#main .ratio-1-1::after {
  display: block;
  clear: both;
  content: "";
}

#main .ratio-1-1 > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  object-fit: cover;
}

#main .header01 {
  margin-bottom: 3.46667vw;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: #121212;
  text-align: center;
}

#main .header01 .header01-sub {
  font-size: 18px;
}

#main .header02 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #121212;
}

#main .date {
  margin-top: 10px;
  font-size: 13px;
  color: #707070;
}

#main .img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
}

/* btn */
#main .btn {
  position: relative;
  box-sizing: border-box;
  width: 67.73333vw;
  margin: 5.33333vw auto 3.46667vw;
  text-align: center;
}

#main .btn a {
  position: relative;
  display: block;
  padding: 14px 0 13px;
  border-radius: 52px;
  background-color: #efefef;
  box-shadow: 8px 8px 16px #d7d7d7, -8px -8px 16px #ffffff;
  font-size: 15px;
  font-weight: 500;
  color: #707070;
  transition: box-shadow .25s ease;
}

#main .btn a:hover {
  box-shadow: 2px 2px 4px #bfbfbf, -2px -2px 4px #ffffff;
}

#main .btn a .icon {
  position: absolute;
  top: 14px;
  right: 16px;
}

#intr {
  padding: 5.33333vw 3.46667vw;
}

#intr .intr-item {
  position: relative;
  box-sizing: border-box;
  min-height: 50px;
  margin-bottom: 5.33333vw;
  padding: 4.26667vw 4vw 3.46667vw;
  border-radius: 6.66667vw;
  background-color: #f8f8f8;
  box-shadow: 9px 9px 16px rgba(0, 0, 0, 0.15);
  align-items: center;
}

#intr .intr-item:last-of-type {
  margin-bottom: 3.46667vw;
}

#intr .intr-item .intr-item-header {
  padding-left: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #49BF51;
}

#intr .intr-item .intr-item-header .intr-item-icon {
  position: absolute;
  top: 4.26667vw;
  left: 4.26667vw;
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background-color: #49BF51;
  line-height: 23px;
  text-align: center;
}

#intr .intr-item .intr-item-header .intr-item-icon::before {
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  display: block;
  width: 10px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  content: "";
  transition: .2s;
  transform: rotate(90deg);
}

#intr .intr-item .intr-item-header .intr-item-icon::after {
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  display: block;
  width: 10px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  content: "";
  transition: .3s;
}

#intr .intr-item.open .intr-item-header {
  color: #00ABC4;
}

#intr .intr-item.open .intr-item-icon {
  background-color: #00B2BB;
}

#intr .intr-item.open .intr-item-icon::before {
  transform: rotate(0deg);
}

#intr .intr-item.open .intr-item-icon::after {
  background-color: transparent;
}

#intr .intr-item .intr-item-container {
  display: none;
}

#intr .intr-item .intr-item-container .intr-item-content {
  overflow: hidden;
}

#intr .intr-item .intr-item-container .intr-item-content .img {
  margin: 15px 0;
}

#intr .intr-item .intr-item-container .intr-item-content .graph, #intr .intr-item .intr-item-container .intr-item-content .table {
  overflow: visible;
  margin: 15px 0;
}

#intr .intr-item .intr-item-container .intr-item-content .graph img, #intr .intr-item .intr-item-container .intr-item-content .table img {
  font-family: 'object-fit: scale-down;';
  object-fit: scale-down;
}

#intr .intr-item .intr-item-container .intr-item-content p {
  margin: 30px 0;
  font-size: 15px;
}

#intr .intr-item .intr-item-container .intr-item-content p:last-of-type {
  margin: 30px 0 20px;
}

#intr .intr-item .intr-item-container .intr-item-content .intr-content-close {
  float: right;
  padding: 10px;
  font-size: 14px;
  line-height: 1;
  color: #00ABC4;
}

#intr .intr-item .intr-item-container .intr-item-content .intr-content-close .icon {
  vertical-align: top;
}

#intr .intr-item .intr-more-btn {
  display: none;
}

/* 画像のホバーアクション */
#main .intr-thumb {
  overflow: hidden;
}

#main .intr-item .intr-thumb img, #main .intr-item .img img, #main a .intr-thumb img, #main a .img img {
  transition: transform .2s ease-out;
  transform: scale(1);
}

#main .intr-item:hover > .intr-thumb img, #main .intr-item:hover > .img img, #main a:hover > .intr-thumb img, #main a:hover > .img img {
  transform: scale(1.1) !important;
}

#main .intr-item:hover .article-item-content, #main a:hover .article-item-content {
  opacity: 0.4;
}

#main .intr-item:hover .news-item-content, #main a:hover .news-item-content {
  opacity: 0.4;
}

#main .news-list .img {
  border-radius: 0;
}

/* #series,#interview */
#series {
  padding: 5.33333vw 0;
  background-color: #f8f8f8;
}

#series .btn a {
  background-color: #f8f8f8;
  box-shadow: 8px 8px 16px #dfdfdf, -8px -8px 16px #ffffff;
}

#series .btn a:hover {
  box-shadow: 2px 2px 4px #c6c6c6, -2px -2px 4px #ffffff;
}

#rensai {
  padding: 5.33333vw 0;
  background-color: #f8f8f8;
}

#rensai .btn a {
  background-color: #f8f8f8;
  box-shadow: 8px 8px 16px #dfdfdf,
 -8px -8px 16px #ffffff;
}

#rensai .btn a:hover {
  box-shadow: 2px 2px 4px #c6c6c6,
 -2px -2px 4px #ffffff;
}

#interview {
  padding: 5.33333vw 0;
  background-color: #DBEFD8;
}

#interview .btn a {
  background-color: #DBEFD8;
  box-shadow: 8px 8px 16px #c5d7c2, -8px -8px 16px #f1ffee;
  color: #3FA646;
}

#interview .btn a:hover {
  box-shadow: 2px 2px 4px #afbfad, -2px -2px 4px #ffffff;
}

#action_n {
  padding: 5.33333vw 0;
  background-color: #E2EFED;
}

#action_n .btn a {
  background-color: #f8f8f8;
  box-shadow: 8px 8px 16px #cbd7d5,
 -8px -8px 16px #ffffff;
}

#action_n .btn a:hover {
  box-shadow: 2px 2px 4px #b5bfbe,
 -2px -2px 4px #ffffff;
}


.article-list .article-item {
  padding: 5.33333vw 3.46667vw;
  border-bottom: 1px solid #aaa;
}

.article-list .article-item:first-of-type {
  padding-top: 0;
}

.article-list .article-item a {
  display: block;
}

.article-list .article-item a .article-item-text {
  margin-top: 4px;
}

#action {
  padding: 5.33333vw 3.46667vw;
  background-color: #E2EFED;
}

#action .article-item {
  margin-bottom: 7.46667vw;
}

#action .article-item a {
  display: block;
}

#action .article-item a .article-text {
  margin-top: 6px;
  font-size: 14px;
  color: #333;
}

#action .header01 .header01-sub {
  color: #00B2BB;
}

#action .btn a {
  background-color: #E2EFED;
  box-shadow: 8px 8px 16px #cbd7d5, -8px -8px 16px #f9ffff;
  color: #00B2BB;
}

#action .btn a:hover {
  box-shadow: 2px 2px 4px #b5bfbe, -2px -2px 4px #ffffff;
}

/* news */
#news {
  padding: 5.33333vw 3.46667vw;
}

/* news,リストページ */
#news .news-list .news-item, .list-page .news-list .news-item {
  margin-bottom: 4.26667vw;
}

#news .news-list .news-item a, .list-page .news-list .news-item a {
  display: flex;
  overflow: hidden;
  padding: 3.73333vw;
  border-radius: 8px;
  background-color: #f8f8f8;
  box-shadow: 9px 9px 16px rgba(0, 0, 0, 0.15);
}

#news .news-list .news-item a .news-item-img, .list-page .news-list .news-item a .news-item-img {
  position: relative;
  display: block;
  width: 75px;
  height: 75px;
}

#news .news-list .news-item a .news-item-img::before, .list-page .news-list .news-item a .news-item-img::before {
  float: left;
  padding-top: 100%;
  content: "";
}

#news .news-list .news-item a .news-item-img::after, .list-page .news-list .news-item a .news-item-img::after {
  display: block;
  clear: both;
  content: "";
}

#news .news-list .news-item a .news-item-img > img, .list-page .news-list .news-item a .news-item-img > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'object-fit: cover;';
  object-fit: cover;
}

#news .news-list .news-item a .news-item-content, .list-page .news-list .news-item a .news-item-content {
  width: calc(100% - 87px);
  padding-left: 12px;
}

#news .news-list .news-item a .news-item-content .news-item-header, .list-page .news-list .news-item a .news-item-content .news-item-header {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/* リストページ */
.list-page #main {
  padding: 4.26667vw 3.46667vw 5.33333vw;
}

/* 記事詳細 */
.article-page #main {
  box-sizing: border-box;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 3.73333vw 3.46667vw 4.8vw;
}

.article-page #main .header01 {
  margin-bottom: 4px;
  text-align: left;
}

.article-page #main .header02 {
  margin-top: 0;
}

.article-page #main .col-set {
  display: flex;
  margin-top: 15px;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}

.article-page #main .col-set .date {
  margin: 0;
}

.article-page #main .col-set .sns-list {
  line-height: 1;
}

.article-page #main .col-set .sns-list li {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 16px;
}

.article-page #main .col-set .sns-list li:last-child {
  margin-right: 0;
}

.article-page #main .col-set .sns-list li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.article-page #main .col-set .sns-list li a img {
  position: absolute;
}

.article-page #main .col-set .sns-list .icn-twi {
  background-color: #1D9BF0;
}

.article-page #main .col-set .sns-list .icn-twi img {
  top: 9.16px;
  left: 7.16px;
  width: 18.8px;
  height: 15.27px;
  margin: auto;
}

.article-page #main .col-set .sns-list .icn-fb {
  background-color: #1877f2;
}

.article-page #main .col-set .sns-list .icn-fb img {
  right: 0;
  bottom: 0;
  left: 0;
  width: 13.69px;
  height: 25.75px;
  margin: auto;
}

.article-page #main .col-set .sns-list .icn-line {
  background-color: #4CC764;
}

.article-page #main .col-set .sns-list .icn-line img {
  top: 6.4px;
  right: 0;
  left: 0;
  width: 21.36px;
  height: 20.35px;
  margin: auto;
}

.article-page #main p {
  /* 2022.05.13 izutsu 深デジの出力に合わせる為、一時コメント化
                margin: 24px 0;
            */
  font-size: 15px;
}

.article-page #main .img {
  border-radius: 0;
  text-align: center;
}

.article-page #main .img img {
  font-family: 'object-fit: scale-down;';
  object-fit: scale-down;
  max-height: 500px;
  height: auto;
}

.article-page #main .img .photo_caption {
  color: #505050;
  font-size: 12px;
  width: 100%;
  /* margin: 0 auto 8% auto; */
  padding: 0.3% 4%;
  box-sizing: border-box;
  /*background: #ddd;*/
}

#footer {
  padding: 6px;
  background-color: #BFBFBF;
  text-align: center;
}

#footer #copyRight {
  font-size: 12px;
}

/********************汎用********************/
.pc {
  display: none;
}

.sp {
  display: block;
}

/********************768px以上********************/
@media screen and (min-width: 768px) {
  /******************** kv ********************/
  #kv {
    height: 18vh;
    min-height: 200px;
    background-image: url("../images/kv.jpg");
    background-size: cover;
  }
  #kv::before, #kv::after {
    display: none;
  }
  #kv .black-bg {
    height: 18vh;
    min-height: 200px;
    padding-top: 0;
  }
  #kv .title {
    font-size: 46px;
  }
  #kv .title .sub-title {
    font-size: 30px;
  }
  /********************header********************/
  header {
    height: 56px;
    padding-right: 3.46667vw;
  }
  header .header-inner {
    width: 100%;
    max-width: 1000px;
  }
  header .header-inner .logo {
    width: 133px;
    margin-top: 13px;
  }
  /********************global-nav********************/
  #global-nav {
    position: static;
    z-index: 1;
    display: block;
    visibility: visible;
    float: right;
    background: none;
    font-size: 16px;
    opacity: 1;
  }
  #global-nav a {
    display: block;
    padding: 0;
    font-size: 16px;
    text-decoration: none;
    transition: all .25s ease;
  }
  #global-nav a:hover {
    color: #fff;
    opacity: 0.4;
  }
  #global-nav ul {
    list-style: none;
  }
  #global-nav li {
    display: inline-block;
    height: 56px;
    margin-left: 24px;
    line-height: 56px;
    opacity: 1;
  }
  #nav-toggle {
    display: none;
  }
  /********************main********************/
  #main .btn {
    box-sizing: border-box;
    width: 260px;
    margin: 32px auto 0px;
  }
  #main .header01 {
    margin-bottom: 30px;
    font-size: 30px;
  }
  #main .header01 .header01-sub {
    font-size: 26px;
  }
  #main .header02 {
    margin-top: 10px;
    font-size: 20px;
  }
  #main p {
    font-size: 16px;
    line-height: 1.5;
  }
  #main .date {
    font-size: 14px;
  }
  #intr {
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 16px 48px;
  }
  #intr .intr-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  #intr .intr-menu .intr-item {
    overflow: hidden;
    width: calc((100% - 60px)  / 3);
    margin: 0 30px 0 0;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
  }
  #intr .intr-menu .intr-item:nth-of-type(3n) {
    margin-right: 0;
  }
  #intr .intr-menu .intr-item:nth-of-type(n + 4) {
    margin-top: 30px;
  }
  #intr .intr-menu .intr-item:last-of-type {
    margin-right: 0;
    margin-bottom: 0;
  }
  #intr .intr-menu .intr-item .intr-item-header {
    margin: 18px 0 14px;
    padding-left: 0;
    font-size: 20px;
    color: #333;
  }
  #intr .intr-menu .intr-item .intr-item-header.open {
    color: #00ABC4;
  }
  #intr .intr-menu .intr-item .intr-item-header.open .intr-item-icon {
    background-color: #00B2BB;
  }
  #intr .intr-menu .intr-item .intr-item-header.open .intr-item-icon::before {
    transform: rotate(0deg);
  }
  #intr .intr-menu .intr-item .intr-item-header.open .intr-item-icon::after {
    background-color: transparent;
  }
  #intr .intr-menu .intr-item .intr-item-header .intr-item-icon {
    display: none;
  }
  #intr .intr-menu .intr-item .intr-item-container {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: none;
    visibility: hidden;
    overflow: auto;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin-top: 0;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    opacity: 0;
    transition: .3s;
  }
  #intr .intr-menu .intr-item .intr-item-container:before {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    content: "";
  }
  #intr .intr-menu .intr-item .intr-item-container.active {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  #intr .intr-menu .intr-item .intr-item-container .intr-item-body {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 90%;
    max-width: 812px;
    vertical-align: middle;
  }
  #intr .intr-menu .intr-item .intr-item-container .intr-item-body .intr-item-content {
    padding: 40px 56px 30px;
    border-radius: 20px;
    background: #fff;
    text-align: left;
  }
  #intr .intr-menu .intr-item .intr-item-container .intr-item-body .intr-item-content .intr-content-header {
    padding-bottom: 10px;
    border-bottom: #ccc 2px solid;
    font-size: 30px;
    font-weight: 700;
    color: #00ABC4;
  }
  #intr .intr-menu .intr-item .intr-item-container .intr-item-body .intr-item-content .img {
    margin: 30px 0;
  }
  #intr .intr-menu .intr-item .intr-item-container .intr-item-body .intr-item-content .table {
    text-align: center;
  }
  #intr .intr-menu .intr-item .intr-item-container .intr-item-body .intr-item-content .table img {
    width: auto;
  }
  #intr .intr-menu .intr-item .intr-item-container .intr-item-body .intr-item-content p {
    margin: 50px 0;
    font-size: 16px;
  }
  #intr .intr-menu .intr-item .intr-more-btn {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 67.8%;
    max-width: 168px;
    height: 40px;
    margin: 0 auto 24px;
    padding-left: 12px;
    border: 1px #BFBFBF solid;
    border-radius: 20px;
    font-size: 14px;
    line-height: 40px;
    transition: background-color .25s ease,color .25s ease;
  }
  #intr .intr-menu .intr-item .intr-more-btn .icon {
    position: absolute;
    top: 11px;
    left: 22px;
  }
  #series {
    padding: 40px 0 50px;
  }
  #rensai {
    padding: 40px 0 50px;
  }
  #action_n {
    padding: 40px 0 50px;
  }
  #interview {
    padding: 4.26667vw 0 5.33333vw;
  }
  .article-list {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
    justify-content: center;
  }
  .article-list .article-item {
    width: calc(100% / 3);
    margin-left: 30px;
    padding: 0;
    border-bottom: none;
  }
  .article-list .article-item:first-of-type {
    margin-left: 0;
  }
  /* #action */
  #action {
    padding: 4.26667vw 0 5.33333vw;
  }
  #action .article-item {
    overflow: hidden;
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
  }
  #action .article-item a {
    display: inline;
  }
  #action .article-item a .img {
    float: left;
    width: 33.4%;
  }
  #action .article-item a .article-item-content {
    margin-left: calc(33.4% + 30px);
  }
  #action .article-item a .article-item-content .header02 {
    margin-top: 0px;
  }
  #news {
    padding: 4.26667vw 0 5.33333vw;
  }
  #news .news-list, .list-page .news-list {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  #news .news-list .news-item, .list-page .news-list .news-item {
    width: calc(33% - 11px);
    margin: 0 20px 0 0;
  }
  #news .news-list .news-item:nth-of-type(n + 4), .list-page .news-list .news-item:nth-of-type(n + 4) {
    margin-top: 20px;
  }
  #news .news-list .news-item:nth-of-type(3n), .list-page .news-list .news-item:nth-of-type(3n) {
    margin-right: 0;
  }
  #news .news-list .news-item:last-of-type, .list-page .news-list .news-item:last-of-type {
    margin-right: 0;
  }
  #news .news-list .news-item a, .list-page .news-list .news-item a {
    display: block;
    padding: 0;
  }
  #news .news-list .news-item a .news-item-img, .list-page .news-list .news-item a .news-item-img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
  }
  #news .news-list .news-item a .news-item-img::before, .list-page .news-list .news-item a .news-item-img::before {
    float: left;
    padding-top: 56.25%;
    content: "";
  }
  #news .news-list .news-item a .news-item-img::after, .list-page .news-list .news-item a .news-item-img::after {
    display: block;
    clear: both;
    content: "";
  }
  #news .news-list .news-item a .news-item-img > img, .list-page .news-list .news-item a .news-item-img > img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: 'object-fit: cover;';
    object-fit: cover;
  }
  #news .news-list .news-item a .news-item-content, .list-page .news-list .news-item a .news-item-content {
    width: auto;
    padding: 12px 14px;
  }
  #news .news-list .news-item a .news-item-content .news-item-header, .list-page .news-list .news-item a .news-item-content .news-item-header {
    font-size: 15px;
  }
  /* リストページ */
  .list-page #main {
    padding: 36px 0 56px;
  }
  .action.list-page #main {
    padding: 24px 0 56px;
  }
  /* 記事詳細 */
  .article-page #main {
    padding: 36px 0 56px;
  }
  .article-page #main .header01 {
    margin-bottom: 16px;
  }
  .article-page #main .header02 {
    margin-top: 24px;
    font-size: 26px;
  }
  .article-page #main .col-set {
    margin-bottom: 24px;
  }
  .article-page #main p {
    font-size: 16px;
  }
  .article-page #main .img .photo_caption {
    font-size: 14px;
    margin-bottom: 8%;
    padding: 0.3% 1%;
  }
  /********************汎用********************/
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}

/********************PC********************/
@media screen and (min-width: 1024px) {
  /******************** kv ********************/
  #kv .title {
    top: 52%;
    font-size: 48px;
  }
  #kv .title .sub-title {
    font-size: 32px;
  }
  /******************** global-nav ********************/
  #global-nav li {
    margin-left: 60px;
  }
  /********************main********************/
  #main .date {
    font-size: 14px;
  }
  #main .btn {
    box-sizing: border-box;
    width: 330px;
    margin: 40px auto 0px;
  }
  #main .btn a {
    padding: 17px 0 15px;
    font-size: 16px;
  }
  #main .btn a .icon {
    top: 19px;
    right: 20px;
  }
  #main .img {
    border-radius: 12px;
  }
  #intr {
    padding: 40px 0 66px;
  }
  #intr .intr-menu .intr-item {
    box-sizing: border-box;
    width: calc((100% - 81px)  / 3);
    margin: 0 40px 0 0;
  }
  #intr .intr-menu .intr-item:nth-of-type(n + 4) {
    margin-top: 40px;
  }
  #intr .intr-menu .intr-item .intr-item-header {
    margin: 22px 0 18px;
    font-size: 24px;
  }
  #intr .intr-menu .intr-item .intr-item-header.open {
    color: #00ABC4;
  }
  #intr .intr-menu .intr-item .intr-item-header.open .intr-item-icon {
    background-color: #00B2BB;
  }
  #intr .intr-menu .intr-item .intr-item-header.open .intr-item-icon::before {
    transform: rotate(0deg);
  }
  #intr .intr-menu .intr-item .intr-item-header.open .intr-item-icon::after {
    background-color: transparent;
  }
  #intr .intr-menu .intr-item .intr-item-header .intr-item-icon {
    display: none;
  }
  #intr .intr-menu .intr-item .intr-item-container p {
    margin: 15px 0;
    font-size: 15px;
  }
  #series, #interview, #rensai, #action_n {
    padding: 40px 0 66px;
  }
  .article-list {
    padding: 0;
  }
  .article-list .article-item {
    margin-left: 40px;
  }
  .article-list .article-item a .header02 {
    margin-top: 10px;
  }
  .article-list .article-item a .article-item-text {
    margin-top: 6px;
    font-size: 15px;
  }
  /* #action */
  #action {
    padding: 40px 0 66px;
  }
  #action .article-item {
    overflow: hidden;
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
  }
  #action .article-item a {
    display: inline;
  }
  #action .article-item a .img {
    float: left;
    width: 334px;
  }
  #action .article-item a .article-item-content {
    margin-left: 384px;
  }
  #action .article-item a .article-item-content .header02 {
    font-size: 22px;
  }
  #action .article-item a .article-item-content .article-text {
    font-size: 15px;
  }
  #news {
    padding: 36px 0 76px;
  }
  #news .news-list, .list-page .news-list {
    padding: 0;
  }
  #news .news-list .news-item, .list-page .news-list .news-item {
    width: calc(33% - 24px);
    margin: 0 40px 0 0;
  }
  #news .news-list .news-item:nth-of-type(n+4), .list-page .news-list .news-item:nth-of-type(n+4) {
    margin-top: 32px;
  }
  #news .news-list .news-item a .news-item-content, .list-page .news-list .news-item a .news-item-content {
    padding: 16px;
  }
  #news .news-list .news-item a .news-item-content .news-item-header, .list-page .news-list .news-item a .news-item-content .news-item-header {
    font-size: 16px;
  }
}
/*# sourceMappingURL=carbon_neutral.css.map */