
body{
    line-height: 1;
    margin: auto;
}
body.__active{
    height: 100%;
    overflow: hidden;
}
ul {
	padding: 0;
	list-style: none;
}
.box{
    display: flex;
}
.s .box{
    display: block;
}


/* ヘッダー SP時のみ */
header{
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    z-index: 10;
}
.header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 112px;
    background-image: linear-gradient(90deg, rgba(0, 98, 152, 1), rgba(10, 47, 102, 1));
    color: #fff;
    vertical-align: middle;
    position: fixed;
    top: 0;
    padding: 20px 40px 20px 17px;
}
.s .header{
    height: 56px;
    padding-right: 60px;
}

.header_image{
    display: flex;
    justify-content: center;
    align-items: center;
}
.s .logo_menu01{
    width: 42px;
    height: 36px;
    margin-right: 8px;
}
.s .logo_menu02{
    width: 150px;
    height: 10.5px;
}

/* ハンバーガー */
.hamburger{
    position: absolute;
    right: 20px;
    top: 30%;
    width: 30px;
    height: 24.5px;
    background-color: transparent;
    border-color: transparent;
}

.hamburger span{
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: .3s;
    margin-top: 9px;
    background-color: #fff;
}


.hamburger span:nth-child(1){
    margin-top: 0px;
}
.hamburger span:nth-child(3){
    margin-top: 18.5px;
}

/* ヘッダーメニュー */
/* 展開前 */
.header_menu{
    transform: translateX(100%);
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 80%;
    transition: .5s;
    z-index: 102;
    background-color: #000;
}
/* 展開後 */
.overlay.__active{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 101;
    opacity: .6;
    transition: .5s;
}
.header_menu.__active {
    transform: translateX(0);
}

.menu_head{
    text-align: center;
    padding: 10px;
    position: relative;
    margin-bottom: 18px;
}

.menu_head img{
    height: 32px;
    width: auto;
}
.sp_menuList li{
    padding: 17px 0 17px 30px;
    border-bottom: 1px solid #777;
}
.sp_menuList a{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: block;
}
    

/* メニュー閉じるボタン */
.sp-close{
    position: absolute;
    right: 20px;
    transform: translateY(-50%);
}

.sp-close span:first-of-type{
    transform: rotate(45deg);
    top: 24px;
}
.sp-close span:last-of-type{
    transform: rotate(-45deg);
    top: 14px;
}


/* PCスライダー */
.pc_main_gallery{
    width: 45%;
    height: 100vh;
    overflow: hidden;
    position: sticky;
    top: 0;
}
.pc_slider{
    overflow: hidden;
}
.pc_slider li{
    border: none !important;
}
.pc_slider img{
    width: 100%;
}

/* PCスライダーアニメーション */
.pc_main_gallery .pc_slider.__active:nth-child(1){
    animation: roop1 80s -40s infinite linear;
}
.pc_main_gallery .pc_slider.__active:nth-child(2){
    animation: roop2 80s infinite linear;
}

@keyframes roop1 {
    0%{transform: translateY(100%);}
    to{transform: translateY(-100%);}
}
@keyframes roop2 {
    0%{transform: translateY(0%);}
    to{transform: translateY(-200%);}
}


/* SPスライダー */
.sp_main_gallery{
    margin-top: 56px;
    height: 244.5px;
    display: flex;
    overflow: hidden;
}

.sp_slider{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    height: 100%;
    flex: 0 0 auto;
}
.sp_slider div{
    width: auto;
    height: 100%;
    flex: 0 0 auto;
}
.sp_slider img{
    width: auto;
    height: 100%;
}

/* SPスライダーアニメーション */
.sp_main_gallery .sp_slider.__active:nth-child(1){
    animation: roop3 60s -30s infinite linear;
}
.sp_main_gallery .sp_slider.__active:nth-child(2){
    animation: roop4 60s infinite linear;
}

@keyframes roop3 {
    0%{transform: translateX(100%);}
    to{transform: translateX(-100%);}
}
@keyframes roop4 {
    0%{transform: translateX(0%);}
    to{transform: translateX(-200%);}
}


/* コンテンツ */
.content{
    width: 55%;
    margin-bottom: 72px;
}
.s .content{
    width: 100%;
    margin-bottom: 0;
}


/* スクロール矢印 */
.scroll img{
    width: 1%;
    position: absolute;
    right: 1%;
    bottom: 120px;
}


