@charset "UTF-8";

#bg {
    position: fixed;
    background-image: url("/102soccer/img/bg/bg_fix.jpg");
    background: #a7c999 url(/102soccer/img/body_bg.jpg) repeat-x fixed;
    height: 100%;
    /* 変更 */
    width: 100%;
    top: 0;
    z-index: -1;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-feature-settings: "palt"1;
    font-feature-settings: "palt"1;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

#back-top {
    position: fixed;
    right: 25px;
    bottom: 20px;
    z-index: 1;
    opacity: 0;
    transition: .4s;
}

#back-top img {
    max-width: 85px;
    height: 85px;
}

#back-top:hover img {
    opacity: .7;
}

#back-top.scroll {
    opacity: 1;
}

@media only screen and (max-width: 600px) {
    #back-top {
        position: fixed;
        right: 16px;
        bottom: 20px;
        z-index: 1;
        opacity: 0;
        transition: .4s;
    }

    #back-top.scroll {
        opacity: 1;
    }

    #back-top img {
        max-width: 67px;
        height: 67px;
    }
}

/* ヘッダー */
#header {
    width: 100%;
    height: 300px;
    padding: 0 21px;
    display: flex;
    align-items: center;
    background-image: url("/102soccer/img/header_bg.jpg");
    background-size: cover;
    background-position: center;
    justify-content: center;
    position: relative;
    transition: .3s;
}

#header h1 {
    margin-bottom: 0;
    font-size: 0;
    content: url("../img/header.png?2");
    max-width: 100%;
}

#header .header-htv-logo {
    width: 140px;
    position: absolute;
    top: 10px;
    left: 10px;
}

#header .header-htv-logo img {
    width: 100%;
}

@media only screen and (max-width: 600px) {
    #header {
        height: 186px;
    }

    #header h1 {
        margin-bottom: 0;
        font-size: 0;
        content: url("../img/header_sp.png");

        width: 300px;
    }

    #header .header-htv-logo {
        width: 100px;
    }

}


/* ナビ */
#nav {
    width: 100%;
}

#nav .menu {
    width: 100%;
    color: #fff;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    transition: .3s;
    background-color: #004db4;
}

#nav .menu a {
    position: relative;
    margin: 0 calc(50px / 2);
    /* 変更 */
}

#nav .menu-border {
    display: inline-block;
    border-left: 1px solid #FFF;
    height: 30%;
}

#nav .NavMenu a.logo {
    font-size: 0;
    content: url("/102soccer/img/menu_logo.png");
    width: 500px;
    position: absolute;
    left: 10px;
    transition: .3s;
    top: 18px;
    margin-bottom: 0;
    max-width: calc(100vw - 80px);
}

#nav .menu .bor-b::after {
    content: '';
    width: 0;
    right: 50%;
    bottom: -15px;
    transition: all 0.3s ease;
    border-bottom: 3px solid #fff;
    position: absolute;
    display: block;
}

#nav .menu .bor-b::before {
    content: '';
    width: 0;
    left: 50%;
    bottom: -15px;
    transition: all 0.3s ease;
    border-bottom: 3px solid #fff;
    position: absolute;
    display: block;
}

#nav .menu .bor-b:hover::after {
    width: 50%;
    border-bottom: 3px solid #fff;
}

#nav .menu .bor-b:hover::before {
    width: 50%;
    border-bottom: 3px solid #fff;
}

#nav .menu li {
    position: relative;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.06em;
    transition: .3s;
}

#nav .menu li::after {
    display: flex;
    justify-content: center;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.09em;
    margin-top: 0;
    /* 変更 */
    font-family: 'Noto Sans JP', sans-serif;
}

#nav .menu li.topics-nav::after {
    content: "トピックス";
}

#nav .menu li.about-nav::after {
    content: "大会概要";
}

#nav .menu li.app-nav::after {
    content: "広島テレビアプリ";
}

#nav .menu li.sponsor-nav::after {
    content: "協賛";
}

.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}

