@charset "utf-8";
/*==========================
index.html top_menu メニュー
==========================*/

#top_menu .wrap{
    position: relative;
}

.menubox-bottom{
    height: 528px;
}

.menubox{
    position: absolute;
    margin: 0 auto;
    justify-content: center;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.menu__item{
    width: 300px;
    height: 176px;
    border: 5px solid var(--primary-gray);
    background-color: var(--primary-white);
    transition: all 0.3s ease; /* ホバー時の動き用 */
    padding: 8px 12px;
    margin: 0 auto 24px;
}
    .menu__item:hover{
        background-color: var(--primary-lightblue);
        color: var(--primary-darkblue);
        transform: translateX(12px);
        transition: all 0.2s;
    }
.menu__item__title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}
.menu__item__icon{
    height: 60px;
    margin-right: 12px;
    margin-top: 8px;
}
.menu__item__text{
    display: block;
    font-size: 2.2rem;
    line-height: 1.2;
}
.menu__item__span{
    font-size: 1.7rem;
}

.counter{
    position: absolute;
    /* margin: auto auto 4px; */
    justify-content: center;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}


/* 【PC】 (幅1080px程度以上) */
@media (min-width: 1080px) {
    .menubox-bottom{
        width: 1080px;
        height: 120px;
    }
    .menubox{
        display: flex;
        width: 1016px;
        justify-content: space-between;
        top: -128px;
        z-index: 1;
    }
    .menu__item{
        width: 320px;
        height: 240px;
        padding: 24px 16px;
    }
    .menu__item__title{
        margin-bottom: 32px;
    }
    .menu__item__icon{
        margin-right: 16px;
        margin-top: 8px;
    }
    .menu__item__text{
        font-size: 3rem;
        letter-spacing: 2px;
        line-height: 1;
    }
    .menu__item__span{
        font-size: 2rem;
        }
        .menu__item:hover{
            transform: translateY(-12px);
            transition: all 0.3s;
        }
    .counter{
        bottom: -42px;
    }
} 
/* ここまでpc */


/*==========================
index.html top_news お知らせ
==========================*/

/* 新着情報のリンク付き文字 */
.a_deco a{
    text-decoration: underline;
    background: linear-gradient(transparent 15%, var(--secondery-gray) 10%);
}
.a_deco a:hover{
    text-decoration: none;
    opacity: 0.6;
}

/*==========================
newsarchive.html  link
==========================*/



/*==========================
newsold.html  link
==========================*/



/*==========================
profile.html  profile_history 概要
==========================*/



/*==========================
profile.html  profile_about -について
==========================*/



/*==========================
schedule.html  schedule_tochjgi大会日程・結果
==========================*/



/*==========================
schedule.html  schedule_othersその他の競技会
==========================*/



/*==========================
member.html  member-join
==========================*/



/*==========================
 member.html  member-flow
==========================*/

.step__items{
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
}

.item__step {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 4px 8px var(--secondery-gray);
    position: relative;
    margin-right: 3.4%;
    margin-bottom: 64px;
}

.item__step.blue{
    background-color: var(--primary-blue);
}

/*  装飾線*/
.item__step::before {
    content: '';
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 1.8px;
    height: 40px;
    background-color: var(--primary-gray);    
}

.item__step.last::before{
    display: none;
}

.step-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 2px;
    margin-top: 4px;
}

.step-number {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}

/* 【PC】 (幅1080px程度以上) */
@media (min-width: 1080px) {
    .step__items{
        width: var(--contentWidth);
    }
}

/*==========================
record.html  record-tochigi
==========================*/



/*==========================
record.html  record-others
==========================*/



/*==========================
link.html  link
==========================*/

.list__item-link{
    line-height: 3;
}

.item__text-link{
    margin-left: 2%;
}
    .item__text-link:hover{
        color: var(--primary-blue);
        /* font-size: 1.75rem;
        line-height: 2.9;
        transition: all 0.5s;
        letter-spacing: -0.3px; */


        transform: translateX(8px);
        transition: all 0.3s;
    }
    
/* 【375未満の端末用】 */
@media (max-width: 374px) {
    .item__text-link{
        margin-left: 0;
    }
}
/* 【PC】 (幅1080px程度以上) */
@media (min-width: 1080px) {
    .item__text-link{
        margin-left: 3%;
    }
}

.nav__item__icon-link{   /* svgアイコン */
    margin: 0 4px 12px 0;
}
    .nav__item__icon-link:hover{
        opacity: 0.5;
        scale: 1.2;
        transition: all 0.5s;
    }


/*==========================
Contact.html  Contact
==========================*/

.flexwrap{
    width: 240px;
    height: auto;
    margin: 0 auto;
}

/* 【タブレット】 (幅640px程度以上) */
@media (min-width: 640px) {
    .flexwrap{
        width: auto;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
    }
}
/* ここまでタブレット */

.mailto-btn{
    margin-bottom: 16px;
    font-size: 1.6rem;
    height: 80px;
    background-color: var(--secondery-lightblue);
    border: 1px solid var(--secondery-bluegray);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.mailto-btn:hover{
    background-color: var(--primary-darkblue);
    color: var(--primary-white);
    transform: scale(1.05);
    transition: all 0.5s;
    /* opacity: 0.8; */
}

/* 【タブレット】 (幅640px程度以上) */
@media (min-width: 640px) {
    .mailto-btn{
        margin: 0 8px 16px;
        width: 256px;
    }
}
/* ここまでタブレット */

/* 【PC】 (幅1080px程度以上) */
@media (min-width: 1080px) {
    .mailto-btn{
        width: 292px;
    }
}
/* ここまでpc */

.mailto-btn img{
    position: absolute;
    top: 20px;
    left: 32px;
    width: 40px;
    height: 40px;
    opacity: 0.8;
}
    .mailto-btn img:hover{
        opacity: 0.5;
        top: 16px;
        transition: 0.4s;
    }



