@charset "utf-8";

/* ==========================================================================
   サステナブルースカイ LP スタイル
   ========================================================================== */

/* ==========================================================================
   共通設定
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
  min-width: initial !important;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

p {
  text-align: justify; /* 両端揃え */
  line-break: strict; /* 禁則処理を適用 */
  word-break: break-all; /* 半角英数字の連続に対応（必要に応じて） */
  line-height: normal;
}

h1{
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.sp-block{
  display: block;
}
.pc-block{
  display: none;
}
@media screen and (min-width: 960px) {
  .sp-block{
    display: none;
  }
  .pc-block{
    display: block;
  }
}
.sp-block__inline{
  display: inline-block;
}
@media screen and (min-width: 960px) {
  .sp-block__inline{
    display: none;
  }}

#container {
  font-family: '游ゴシック体', '游ゴシック Medium', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  line-height: 1;
  margin: 0;
  padding: 46px 0 0 0;
  width: 100%;
  min-width: 960px;
}

#pageheader {
  margin: 0 auto;
  width: 960px;
  height: 40px;
  position: relative;
}

/* ==========================================================================
   MV（メインビジュアル）
   ========================================================================== */
.p-header{
  display: flex;
  flex-direction: column;
}
  @media screen and (min-width: 960px) {
.p-header{
  display: flex;
  flex-direction: row-reverse;
}}

.logo_padding{
  float: left;
  border-right: 1px solid #ccc;
  height: 47px;
  padding: 0 6px!important;
}
@media screen and (min-width: 960px) {
.logo_padding{
  clear: both;
  border-right: none;
  height: auto;
  padding-top: 0px;
}}

.p-header-logo img{
  display: block;
  /* width: 120px;
  height: 40px; */
}

header ul li {
  float: left;
  border-right: 1px solid #ccc;
  height: 40px;
  padding: 3.5px 6px;
}

.p-HeaderWord{
    padding: 4px 0.6em;
    background: #f7f7f7;
    color: #666;
    font-size: 8.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: normal;
    padding-left: 10px;
    text-align: left;
    height: 23px;
    line-height: 1.5;
}
#pageheader #topicpath {
    padding: 16px 0 0 0;
    font-size: 1rem;
}
.p-nav-separator{
  margin: 0 5px;
}
.p-nav-name{
  font-size: 1rem;
  font-weight: 500;
  color: #000;
}

header,
#footer,
#main,
.wrapper {
  min-width: initial !important;
  max-width: 100% !important;
}

header #hdInner,
#footer .ftBoxInner {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  header #hdInner,
  #footer .ftBoxInner {
    width: 960px !important;
    max-width: 960px !important;
  }
}

.p-main{
  padding-top: 69px;
}

@media screen and (min-width: 960px) {
  .p-main{
    padding-top: 0;
  }
}


/* .p-mv
   ---------------------------------------------------------- */
.p-mv {
  position: relative;
  padding: 16px 15px 22px;
  /* background: radial-gradient(ellipse at center, #7ec8e8 0%, #62c1ea 13%, #46baec 25%, #2bb3ed 38%, #0fadef 50%, #2bb3ed 63%, #46baec 75%, #62c1ea 87%, #7ec8e8 100%); */
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .p-mv {
    padding: 24px 0 24px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

/* 背景オーバーレイ */
.p-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg_mainv_sp@2x.png) center top / cover no-repeat;
}
@media screen and (min-width: 768px) {
.p-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg_mainv_pc@2x.png) center center / cover no-repeat;
}}

/* .p-mv__header
   ---------------------------------------------------------- */
.p-mv__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 3.6px;
  padding-top: 0;
  z-index: 99;
  position: relative;
}

@media screen and (min-width: 960px) {
  .p-mv__header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    padding-top: 24px;
  }
}

.p-mv__header-logo {
  height: 29px;
}

.p-mv__header-logo img {
  height: 100%;
  width: auto;
}

/* .p-mv__content
   ---------------------------------------------------------- */
.p-mv__content {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 960px) {
  .p-mv__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 816px;
    padding-top: 13px;
  }
}

/* .p-mv__logo
   ---------------------------------------------------------- */