#nav.is-fixed .menu {
    background-color: transparent;
    color: #004db4;
    height: 70px;
    justify-content: flex-end;
    padding-right: 10px;
    /* 変更 */
}

#nav.is-fixed .menu a.logo {
    display: inherit;
    margin-bottom: 0;
    margin: 0;
}

#nav.is-fixed .menu a {
    margin: 0 10px;
}

#nav.is-fixed .menu li {
    font-weight: 500;
    font-size: 14px;
    /* 変更 */
    letter-spacing: 0.01em;
    /* 変更 */
}

#nav.is-fixed .menu li::after {
    display: none;
}

#nav.is-fixed .menu .bor-b::after {
    bottom: -8px;
    border-bottom: 2px solid #004db4;
}

#nav.is-fixed .menu .bor-b::before {
    bottom: -8px;
    border-bottom: 2px solid #004db4;
}

#nav.is-fixed .menu .bor-b:hover::after {
    border-bottom: 2px solid #004db4;
}

#nav.is-fixed .menu .bor-b:hover::before {
    border-bottom: 2px solid #004db4;
}

#nav .Toggle {
    position: fixed;
    right: 0;
    top: 0;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 13;
    background-color: #004db4;
    display: none;
}

#nav .Toggle.active {
    display: inherit;
}

#nav .Toggle span {
    display: block;
    position: absolute;
    width: 23px;
    border-bottom: solid 2px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 24px;
}

#nav .Toggle span:nth-child(1) {
    top: 17px;
}

#nav .Toggle span:nth-child(2) {
    top: 25px;
}

#nav .Toggle span:nth-child(3) {
    top: 33px;
}

#nav .Toggle.active span:nth-child(1) {
    top: 24px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: solid 2px #fff;
}

#nav .Toggle.active span:nth-child(2),
#nav .Toggle.active span:nth-child(3) {
    top: 24px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: solid 2px #fff;
}

#nav .Toggle small {
    position: absolute;
    color: #fff;
    font-size: 8px;
    letter-spacing: 0.1em;
    content: url("https://www.htv.jp/sp/img/icon/menu.svg");
    width: 35px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 12px;
    position: absolute;
}

#nav .Toggle.active small {
    content: url("https://www.htv.jp/sp/img/icon/close.svg");
    width: 38px;
}



/* ハンバーガーメニュー内 */
nav.NavMenu {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: center;
    width: 100%;
    transform: translateY(-100%);
    transition: all 0.6s;
    padding-top: 70px;
    opacity: 0;
    overflow-y: auto !important;
    height: 100%;
}

nav.NavMenu ul {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    padding-top: 60px;
    padding-bottom: 60px;
}

nav.NavMenu ul li {
    font-size: 24px;
    list-style-type: none;
    width: 100%;
    padding-bottom: 0px;
}

nav.NavMenu ul li:last-child {
    padding-bottom: 0;
}

nav.NavMenu ul li a {
    display: block;
    color: #fff;
    padding: 10px 0;
}

nav.NavMenu.active {
    transform: translateY(0%);
    opacity: 1;
}

.accordion-container {
    width: 100%;
    margin: 0 auto;
    display: block;
}

#accordion .lump {
    width: 100%;
    display: block;
    margin: 0;
    position: relative;
}

.accordion-container .accordion-title2 {
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.05em;
    pointer-events: inherit;
    font-size: 19px;
    border-bottom: none;
    padding: 20px 0px 20px 46px;
    background-color: #e4e4e8;
    border-top: 1px solid #004db4;
    text-align: left;
    color: #004db4;
    font-family: 'Roboto', sans-serif;
}

.accordion-container .lump:last-child .accordion-title2 {
    border-bottom: 1px solid #004db4;
}

.accordion-container h4 .jp {
    margin-left: 26px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    font-family: 'Noto Sans JP', sans-serif;
}

#accordion p {
    font-size: 19px;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #004db4;
    margin-bottom: 0;
    padding: 0;
    border-bottom: 1px dashed #004db4;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

#accordion p .jp {
    margin-left: 26px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    font-family: 'Noto Sans JP', sans-serif;
}

