@charset "utf-8";

/* reset
==================================*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body,
form,
fieldset {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
}

fieldset {
    border: none;
}

blockquote,
li,
dt,
dd {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

input,
textarea,
select {
    font-size: 1em;
}

img {
    margin: 0px;
    padding: 0px;
    border: 0px;
    vertical-align: bottom;
}

.center {
    text-align: center;
}

table {
    border-collapse: collapse;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/* font　Notoではない場合など、不要なものは適宜削除してください
==================================*/
input,
textarea,
select {
    font-style: normal;
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3",
        "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", "MS P Gothic", san-serif;
}

body {
    color: #000;
    background-color: #ffffff;
    font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3",
        "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック", "MS P Gothic", san-serif;
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*游ゴシックを指定する場合Mediumの指定が必要↓
		font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体";
	*/

/* float, clear
==================================*/
.cf {
    zoom: 1;
}

.cf:before,
.cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}

.clear {
    clear: both;
    visibility: visible;
}

.left {
    float: left;
}

.right {
    float: right;
}

@media print {
    body {
        _zoom: 70%;
        background: none;
    }

    img.hover {
        display: none;
    }
}

#loading {
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    /* 以下のコードを追加 */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#loading.loaded {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.news_info {
    padding: 60px 0;
    background: url(../images/top/bg-news.jpg) no-repeat 0 / cover;
}

.news_info h2 {
    text-align: center;
}

#Top main .news_info h2 .en {
    font-size: 60px;
    font-style: italic;
}

#Top main .news_info h2 .jp {
    margin-top: 15px;
    font-weight: 500;
}

.news_box {
    margin: 50px 0 0;
}

.news_box .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tab_content {
    display: none;
    clear: both;
    overflow: hidden;
    min-height: 370px;
}

.tab_item {
    cursor: pointer;
    background-color: #F3F3F3;
    color: #0061AB;
    font-size: 18px;
    font-weight: 700;
    display: block;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    transition: 0.25s;
}

.tab_contents {
    padding: 30px 6%;
    background-color: #fff;
}

.tab_contents ul {
    margin-top: 30px;
}

.tab_contents li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: solid 1px #D7D7D7;
    padding-bottom: 15px;
}

.news_detail {
    width: 30%;
}

.news_ttl {
    width: 70%;
}

.tab_contents li p {
    font-weight: 700;
    display: inline-block;
}

.category {
    margin: 0 15px;
    color: #fff;
    width: 12%;
    text-align: center;
    position: relative;
    border-radius: 3px;
    padding: 3px 0px;
    font-size: 14px;
    font-weight: 500;
}

.tab_contents .category {
    width: 40%;
    margin: 0 0 0 15px;
}

.category::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 95%;
    height: 85%;
    border: solid 1px #fff;
    z-index: 10;
    border-radius: 3px;
}

.category.labo {
    background-color: #2C0177;
}

.category.gym {
    background-color: #464646;
}

.category.event {
    background-color: #F3A204;
}

.category.media {
    background-color: #3261AB;
}

.category.science {
    background-color: #9e5bba;
}

.category.seminar {
    background-color: #93cb48;
}

.tab_contents .btn {
    display: block;
    width: 35%;
    margin: 15px auto;
    text-align: center;
    font-size: 18px;
    padding: 20px 0;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    background-color: #0061AB;
    position: relative;
}

.tab_contents .btn::after {
    content: "→";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 10%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    color: #0061AB;
    line-height: 30px;
}

.tab_item.current,
.tab_item:hover {
    background-color: #0061AB;
    color: #fff;
}

.tab_contents li h3 {
    line-height: 1.5;
}

.mv_low {
    text-align: center;
    background: url(../images/top/facility_bg.jpg) no-repeat center / cover;
    padding: 140px 0 70px;
    color: #fff;
}

.mv_low p {
    font-size: 60px;
    font-style: italic;
    font-family: "Poppins";
    font-weight: 700;
    margin-top: 60px;
    line-height: 1;
}

.mv_low h1,
.mv_low div {
    margin-top: 10px;
    font-weight: 500;
    font-size: 16px;
}