.p-mv__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 960px) {
  .p-mv__logo {
    width: 341px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

.p-mv__logo img {
  max-width: 246px;
}

@media screen and (min-width: 960px) {
  .p-mv__logo img {
    max-width: 100%;
  }
}

/* .p-mv__cast-list
   ---------------------------------------------------------- */
.p-mv__cast-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

@media screen and (min-width: 960px) {
  .p-mv__cast-list {
    justify-content: space-between;
    width: 406px;
    gap: 0;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* .p-mv__cast
   ---------------------------------------------------------- */
.p-mv__cast {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-mv__cast-img {
  width: 90px;
  height: 90px;
  margin-bottom: 8px;
  border-radius: 50%;
  overflow: hidden;
  /* box-shadow: 2px 2px 4px 4px rgba(255, 255, 255, 0.6); */
}

/* 中央のキャストを大きく */
.p-mv__cast:nth-child(2) .p-mv__cast-img {
  width: 90px;
  height: 90px;
}

@media screen and (min-width: 960px) {
  .p-mv__cast-img {
    width: 124px;
    height: 124px;
    margin-bottom: 8px;
  }
  
  .p-mv__cast:nth-child(2) .p-mv__cast-img {
    width: 124px;
    height: 124px;
  }
}

.p-mv__cast-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-mv__cast-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px #0e729d;
}

@media screen and (min-width: 960px) {
  .p-mv__cast-name {
    font-size: 1.4rem;
  }
}

.p-mv__cast-label {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px #0e729d;
  margin-top: 3px;
  word-break: keep-all;
}

/* .p-mv__description
   ---------------------------------------------------------- */
.p-mv__description {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px #0e729d;
  text-align: left;
  line-height: 1.6;
  padding: 0;
  max-width: none;
  margin: 0 auto 15px;
}

@media screen and (min-width: 768px) {
  .p-mv__description {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px #0e729d;
    text-align: left;
    line-height: 1.6;
    padding: 0;
    max-width: 610px;
    margin: 0 auto 15px;
  }
}

@media screen and (min-width: 960px) {
  .p-mv__description {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px #0e729d;
    text-align: left;
    line-height: 1.6;
    padding: 0;
    max-width: none;
    margin: 0 auto 15px;
  }
}

.p-mv__description br {
  display: none;
}

@media screen and (min-width: 960px) {
  .p-mv__description {
    font-size: 1.4rem;
    line-height: 1.5;
    width: 727px;
    margin-bottom: 0;
    padding: 0;
    text-align: center;
  }
  
  .p-mv__description br {
    display: inline;
  }
}

/* .p-mv__broadcast
   ---------------------------------------------------------- */
.p-mv__broadcast {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
  max-width: 100%;
}


@media screen and (min-width: 768px) {
  .p-mv__broadcast {
    padding: 5px 10px;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .p-mv__broadcast {
    padding: 5px 10px;
    max-width: none;
  }
}

.p-mv__broadcast-text {
  font-size: 1.0rem;
  color: #0094d5;
  line-height: 1.75;
  text-align: left;
}

@media screen and (min-width: 960px) {
  .p-mv__broadcast-text {
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.p-mv__broadcast-text strong {
  font-weight: bold;
}

.p-mv__broadcast-text a {
  color: #0094d5;
  font-weight: bold;
  text-decoration: underline;
}

/* ==========================================================================
   パーソナリティ紹介
   ========================================================================== */

/* .p-personality
   ---------------------------------------------------------- */
.p-personality {
  background-color: #fff;
  padding: 32px 10px 32px;
}

@media screen and (min-width: 960px) {
  .p-personality {
    padding: 32px 183px;
  }
}

/* .p-personality__title
   ---------------------------------------------------------- */
.p-personality__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0fadef;
  text-align: center;
  margin-bottom: 24px;
  line-height: normal;
  background-color: transparent;
}

@media screen and (min-width: 960px) {
  .p-personality__title {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.75;
  }
}

/* .p-personality__list
   ---------------------------------------------------------- */
.p-personality__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto 25px;
  width: 306px;
}

/* @media screen and (min-width:768px) and (max-width: 959px) {
  .p-personality__list {
    gap: 10vw;
    width: 100%;
  }
} */
@media screen and (min-width: 960px) {
  .p-personality__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 914px;
    gap: 35px;
  }
}

/* .p-personality__card
   ---------------------------------------------------------- */
.p-personality__card-wrapper{
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4.2px;
  flex-direction: row;
}

@media screen and (min-width: 960px) {
.p-personality__card-wrapper{
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4.2px;
  flex-direction: column;
}}

.p-personality__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

/* @media screen and (min-width: 960px) {
  .p-personality__card {
    width: calc((100% - 70px) / 3);
  }
} */

.p-personality__card-img {
  width: 173.539px;
  height: 168.766px;
  aspect-ratio: 173.54/168.77;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}

@media screen and (min-width: 960px) {
  .p-personality__card-img {
    width: 239.637px;
    height: 237px;
    margin-bottom: 20px;
  }
}

.p-personality__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-personality__card-name {
  font-size: 1.6rem;
  font-weight: 500;
  color: #2f2f2f;
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .p-personality__card-name {
    font-size: 2.4rem;
    margin-bottom: 5px;
  }
}

.p-personality__card-origin {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2f2f2f;
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .p-personality__card-origin {
    font-size: 1.4rem;
    margin-bottom: 13px;
  }
}

.p-personality__card-desc {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2f2f2f;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 10px;
}

@media screen and (min-width: 960px) {
  .p-personality__card-desc {
    font-size: 1.4rem;
    width: 280px;
    margin-bottom: 54px;
  }
}

@media screen and (min-width: 960px) {
  .p-personality__card:last-child .p-personality__card-desc {
    margin-bottom: 33px;
  }
}


/* .p-personality__boom
   ---------------------------------------------------------- */
.p-personality__boom {
  width: 100%;
  max-width: 306px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  overflow: hidden;
  margin-top: auto;
}

@media screen and (min-width: 960px) {
  .p-personality__boom {
    width: 100%;
    max-width: 280px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    overflow: hidden;
    margin-top: auto;
  }
}

.p-personality__boom-title {
  background-color: #e4f7ff;
  padding: 5px 10px;
  text-align: center;
}

.p-personality__boom-title span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #26a0d3;
  line-height: 1.5;
}

@media screen and (min-width: 960px) {
  .p-personality__boom-title span {
    font-size: 1.5rem;
  }
}

.p-personality__boom-text {
  background-color: #fff;
  padding: 5px 8px;
  font-size: 1.0rem;
  font-weight: 500;
  color: #4c4c4c;
  line-height: 1.5;
  min-height: auto;
}

@media screen and (min-width: 960px) {
  .p-personality__boom-text {
    font-size: 1.4rem;
    min-height: 98px;
    text-align: left;
    padding: 5px 16px;
  }
}

/* .p-personality__bokuao
   ---------------------------------------------------------- */
.p-personality__bokuao {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 307px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .p-personality__bokuao {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    max-width: 910px;
    width: 100%;
    margin: 0 auto;
  }
}

.p-personality__bokuao-img {
  width: 100%;
  max-width: 307px;
}

@media screen and (min-width: 960px) {
  .p-personality__bokuao-img {
    flex-shrink: 0;
    max-width: 357px;
  }
}

.p-personality__bokuao-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-personality__bokuao-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2f2f2f;
  line-height: 1.5;
}

@media screen and (min-width: 960px) {
  .p-personality__bokuao-text {
    font-size: 1.4rem;
    width: 345px;
  }
}

.p-personality__bokuao-text a {
  color: #2f2f2f;
  text-decoration: underline;
}

/* ==========================================================================
   エピソード
   ========================================================================== */

/* .p-episode
   ---------------------------------------------------------- */
.p-episode {
  background-color: #e8f8ff;
  padding: 32px 10px;
}

@media screen and (min-width: 960px) {
  .p-episode {
    padding: 32px 0;
  }
}

/* .p-episode__title
   ---------------------------------------------------------- */
.p-episode__title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #0fadef;
  text-align: center;
  margin-bottom: 24px;
  background-color: transparent;
}

@media screen and (min-width: 960px) {
  .p-episode__title {
    font-size: 3.2rem;
    margin-bottom: 27px;
  }
}

/* .p-episode__intro
   ---------------------------------------------------------- */
.p-episode__intro {
  text-align: center;
  color: #4c4c4c;
  margin-bottom: 24px;
}

@media screen and (min-width: 960px) {
  .p-episode__intro {
    text-align: center;
    color: #4c4c4c;
    margin-bottom: 27px;
  }}

.p-episode__intro-main {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .p-episode__intro-main {
    font-size: 1.6rem;
  }
}

.p-episode__intro-sub {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: center;
}

.p-episode__intro-date {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

/* .p-episode__filter
   ---------------------------------------------------------- */
.p-episode__filter {
  background-color: #fff;
  max-width: 306px;
  margin: 0 auto 24px;
}
  
@media screen and (min-width: 768px) {
  .p-episode__filter {
    background-color: #fff;
    max-width: 644px;
    margin: 0 auto 24px;
  }}

@media screen and (min-width: 960px) {
.p-episode__filter {
  background-color: #fff;
  max-width: 912px;
  margin: 0 auto 27px;
}}

.p-episode__filter-header {
  background-color: #0fadef;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.p-episode__filter-header-text {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  flex: 1;
}

.p-episode__filter-header-icon {
  position: absolute;
  right: 21px;
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.p-episode__filter-header-icon::before,
.p-episode__filter-header-icon::after {
  content: '';
  position: absolute;
  background-color: #fff;
}

.p-episode__filter-header-icon::before {
  width: 3px;
  height: 14px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-episode__filter-header-icon::after {
  width: 14px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-episode__filter.is-open .p-episode__filter-header-icon {
  transform: rotate(45deg);
}

.p-episode__filter-body {
  display: none;
  flex-direction: column;
  padding: 16px 15px 24px;
}

@media screen and (min-width: 960px) {
  .p-episode__filter-body {
    display: none;
    flex-direction: column;
    padding: 16px 16px 8px 16px;
  }
}

.p-episode__filter.is-open .p-episode__filter-body {
  display: flex;
}

@media screen and (min-width: 960px) {
  .p-episode__filter.is-open .p-episode__filter-body {
    display: flex;
    gap: 16px 28px;
  }
}

/* SP: 発表者 → SDGs → キーワード の順 */
.p-episode__filter-row--presenter {
  order: 1;
}

.p-episode__filter-row--sdgs {
  order: 2;
}

.p-episode__filter-row--keyword {
  order: 3;
}

/* PC: 発表者とキーワードを横並び、SDGsは下 */
@media screen and (min-width: 960px) {
  .p-episode__filter-body {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .p-episode__filter-row--presenter {
    order: 1;
    flex: 0 0 auto;
  }
  
  .p-episode__filter-row--keyword {
    order: 2;
    flex: 0 0 auto;
  }
  
  .p-episode__filter-row--sdgs {
    order: 3;
    flex: 0 0 100%;
  }
}

.p-episode__filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
.p-episode__filter-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  justify-content: normal;
  width: 425px;
  flex-direction: row;
}}

.p-episode__filter-row:last-child {
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
@media screen and (min-width: 960px) {
.p-episode__filter-row:last-child {
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 0;
}}

.p-episode__filter-label {
  background-color: #f2f2f2;
  padding: 2px 5px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #4c4c4c;
  min-width: 276px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .p-episode__filter-label {
    background-color: #f2f2f2;
    padding: 2px 5px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #4c4c4c;
    min-width: 276px;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .p-episode__filter-label {
    background-color: #f2f2f2;
    padding: 2px 5px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #4c4c4c;
    min-width: 158px;
    line-height: 1.5;
    text-align: left;
    margin: 0;
  }
}

.p-episode__filter-row:first-child .p-episode__filter-label:nth-of-type(2) {
  margin-left: 1%;
}

.p-episode__filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 6px;
}

@media screen and (min-width: 960px) {
.p-episode__filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 0;
}}


.p-episode__filter-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 24px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  color: #4c4c4c;
}

@media screen and (min-width: 960px) {
.p-episode__filter-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  border-radius: 24px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  color: #4c4c4c;
}}

.p-episode__filter-tag--active {
  background-color: #0fadef;
  border-color: #0fadef;
  color: #fff;
}

.p-episode__filter-input {
  width: 100%;
  max-width: auto;
  padding: 3px 10px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 1.4rem!important;
  font-weight: 500;
  color: #4c4c4c;
  padding: 3px 10px!important;
  border: 1px solid #D9D9D9!important;
  background: #FFF!important;
  color: #838383!important;
  box-shadow: none!important;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif!important;
}
@media screen and (min-width: 960px) {
.p-episode__filter-input {
  width: 100%;
  max-width: 252px;
  padding: 3px 10px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 1.4rem!important;
  font-weight: 500;
  color: #4c4c4c;
  padding: 3px 10px!important;
  border: 1px solid #D9D9D9!important;
  background: #FFF!important;
  color: #838383!important;
  box-shadow: none!important;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif!important;
}}

.p-episode__filter-input::placeholder {
  color: #838383;
}

/* .p-episode__sdgs
   ---------------------------------------------------------- */
.p-episode__sdgs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  max-width: 684px;
}

.p-episode__sdgs-item {
  padding: 2px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
}

.p-episode__sdgs-item--active {
  outline: 2px solid #0fadef;
}

.p-episode__sdgs-item img {
  width: 50px;
  height: 50px;
  display: block;
}

/* .p-episode__cards
   ---------------------------------------------------------- */
.p-episode__cards {
  max-width: 306px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .p-episode__cards {
    max-width: 644px;
    margin: 0 auto;
  }}
  
@media screen and (min-width: 960px) {
.p-episode__cards {
  max-width: 910px;
  margin: 0 auto;
}}

/* .p-episode__card-list
   ---------------------------------------------------------- */
.p-episode__card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

@media screen and (min-width: 960px) {
  .p-episode__card-list {
    gap: 24px 35px;
  }
}

/* .p-episode__card
   ---------------------------------------------------------- */
.p-episode__card {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  max-width: 306px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .p-episode__card {
    max-width: 314px;
  }
}

@media screen and (min-width: 960px) {
  .p-episode__card {
    width: calc((100% - 70px) / 3);
    max-width: none;
  }
}

/* SP時はPC専用カードを非表示 */
.p-episode__card--pc-only {
  display: none;
}

@media screen and (min-width: 960px) {
  .p-episode__card--pc-only {
    display: block;
  }
}

/* 初期状態で非表示（7件目以降） */
/* 
 * .p-episode__card--hidden と .p-episode__card--pc-only は
 * JavaScriptで制御するため、CSSでは非表示にしない
 */

.p-episode__card-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 5px;
}

