@charset "UTF-8";
html {
  font-size               : 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust   : 100%;
  -ms-text-size-adjust    : 100%;
  text-size-adjust        : 100%;
}
body {
  /*font-family: 'M PLUS Rounded 1c','Noto Sans JP', sans-serif;*/
  /*font-family: 'Yu Gothic', '游ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'Meiryo', 'メイリオ', sans-serif;*/
    font-family: "hiragino-kaku-gothic-pron", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", "YuGothic", "Meiryo", "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  color      : #2F2F2F;
  background : #fff5de;
}
body.noscroll {
  overflow: hidden;
}
a {
  display: block;
}
img {
  width    : 100%;
  max-width: 100%;
  display  : block;
}
.wrap {
  overflow: hidden;
}
.container {
  max-width: 1064px;
  margin   : 0 auto;
  padding  : 0 30px;
}
.txt {
  font-size  : 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 360px) {
  html {
    font-size: 53.5%;
  }
}
.header {
  height    : 50px;
  background   : rgba(255, 255, 255, 0.9);
  padding   : 0 40px;
  position  : fixed;
  top       : 0;
  left      : 0;
  right     : 0;
  z-index   : 1000;
}
.h_container {
  height     : 100%;
  display    : flex;
  align-items: center;
}
.h_logo {
  display: flex;
  gap:10px;
  width: 73%;
}
.h_logo a img{
  width: 120px;
  height: 36px;
}
.h_btn_list {
  width          : calc(100% - 60px);
  display        : flex;
  justify-content: flex-end;
  align-items    : center;
  gap            : 40px;
}
.h_btn {
  width : 50px;
  height: 30px;
}
.h_login_btn {
  background     : url(../assets/img/h-login-btn.svg) no-repeat;
  background-size: 100%;
}
.h_signup_btn {
  background     : url(../assets/img/h-signup-btn.svg) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 600px) {
  .header {
    height : 50px;
    padding: 0 16px 0 12px;
  }
  .h_logo a img{
    width: 120px;
    height: 36px;
  }
  .h_btn_list {
    width: calc(100% - 41px);
    gap  : 0;
  }
  .h_btn_list li:nth-child(2) {
    margin: 0 15px 0 15px;
  }
  .h_btn {
    width : 50px;
    height: 30px;
  }
}
.nav_btn {
  width          : 25px;
  height         : 32px;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  align-items    : center;
  cursor         : pointer;
  position       : relative;
  z-index        : 200;
}
.nav_btn span {
  width        : 100%;
  height       : 5px;
  background   : #ffbf1f;
  display      : inline-block;
  transition   : 0.3s;
  border-radius: 20px;
}
.nav_btn span:nth-child(2) {
  margin: 4px 0;
}
.nav_btn.active span:nth-child(1) {
  transform    : translateY(11.5px) rotate(-45deg);
  transition   : 0.3s;
  background   : #000;
  height       : 8px;
  border-radius: unset;
}
.nav_btn.active span:nth-child(2) {
  transform       : scaleX(0);
  transform-origin: right top;
  transition      : transform .3s;
}
.nav_btn.active span:nth-child(3) {
  transform    : translateY(-10px) rotate(45deg);
  transition   : 0.3s;
  background   : #000;
  height       : 8px;
  border-radius: unset;
}
.nav_search-icon{
  display: inline-block;
  width:25px;
  height:25px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .nav_btn {
    width : 25px;
    height: 32px;
  }
  .nav_btn span:nth-child(2) {
    margin: 4px 0;
  }
  .nav_btn.active span:nth-child(1) {
    height   : 8px;
    transform: translateY(11.5px) rotate(-45deg);
  }
  .nav_btn.active span:nth-child(3) {
    height: 8px;
  }
}
.h_nav {
  width     : 28%;
  height    : 90vh;
  position  : fixed;
  top       : 0;
  right     : -25%;
  transition: all .5s;
  visibility: hidden;
  z-index   : 100;
  background: #FFBF1F;
}
.h_nav.active {
  position  : fixed;
  top       : 0;
  right     : -1%;
  visibility: visible;
  height    : 90vh;
  z-index   : 100;
  overflow-y: scroll;
  transition: all .5s;
  background: #FFBF1F;
}
.h_nav_list {
  width          : 100%;
  height         : 100%;
  display        : flex;
  flex-direction : column;
  justify-content: center;
  padding        : 0 20px;
}
.h_nav_list li {
  width      : 100%;
  line-height: 1.4;
}
.h_nav_list li:nth-child(3) {
  margin: 0 0;
}
.h_nav_list li a {
  font-size  : 2.0rem;
  font-weight: 800;
}
@media screen and (max-width: 1100px) {
  .h_nav_list li a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .h_nav {
    right: -40%;
  }
  .h_nav.active {
    width: 40%;
  }
  .h_nav_list li a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 700px) {
  .h_nav_list li a {
    font-size: 2.0rem;
  }
}
@media screen and (max-width: 600px) {
  .h_nav {
    right: -85%;
  }
  .h_nav.active {
    width: 85%;
  }
  .h_nav_list li a {
    font-size: 2.0rem;
  }
}
.main__container {
  /*max-width      : 1094px;*/
  max-width: 136rem;
  margin         : 0 auto;
  /*padding        : 10px 10px 0;
  display        : flex;
  justify-content: space-between;
  align-items    : flex-start;
  gap            : 0 15px;*/
  /*margin-top     : 50px;*/
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main__container {
    flex-direction: column;
    padding       : 0;
  }
}

.main {
  width    : 100%;
  /*max-width: 650px;*/
}
.main section {
  background: #fff;
}
.main__sec_ttl {
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .main {
    width    : 100%;
    max-width: 100%;
  }
}
.main__top {
  padding      : 0px 0 0px;
  margin-bottom: 0px;
}
.main__top_head {
  margin-left: 10px;
}
.main__top_logo {
  width        : 212px;
  margin-bottom: 0px;
}
.main__top_lead {
  font-size   : clamp(1.2rem, 3vw, 2.0rem);
  line-height : 1.5;
  padding-left: 2px;
  color:#9c9b9b;
}
.main__nav {
  width      : 100%;
  margin     : 0 0;
  padding-bottom:20px;
  border-left: 10px solid #FFBF35;
}
.main__nav ul {
  display       : flex;
  flex-direction: column;
  align-items   : flex-end;
  gap           : 18px;
}
.main__nav li {
  width      : 100%;
  display    : flex;
  align-items: center;
  gap        : 0 40px;
}
.main__nav li:nth-child(1):before {
  content    : "";
  display    : inline-block;
  width      : 5%;
  height     : 2px;
  background : #2F2F2F;
  margin-left: 20px;
}
.main__nav li:nth-child(2):before {
  content    : "";
  display    : inline-block;
  width      : 5%;
  height     : 2px;
  background : #2F2F2F;
  margin-left: 20px;
}
.main__nav li:nth-child(3):before {
  content    : "";
  display    : inline-block;
  width      : 5%;
  height     : 2px;
  background : #2F2F2F;
  margin-left: 20px;
}
.main__nav li a {
  margin-left: auto;
}
.main__nav li a img:hover{
  filter: brightness(70%);
}
.main__nav li a img:active{
  filter: brightness(70%);
}
.main__nav li:nth-child(1) a {
  width: 100%;
}
.main__nav li:nth-child(2) a {
  width: 100%;
}
.main__nav li:nth-child(3) a {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .main__top {
    padding      : 0px 0 0px;
    margin-bottom: 0px;
  }
  .main__nav li:nth-child(1):before {
    width: 5%;
  }
  .main__nav li:nth-child(2):before {
    width: 5%;
  }
  .main__nav li:nth-child(3):before {
    width: 5%;
  }
  .main__nav li:nth-child(1) a {
    width: 100%;
  }
  .main__nav li:nth-child(2) a {
    width: 100%;
  }
  .main__nav li:nth-child(3) a {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .main__nav {
    margin: 15px 0 0px;
  }
}

.side {
  width    : 39%;
  /*max-width: 340px;*/
}
.side section {
  background   : #fff;
  margin-bottom: 20px;
}
.side__container {
  padding   : 17px 19px 15px;
  background: #fff;
}
.side__sec_ttl {
  font-size    : 2rem;
  line-height  : 1.45;
  margin-bottom: 12px;
}
.side__list {
  display       : flex;
  flex-direction: column;
  gap           : 20px;
}
.side__list_item {
  display        : flex;
  justify-content: start;
  align-items    : flex-start;
  gap            : 10px;
}
.side__list_item:hover {  
  opacity: 70%;
}
.side__list_item img {
  width: 20%;
  aspect-ratio: 4 / 4;
  max-height: 100px;
  object-fit: cover;
  border-radius: 5px;
}
.side__list_item img:hover {
  filter    : brightness(85%);
}
.side__txt {
  font-size  : 1.4rem;
  line-height: 1.7;
  text-align : start;
}
.side__list_txt {
  width: calc(100% - 20%);
}

.feature .side__txt {
  color     : #FF006F;
  margin-top: 10px;
}
.feature .side__txt:after {
  display    : inline-block;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .side {
    width    : 100%;
    max-width: 100%;
    padding  : 20px;
  }
}
@media screen and (max-width: 600px) {
  .side {
    padding: 10px 10px 5px;
  }
  .side section {
    margin-bottom: 10px;
  }
  .side__container {
    padding: 17px 12px 15px 10px;
  }
}
.side_sensei_list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows	:1fr 1fr 1fr ;
  gap: 4px;
}