.news_footer {
    background: url(../images/top/bottom_bg.jpg) no-repeat center / cover !important;
}

.news_list {
    margin: 70px 0 50px;
}

.news_list li {
    padding: 30px 0;
    border-bottom: solid 1.5px #d4d4d4;
}

.news_list li a {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.n_img {
    width: 20%;
}

.n_info {
    width: 76%;
    padding: 5px 0;
}

.n_info p {
    display: inline-block;
    font-weight: bold;
}

.n_info p.date {
    color: #19005c;
    font-weight: 700;
}

.n_info p.date span {
    font-size: 12px;
    margin-right: 10px;
}

.n_info h2 {
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.5;
}

.pager {
    margin: 60px auto 80px;
    text-align: center;
}

.page-numbers {
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 7px;
    background-color: #d9d9d9;
    color: #fff;
    font-weight: 400;
    position: relative;
}

.page-numbers.current {
    background-color: #000;
    color: #fff;
}

.next {
    width: 80px;
    position: relative;
    color: #000;
    padding: 0 30px 0 0;
    background: none;
}

.prev {
    width: 80px;
    position: relative;
    color: #000;
    padding: 0 0 0 30px;
    background: none;
}

.next.page-numbers::before {
    content: "";
    width: 22px;
    height: 10px;
    background-image: url(https://www.sports-science.co.jp/arrowz-lab/images/news/right.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    top: calc(50% - 7px);
}

.prev.page-numbers::before {
    content: "";
    width: 22px;
    height: 10px;
    background-image: url(https://www.sports-science.co.jp/arrowz-lab/images/news/right.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
    position: absolute;
    top: calc(50% - 7px);
    transform: scale(-1, 1);
    left: calc(50% - 5px);
    right: auto;
    left: 0;
}

.breadcrumb,
.breadcrumb a {
    font-size: 14px;
    font-weight: 500;
}

.news_content {
    margin: 70px 0 50px;
}

.news_head {
    margin: 0px 0 50px;
}

.news_head p {
    display: inline-block;
}

.news_head h1 {
    font-size: 22px;
    margin-top: 35px;
    line-height: 1.5;
}

.main_content p {
    padding: 0 0 1em;
}

.news_content .container {
    max-width: 1040px;
}

.news_nav {
    margin: 60px auto 80px;
    display: flex;
    justify-content: center;
}

.to_all {
    background-color: #000;
    color: #fff !important;
    font-weight: 500;
    padding: 15px 35px;
    margin: 0 20px;
}

.news_nav a {
    position: relative;
}

.kiji_back a::before {
    content: "";
    width: 22px;
    height: 10px;
    background-image: url(https://www.sports-science.co.jp/arrowz-lab/images/news/right.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
    position: absolute;
    top: calc(50% - 7px);
    transform: scale(-1, 1);
    left: calc(50% - 5px);
    right: auto;
    left: -70%;
}

.kiji_next a::before {
    content: "";
    width: 22px;
    height: 10px;
    background-image: url(https://www.sports-science.co.jp/arrowz-lab/images/news/right.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
    position: absolute;
    right: -70%;
    top: calc(50% - 7px);
}

.fc_cta {
    position: fixed;
    bottom: 0;
    right: 0;
    max-width: 250px;
    z-index: 200;
}

.page_top {
    bottom: 230px !important;
}

header nav ul li .news_btn {
    color: #fff;
}

header nav ul li .news_btn::before {
    background-color: #0061ab;
}

header nav ul li .news_btn::after {
    border-color: #0061ab;
}

header nav ul {
    grid-template-columns: repeat(4, 150px) !important;
}

@media (max-width: 1030px) {
    .news_detail {
        width: 40%;
    }

    .news_ttl {
        width: 60%;
    }

    .tab_contents .category {
        width: 33%;
    }
}

@media (max-width: 850px) {
    .tab_contents li a {
        width: 100%;
        display: block;
        margin-top: 10px;
    }

    .tab_item {
        font-size: 16px;
        padding: 15px 0;
    }

    .tab_contents .btn {
        width: 40%;
        font-size: 16px;
        padding: 15px 0;
        min-width: 245px;
    }

    .tab_contents {
        padding: 10px 3% 30px;
    }

    .n_info h2 {
        font-size: 15px;
        margin-top: 5px;
    }

    .n_info p {
        font-size: 14px;
        line-height: 1.5;
    }

    .n_img {
        width: 27%;
    }

    .n_info {
        width: 68%;
        padding: 0;
    }

    .category {
        font-size: 12px !important;
        min-width: 82px;
    }

    .news_list li {
        padding: 15px 0;
    }

    .page-numbers {
        font-size: 14px;
        width: 30px;
        height: 30px;
        margin: 0 3px;
    }

    .next {
        width: 55px;
        padding: 0 17px 0 0;
    }

    .prev {
        width: 55px;
        padding: 0 0 0 17px;
    }

    .next.page-numbers::before,
    .prev.page-numbers::before {
        width: 15px;
        height: 7px;
    }

    .mv_low p {
        font-size: 40px;
    }

    .mv_low,
    .mv_low div {
        font-size: 14px;
    }

    .mv_low {
        padding: 70px 0 50px;
    }

    .news_detail,
    .news_ttl {
        width: 100%;
    }

    .tab_contents .category {
        width: 15%;
    }

    .main_content p {
        font-size: 15px;
    }

    .news_head h1 {
        font-size: 19px;
        margin-top: 25px;
    }

    .to_all {
        padding: 15px 25px;
        margin: 0 10px;
        font-size: 14px;
    }

    .news_nav a {
        font-size: 14px;
    }
}

@media (max-width: 699px) {

    #Top main .news_info h2 .en {
        font-size: 40px;
    }

    #Top main .news_info h2 .jp {
        margin-top: 10px;
        font-size: 14px;
    }

    .tab_item {
        font-size: 14px;
        padding: 13px 0;
    }

    .tab_contents li p,
    .tab_contents li h3 {
        font-size: 14px;
    }

    .tab_contents .btn::after {
        width: 25px;
        height: 25px;
        line-height: 25px;
    }

    #news .container {
        padding-left: 5px;
        padding-right: 5px;
    }

    .fc_cta {
        max-width: unset;
        width: 100%;
        background-color: #0059b1;
        padding: 20px 0;
    }

    .fc_cta p {
        text-align: center;
        color: #fff;
        font-weight: bold;
        font-size: 18px;
        line-height: 22px;
    }

    .fc_cta p span {
        display: block;
        font-size: 15px;
    }
}

@media (max-width: 550px) {
    .tab_item {
        font-size: 8px;
    }

    /*.fc_cta {
    max-width: 200px;
  }*/

    .page_top {
        bottom: 150px !important;
    }
}

.news-pickup {
    text-align: center;
    margin-bottom: 3%;
}

.news-pickup p {
    color: red;
    font-weight: bold;
}

/*活動レポート追加*/
.report_cont .category {
    background: #19005c;
    font-weight: 700;
    min-width: 55px;
    width: fit-content;
    padding: 2px 10px;
}

.report_cont .category::before {
    display: none;
}

.report_cont .news_head {
    margin: 0 0 20px;
}

.report_cont .news_head h1 {
    font-size: 23px;
    background: url(../images/top/reporr_ttl.jpg) no-repeat center / cover;
    color: #fff;
    padding: 17px 3%;
}

.report_cont .news_head h1 span {
    font-size: 16px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2;
    padding-right: 2%;
}

.report_cont .news_head h1 strong {
    display: block;
}

.target {
    margin: 20px 0 0;
}

.target span {
    color: #19005c;
    font-weight: 700;
}

.report_cont .target .category {
    color: #19005c;
    background: transparent;
    border: solid 1px;
    padding: 2px 0px;
    font-size: 12px;
    width: auto;
    margin: 0 5px;
}

.report_cont h2 {
    font-size: 22px;
    color: #19005c;
    border-bottom: solid 1px;
    border-left: solid 12px;
    padding: 7px 2%;
    margin: 30px 0 20px;
}

.report_cont .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.report_cont .main_content img {
    margin: 20px 0;
}

.reports {
    background: url(../images/top/bg_report.jpg) no-repeat 0 / cover;
    padding: 60px 0 70px;
}

.reports h2 {
    color: #fff;
    text-align: center;
}

.report_list {
    margin: 60px 0 70px;
}

#Top main .reports h2 .en {
    font-size: 60px;
    font-style: italic;
}

.report_inner {
    padding: 40px 3% 30px;
}

.report_item h3 {
    font-size: 18px;
}

.report_item img {
    margin: 20px 0 10px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.report_item .category {
    background: #19005c;
    font-weight: 700;
    width: fit-content;
    padding: 2px 10px;
    margin: 0;
}

.report_item .category::before {
    display: none;
}

.excerpt {
    font-size: 15px;
    margin: 10px 0;
}

.report_item .target {
    margin: 0 0 20px;
    display: flex;
    align-items: center;
}

.report_item .target span {
    font-size: 12px;
}

.report_item .target .category,
.report_archive .target p {
    border: solid 1px #19005c;
    padding: 0 2px;
    background: transparent;
    margin: 0 5px;
    width: auto;
    max-width: 100%;
}

.report_item .vm_btn {
    text-align: center;
    color: #fff;
    background: #19005c;
    display: block;
    font-weight: 700;
    line-height: 2.8;
    border-radius: 50px;
    position: relative;
}

.report_item .vm_btn::before,
.reports .btn::before {
    content: "";
    background: url(../images/top/report_arrow.png) no-repeat 0 / cover;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 7%;
    width: 8px;
    height: 12px;
    margin: auto;
}

.reports .slick-track {
    display: flex;
}

.reports .slick-slide {
    height: auto !important;
    background: #fff;
    border-radius: 10px;
    margin: 0 .4%;
}

.reports .btn {
    color: #fff;
    text-align: center;
    display: block;
    border: solid 1px;
    border-radius: 50px;
    font-weight: 700;
    line-height: 3;
    max-width: 400px;
    min-width: 270px;
    margin: auto;
    position: relative;
}

.reports .btn:hover {
    background-color: #fff;
    color: #19005c;
}

.reports .slick-next:before,
.reports .slick-prev:before {
    content: "";
    background: url(../images/top/report_arrow.png) no-repeat 0 / contain;
    width: 20px;
    height: 30px;
    display: block;
    position: absolute;
    z-index: 10;
}

.reports .slick-prev:before {
    transform: rotate(180deg);
}

.report_archive_mv {
    background: url/images/top/bg_report.jpg) no-repeat 0 / cover;
}

.report_archive .target {
    margin: 0;
}

.report_archive .target span {
    font-size: 12px;
}

.report_archive .n_info h2 {
    font-size: 20px;
    margin: 15px 0;
}

.report_archive p.excerpt {
    font-weight: 500;
    font-size: 18px;
    margin: 0;
}

@media (max-width: 850px) {
    .report_cont .news_head h1 span {
        font-size: 12px;
        display: block;
        text-align: left;
        padding-right: 0;
    }

    .report_cont .news_head h1 {
        font-size: 19px;
        padding: 10px 3%;
    }

    .report_cont h2 {
        font-size: 17px;
        border-left: solid 8px;
        padding: 7px 2%;
    }

    .report_cont .main_content img {
        width: 100%;
    }

    .report_list {
        width: 95%;
        margin: 60px auto 70px;
    }

    .reports .slick-next {
        right: -20px;
    }

    .reports .slick-prev {
        left: -20px;
    }

    .reports .slick-next:before,
    .reports .slick-prev:before {
        width: 20px;
        height: 20px;
    }

    .report_item h3 {
        font-size: 17px;
    }

    .report_item img {
        margin: 10px 0 15px;
    }

    .excerpt,
    .report_item .vm_btn {
        font-size: 14px;
    }

    .report_item .target .category,
    .report_archive .target p {
        min-width: 50px;
    }

    .report_archive .n_info h2 {
        font-size: 16px;
        margin: 10px 0;
    }

    .report_archive p.excerpt {
        font-size: 14px;
    }
}

/*お知らせ投稿　リンク先の文字色*/
.news_content a.link {
    color: #0096ff;
}