.p-episode__card-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.p-episode__card-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 960px) {
.p-episode__card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}}

.p-episode__card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #4c4c4c;
}

.p-episode__card-meta {
  display: flex;
  gap: 15px;
  font-size: 1.2rem;
  color: #4c4c4c;
}

@media screen and (min-width: 960px) {
.p-episode__card-meta {
  display: flex;
  gap: 16px;
  font-size: 1.2rem;
  color: #4c4c4c;
}}

.p-episode__card-meta dt {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: normal;
}

.p-episode__card-meta dd {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: normal;
}

.p-episode__card-meta-item {
  display: flex;
}

.p-episode__card-sdgs {
  padding: 5px 18px;
  border-top: 1px solid #d9d9d9;
}

.p-episode__card-sdgs-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 223px;
}

.p-episode__card-sdgs img {
  width: 52px;
  height: 52px;
}

/* .p-episode__more
   ---------------------------------------------------------- */
.p-episode__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #0094d5;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 40px;
  min-width: 120px;
  margin: 24px auto 0;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

@media screen and (min-width: 960px) {
.p-episode__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #0094d5;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 40px;
  min-width: 120px;
  margin: 24px auto 0;
  cursor: pointer;
  border: none;
  text-decoration: none;
}}

.p-episode__more::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -2px;
}