/* トピックス */
.topics{
    flex-direction: column;
    background-image: url(../img/bg_topics.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center top;
    text-align: center;
    padding: 32px 60px 0 60px;
    font-family: 'Noto Sans JP', sans-serif;
}
.s .topics{
    padding: 30px 20px 0 20px;
}

.logo_main{
    width: 76.8%;
    text-align: center;
    margin: 0 auto 32px;
    display: block;
}
.topics_title{
    width: 120px;
}
.s .topics_title{
    width: 65px;
}
.topics_subtitle{
    font-size: 16px;
    font-weight: bold;
    margin-top: 13px;
}
.s .topics_subtitle{
    font-size: 12px;
    font-weight: bold;
    margin-top: 7px;
}

.topics_content{
    width: 100%;
    border: 2.5px solid;
    border-radius: 4px;
    margin-top: 16px;
    padding: 2%;
    display: flex;
    column-gap: 2.5%;
    align-items: center;
    background-color: #fff;
    text-decoration: none;
    color: inherit
}
.s .topics_content{
    border: 2px solid;
    margin-top: 12px;
}

.topics_contentImg{
    width: 20%;
}
.topics_contentImg img{
    max-height: 65px;
    max-width: 100%;
}

.topics_content p{
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.325;
}
.s .topics_content p{
    font-size: 14px;
}

.topics_content:hover p{
    color: #006298;
    transition: .2s;
}

.tag{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 12px;
}
.s .tag{
  margin-top: 4px;
}

.tag_name{
    font-size: 12px;
    font-weight: bold;
    margin-right: 6px;
    border: 2px solid;
    border-radius: 4px;
    padding: 5px;
    margin-top: 3px;
}
.s .tag_name{
    font-size: 10px;
    margin-right: 2px;
    border: 1px solid;
    padding: 2px;
}

#tag_01,
.tag_01{
    color: #616161;
    border-color: #dadada;
}
#tag_02,
.tag_02{
    color: #006298;
}

.banner{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 50px;
}
.s .banner{
  margin-top: 30px;
}
.banner + .banner {
    margin-top: 10px;
}
.banner img{
    width: 100%;
    height: auto;
}
.banner img:hover {
    opacity: .7;
    cursor: pointer;
    transition: .3s;
}

.bannerUnderLogo {
  margin: 0 auto 30px;
  display: block;
  width: 50%;
}
.s .bannerUnderLogo {
  width: 70%;
  max-width: 400px;
}
.bannerUnderLogo:hover {
  opacity: .7;
  transition: opacity .3s;
}
.bannerUnderLogo img {
  width: 100%;
  height: auto;
}

/* 活動一覧 */
.activity{
    padding: 48px 60px 92px 60px;
    flex-direction: column;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    text-decoration: none;
}
.s .activity{
    padding: 30px 20px 40px 20px;
}

.activity a{
    text-decoration: none;
    color: inherit
}

.activity_title{
    width: 147px;
}
.s .activity_title{
    width: 82.5px;
}

.activity_subtitle{
    font-size: 16px;
    font-weight: bold;
    margin-top: 12px;
}
.s .activity_subtitle{
    font-size: 12px;
    margin-top: 7px;
}

.activity_content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 2.7%;
    row-gap: 30px;
    margin-top: 20px;
}
.s .activity_content{
    row-gap: 16px;
    margin-top: 11px;
}

.activity_content::after{
    content: "";
    display: block;
    width: 48.3%;
}
.l .activity_content::after{
    min-width: 250px;
}

.content_card{
    width: 48.3%;
}
.l .content_card{
    min-width: 250px;
}

.content_card img{
    width: 100%;
    height: auto;
}
.content_card:hover > img {
    opacity: .7;
    cursor: pointer;
    transition: .3s;
}
.past {
    pointer-events: none;
}

#activity_tag{
  margin-top: 10px;
  flex-wrap: wrap;
}
.s #activity_tag{
  margin-top: 3px;
}
.activity_tag{
  margin-top: 10px;
}
.s .activity_tag{
  margin-top: 3px;
}

.card_title{
    display: flex;
    text-align: left;
    font-weight: 500;
    margin-top: 16px;
    align-items: center;
    min-height: 48px;
}
.s .card_title{
    margin-top: 6px;
    height: 38px;
}

.card_title h3{
    font-size: 18px;
    line-height: 1.325;
}
.s .card_title h3{
    font-size: 12px;
}

.content_card:hover .card_title {
    color: #016099;
    transition: .3s;
}
.card_title img{
    width: 56px;
    height: auto;
    margin-right: 5px;
    max-width: 100% !important;
}
.s .card_title img{
    width: 35px;
    height: auto;
    margin-right: 3.5px;
    max-width: 100% !important;
}

.content_card p{
    color: #525252;
    font-size: 12px;
    text-align: left;
    margin-top: 11px;
    line-height: 1.538;
}

.moreView{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 2.7%;
    row-gap: 30px;
    margin-top: 30px;
}
.s .moreView{
    row-gap: 16px;
    margin-top: 16px;
}
.moreView::after{
    content: "";
    display: block;
    width: 48.3%;
}
.l .moreView::after{
    min-width: 250px;
}

/* 過去見るボタン */
.more-btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: 220px;
    height: 36px;
    background-color: #000;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    border-radius: 7px;
    transition: .3s;
    border: none;
}
.s .more-btn{
    width: 180px;
    height: 30px;
    margin-top: 23px;
}

.more-btn:hover {
    background-color: #006298;
    border-color: #006298;
    transition: .3s;
}