#accordion p:first-of-type {
    border-top: 1px solid #004db4;
}

#accordion p:last-of-type {
    border-bottom: none;
}

#accordion p a {
    color: #004db4;
    display: block;
    padding: 17px 0px 16px 81px;
    position: relative;
}

#accordion p a::before {
    content: url("/102soccer/img/icon/arrow.svg");
    left: 53px;
    position: absolute;
    width: 7px;
}

.ham-footer {
    height: 125px;
    display: flex;
    align-items: center;
    background-color: #004db4;
    justify-content: center;
}

.ham-footer a {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    right: 11px;
    width: 256px;
    height: 58px;
    display: flex;
    border: 2px solid #fff;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: -moz-linear-gradient(0% 50% 0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 70, 166, 1) 0%, rgba(50, 145, 193, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 70, 166, 1) 0%, rgba(50, 145, 193, 1) 100%);
    background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0, rgba(0, 0, 0, 1)), color-stop(0, rgba(0, 70, 166, 1)), color-stop(1, rgba(50, 145, 193, 1)));
    background: -o-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 70, 166, 1) 0%, rgba(50, 145, 193, 1) 100%);
    background: -ms-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 70, 166, 1) 0%, rgba(50, 145, 193, 1) 100%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 70, 166, 1) 0%, rgba(50, 145, 193, 1) 100%);
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    padding-bottom: 1px;
}


/*枠なしベース*/
.base-area {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 45px 13px;
}

.base-area .baseWrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 75px 35px;
}

.base-area .baseWrap0px {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


.base-area .baseWrap img {
    max-width: 100%;
}

.base-area .baseWrap0px img {
    max-width: 100%;
}

.menuTit {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
    text-align: center;
    line-height: 22px;
}

.menuTit span {
    font-weight: 700;
    display: inline-block;
}

.menuTit .jpTit {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.08em;
    margin-left: 6px;
}

.linkBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: rgb(0, 77, 180);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    width: 250px;
    height: 50px;
    margin: 0 auto;
    position: relative;
    transition: .3s;
    border: 1px solid rgba(0, 77, 180, 1);
}

.linkBtn::after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 15px;
    height: 10px;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    right: 20px;
    transition: .3s;
}

.linkBtn.list-close::after {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}



@media (min-width : 740px) {
    .base-area .baseWrap ul a:hover li {
        background-color: rgba(0, 77, 179, .9);
        color: #fff;
    }

    .base-area .baseWrap ul a:hover li::after {
        background-color: #fff;
        right: 15px;
    }

    .linkBtn:hover {
        color: rgb(0, 77, 180);
        background-color: rgba(255, 255, 255, .9);
    }

    .linkBtn:hover::after {
        background-color: rgb(0, 77, 180);
        right: 15px;
    }
}

@media (max-width : 740px) {
    .base-area {
        padding: 32px 13px;
    }

    .base-area .baseWrap {
        padding: 23px 16px 32px;
    }

    .menuTit {
        font-size: 28px;
    }

    .menuTit .jpTit {
        font-size: 14px;
    }


    .linkBtn {
        font-size: 15px;
        letter-spacing: 0.07em;
        width: 226px;
        height: 52px;
    }

    .linkBtn::after {
        width: 15px;
        height: 10px;
        right: 16px;
    }

    .linkBtn:hover {
        color: #fff;
    }

}

@media (max-width : 400px) {
    .base-area {
        padding: calc(100vw * 32 / 414) calc(100vw * 13 / 414);
    }

    .base-area .baseWrap {
        padding: calc(100vw * 23 / 414) calc(100vw * 16 / 414) calc(100vw * 32 / 414);
    }

    .menuTit {
        font-size: calc(100vw * 28 / 414);
    }

    .menuTit .jpTit {
        font-size: calc(100vw * 14 / 414);
    }
}


/*枠なしベース*/


@media only screen and (max-width: 2400px) {


    #nav.is-fixed .menu .bor-b {
        display: none;
    }

    #nav.is-fixed .Toggle {
        display: inherit;
    }
}