/* 初期表示に戻すボタン（上向き矢印） */
.p-episode__more--collapse::after {
  transform: rotate(-135deg);
  margin-top: 5px;
}

/* ==========================================================================
   この番組に込めた想い（p-concept）
   ========================================================================== */

.p-concept {
  position: relative;
  padding: 32px 0;
  overflow: hidden;
  background-image: url('../images/bg_concept_sp.jpg');
  background-size: cover;
}

@media screen and (min-width: 960px) {
  .p-concept {
    padding: 32px 0;
    background-image: url('../images/bg_concept_pc.jpg');
  }
}


.p-concept__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* .p-concept__title
   ---------------------------------------------------------- */
.p-concept__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0fadef;
  text-align: center;
  line-height: normal;
  background-color: transparent;
}

@media screen and (min-width: 960px) {
  .p-concept__title {
    font-size: 3.2rem;
  }
}

/* .p-concept__cards
   ---------------------------------------------------------- */
.p-concept__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.p-concept__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 8px 0px #90d3ef;
  padding: 15px 0;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .p-concept__card {
    max-width: 660px;
    padding: 15px 10px;
  }
}

.p-concept__card-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-concept__card-heading {
  border-bottom: 2px solid rgba(15, 173, 239, 0.5);
  font-size: 1.6rem;
  font-weight: bold;
  color: #0fadef;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 5px;
}