a.bt-group{
  display: block;
  text-decoration: none;
  height:40px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 40px;
  min-width: 80px;
  width: 50%;
  box-sizing: border-box;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background: #ff006f; 
  margin:20px auto 10px auto ;
  border-radius: 20px;
}
a.bt-group:hover{
  opacity:0.7 ;
}
a.bt-group:active{
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  opacity:0.7 ;
  box-shadow: none;
}
.news_top{
  margin:0px 0px 0px;
}

.btn {
  font-size         : 1.8rem;
  color             : #fff;
  font-weight       : 500;
  width             : 295px;
  height            : 60px;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  border-radius     : 5px;
  transition        : .2s
}
.btn.btn_org {
  background: #FFBF1F;
}
.btn.btn_rd {
  background: #FF006F;
}
.btn:hover {
  filter    : brightness(85%) contrast(120%);
  transition: .2s
}


.l-container {
   background: #FFF;
   gap: 0 2rem;
   margin: 6rem auto 0;
   max-width: 136rem;
   padding: 2.4rem 4rem;
}
@media screen and (max-width: 1024px) {
   .l-container {
    margin-top: 5rem;
   }
}

@media screen and (max-width: 768px) {
   .l-container {
      background: #fff;
      flex-direction: column;
      gap: 4rem 0;
      padding: 0;
   }
}
@media screen and (max-width: 600px) {
   .l-container {
      gap: 1rem 0;
   }
}

   /* グローバルメニュー */
   .global-menu-bar {
   display: flex;
   align-items: center;
   background-color: #ffbf1f;
   height: 56px;
   }

   /* 各メニューを均等幅に */
   .menu-item {
   flex: 1;                           /* ★ ここが肝 */
   display: flex;
   justify-content: center;           /* 横中央 */
   align-items: center;               /* 縦中央 */
   gap: 6px;
   text-decoration: none;
   color: #000;
   position: relative;
   }

   /* 区切り線（各エリアの右端＝ちょうど中央） */
   .menu-item:not(:last-child)::after {
   content: "";
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 1px;
   height: 26px;
   background-color: rgba(0,0,0,0.35);
   }

   .menu-item img {
   width: 28px;
   height: 28px;
   object-fit: contain;
   }

   .global-menu-font {
   font-size: 2.4rem;
   }

   .global-menu-font-small {
   font-size: 1.2rem;
   }

   .menu-item-keisai {
   display: flex;
   flex-direction: row;
   align-items: center;
   height: 2.4rem;
   flex-direction: column;
   justify-content: center;

   }


   /* レスポンシブ */
   @media screen and (max-width: 768px) {
    .global-menu-font {
        font-size: 2.0rem;
    }
    .global-menu-font-small {
    font-size: 1.4rem;
    }
   }

   @media screen and (max-width: 600px) {
   .global-menu-font {
      font-size: 1.0rem;
   }
    .global-menu-font-small {
    font-size: 0.8rem;
    }

   .menu-item img {
      width: 14px;
      height: 14px;
   }
   }

      /* Top Description 共通 */
   .top-description {
   font-size: 3rem;
   }

   /* 900px以上：PC */
   @media screen and (max-width: 768px) {
   .top-description {
      font-size: 2.0rem;
   }
   }

   /* 600px以上：タブレット */
   @media screen and (max-width: 600px) {
   .top-description {
      font-size: 1.4rem;
   }
   }

    .breadcrumb{
        background: rgba(255, 191, 31, 0.15);
        padding: 10px 14px;
    }
    .breadcrumb__list{
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 6px 1px;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    .breadcrumb__item{
        display: inline-flex;
        align-items: center;
        font-size: 2.4rem;
        line-height: 1.2;
        color: #525252;
    }
    .breadcrumb__item:not(:last-child)::after{
        content: "＞";
        margin-left: 2px;
        margin-right: 2px;
        opacity: 0.65;
    }
    .breadcrumb__link{
        color: inherit;
        text-decoration: none;
        padding: 2px 2px;
        border-radius: 6px;
    }
    .breadcrumb__link:hover{
        background: rgba(0, 0, 0, 0.06);
    }
    .breadcrumb__item--current{
        font-weight: 700;
    }
    @media (max-width: 768px){
    .breadcrumb{
        padding: 9px 12px;
    }
    .breadcrumb__item{
        font-size: 2.0rem;
    }
    }
    @media (max-width: 600px){
    .breadcrumb{
        padding: 9px 12px;
    }
    .breadcrumb__item{
        font-size: 1.0rem;
    }
    }



/*
.footer {
  background: #FFBF1F;
}
.f_container {
  display        : flex;
  align-items    : flex-start;
  justify-content: space-between;
  max-width      : 1094px;
  margin         : 0 auto;
  padding        : 40px 40px 30px;
}
.f_logo {
  width: 100px;
}
.f_logo a img{
  width: 60px;
  height:60px;
  border-radius: 10%;
}
.f_nav_list {
  font-size     : 1.8rem;
  display       : flex;
  flex-direction: column;
  gap           : 20px;
}
.copyright {
  height         : 50px;
  background     : #151515;
  display        : flex;
  align-items    : center;
  justify-content: center;
  color          : #fff;
  font-size      : 1.4rem;
}
@media screen and (max-width: 1024px) {
  .f_container {
    padding: 40px 30px 50px;
  }
}
@media screen and (max-width: 768px) {
  .f_logo {
    width: 60px;
  }
  .f_nav_list {
    font-size: 1.5rem;
    gap      : 20px;
  }
}
*/

.footer {
  background: #FFBF1F;
}

.f_container {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1094px;
  margin: 0 auto;
  padding: 40px 40px 30px;
}

.f_logo {
  width: 120px;
  flex: 0 0 auto;
}
.f_logo_link img{
  width: 72px;
  height: 72px;
  border-radius: 12px;
}

.f_nav { flex: 1; }

.f_grid{
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 1fr;
  gap: 26px;
}

.f_section{
  background: rgba(255,255,255,0.35);
  border-radius: 14px;
  padding: 14px 14px 16px;
}

.f_title{
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.f_subtitle{
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #222;
  opacity: .9;
}

.f_list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.f_list a{
  color: #111;
  text-decoration: none;
  font-size: 1.45rem;
  line-height: 1.4;
}
.f_list a:hover{
  text-decoration: underline;
}

.f_primary_link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.65);
  color: #111;
  text-decoration: none;
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 1rem;
}
.f_primary_link:hover{ filter: brightness(0.98); }

.f_cta{
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  line-height: 1.3;
  padding: 14px 14px;
  border-radius: 14px;
  background: #111;
}
.f_cta:hover{ filter: brightness(1.05); }

.pref-block{ margin-top: 12px; }
.pref-title{
  font-size: 1.25rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 8px;
}

