
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho:wght@400;700&family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho:wght@400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    background-image: url("../images/background.jpg");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    min-height: 100vh;
    height: auto;
    color: #FFF;
    overflow-x: hidden;
}



body::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    background-color: rgb(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: -1;
}

a {
    color: #FFF;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1080px;
    background-color: rgb(0, 0, 0, 0.6);
    padding: 40px 50px 60px 50px;
    margin: 0 auto;
}

.site-title {
    font-size: 36px;
    font-weight: 700;
}

.sub-title {
    font-size: 20px;
    text-align: right;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    border-left: solid 4px #CC4B00;
    padding-left: 10px;
    margin-bottom: 40px;
}

.text {
    font-size: 24px;
}

.menu-btn {
    font-size: 26px;
}

/* header
====================== */

#header {
    position: relative;
    background-color: rgb(0, 0, 0, 0.6);
    padding: 13px 30px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header-sp-nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: rgb(0, 0, 0, 0.6);
    padding: 80px 20px;
    transition: right 0.3s ease;
    transform: translateX(100%);
    z-index: 4;
}

#header-sp-nav.active {
    transform: translateX(0);
}

#header-pc-nav {
    display: block;
}

#header-pc-nav .header-list {
    display: flex;
    align-items: center;
}

#header-pc-nav .header-list .menu-btn {
    margin-left: 30px;
}

#hamburger {
    position: absolute;
    top: 40px;
    right: 30px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 5;
}

#hamburger span {
    display: block;
    height: 3px;
    background: #FFF;
    border-radius: 3px;
    transition: 0.3s all;
}

#hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
}

#hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ページ上部戻るボタン
====================== */

.scroll-top {
    width: 50px;
    height: 50px;
    position: fixed;
    left: 25px;
    bottom: 25px;
    background: rgba(255, 62, 23, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    border-radius: 50%;
}

.sc-top-arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: translateY(20%) rotate(-45deg);
}


/* スクロール表示
====================== */

.fade-under {
    position: relative;
    bottom: -15px;
    opacity: 0;
    transition: 0.8s all;
}

.fade-under.active {
    position: relative;
    bottom: 0;
    opacity: 1;
}


/* main つなぎ用領域
====================== */

.linear-start-contents {
    max-width: 1080px;
    height: 40px;
    background: linear-gradient(to top, rgb(0, 0, 0, 0.6), transparent);
    padding: 40px 50px 60px 50px;
    margin: 50px auto 0 auto;
}

.linear-end-contents {
    max-width: 1080px;
    height: 40px;
    background: linear-gradient(to bottom, rgb(0, 0, 0, 0.6), transparent);
    padding: 40px 50px 60px 50px;
    margin: 0 auto 60px auto;
}


/* サイトコンテンツ、共通設定
====================== */

.site-content {
    margin-bottom: 40px;
}


/* サイト説明
====================== */

.about-img {
    margin-bottom: 50px;
}

.about-img img {
    width: 100%;
    border-radius: 7px;
}


/* テーブル、共通設定
====================== */

.inner-title,
.inner-text {
    display: inline-block;
    margin-bottom: 20px;
}

.inner-title {
    width: 15%;
}

.inner-text {
    width: 75%;
}


/* トップページテーブル、共通設定
====================== */

.toppage-table,
.news-table {
    width: 100%;
    flex-wrap: wrap;
}

.toppage-table .inner-text,
.news-table .inner-text {
    border-left: solid 2px #FFF;
    padding-left: 15px;
    margin-left: 20px;
}


/* 選手経歴テーブル
====================== */

.life-table .inner-title {
    font-weight: 700;
}


/* 最近のニューステーブル, ニュース一覧テーブル
====================== */

.near-news-table .news-link-text,
.news-table .news-link-text {
    border-bottom: solid 1px #FFF;
    padding-bottom: 2px;
}

/* ニュース一覧テーブル
====================== */

.news-table .inner-img {
    margin-bottom: 50px;
}

.news-table .inner-img img {
    width: 100%;
    border-radius: 7px;
}

.news-table .img-desc-text {
    font-size: 14px;
    color: #b5b5b5;
    margin: 10px 0;
}

.news-table .inner-text,
.news-table .inner-title {
    width: 100%;
    text-align: left;
}

.news-table .inner-text {
    margin: 20px 0;
}

.news-table .inner-title {
    text-align: right;
}