@media screen and (min-width: 960px) {
  .p-concept__card-heading {
    font-size: 2.0rem;
  }
}

.p-concept__card-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #0fadef;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 960px) {
  .p-concept__card-text {
    font-size: 1.6rem;
  }
}

/* .p-concept__dots
   ---------------------------------------------------------- */
.p-concept__dots {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.p-concept__dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0fadef;
}
@media screen and (min-width: 960px) {
  .p-concept__dots span {
    width: 10px;
    height: 10px;
  }
}

/* .p-concept__message
   ---------------------------------------------------------- */
.p-concept__message {
  display: flex;
  flex-direction: column;
  gap: 1em;
  text-align: center;
}

.p-concept__message-semi {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333e43;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 960px) {
  .p-concept__message-semi {
    font-size: 1.9rem;
  }
}

.p-concept__message-bold {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333e43;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 960px) {
  .p-concept__message-bold {
    font-size: 1.9rem;
  }
}

.p-concept__message-medium {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333e43;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 960px) {
  .p-concept__message-medium {
    font-size: 1.9rem;
  }
}
br.sp-block{
  display: block;
}
@media screen and (min-width: 960px) {
  br.sp-block{
    display: none;
  }
}

/* ==========================================================================
   p-about（CHINTAIとは）
   ========================================================================== */