.pref-grid{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.pref-grid a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  background: #7478C2; /* デフォルト色 */
}
.pref-grid a:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* 地方ごとに色を変えたい場合（任意） */
.pref-block:nth-of-type(2) .pref-grid a{ background:#33BEC8; } /* 関東 */
.pref-block:nth-of-type(3) .pref-grid a{ background:#2BB673; } /* 中部 */
.pref-block:nth-of-type(4) .pref-grid a{ background:#AFB62D; } /* 近畿 */
.pref-block:nth-of-type(5) .pref-grid a{ background:#F09E27; } /* 中国 */
.pref-block:nth-of-type(6) .pref-grid a{ background:#D08F68; } /* 四国 */
.pref-block:nth-of-type(7) .pref-grid a{ background:#FF8383; } /* 九州沖縄 */

.copyright {
  height: 50px;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

/* レスポンシブ */
@media screen and (max-width: 1024px) {
  .f_container { padding: 40px 24px 40px; }
  .f_grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 768px) {
  .f_logo { width: 72px; }
  .f_logo_link img{ width:60px; height:60px; }

  .pref-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.main__sec_container {
  padding: 0 12px;
}
@media screen and (max-width: 768px) {
  .main__sec_container {
    padding: 0 10px;
  }
}
.main__top_list {
  display        : flex;
  flex-wrap      : wrap;
  justify-content: space-between;
  gap            : 20px 10px;
}
.main__top_list li {
  width: calc(50% - 5px);
  background-color: #fff;
}
.main__top_list li img{
  border-radius: 10px;
  border: 1px solid #f0eeee;
}
.main__top_list li.video {
  width     : 100%;
  position  : relative;
  transition: .5s;
}
.main__top_list li.video:hover {
  transition: .5s;
}
.main__top_list li.video a {
  position: relative;
}

.main__top_list li.video a:before {
  content        : "";
  display        : inline-block;
  width          : 12.8%;
  min-width      : 55px;
  height         : 80px;
  background     : url(../assets/img/main_top_video_icon.png) no-repeat center;
  background-size: contain;
  position       : absolute;
  top            : 50%;
  left           : 50%;
  transform      : translate(-50%, -50%);
  cursor         : pointer;
}
.main__top_list li:hover {
  opacity   : 0.7;
}
.main__top_list li:active {
  opacity   : 0.7;
  transform : translateY(2px);
}
.main__top_list li a img.recommend {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .main__top_list li.video p {
    margin: 10px 11px;
  }
}

.problem_search {
  width        : 100%;
  max-width: 1024px;
  height       : 60px;
  border-radius: 6px;
  box-shadow   : 1px 3px 10px lightgrey;
  margin       : 0 auto 20px;
}
.index-search{
  display: none;
  overflow: hidden;
  position: fixed;
  top: 70px;	
  width: 95%;
  margin-left: auto;
  margin-right: auto;	
  z-index: 1000;
  width: 100%;
  max-width: 1024px;
}
.problem_search_btn_wrap {
  width          : 100%;
  height         : 100%;
  position       : relative;
  display        : flex;
  justify-content: space-between;
}
.problem_search_btn_wrap:before {
  content                  : "";
  display                  : inline-block;
  width                    : 21px;
  height                   : 100%;
  background               : #FFBF1F;
  position                 : absolute;
  left                     : 0;
  border-top-left-radius   : 6px;
  border-bottom-left-radius: 6px;
  z-index                  : 10;
}
.search_btn_txtarea {
  font-size    : 1.8rem;
  width        : 100%;
  background   : #fff;
  padding      : 0 10px 0 35px;
  position     : relative;
  text-align   : left;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.search_btn_txtarea::placeholder {
  font-size: 1.8rem;
  color    : #D2D2D2;
}
.search_btn {
  width                     : 69px;
  height                    : 60px;
  background                : #FFBF1F;
  position                  : relative;
  border-top-right-radius   : 6px;
  border-bottom-right-radius: 6px;
  margin-left: -2px;
}
.search_btn::before {
  content        : "";
  width          : 100%;
  height         : 100%;
  display        : inline-block;
  background     : url(../assets/img/icon-search.svg) no-repeat center center;
  background-size: 50%;
}
@media screen and (max-width: 600px) {
  .problem_search {
    height: 54px;
    margin: 0 auto max(30px, 7%);
  }
  .search_btn {
    height: 54px;
  }
}
.problem {
  padding      : 40px 0 20px;
  margin-bottom: 20px;
}
.problem_ttl {
  width    : 66.8%;
  min-width: 287px;
  margin   : 0 auto 20px;
}
.problem_items {
  margin: 0px auto 0;
}
@media screen and (max-width: 1024px) {
  .problem {
    padding      : max(40px, 5%) 0 max(37px, 9.9%);
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .problem_items {
    margin: max(15px, 5%) auto 0;
  }
}
.playing {
  padding-top  : 20px;
  margin-bottom: 20px;
}
.playing_ttl {
  width        : 52%;
  max-width    : 322px;
  min-width    : 242px;
  margin-bottom: 20px;
}
.playing .date_area {
  background: #FF006F;
}
.playing_contents {
  position  : relative;
  transition: all .3s;
}
.playing_contents.active {
  padding-bottom: 390px;
  transition    : all .3s;
}
.playing_box {
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
}
.playing_list {
  display        : flex;
  flex-wrap      : wrap;
  justify-content: space-between;
  position       : relative;
  z-index        : 100;
}
.playing_list li {
  width     : 28%;
  width     : 48%;
  transition: all .3s;
  cursor    : pointer;
}
.playing_interest.active {
  margin-bottom: 140px;
  transition   : all .3s;
}
.age_btn.active {
  transition: all .3s;
}
.nr_btn.active {
  transition: all .3s;
}
.playing_list p {
  font-size  : clamp(1.4rem, 3.3vw, 2rem);
  color      : #514e4e;
  line-height: 1.45;
  text-align : center;
  padding    : 20px 0 24px;
}
.interest_box {
  width     : calc(100% - 26px);
  position  : absolute;
  left      : 13px;
  transition: all .1s;
  visibility: hidden;
  transform : scaleY(0);
}
.interest_box.active {
  width     : calc(100% - 26px);
  position  : absolute;
  left      : 13px;
  visibility: visible;
  transition: all .1s;
  transform : scaleY(1);
  z-index   : 1000;
}
.interest_sch_btn_wrap {
  max-width      : 840px;
  height         : 100%;
  position       : relative;
  display        : flex;
  justify-content: space-between;
  box-shadow     : 1px 3px 10px lightgrey;
  border-radius  : 6px;
}
.interest_sch_btn_wrap:before {
  content                  : "";
  display                  : inline-block;
  width                    : 15px;
  height                   : 100%;
  background               : orange;
  position                 : absolute;
  left                     : 0;
  border-top-left-radius   : 6px;
  border-bottom-left-radius: 6px;
}
.interest_sch_btn_txtarea {
  width        : 100%;
  padding      : 0 10px 0 25px;
  background   : #fff;
  color        : #2f2f2f;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .playing {
    padding      : max(20px, 3%) 0 max(18px, 3%);
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .playing_list p {
    padding: 10px 0 15px;
  }
}
.picture_book {
  padding-top: 20px;
}
.picture_book_ttl {
  width    : 60.5%;
  max-width: 378px;
  min-width: 251px;
}
.picture_book_sch_items {
  padding     : 2px 10px 0;
}
.picture_book_sch_list {
  color             : #2f2f2f;
  display           : flex;
  flex-wrap         : wrap;
  justify-content   : space-between;
}
.picture_book_sch_list li {
  width     : 100%;
  background: #fff;
  cursor    : pointer;
  border-top: 1px solid #D2D2D2;
}
.picture_book_sch_list li .ttl {
  font-size      : 2rem;
  letter-spacing : 0.05em;
  width          : 100%;
  display        : flex;
  justify-content: space-between;
  padding        : 20px 0;
}
.picture_book_sch_list li .ttl:after {
  content       : ">>";
  display       : inline-block;
  font-size     : 2rem;
  color         : #FF0070;
  margin-right: 10px;
}
.picture_book_sch_box {
  width    : 100%;
  font-size: 1.8rem;
  padding  : 10px 0 10px;
  display  : none;
}
.picture_book_sch_box dl dd:hover {
  background-color: #f8eccb;
}
.picture_book_sch_btn_wrap {
  max-width         : 650px;
  height            : 100%;
  position          : relative;
  display           : flex;
  justify-content   : space-between;
  box-shadow        : 1px 3px 10px lightgrey;
}
.picture_book_sch_btn_wrap:before {
  content                  : "";
  display                  : inline-block;
  width                    : 15px;
  height                   : 100%;
  background               : orange;
  position                 : absolute;
  left                     : 0;
  border-top-left-radius   : 6px;
  border-bottom-left-radius: 6px;
}
.picture_book_sch_btn_txtarea {
  width     : 100%;
  padding   : 0 10px 0 25px;
  background: #fff;
  color     : #2f2f2f;
}
.keywords_sch_btn_area {
  display        : flex;
  flex-wrap      : wrap;
  justify-content: space-between;
  gap            : 10px 2.6%;
  margin-top     : 25px;
  padding        : 0 10PX;
}
.keywords_btn_sticky {
  width      : 48%;
  font-size    : 1.6rem;
  color        : #373636;
  background   : #fff;
  border: 1px solid;
  border-radius: 20px;
  border-color: #acacac;
  padding      : 10px 20px;
  margin-bottom: 5px;
  box-shadow   : 0px 2px 2px rgba(0, 0, 0, 0.15);
  cursor       : pointer;
  display      : flex;
  align-items  : center;
  justify-content: center; 
}
.keywords_btn_sticky:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform : translateY(2px);
}
.picture_book_sch_box dl dd {
  font-size         : 1.8rem;
  padding           : 15px 0;
  background        : #fff;
  display           : flex;
  justify-content   : space-between;
  border-top        : 2px solid #F8F8EA;
}
.picture_book_sch_box dl dd:last-child {
  border-bottom: 2px solid #F8F8EA;
}
.picture_book_sch_box dl dd:after {
  content       : ">>";
  display       : inline-block;
  font-size     : 2rem;
  color         : #FFBF1F;
  margin-left   : auto;
  margin-right: 5px;
}
.picture_book .btn_org {
  border-radius: 8px;
  margin       : 50px auto 0;
}
.picture_book_slider {
  background: #FAE6AC;
  padding   : 45px 19px 30px;
  position  : relative;
  z-index   : 10;
}
.picture_book .swiper-container {
  padding-bottom: 10px !important;
}
.picture_book .swiper-slide {
  border-radius: 5px !important;
  padding      : 0px;
}
.picture_book .swiper-slide img {
  border-top-left-radius : 5px !important;
  border-top-right-radius: 5px !important;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.picture_book .slide_txtarea {
  display                      : flex;
  gap                          : 15px;
  background                   : #fff;
  padding                      : 10px 15px;
  box-shadow                   : 0px 5px 4px 0px rgb(0 0 0 / 10%);
  border-bottom-left-radius    : 5px;
  border-bottom-right-radius   : 5px;
  height: 8rem;
}
.picture_book .date_area {
  font-size      : 1.2rem;
  color          : #fff;
  width          : 50px;
  min-width      : 50px;
  height         : 50px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  background     : #FFBF1F;
  border-radius  : 5px;
}
.picture_book .slide_txt_books {
  font-size  : 1.2rem;
  color      : #514e4e;
  line-height: 1.3;
  width      : calc(100% - 50px);
}
.picture_book .pagenation_wrap {
  display        : flex;
  justify-content: center;
  align-items    : center;
  margin-top     : 40px;
}
.picture_book .swiper-pagination {
  position: relative;
  top     : -10px;
  margin  : 0 15px;
  display : flex;
  gap     : 15px;
}
.picture_book .swiper-button-prev {
  width          : 40px !important;
  height         : 40px !important;
  background     : url(../assets/img/slide-prev-org.png) no-repeat !important;
  background-size: cover !important;
  position       : static !important;
}
.picture_book .swiper-button-next {
  width          : 40px !important;
  height         : 40px !important;
  background     : url(../assets/img/slide-next-org.png) no-repeat !important;
  background-size: cover !important;
  position       : static !important;
}
.swiper-pagination-bullet-active {
  background: #767474 !important;
}
@media screen and (max-width: 1024px) {
  .picture_book {
    padding-top: max(15px, 3%);
  }
}

button a {
  display: block;  
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
  background-color: #666666;
  border-color: #666666;
  padding: 0.8rem 2.5rem;
  border-radius: 0.100rem;
}
button a:hover {
  color: #fff;
  background-color: #313131;
  border-color: #313131;
  text-decoration: none;
}
.picture_book .btn_org {
  margin-right: auto;
  position    : relative;
  top         : 10px;
  z-index     : 100;
}

.bottom__nav a img:hover {
  transform: rotateY(-180deg);
  transition: .3s;
}
@media screen and (min-width: 1024px) {
  .bottom_arrow {
    display:none;
}
}
.switch_age_level{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  }


.recommend_title{
  font-size: 1.8rem;
  color: #1e1e1e;
  padding: 10px 0 5px 5px;
  font-weight: bold;
}
.recommend__list_item {
  display        : flex;
  justify-content: start;
  align-items    : flex-start;
  gap            : 10px;
}
.recommend__list_item:hover {  
  opacity: 70%;
}
.recommend__list_item img {
  width: 10%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  border-radius: 3px;
}
.recommend__list_item img:hover {
  filter    : brightness(85%);
}
.recommend_list_text {
  width: 80%;
}
.recommend_list_text_title{
  font-weight: bold;
  color: #777474;
}
.recommend_list_text_main{
  color: #3bb0c8;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 5px;
  margin-left: -5px;
}
@media screen and (min-width: 1024px) {
  .recommend_list_text_title {
    font-size: 2rem;
  }
  .recommend_list_text_main{
    font-size: 1.6rem;
  }
  .recommend_list_image {
    width: 12%;
  }
}
@media screen and (max-width: 1024px) {
  .recommend_list_text_title {
    font-size: 2rem;
  }
  .recommend_list_text_main{
    font-size: 1.6rem;
  }
  .recommend_list_image {
    width: 12%;
  }
}
@media screen and (max-width: 600px) {
  .recommend_list_text_title {
    font-size: 1.6rem;
  }
  .recommend_list_text_main{
    font-size: 1.4rem;
  }
  .recommend_list_image {
    width: 12%;
  }
}
@media screen and (max-width: 400px) {
  .recommend_list_text_title  {
    font-size: 1.4rem;
  }
  .recommend_list_text_main{
    font-size: 1.2rem;
  }
  .recommend_list_image {
    width: 16%;
  }
}
.problem_part{
  width: 100%;
  margin:30px 0px 10px;
}
.date_ttl {
  font-weight: 500;
  display    : flex;
  align-items: center;
  min-width  : 106px;
  font-size: 1.6rem;
  color: #514e4e;
}
.date_ttl::before {
  content     : "";
  display     : inline-block;
  width       : 15px;
  height      : 15px;
  background  : #FFBF1F;
  margin-right: 10px;
}
.date_ttl::after {
  content    : "：";
  display    : inline-block;
  font-size  : 1.8rem;
  font-weight: 500;
}
.problem_age_part{
  display    : grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:10px;
  margin-top: 10px;
}
.problem_age_part_green{
  background-color:#44E3CE ;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:5px 5px 10px 0.1px #dedede;
}
.problem_age_part_yellow{
  background-color:#FFD260 ;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:5px 5px 10px 0.1px #dedede;
}
.problem_age_part_red{
  background-color:#F67474 ;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:5px 5px 10px 0.1px #dedede;
}
.problem_age_part_text{
  font-size: 2rem;
}
.problem_contents {
  position  : relative;
  transition: all .3s;
}
.problem_contents.active {
  padding-bottom: 390px;
  transition    : all .3s;
}
.problem_box,
.problem_select_box {
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
}
.problem_list {
  display        : flex;
  flex-wrap      : wrap;
  justify-content: space-between;
  position       : relative;
  z-index        : 100;
}
.problem_list li {
  width     : 48%;
  transition: all .3s;
  cursor    : pointer;
}
.problem_list p {
  font-size  : clamp(1.6rem, 3.3vw, 2rem);
  color      : #514e4e;
  line-height: 1.45;
  text-align : center;
  padding    : 5px 0 15px;
  font-weight: bold;
}
.child_concentrate_ttl {
  font-size  : clamp(1.6rem, 3vw, 1.8rem);
  font-weight: 500;
  padding    : 15px 0px;
  background : #FFF;
  display    : inline-block;
  border-left: 15px solid #FF006F;
  display    : flex;
  align-items: center;
  box-shadow   : 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  color: #514e4e;
  height: 60px;
  width    : 100%;
  min-width: 250px;
  left     : 2.5%;
  cursor: pointer;
  }
.child_concentrate_ttl::before {
  content        : "";
  display        : inline-block;
  width          : 40px;
  height         : 44px;
  background     : url(../assets/img/under/concentrate.svg) no-repeat;
  background-size: 100%;
  margin         : 0 15px;
}
.child_violence_ttl {
  font-size  : clamp(1.6rem, 3vw, 1.8rem);
  font-weight: 500;
  padding    : 15px 0px;
  background : #FFF;
  display    : inline-block;
  border-left: 15px solid #EC7820;
  display    : flex;
  align-items: center;
  box-shadow   : 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  color: #514e4e;
  height: 60px;
  width    : 100%;
  min-width: 250px;
  left     : 2.5%;
  cursor: pointer;
}
.child_violence_ttl::before {
  content        : "";
  display        : inline-block;
  width          : 40px;
  height         : 44px;
  background     : url(../assets/img/under/violence.svg) no-repeat;
  background-size: 100%;
  margin         : 0 15px;
}
.child_emotion_ttl {
  font-size  : clamp(1.6rem, 3vw, 1.8rem);
  font-weight: 500;
  padding    : 15px 0px;
  background : #FFF;
  display    : inline-block;
  border-left: 15px solid #FFBF1F;
  display    : flex;
  align-items: center;
  box-shadow   : 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  color: #514e4e;
  height: 60px;
  width    : 100%;
  min-width: 250px;
  left     : 2.5%;
  cursor: pointer;
}
.child_emotion_ttl::before {
  content        : "";
  display        : inline-block;
  width          : 40px;
  height         : 44px;
  background     : url(../assets/img/under/emotion.svg) no-repeat;
  background-size: 100%;
  margin         : 0 15px;
}
.child_management_ttl {
  font-size  : clamp(1.6rem, 3vw, 1.8rem);
  font-weight: 500;
  padding    : 15px 0px;
  background : #FFF;
  display    : inline-block;
  border-left: 15px solid #30B72B;
  display    : flex;
  align-items: center;
  box-shadow   : 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  color: #514e4e;
  height: 60px;
  width    : 100%;
  min-width: 250px;
  left     : 2.5%;
  cursor: pointer;
}
.child_management_ttl::before {
  content        : "";
  display        : inline-block;
  width          : 40px;
  height         : 44px;
  background     : url(../assets/img/under/management.svg) no-repeat;
  background-size: 100%;
  margin         : 0 15px;
}
.child_learning_ttl {
  font-size  : clamp(1.6rem, 3vw, 1.8rem);
  font-weight: 500;
  padding    : 15px 0px;
  background : #FFF;
  display    : inline-block;
  border-left: 15px solid #0D9BB2;
  display    : flex;
  align-items: center;
  box-shadow   : 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  color: #514e4e;
  height: 60px;
  width    : 100%;
  min-width: 250px;
  left     : 2.5%;
  cursor: pointer;
}
.child_learning_ttl::before {
  content        : "";
  display        : inline-block;
  width          : 40px;
  height         : 44px;
  background     : url(../assets/img/under/learning.svg) no-repeat;
  background-size: 100%;
  margin         : 0 15px;
}
.child_language_ttl {
  font-size  : clamp(1.6rem, 3vw, 1.8rem);
  font-weight: 500;
  padding    : 15px 0px;
  background : #FFF;
  display    : inline-block;
  border-left: 15px solid #1751A9;
  display    : flex;
  align-items: center;
  box-shadow   : 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  color: #514e4e;
  height: 60px;
  width    : 100%;
  min-width: 250px;
  left     : 2.5%;
  cursor: pointer;
}
.child_language_ttl::before {
  content        : "";
  display        : inline-block;
  width          : 40px;
  height         : 44px;
  background     : url(../assets/img/under/language.svg) no-repeat;
  background-size: 100%;
  margin         : 0 15px;
}
.child_friend_ttl {
  font-size  : clamp(1.6rem, 3vw, 1.8rem);
  font-weight: 500;
  padding    : 15px 0px;
  background : #FFF;
  display    : inline-block;
  border-left: 15px solid #7010C4;
  display    : flex;
  align-items: center;
  box-shadow   : 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  color: #514e4e;
  height: 60px;
  width    : 100%;
  min-width: 250px;
  left     : 2.5%;
  cursor: pointer;
}
.child_friend_ttl::before {
  content        : "";
  display        : inline-block;
  width          : 40px;
  height         : 44px;
  background     : url(../assets/img/under/friend.svg) no-repeat;
  background-size: 100%;
  margin         : 0 15px;
}
.child_body_ttl {
  font-size  : clamp(1.6rem, 3vw, 1.8rem);
  font-weight: 500;
  padding    : 15px 0px;
  background : #FFF;
  display    : inline-block;
  border-left: 15px solid #050404;
  display    : flex;
  align-items: center;
  box-shadow   : 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  color: #514e4e;
  height: 60px;
  width    : 100%;
  min-width: 250px;
  left     : 2.5%;
  cursor: pointer;
}
.child_body_ttl::before {
  content        : "";
  display        : inline-block;
  width          : 40px;
  height         : 44px;
  background     : url(../assets/img/under/body.svg) no-repeat;
  background-size: 100%;
  margin         : 0 15px;
}
.p-game_top_date_keyword {
  display        : flex;
  align-items    : flex-start;
  justify-content: space-between;
}
.p-game_top_date_keyword_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width          : 100%;
  margin-bottom  : 20px;
  margin-left: auto;
  margin-right: auto;
}
.p-game_top_date_keyword_item::after,
.p-game_top_date_keyword_item::before {
  content: "";
  display: block;
  height : 0;
}
.p-game_top_date_keyword_item::before {
  order: 1;
}
.p-game_top_date_keyword_item li a{
  font-size: 1.4rem;
  font-weight    : 500;
  width: 90%;
  border: solid 0.5px #acacac;
  border-radius  : 20px;
  box-shadow     : 2px 1px 1px 0px rgba(255, 255, 255, 0.4);
  padding        : 8px 15px;
  background-color: #fff;
  display        : flex;
  align-items    : center;
  justify-content: center;
  margin         : 0 auto 15px auto;
  color: #373636;
  height: 35px;
}
.p-game_top_date_keyword_item li a::before{
  content: "# ";
  color:#ff006f;
  font-weight: bold;
}
.p-game_top_date_keyword_item li a:hover {
  filter    : opacity(70%);
}
.p-game_top_date_keyword_item li :active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform : translateY(2px);
}
.keyword_select_box {
  transition : all .3s;
  visibility : hidden;
  z-index    : -1;
  opacity    : 0;
  position   : absolute;
  width      : 100%;
  max-width  : 650px;
  margin-left: 0;
  transform  : translatey(-10%);
}
.keyword_select_box.active {
  visibility: visible;
  transition: all .3s;
  z-index   : 10;
  opacity   : 1;
  width     : 100%;
  max-width : 650px;
  transform : translateY(0);
  position  : static;
}
@media screen and (max-width: 1024px) {
  .keyword_select_box,
  .keyword_select_box.active {
    max-width: 1024px;
  }
}

.top4_button {
  box-shadow   : 3px 3px 3px lightgrey;
  border-radius: 3%;
}
.top4_button:hover {
  opacity   : 0.7;
}
.top4_button:active {
  opacity   : 0.7;
  transform : translateY(2px);
}
.problem_select_box{
  width: 45%;
  margin: auto 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 10px;
  box-shadow   : 3px 3px 3px lightgrey;
  cursor: pointer;
}
.problem_select_box:hover {
  opacity   : 0.7;
}
.problem_select_box:active {
  opacity   : 0.7;
  transform : translateY(2px);
}
.top_recommended_keyword {
  display        : flex;
  align-items    : flex-start;
  justify-content: space-between;
}
.top_recommended_keyword_item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width          : 100%;
  margin-bottom  : 0px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}
.top_recommended_keyword_item::after,
.top_recommended_keyword_item::before {
  content: "";
  display: block;
  height : 0;
}
.top_recommended_keyword_item::before {
  order: 1;
}
.top_recommended_keyword_item li a{
  font-size: 1.4rem;
  font-weight    : 500;
  width: 90%;
  border: solid 0.5px #acacac;
  border-radius  : 20px;
  box-shadow     : 2px 2px 5px 0px rgba(255, 255, 255, 0.4);
  padding        : 8px 15px;
  background: linear-gradient(#fff,#fdf9cb);
  display        : flex;
  align-items    : center;
  justify-content: center;
  margin         : 0 auto 15px auto;
  color: #535353;
  height: 35px;
}
.top_recommended_keyword_item li a::before{
  content: "# ";
  color:#ff006f;
  font-weight: bold;
}
.top_recommended_keyword_item li a:hover {
  filter    : opacity(70%);
}
.top_recommended_keyword_item li :active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform : translateY(2px);
}
.top_recommended_icon_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  width: 90%;
  margin: 20px auto 0px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
.top_recommended_icon_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  width: 90%;
  margin: 10px auto 0px;
  padding-bottom: 20px;
}
}

.top_recommended_icon_list img{
  border-radius: 15%;
}
.top_recommended_icon_list img:hover{
  filter    : brightness(70%);
  opacity   : 0.7;
  transform: scale(1.02);
  transition: transform 0.2s ease;  
}
.top_recommended_icon_list img:active{
  filter    : brightness(70%);
  opacity   : 0.7;
  transform : translateY(2px);
}

.top_recommended_icon_item img{
  width: 100%;
  aspect-ratio: 1/1;
  margin: auto auto;
}
.progress {
  background: #FFBF1F;
  padding   : 30px 5% 30px;
  height: 400px;
}
  .progress_contents {
  background   : #fff;
  padding      : 22px 8% 35px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .progress {
      padding : 30px 5% 30px;
  }
}
@media screen and (max-width: 767px) {
  .progress_contents {
    padding: 35px 30px 45px;
  }
}
@media screen and (max-width: 600px) {
  .progress {
      padding : 22px 8% 35px;
  }
}
input[type="checkbox"] {
  display: none;
}
label {
  color: #7e7e7e;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: solid 1px #d2d2d2;
  transition: 0.25s;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 1.4rem;
  margin: 0px;
}
input[type="checkbox"]:checked + label {
  background: #7e7e7e;
  color: #fff;
}

.img_title{
  font-size: 2.5rem;
  margin: auto auto;
  letter-spacing:2px;
  font-weight: bold;
}


@media screen and (max-width: 1024px) {
  .img_title{
    font-size: 3.0rem;
    margin: auto auto;
    letter-spacing:2px;
  }
}
@media screen and (max-width: 767px) {
  .img_title{
    font-size: 2.5rem;
    margin: auto auto;
    letter-spacing:1px;
  }
}
@media screen and (max-width: 600px) {
  .img_title{
    font-size: 2.0rem;
    margin: auto auto;
    letter-spacing:1px;
  }
}
@media screen and (max-width: 500px) {
  .img_title{
    font-size: 1.9rem;
    margin: auto auto;
    letter-spacing:1px;
  }
}
@media screen and (max-width: 400px) {
  .img_title{
    font-size: 1.8rem;
    margin: auto auto;
    letter-spacing:1px;
  }

}
@media screen and (max-width: 350px) {
  .img_title{
    font-size: 1.8rem;
    margin: auto auto;
    letter-spacing:1px;
  }
}




/* =========================
  画像＋文字の全体枠
========================= */
.hero{
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;

  /* 768px以上は21:9 */
  aspect-ratio: 21 / 9;
}

/* 768px以下は16:9 */
@media screen and (max-width: 768px){
  .hero{
    aspect-ratio: 16 / 9;
  }
}

/* スマホは1:1 */
@media screen and (max-width: 600px){
  .hero{
    aspect-ratio: 16 / 9;
  }
}

/* =========================
  画像
========================= */
.hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
  文字のエリア（白背景で読みやすく）
========================= */
.hero__text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  height: 90%;
  /* ここが読みやすさの肝 */
  background: rgba(255, 255, 255, 0.88);
  padding: 18px 22px;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);

  /* ★ここを追加 */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* 上下中央 */
  align-items: center;      /* 左右中央 */

  /* 文字が長くても潰れない 
  max-width: min(92%, 680px);*/
}

/* 画面が狭い時は少し下に 
@media screen and (max-width: 600px){
  .hero__text{
    top: 62%;
    padding: 14px 16px;
    border-radius: 12px;
  }
}*/

/* =========================
  タイトル類
========================= */
.top_img_title{
  font-size: 3rem;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: #222;
}

.koekake_sub_title{
  font-size: 2rem;
  letter-spacing: 1px;
  margin-top: 14px;
  line-height: 1.8;
  color: #333;
  margin: 14px 0 0;
}

/* =========================
  レスポンシブ調整
  （あなたの既存より整理してスッキリ）
========================= */
@media screen and (max-width: 1024px){
  .top_img_title{ font-size: 2.8rem; }
  .koekake_sub_title{ font-size: 1.8rem; }
}

@media screen and (max-width: 767px){
  .top_img_title{ font-size: 2.3rem; }
  .koekake_sub_title{ font-size: 1.6rem; }
}

@media screen and (max-width: 500px){
  .top_img_title{ font-size: 1.9rem; }
  .koekake_sub_title{ font-size: 1.35rem; line-height: 1.6; }
}

@media screen and (max-width: 400px){
  .top_img_title{ font-size: 1.7rem; }
  .koekake_sub_title{ font-size: 1.15rem; }
}










.instagram img{
  border-radius: 10px;  
}
.instagram :hover{
  filter: brightness(120%);  
}
.instagram :active{
  filter: brightness(120%);  
}

.table_design{
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: bold;
  font-size: 2rem;
  color: #878585;
}

 @media (max-width: 768px) {
.table_design{
  font-size: 1.6rem;
}
}

 @media (max-width: 500px) {
.table_design{
  font-size: 1.4rem;
}
}

.table_design td {
  border: solid 1px #cdcdcd;
  border-width: 1px 0px 1px 0px;
  text-align: center;
  line-height: 4em;
}
.table_design td a {
    display: block;
    width: 100%;
    height: 100%;
}
.table_design td:hover{
    background-color: #ffbf1f;
}

.facility-card {
   display: flex;
  flex-direction: column;
  align-items: flex-start;
   justify-content: space-between;
   padding: 15px;
   border: 1px solid #ddd;
   border-radius: 10px;
   background-color: #fff;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   margin-bottom: 15px;
   text-decoration: none; /* リンクの下線を消す */
   color: #333;           /* テキスト色を指定 */
 }

 .facility-card:hover {
   background-color: #f9f9f9; /* ホバー時の背景色 (任意) */
 }

 .facility-card-info {
   flex: 1;
 }

 .facility-card-title {
   font-size: 18px;
   font-weight: bold;
   margin-bottom: 5px;
 }

 .facility-card-details {
   font-size: 14px;
   color: #666;
 }

 .facility-card-image {
     width: 100%;
     height: auto;
     margin-top: 10px;
     margin-left: 0;
 }

 .p-main-header__info-flex {
   display: flex;
   flex: 1;
   flex-wrap: wrap;
   gap: 1.3rem;
}
 .p-main-header__info-dd {
   border-radius: 0.3rem;
   box-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.1607843137);
   color: #fff;
   padding: 0.66rem 1.5rem;
   margin-top: 5px;
}
.p-main-header__info-dd.--yellow {
   background: #ffbf1f;
}

 @media (max-width: 1024px) {
   .facility-card {
     flex-direction: row;
     align-items: center;
   }
   .facility-card-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-left: 15px;
   }
   .p-main-header__info-flex {
      gap: 1.3rem;
   }
   .p-main-header__info-dd {
      padding: 0.66rem 1.5rem;
   }
 }



 @media (max-width: 600px) {
   .facility-card {
     flex-direction: column;
     align-items: flex-start;
   }
   .facility-card-image {
     width: 100%;
     height: auto;
     margin-top: 10px;
     margin-left: 0;
   }
   .p-main-header__info-flex {
      gap: 0.6rem;
   }
   .p-main-header__info-dd {
      padding: 0.3rem 0.7rem;
   }
 }


 
.l-bgIvy {
  background: #fff;
}

/*
 * fv
 * -------------------------------------------------------------
 */

.fv {
  background: #fff;
  padding: 4rem 0 0;
  position: relative;
}

.fv__inner {
    flex-direction: column;
    max-width: 100%;
}

.fv__left {
  flex: 1;
  max-width: 48rem;
  min-width: 24rem;
}

.fv__ttl {
  align-items: center;
  background: #483400;
  border-radius: 3.5rem;
  color: #fff;
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  height: 7rem;
  justify-content: center;
  letter-spacing: 0.03em;
  padding: 0 2rem;
  position: relative;
  transform: rotate(-3deg);
   width: 90%;
   margin: auto ;
}

.fv__ttl span {
  color: #FFBF1F;
}

.fv__ttl::after {
  background: url(../assets/img/lp/sankaku.webp) no-repeat center/100%;
  bottom: -1.4rem;
  content: "";
  display: block;
  height: 1.6rem;
  left: 16.6rem;
  position: absolute;
  width: 1.5rem;
}

.fv__text {
  width: 80%;
  margin: 4rem auto 0 ;  
}

.fv__chips {
  width: 80%;
  margin: 5.2rem auto 3rem;

}

.fv__cta {
  margin-top: 5rem;
}

.fv__right {
  max-width: 63rem;
  position: relative;
  top: -1rem;
  width: 80%;
  margin: 0 auto 3rem;

}

.c-cta {
  align-items: center;
  background: #ff006f;
  border-radius: 8rem;
  color: #fff;
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  gap: 3rem;
  letter-spacing: 0.08em;
  max-width: 48rem;
  padding: 1.5rem;
  width: 80%;
  margin: 4rem auto 3rem;
}
.c-cta::before {
  background: url(../assets/img/lp/btn.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 4.2rem;
  width: 4.2rem;
}

.c-cta:hover {
  opacity: 0.5;
  transform: translateY(0.5rem);
}

@media screen and (max-width: 1024px) {

   .l-bgIvy {
   background: #ffffff;
   }

  .fv {
    padding-top: 8vw;
    border-radius: 5px;
    margin: 0 10px 0 ;
  }

  .fv__inner {
    flex-direction: column;
    gap: 5.33vw;
    max-width: 100%;
    padding: 0 2vw;
  }

  .fv__left {
    display: contents;
  }

  .fv__ttl {
    border-radius: 9.33vw;
    font-size: 4.0vw;
    height: 12.27vw;
    order: 1;
    padding: 0 1.8rem;
   width: 96%;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .fv__ttl {
    font-size: 5vw;
    padding: 0 3.5vw;
  }

  .fv__ttl::after {
    bottom: -2.6vw;
    height: 2.93vw;
    left: 46.93vw;
    width: 2.67vw;
  }

  .fv__text {
    order: 2;
    width: 96%;
    margin: 5vw auto 5vw;
  }

  .fv__chips {
    margin: 5vw auto 5vw;
    width: 96%;
    order: 3;
  }

  .fv__cta {
    border-radius: 9.6vw;
    font-size: 5.87vw;
    margin-top: 2.67vw;
    max-width: 100%;
    order: 5;
    padding: 4vw;
  }

  .fv__cta::before {
    height: 8.33vw;
    width: 8.33vw;
  }

  .fv__right {
    order: 4;
   margin: 5vw auto 5vw;
    width: 96%;
  }
  .c-cta {
    /*border-radius: 3.6rem;*/
    font-size: 4rem;
    gap: 15rem;
    max-width: 100rem;
    width: 90%;
  }

  .c-cta::before {
    height: 3.2rem;
    width: 3.2rem;
  }

}

@media screen and (max-width: 900px) {
  .c-cta {
    gap: 13rem;
  }
}

@media screen and (max-width: 800px) {
  .c-cta {
    gap: 9rem;
  }
}

@media screen and (max-width: 700px) {
  .c-cta {
    font-size: 3rem;
    gap: 7rem;
  }
}

@media screen and (max-width: 600px) {
  .c-cta {
    font-size: 2.2rem;
    gap: 7rem;
  }
}

@media screen and (max-width: 500px) {
  .c-cta {
    font-size: 2.2rem;
    gap: 5rem;
  }
}

@media screen and (max-width: 450px) {
  .c-cta {
    font-size: 2rem;
    gap: 3.5rem;
  }
}

@media screen and (max-width: 400px) {
  .c-cta {
    font-size: 1.8rem;
    gap: 3rem;
  }
}


/* =========================
  声かけレシピ導線ブロック
========================= */

.recipe-entry {
  width: min(1100px, 90%);
  margin: 50px auto 40px;
}

/* タイトル行 */
.recipe-entry__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.recipe-entry__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #6a6a6a;
}

.recipe-entry__icon img {
  width: 30px;
  height: 30px;
}

.recipe-entry__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6a6a6a;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 8px;
}

/* タイトル下の黄色線 */
.recipe-entry__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 520px;
  max-width: 70vw;
  height: 5px;
  background: #ffbf1f;
  border-radius: 999px;
}