.more-btn p{
    font-size: 12px;
    color: #fff;
} 

.accordion-btn {
    position: relative;
}
.accordion-btn::after {
    border-right: solid 2px #fff; 
    border-top: solid 2px #fff; 
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 15px;
    top: 11px;
    transform: rotate(135deg);
    width: 8px;
}
.s .accordion-btn::after {
    height: 7px;
    right: 15px;
    top: 9px;
    width: 7px;
}

.accordion-btn._isopen::after{
    top: 45%; 
    transform: rotate(-45deg);
}


/* SC活動とは */
.about{
    font-family: 'Noto Sans JP', sans-serif;
    background-image: url(../img/about_bg.jpg);
    background-size: cover;
    text-align: center;
    padding: 100px 60px 81px 60px;
}
.s .about{
    padding: 40px 20px 40px 20px;
}

.about_title{
    width: 110px;
}
.s .about_title{
    width: 61px;
}

.about_subtitle{
    font-size: 16px;
    font-weight: bold;
    margin-top: 12px;
}
.s .about_subtitle{
    font-size: 12px;
    margin-top: 7px;
}

.about_logo{
    width: 46.5%;
    margin-top: 29px;
}
.s .about_logo{
    width: 49.3%;
    margin-top: 31px;
}

.about_text{
    margin-top: 20px;
    text-align: left;
    font-size: 16px;
    line-height: 2;
}
.s .about_text{
    margin-top: 23px;
    font-size: 14px;
    line-height: 18px;
}

.figure{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about_img01{
    width: 64.6%;
    margin-top: 39px;
}
.s .about_img01{
    width: 68.4%;
    margin-top: 29px;
}

.about_arrow01{
    width: 4.6%;
    margin-top: 19px;
}
.s .about_arrow01{
    width: 5%;
    margin-top: 10.5px;
}

.about_img02{
    width: 100%;
    margin-top: 20px;
}
.s .about_img02{
    margin-top: 11px;
}

.about_arrow02{
    width: 4.6%;
    margin-top: 21px;
}
.s .about_arrow02{
    width: 5%;
    margin-top: 11.5px;
}

.about_img03{
    width: 65.5%;
    margin-top: 18px;
}
.s .about_img03{
    width: 69.5%;
    margin-top: 10.5px;
}

.about_img04{
    width: 100%;
    margin-top: 20px;
}
.s .about_img04{
    margin-top: 11px;
}


/* ファイターズ基金 */
.foundation{
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    padding: 90px 60px 87px 60px;
}
.s .foundation{
    padding: 40px 20px 74px 20px;
}

.foundation img{
    width: 100%;
}
.foundation img:hover {
    opacity: .7;
    cursor: pointer;
    transition: .3s;
}

.foundation h2{
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    text-align: left;
    margin-top: 13px;
    width: 100%;
}
.s .foundation h2{
    font-size: 14px;
    margin-top: 10.5px;
}

.foundation p{
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
    text-align: left;
    margin-top: 20px;
    width: 100%;
}
.s .foundation p{
    font-size: 12px;
    margin-top: 10px;
}

.foundation_detail{
    display: block;
    color: #0074af;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    text-align: end;
}
.foundation_detail::before{
    content: url(../img/ico_arrow_right02_small01.png);
    margin-right: 6px;
}




/* ページトップ */
.scrollTop{
    position: fixed;
    right: 11px;
    bottom: 83px;
    /* opacity: 0;
    transition: .4s; */
    cursor: pointer;
}
.s .scrollTop{
    bottom: 10px;
}

.scrollTop img{
    width: 100%;
}


/* コピーライト */
.copy_light{
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #016099;
    text-align: center;
    width: 100%;
    padding :40px 10px 51px 10px;
}
.s .copy_light{
    padding: 21px 10px 26px 10px;
}

.copy_light img{
    width: 31.1%;
}
.s .copy_light img{
    width: 30.2%;
}

.copy_light_text{
    color: #fff;
    font-size: 12px;
    margin-top: 24px;
}
.s .copy_light_text{
    margin-top: 12px;
}

/* フッター */
footer{
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}
.footer{
    display: flex;
    justify-content: space-between;
    padding: 12px 2.2%;
    width: 100%;
    height: 72px;
    background-image: linear-gradient(90deg, rgba(0, 98, 152, 1), rgba(10, 47, 102, 1));
    color: #fff;
    vertical-align: middle;
    position: fixed;
    bottom: 0;
}
.footer_image{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo_menu01{
    width: 18.6%;
    height: 100%;
    margin-right: 10px;
}
.logo_menu02{
    width: 76%;
    height: 31.2%;
}
.footer_list{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_list ul{
    display: flex;
}
.footer_list li{
    font-size: 14px;
    margin-right: 2vw;
}
.footer_list li:last-of-type{
    margin-right: 0px;
}
.footer a{
    color: #fff;
    text-decoration: none;
}
.footer a:hover{
    opacity: .5;
    transition: .2s;
}