.p-about {
  background-color: #fff;
  padding: 22px 34px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 960px) {
  .p-about {
    padding: 40px 0 0;
  }
}

.p-about__inner {
  max-width: 909px;
  margin: 0 auto;
  position: relative;
}

/* .p-about__title
   ---------------------------------------------------------- */
.p-about__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1d2088;
  margin-bottom: 7px;
  line-height: 1.5;
  background-color: transparent;
  text-align: center;
}

@media (min-width: 960px) {
  .p-about__title {
    font-size: 3.2rem;
    line-height: 1.75;
    margin-bottom: 16px;
    text-align: left;
  }
}

/* .p-about__content
   ---------------------------------------------------------- */
.p-about__content {
  position: relative;
  max-width: 306px;
  margin: auto;
}

@media (min-width: 768px) {
  .p-about__content {
    margin: 0 auto;
  }
}

@media (min-width: 960px) {
  .p-about__content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 46px;
    max-width: none;
  }
}

.p-about__desc {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #4c4c4c;
  margin-bottom: 26px;
  font-weight: 500;
}

@media (min-width: 960px) {
  .p-about__desc {
    font-size: 2rem;
    line-height: 1.5;
    max-width: 739px;
    margin-bottom: 47px;
  }
}

.p-about__chintiger {
  display: none;
}

@media (min-width: 960px) {
  .p-about__chintiger {
    display: block;
    position: absolute;
    right: 0;
    top: -30px;
    width: 159px;
  }
  
  .p-about__chintiger img {
    width: 100%;
    height: auto;
  }
}

/* .p-about__links-wrapper
   ---------------------------------------------------------- */
.p-about__links-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .p-about__links-wrapper {
    width: 306px;
    margin: 0 auto 20px;
  }
}

@media (min-width: 960px) {
  .p-about__links-wrapper {
    display: block;
    gap: 10px;
    width: auto;
  }
}

.p-about__chintiger--sp {
  display: block;
  flex-shrink: 0;
  width: 118px;
}

.p-about__chintiger--sp img {
  width: 100%;
  height: auto;
}

@media (min-width: 960px) {
  .p-about__chintiger--sp {
    display: none;
  }
}

/* .p-about__links
   ---------------------------------------------------------- */
.p-about__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  max-width: 160px;
}

@media (min-width: 960px) {
  .p-about__links {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
    max-width: none;
  }
}

.p-about__link-box {
  text-align: center;
}

.p-about__link-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1d2088;
  position: relative;
}

@media (min-width: 960px) {
  .p-about__link-label {
    font-size: 1.6rem;
  }
}


.p-about__border-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

