@charset "UTF-8";
body.admin-page-slug-catlist .nonenone{
    display: none;
}
#catprofile_section h2{
    font-size: 21px;
}
.catlist_title{
    text-align: center;
}
#catprofile_section p{
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1.7; 
    text-align: justify;
}
.catsenbetu{
    font-weight: bold;
    font-size: 14px;
}
#catprofile_section_table td{
    font-size: 15px;
}
#catprofile_section_table ul li{
    margin-top: 20px;
}
#catprofile_section_table ul li:first-child{
    margin-top: 0;
}
.catprofile_list_wrap{
    margin-top: 70px;
}
.h_scroll{
    display:flex;
    overflow-x:auto;        /* 横スクロール */
    overflow-y:hidden;
    -webkit-overflow-scrolling: touch; /* iOS 慣性 */
    scroll-behavior:smooth; /* アンカー/ボタンで滑らか */
    padding-bottom: 30px;
}
.catprofile_a_article{
    width: 150px;
    min-width: 150px;
    margin-left: 20px;
}
.catprofile_a_article:first-child{
    margin-left: 0;
}
.catprofile_a_article a{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.catprofile_a_article img{
    border-radius: 50%;
    width: 150px;
    height: 150px;
}
.catprofile_a_article figure{
    order: 2;
}
.catprofile_a_article h3{
    text-align: center;
    order: 3;
    margin-top: 10px;
    font-size: 17px;
}
.catprofile_a_article p{
    order: 1;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
}
/* ベース装飾はお好みで */
.status-label{
  font-weight:700;
}

/* sotsugyo のときだけ点滅（穏やかなパルス） */
.status-label.is-sotsugyo{
  animation: status-pulse 1.4s ease-in-out infinite;
    color: #000;
}

/* できるだけ目に優しいパルス */
@keyframes status-pulse{
  0%,100%{ opacity:1 }
  50%    { opacity:.35 }
}

/* ユーザーがアニメーションを抑制している場合は停止 */
@media (prefers-reduced-motion: reduce){
  .status-label.is-sotsugyo{ animation:none }
}

/* 触れている間は停止（読みやすさ向上） */
.status-label.is-sotsugyo:hover{
  animation-play-state: paused;
}
.ct_list li:first-child{
    font-size: 13px;
}
.acf-checkbox-list-a li{
    font-size: 12px;
    border: 1px solid #ccc;
    box-sizing: ;
    padding: 3px;
    margin-right: 5px;
    margin-bottom: 5px;
}
.acf-textarea-o{
    font-size: 15px;
    letter-spacing: 3px;
    line-height: 200%;
    text-align: justify;
    margin-top: 50px;
}
/*//////////////////////////////////////////////////////////////////////////////////////////*/
/*///////企業スライダー///////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////////////////////////*/

/* スライダーの外枠 */
.logo-slider {
    width: 100%;
    position: relative;
}
.pps_wrap{
    overflow: hidden;
}
/* ロゴが並ぶレール */
.logo-track {
    display: flex;
    width: max-content; /* 中身のサイズに合わせる */
    animation: scroll-left 20s linear infinite; /* 速度は秒数で調整 */
}

/* 各ロゴの箱 */
.logo-item {
    flex-shrink: 0;
    width: 150px; /* ロゴの横幅を統一 */
    margin: 0 40px; /* ロゴ同士の余白 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* アニメーションの定義 */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* 全体の半分（1セット分）動いたら戻る */
}

/* マウスを乗せた時に止める（お好みで） */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}
.partners_aside section{
    border-top: solid 2px var(--color-accent);
    border-bottom: solid 2px var(--color-accent);
    position: relative;
    padding: 68px 0 50px
}
.partners_aside h2{
    position: absolute;
    left: 0;
    top: -18px;
    justify-content: center;
}
.partners_aside h2 span{
    background-color: var(--hero-bg, rgba(0, 0, 0, 0.5));
    display: inline-block;
    padding: 0 20px;
}
.partners_aside h2 span strong{
    background:-webkit-linear-gradient(to top,#ccb800 0%,#ccb800 45%,#fffd84 50%,#ebd303 55%,#ebd303 100%);
    background:linear-gradient(to top,#ccb800 0%,#ccb800 45%,#fffd84 50%,#ebd303 55%,#ebd303 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    font-family: serif;
}
.partners_aside p{
    justify-content: flex-end;
}
.partners_aside p a{
    display: block;
    padding: 25px 20px;
    border-radius: 10px;
    position: relative;
}
.partners_aside p a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent var(--color-accenttext) transparent;
}
.partners_aside p a span{
    font-weight: bold;
}
/*事業主協賛スタイル ここまで*/
@media screen and (max-width: 728px) {
    .partners_aside p{
        justify-content: center;
    }
    .partners_aside p a{
        padding: 10px 20px;
    }
    .partners_aside p a::after{
        border-width: 0 0 7px 7px;
        
    }
    
}