.news-table tr {
    display: block;
    margin-bottom: 50px;
}

/* ニュース一覧へボタン
====================== */

.link-btn-cover {
    text-align: right;
    margin: 15px 0 0 0;
}

.link-btn {
    font-size: 24px;
    background-color: #4489E2;
    border-radius: 21px;
    padding: 20px 15px;
}

/* ページング、pre,nexボタン共通
====================== */

.page-btn a {
    border-bottom: solid 1px #4489E2;
    padding-bottom: 2px;
}


/* ページング表示
====================== */

.page-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.page-btns .page-btn {
    margin-left: 15px;
}

.page-btns .page-btn:first-child {
    margin-left: 0;
}

.page-btns .page-btn a {
    color: #4489E2;
}


/* pre,nexボタン表示
====================== */

.page-pre-nex-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.page-pre-nex-btns .page-btn {
    margin-left: 30px;
}

.page-pre-nex-btns .page-btn:first-child {
    margin-left: 0;
}

.page-pre-nex-btns a {
    color: #4489E2;
}


/* これまでの足跡
====================== */

.site-content .history-img {
    margin-bottom: 20px;
}

.site-content .history-img img {
    width: 100%;
    border-radius: 7px;
}

.site-content .history-img .text {
    font-size: 15px;
    color: #9b9b9b;
    margin: 10px 0 0 0;
}

.history-contents {
    padding-top: 10px;
}

.history-content {
    max-height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.history-content.visible {
    animation: fadeInOpenhisEx;
    animation-duration: 0.5s;
    opacity: 1;
    max-height: 1000px;
}

.history-content .text {
    margin-bottom: 15px;
}

.history-content .history-year-cover {
    text-align: right;
    padding-right: 5px;
    margin: 10px 0;
}

.history-content .history-year-cover .text {
    font-family: "Noto Serif JP", serif;
    font-size: 26px;
    font-weight: 900;
}

.arrow-outline-btn-cover {
    text-align: center;
}

.arrow-toggle-img {
    cursor: pointer;
    width: 75px;
    transition: transform 0.3s ease;
}

.arrow-toggle-img.expanded {
    transform: rotate(180deg);
}

@keyframes fadeInOpenhisEx {

    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* footer
====================== */

#footer {
    background-color: rgb(0, 0, 0, 0.6);
    padding: 13px 30px;
}

#footer .site-title {
    font-size: 28px;
    margin-right: 50px;
}

#footer .menu-btn {
    font-size: 24px;
}

.footer-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

#footer-nav {
    margin-left: 50px;
}

#footer-nav .footer-list li {
    margin-bottom: 20px;
}

#footer-nav .footer-list li:last-child {
    margin-bottom: 0;
}

#footer-nav .footer-list .menu-btn {
    margin-left: 30px;
}

.copy {
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
}


/* 選択・入力フォーム
======================================== */

.select-form {
    text-align: right;
    padding-right: 10px;
    margin: 20px 0;
}

.select-form p {
    padding-bottom: 7px;
}

.select-form select {
    padding: 3px;
    margin-bottom: 15px;
}



/* 成績テーブル
======================================== */

.table-cover {
    overflow-x: auto;
    white-space: nowrap;
}

.score-table {
    width: 100%;
    border-collapse: collapse;
}

.score-table th,
.score-table td {
    border: 1px solid #FFF;
    text-align: center;
    padding: 10px;
}

.score-table thead th {
    background-color: #be3535;
}

.score-table tbody th {
    background-color: #d45858;
}

.score-table tbody td {
    background-color: #ab6d6d;
}

.score-table .tuusan th {
    background-color: #a27100;
}

.score-table .tuusan td {
    background-color: #a27d27;
}

.score-table-desc {
    font-size: 15px;
    text-align: right;
    padding-right: 10px;
    margin: 15px 0;
}


@media screen and (max-width: 1024px) {

    #header-pc-nav {
        display: none;
    }

    #header-sp-nav {
        display: block;
    }

    #hamburger {
        display: flex;
    }
    
    #header-sp-nav .header-list li {
        margin-bottom: 15px;
    }
    
    .inner-title {
        width: 100%;
    }

    .inner-text {
        width: 100%;
    }

    .menu-btn {
        font-size: 20px;
    }

    .footer-flex {
        justify-content: space-between;
    }

    #footer .site-title {
        margin-right: 0;
    }

    #footer-nav {
        margin-left: 0;
    }
}