@media (min-width: 960px) {
  .p-about__border-wrapper{
    margin: 0 auto 10px;
  }
}

.p-about__border {
  position: relative;
  width: calc((100% - 10px) / 2);
  max-width: 100px;
  height: 2px;
}
.p-about__link-box:last-child .p-about__border {
  width: calc((118px - 10px) / 2);
}
@media (min-width: 960px) {
.p-about__link-box:last-child .p-about__border {
  width: calc((150px - 10px) / 2);
}}

.p-about__border::after {
  content: "";
  position: absolute;
  top: 0;
  border-top: 2px solid #1d2088;
  width: calc(100% - 4px);
}

.p-about__border:first-child::after {
  right: 0;
}

.p-about__border:last-child::after {
  left: 0; 
}

.p-about__triangle{
  display: inline-block;
  transform: translateY(0.3px) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #1d2088;
  border-bottom: 2px solid #1d2088;
}

@media (min-width: 960px) {
  .p-about__triangle{
    width: 10px;
    height: 10px;
  }
}

.p-about__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
}


.p-about__link--x {
  width: 160px;
  border: none;
  padding: 0;
  min-height: auto;
  display: block;
}

.p-about__link--x img {
  height: auto;
  width: 160px;
}

@media (min-width: 960px) {
  .p-about__link--x {
    width: 212px;
    border: none;
    padding: 0;
    min-height: auto;
  }
  
  .p-about__link--x img {
    height: auto;
    width: 100%;
  }
}

.p-about__link--chintai {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #1d2088;
  padding: 5px 6px 5px 7px;
  min-height: 49px;
  gap: 5px;
  position: relative;
}

@media (min-width: 960px) {
  .p-about__link--chintai {
    width: 211px;
    padding: 5px;
    min-height: 64px;
  }
}

.p-about__link-text {
  font-size: 1.0rem;
  font-weight: bold;
  color: #1d2088;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 960px) {
  .p-about__link-text {
    font-size: 1.2rem;
    line-height: 1.25;
  }
}

.p-about__link--chintai img {
  height: 32px;
  width: auto;
}

@media (min-width: 960px) {
  .p-about__link--chintai img {
    height: 50px;
  }
}

.p-about__link-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #1d2088;
  border-bottom: 2px solid #1d2088;
  transform: translateX(-2px) rotate(-45deg);
}

/* .p-about__btn
   ---------------------------------------------------------- */
.p-about__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 244px !important;
  max-width: none !important;
  margin: 0 auto 32px;
  padding: 8px 13px;
  background: #0fadef;
  border: 1px solid #0fadef;
  border-radius: 35px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 960px) {
  a.p-about__btn {
    font-size: 1.6rem;
    width: 100%;
    max-width: 250px;
    max-height: 39px;
    padding: 8px 13px;
    margin-bottom: 58px;
  }
}

.p-about__btn-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* .p-about__footer
   ---------------------------------------------------------- */
footer {
  margin-top: auto;
}

.p-about__footer {
  width: calc(100% + 68px);
  margin-left: -34px;
  margin-right: -34px;
  height: 93px;
  background-image: url('../images/bg_footer.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

@media (min-width: 960px) {
  .p-about__footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    height: 120px;
    background-image: url('../images/bg_footer.png');
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: auto 100%;
  }
}

footer {
  background: #3ca3ee;
  color: #fff;
}

@media (min-width: 960px) {
  footer {
      background: #fff;
      color: #fff;
  }
}

footer a:link, footer a:visited, footer a:hover, footer a:active {
    color: #fff!important;
    text-decoration: none!important;
}

@media (min-width: 960px) {
footer a:link, footer a:visited, footer a:hover, footer a:active {
  color: #06c!important;
  text-decoration: underline!important;
}}

#footer #ftCorp .ftBoxInner ul li a {
  color: #fff!important;
}

/* ==========================================================================
   TOPへ戻るボタン
   ========================================================================== */

.c-pagetop {
    position: fixed;
    right: 10px;
    bottom: 0;
    width: 74.9px;
    height: 125.7px;
    display: block;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

@media (min-width: 960px) {
  .c-pagetop {
  position: fixed;
  right: 10px;
  bottom: 0;
  width: 99px;
  height: 166px;
  display: block;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}}

.c-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}

.c-pagetop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