/* カード全体 */
.recipe-entry__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

/* 768以下で縦並び */
@media (max-width: 768px) {
  .recipe-entry__cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .recipe-entry__title {
    font-size: 2.0rem;
  }

  .recipe-entry__title::after {
    width: 280px;
  }
}

/* =========================
  カード
========================= */

.recipe-card {
  text-decoration: none;
  color: inherit;
}

.recipe-card__inner {
  border: 2px solid #ffb97a;
  background: #fff7e8;
  border-radius: 20px;
  padding: 28px 22px 26px;
  min-height: 220px;

  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;

  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.recipe-card:hover .recipe-card__inner {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

/* 上のラベル */
.recipe-card__label {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #6a6a6a;
}

/* 点線の行 */
.recipe-card__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  overflow: hidden;
  padding: 6px 0 2px;
}

.recipe-card__dots span {
  width: 7px;
  height: 7px;
  background: #ffbf1f;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.95;
}

/* ボタン */
.recipe-card__btn {
  margin: 0 auto;
  width: min(380px, 88%);
  height: 68px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffbf1f;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;

  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  transition: filter 0.18s ease, transform 0.18s ease;
}

.recipe-card:hover .recipe-card__btn {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

/* スマホで少し詰める */
@media (max-width: 480px) {
  .recipe-card__inner {
    padding: 22px 18px 22px;
    min-height: 170px;
  }

  .recipe-card__label {
    font-size: 1.8rem;
  }

  .recipe-card__btn {
    height: 40px;
    font-size: 2.0rem;
  }
}

/* podcast紹介部分 */
.podcast-list {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  margin: 0px auto 40px;
  width: 90%;
}

/* カード（aタグ） */
.podcast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;

  background: #fff;
  border-radius: 20px;
  padding: 24px 20px 28px;
  max-width: 420px;
  width: 100%;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* カード全体ホバー */
.podcast-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* 画像エリア（上・中央） */
.podcast-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/* 画像 */
.podcast-image img {
  width: 300px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  box-shadow: 5px 5px 5px rgb(166, 166, 166);
}

/* タイトル */
.podcast-card h3 {
  font-size: 18px;
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.5;
  font-weight: bold;
}

/* 説明文 */
.podcast-card p {
  font-size: 14px;
  color: #555;
  text-align: left;
  line-height: 1.7;
}

/* =========================
   レスポンシブ（スマホ）
========================= */
@media (max-width: 768px) {
  .podcast-list {
    flex-direction: column;
    gap: 24px;
  }

  .podcast-card {
    padding: 20px 16px 24px;
    margin: 0 auto;
  }

  .podcast-image img {
    width: 300px;
  }
}


@media (max-width: 350px) {
.podcast-card p {
  font-size: 10px;
}
}



/* ===== Podcast LP追加 ===== */

/* ===== タイトル ===== */

.podcast-title {
    text-align: center;
    padding-top: 18px;
}

.podcast-main-title {
    font-size: 4.8rem;
    line-height: 1.5;
    font-weight: 700;
    color: #222;
    margin: 0;
    letter-spacing: 0.03em;
}

.podcast-sub-title {
    font-size: 2.7rem;
    color: #444;
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.podcast-intro {
    font-size: 2.3rem;
    color: #666;
    margin-top: 10px;
}


/* ===== ヒーローエリア ===== */

.podcast-hero {
    padding-top: 34px;
}

.podcast-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.podcast-catch {
    font-size: 4.2rem;
    line-height: 3.4;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.podcast-description {
    font-size: 2.7rem;
    line-height: 4;
    color: #333;
    margin-top: 22px;
    font-weight: 500;
}


/* ===== ポイント（3つの理由） ===== */

.podcast-points {
    display: inline-block;
    text-align: left;
    margin-top: 22px;
}

.podcast-points p {
    font-size: 2.44rem;
    line-height: 2;
    color: #333;
    margin: 0;
    font-weight: 500;
}


/* ===== CTA ===== */

.podcast-cta-wrap {
    margin-top: 28px;
}

.podcast-cta {
    display: inline-block;
    background: #ffbf1f;
    color: #222;
    font-size: 2.7rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    padding: 18px 36px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
}

.podcast-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}



@media (max-width: 768px) {
    .podcast-main-title {
        font-size: 3.6rem;
    }
    .podcast-sub-title {
        font-size: 2.0rem;
    }
    .podcast-intro {
        font-size: 1.8rem;
    }
    .podcast-catch {
        font-size: 3.0rem;
        line-height: 2.0;
    }
    .podcast-description {
        font-size: 2.0rem;
        line-height: 3;
    }
    .podcast-points p {
        font-size: 2.0rem;
    }
    .podcast-cta {
        font-size: 2.0rem;
        padding: 14px 24px;
    }
}

/* ===== タブレット ===== */

@media (max-width: 600px) {
    .podcast-main-title {
        font-size: 3.0rem;
    }
    .podcast-sub-title {
        font-size: 1.6rem;
    }
    .podcast-intro {
        font-size: 1.4rem;
    }    
    .podcast-catch {
        font-size: 2.5rem;
        line-height: 2.0;
    }
    .podcast-description {
        font-size: 1.6rem;
        line-height: 3;
    }
    .podcast-points p {
        font-size: 1.5rem;
    }
    .podcast-cta {
        font-size: 1.3rem;
        padding: 14px 24px;
    }
}


/* ===== スマホ調整 ===== */

@media (max-width: 480px) {

    .podcast-main-title {
        font-size: 2rem;
    }
    .podcast-sub-title {
        font-size: 1.1rem;
    } 
    .podcast-intro {
        font-size: 1.0rem;
    }    
    .podcast-catch {
        font-size: 1.7rem;
    }
    .podcast-description {
        font-size: 1.2rem;
    }
    .podcast-points p {
        font-size: 1.1rem;
    }
    .podcast-cta {
        font-size: 1.2rem;
        padding: 14px 24px;
    }
}


/* ===== 人気エピソード ===== */

.podcast-popular {
    padding: 56px 20px 0;
}

.podcast-popular-inner {
    width: 100%;
    margin: 30px auto;
}

.podcast-section-title {
    text-align: center;
    margin: 0 0 30px;
    line-height: 1.4;
    font-size: 2.7rem;
}

.podcast-section-title-accent {
    color: #ff6b6b;
    font-weight: 700;
    margin-right: 10px;
}

.podcast-section-title-main {
    color: #222;
    font-weight: 700;
}

.podcast-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.podcast-episode-card {
    background: rgba(255, 191, 31, 0.15);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-episode-thumb-wrap {
    position: relative;
    padding: 0px 0px 0;
}

.podcast-episode-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}

.podcast-episode-icon-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.podcast-episode-icon-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.podcast-episode-body {
    padding: 12px 14px 16px;
}

.podcast-episode-title {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #222;
    font-weight: 700;
    margin: 0;
    /*min-height: 5.2em;*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* ← 2行まで表示 */
    overflow: hidden;

}

.podcast-episode-time {
    font-size: 1.1rem;
    color: #8b7f67;
    margin: 4px 0 7px;
    line-height: 1.4;
}

.podcast-episode-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d8cfba;
    color: #222;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
    width: 100%;
}

.podcast-episode-btn:hover {
    background: #fff8e8;
    transform: translateY(-1px);
}
/* デフォルト（PC・タブレット）では非表示 */
.fourth_card {
    display: none;
}


/* ===== タブレット ===== */

@media (max-width: 768px) {
    .podcast-card-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .fourth_card {
        display: block;
    }
}


/* ===== スマホ ===== */

@media (max-width: 560px) {
    .podcast-popular {
        padding: 30px 14px 0;
    }

    .podcast-section-title-accent,
    .podcast-section-title-main {
        display: inline-block;
        font-size: 1.8rem;
    }
    
    .podcast-card-list {
        /*grid-template-columns: 1fr;*/
        gap: 8px;
    }

    .podcast-episode-title {
        font-size: 1.25rem;
        min-height: auto;
    }

    .podcast-episode-icon-badge {
        width: 48px;
        height: 48px;
        top: 20px;
        left: 20px;
    }
}

/* ===== 人気エピソード：再生リンク ===== */

.podcast-episode-platforms {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.podcast-episode-card.is-open .podcast-episode-platforms {
    max-height: 160px;
    margin-top: 10px;
}

.podcast-episode-platforms-inner {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex-direction: column;
}

.podcast-platform-link {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 6px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.podcast-platform-link:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.podcast-platform-link--spotify {
    background: #1db954;
}

.podcast-platform-link--apple {
    background: #a55eea;
}

.podcast-platform-link--youtube {
    background: #ff0000;
}



/* ===== お悩みで選ぶ ===== */

.podcast-category {
    padding: 56px 20px 0;
}

.podcast-category-inner {
    width: 100%;
    margin: 30px auto;
}

.podcast-category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 28px;
}

.podcast-category-tab {
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.podcast-category-tab:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.podcast-category-tab:nth-child(1) {
    background: #ff6a3d;
}

.podcast-category-tab:nth-child(2) {
    background: #f7b500;
}

.podcast-category-tab:nth-child(3) {
    background: #16b6b1;
}

.podcast-category-tab:nth-child(4) {
    background: #ef9aa7;
}

.podcast-category-tab.is-active {
    outline: 3px solid rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.podcast-category-panel {
    display: none;
}

.podcast-category-panel.is-active {
    display: block;
}


/* ===== リスト部分 ===== */

.podcast-list-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.podcast-list-item {
    background: #fffdf7;
    border: 1px solid #efe6d2;
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

.podcast-list-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.podcast-list-thumb-wrap {
    position: relative;
    width: 108px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #eee;
}

.podcast-list-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.podcast-list-icon-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.podcast-list-icon-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.podcast-list-content {
    flex: 1;
    min-width: 0;
}

.podcast-list-title {
    font-size: 1.45rem;
    line-height: 1.5;
    color: #222;
    font-weight: 700;
    margin: 0;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-list-time {
    font-size: 1.15rem;
    color: #7a7a7a;
    margin: 6px 0 0;
}

.podcast-list-toggle {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f7b500;
    color: #222;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.podcast-list-toggle:hover {
    background: #f2ab00;
    transform: translateY(-1px);
}

.podcast-list-toggle.is-open {
    background: #222;
    color: #fff;
}

/* ===== 展開メニュー ===== */

.podcast-list-platforms {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #efe6d2;
}

.podcast-list-platforms.is-open {
    display: block;
}

.podcast-list-platforms-inner {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.podcast-platform-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.podcast-platform-link:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.podcast-platform-link--spotify {
    background: #1db954;
    color: #fff;
}

.podcast-platform-link--apple {
    background: #f3f0ff;
    color: #5f35d6;
    border: 1px solid #ddd6ff;
}

.podcast-platform-link--youtube {
    background: #ffeded;
    color: #d92323;
    border: 1px solid #ffd0d0;
}


/* ===== 768px未満の調整 ===== */

@media (max-width: 768px) {
    .podcast-category {
        padding: 30px 14px 0;
    }

    .podcast-category-tabs {
        gap: 8px;
        margin-bottom: 18px;
    }

    .podcast-category-tab {
        font-size: 1.1rem;
        padding: 9px 16px;
    }

    .podcast-list-item {
        padding: 10px;
    }

    .podcast-list-row {
        gap: 10px;
    }

    .podcast-list-thumb-wrap {
        width: 92px;
        height: 64px;
    }

    .podcast-list-title {
        font-size: 1.28rem;
    }

    .podcast-list-time {
        font-size: 1.05rem;
    }

    .podcast-list-toggle {
        min-width: auto;
        padding: 8px 10px;
        font-size: 1.05rem;
    }

    .podcast-list-platforms-inner {
        justify-content: flex-start;
    }

    .podcast-platform-link {
        min-width: 138px;
        font-size: 1rem;
        padding: 9px 12px;
    }
}

@media (max-width: 560px) {
    .podcast-category-tab {
        font-size: 1rem;
        padding: 8px 14px;
    }

    .podcast-list-row {
        align-items: flex-start;
    }

    .podcast-list-toggle {
        align-self: center;
        padding: 8px 9px;
        font-size: 1rem;
    }

    .podcast-list-platforms-inner {
        flex-direction: column;
        gap: 8px;
    }

    .podcast-platform-link {
        width: 100%;
        min-width: 0;
    }
}


/* NEWバッジ */
.podcast-new-badge {
    display: inline-block;
    background: #ff3b30;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    margin-right: 6px;
    vertical-align: middle;
}

/* 少し目立たせる（アニメーション） */
.podcast-new-badge {
    animation: newPulse 1.6s infinite;
}

@keyframes newPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}



/* =========================================
   声かけレシピ集セクション
========================================= */

.podcast-recipe-link {
    padding: 56px 20px 0;
}

.podcast-recipe-link-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 34px 0 0;
    border-top: 1px solid #d9ccb3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.podcast-recipe-image-wrap {
    position: relative;
    flex: 0 0 48%;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.podcast-recipe-image {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.podcast-recipe-content {
    flex: 0 0 46%;
}

.podcast-recipe-title {
    margin: 0;
    font-size: 2.9rem;
    line-height: 1.55;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
}

.podcast-recipe-title span {
    color: #ef5b5b;
}

.podcast-recipe-text {
    margin: 34px 0 0;
    font-size: 1.45rem;
    line-height: 1.95;
    font-weight: 500;
    color: #222;
}

.podcast-recipe-text-strong {
    margin-top: 34px;
    font-size: 1.55rem;
    line-height: 1.8;
    font-weight: 700;
    color: #111;
}

.podcast-recipe-cta-wrap {
    margin-top: 34px;
}

.podcast-recipe-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 0 44px;
    border-radius: 999px;
    background: #ffbf1f;
    color: #111;
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.podcast-recipe-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
    opacity: 0.98;
}


/* --- 画像中央の白半透明エリア --- */

.podcast-recipe-image-wrap .playlist-image-overlay,
.podcast-facility-image-wrap .playlist-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.podcast-recipe-image-wrap .playlist-image-overlay-box,
.podcast-facility-image-wrap .playlist-image-overlay-box {
    width: 90%;
    height: 80%;
    background: rgba(255, 255, 255, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.podcast-recipe-image-wrap .playlist-image-logo,
.podcast-facility-image-wrap .playlist-image-logo {
    font-size: clamp(2.8rem, 5.2vw, 5.2rem);
    line-height: 1;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
}

.podcast-recipe-image-wrap .playlist-image-logo-l,
.podcast-facility-image-wrap .playlist-image-logo-l {
    color: #ff006f;
}

.podcast-recipe-image-wrap .playlist-image-logo-i,
.podcast-facility-image-wrap .playlist-image-logo-i {
    color: #ffbf1f;
}

.podcast-recipe-image-wrap .playlist-image-subtext,
.podcast-facility-image-wrap .playlist-image-subtext {
    margin-top: 10px;
    font-size: clamp(1.4rem, 2vw, 2.6rem);
    line-height: 1.3;
    font-weight: 700;
    color: #111;
}


/* =========================================
   療育施設セクション
========================================= */

.podcast-facility-link {
    padding: 58px 20px 0;
}

.podcast-facility-link-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 34px 0 0;
    border-top: 1px solid #d9ccb3;
}

.podcast-facility-title {
    margin: 0;
    text-align: center;
    font-size: 2.9rem;
    line-height: 1.45;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
}

.podcast-facility-lead {
    margin: 46px 0 0;
    text-align: center;
    font-size: 1.45rem;
    line-height: 1.95;
    font-weight: 500;
    color: #222;
}

.podcast-facility-content {
    position: relative;
    margin-top: 42px;
    min-height: 360px;
}

.podcast-facility-image-wrap {
    position: relative;
    width: 56%;
    margin-left: auto;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.podcast-facility-image {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.podcast-facility-cta-wrap {
    position: absolute;
    left: 0;
    bottom: 34px;
    width: 56%;
    z-index: 2;
}

.podcast-facility-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    width: 100%;
    padding: 0 28px;
    border-radius: 999px;
    background: #ef9797;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 8px 18px rgba(165, 92, 92, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.podcast-facility-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(165, 92, 92, 0.22);
    opacity: 0.98;
}


/* =========================================
   タブレット
========================================= */

@media (max-width: 1024px) {
    .podcast-recipe-link-inner {
        gap: 32px;
    }

    .podcast-recipe-title {
        font-size: 2.4rem;
    }

    .podcast-recipe-text {
        margin-top: 24px;
        font-size: 1.22rem;
    }

    .podcast-recipe-text-strong {
        margin-top: 24px;
        font-size: 1.32rem;
    }

    .podcast-recipe-cta {
        min-height: 62px;
        padding: 0 32px;
        font-size: 1.55rem;
    }

    .podcast-facility-title {
        font-size: 2.4rem;
    }

    .podcast-facility-lead {
        margin-top: 34px;
        font-size: 1.25rem;
    }

    .podcast-facility-content {
        min-height: 300px;
    }

    .podcast-facility-image-wrap {
        width: 60%;
    }

    .podcast-facility-cta-wrap {
        width: 58%;
        bottom: 24px;
    }

    .podcast-facility-cta {
        min-height: 70px;
        font-size: 1.6rem;
    }
}


/* =========================================
   768px以下
========================================= */

@media (max-width: 768px) {
    .podcast-recipe-link,
    .podcast-facility-link {
        padding: 42px 14px 0;
    }

    .podcast-recipe-link-inner,
    .podcast-facility-link-inner {
        padding-top: 24px;
    }

    .podcast-recipe-link-inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .podcast-recipe-image-wrap,
    .podcast-recipe-content {
        flex: none;
        width: 100%;
    }

    .podcast-recipe-title {
        font-size: 2.4rem;
        width: 90%;
        margin: 0 auto;
    }

    .podcast-recipe-text {
        font-size: 1.4rem;
        line-height: 1.85;
        width: 90%;
        margin: 20px auto 0;
    }

    .podcast-recipe-text-strong {
        margin-top: 20px;
        font-size: 1.4rem;
        line-height: 1.75;
    }

    .podcast-recipe-cta-wrap {
        margin-top: 24px;
    }

    .podcast-recipe-cta {
        width: 100%;
        min-height: 56px;
        padding: 0 18px;
        font-size: 1.25rem;
    }

    .podcast-facility-title {
        font-size: 2rem;
    }

    .podcast-facility-lead {
        margin-top: 24px;
        font-size: 1.08rem;
        line-height: 1.85;
    }

    .podcast-facility-content {
        margin-top: 24px;
        min-height: auto;
        display: flex;
        flex-direction: column-reverse;
        gap: 18px;
    }

    .podcast-facility-image-wrap {
        width: 100%;
        margin-left: 0;
    }

    .podcast-facility-cta-wrap {
        position: static;
        width: 100%;
    }

    .podcast-facility-cta {
        min-height: 56px;
        font-size: 1.25rem;
        padding: 0 18px;
        width: 100%;
    }

    .podcast-recipe-image-wrap,
    .podcast-facility-image-wrap {
        border-radius: 16px;
    }

    .podcast-recipe-image-wrap .playlist-image-overlay-box,
    .podcast-facility-image-wrap .playlist-image-overlay-box {
        width: 90%;
        height: 80%;
    }
}


/* =========================================
   480px以下
========================================= */

@media (max-width: 480px) {
    .podcast-recipe-title,
    .podcast-facility-title {
        font-size: 2.0rem;
    }

    .podcast-recipe-text,
    .podcast-facility-lead {
        font-size: 1.4rem;
    }

    .podcast-recipe-text-strong {
        font-size: 1.4rem;
    }

    .podcast-recipe-cta,
    .podcast-facility-cta {
        font-size: 1.5rem;
    }

    .podcast-recipe-image-wrap .playlist-image-overlay-box,
    .podcast-facility-image-wrap .playlist-image-overlay-box {
        width: 90%;
        height: 80%;
    }

    .podcast-recipe-image-wrap .playlist-image-subtext,
    .podcast-facility-image-wrap .playlist-image-subtext {
        margin-top: 8px;
    }
}






/*Written by Hajime End*/