@media only screen and (max-width: 1190px) {
    #nav .menu {
        color: #FFF;
        height: 70px;
        width: 100%;
    }

    #nav .menu-border {
        display: inline-block;
        border-left: 1px solid #FFF;
        height: 30%;
    }

    #nav.is-fixed .menu {
        /* 追加 */
        padding-right: 70px;
    }

    #nav .menu a.logo {
        display: inherit;
        margin-bottom: 0;
    }

    #nav .menu a {
        margin: 0 15px;
    }

    #nav .menu li {
        font-weight: 500;
        /*font-size: 15px;*/
        letter-spacing: 0.02em;
    }

    #nav .menu li::after {
        /*display: none;
        font-size: 10px;*/
    }

    #nav .menu .bor-b::after {
        bottom: -8px;
        border-bottom: 2px solid #004db4;
    }

    #nav .menu .bor-b::before {
        bottom: -8px;
        border-bottom: 2px solid #004db4;
    }

    #nav .menu .bor-b:hover::after {
        border-bottom: 2px solid #FFF;
    }

    #nav .menu .bor-b:hover::before {
        border-bottom: 2px solid #FFF;
    }

    #nav .Toggle {
        display: inherit;
    }
}


@media only screen and (max-width: 600px) {
    #nav .menu {
        height: 52px;
    }

    #nav.is-fixed .menu {
        height: 52px;
    }

    #nav .menu a.logo {
        width: 240px;
        left: 14px;
        transition: .3s;
    }

    #nav .menu li {
        font-size: 15px;
        letter-spacing: 0.02em;
    }

    #nav .menu li::after {
        font-size: 10px;
    }

    #nav .Toggle {
        width: 52px;
        height: 52px;
    }

    nav.NavMenu {
        padding-top: 52px;
    }

    #nav .Toggle span {
        width: 17px;
        left: 18px;
    }

    #nav .Toggle span:nth-child(1) {
        top: 13px;
    }

    #nav .Toggle span:nth-child(2) {
        top: 20px;
    }

    #nav .Toggle span:nth-child(3) {
        top: 27px;
    }

    #nav .Toggle small {
        width: 28px;
        bottom: 8px;
    }

    #nav .Toggle.active small {
        width: 31px;
    }

    #nav .Toggle.active span:nth-child(1) {
        top: 19px;
    }

    #nav .Toggle.active span:nth-child(2),
    #nav .Toggle.active span:nth-child(3) {
        top: 19px;
    }

    .accordion-container .accordion-title2 {
        font-size: 15px;
        padding: 16px 0px 16px 36px;
    }

    .accordion-container h4 .jp {
        margin-left: 21px;
        font-size: 12px;
    }

    #accordion p {
        font-size: 15px;
    }

    #accordion p .jp {
        margin-left: 21px;
        font-size: 12px;
    }

    #accordion p a {
        padding: 15px 0px 13px 66px;
    }

    #accordion p a::before {
        left: 42px;
        width: 6px;
    }

    .ham-footer {
        height: 100px;
    }

    .ham-footer a {
        width: 205px;
        height: 47px;
    }
}

/* フッター */
#footer {
    text-align: center;
    padding: 18px 0 16px;
    color: #fff;
    background-color: #004db4;
}

#footer h1 {
    margin-bottom: 0;
}

#footer h1 img {
    max-width: 160px;
    margin-bottom: 6px;
}

@media only screen and (max-width: 600px) {
    #footer {
        padding: 12px 0;
    }

    #footer h1 img {
        max-width: 140px;
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger,
.fadeUpTrigger,
.fadeRightTrigger {
    opacity: 0;
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: .8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 下から */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 右から */

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 注意事項 */
.atten {
	padding-left: 1.5em;
    	margin-bottom: 0;
    	list-style: disc;
}
.atten li {
	line-height: 25px;
    	font-weight: 700;
	padding: 0 0 7px;
}
.atten li:last-of-type {
	padding: 0;
}