@charset "utf-8";

/* =============================================================================
リセット (html5doctorを利用)
============================================================================= */

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, footer, header, nav, main, section, article,
h1, h2, h3, h4, h5, h6, p, address, em, img, small,
dl, dt, dd, ol, ul, li, table, caption, tr, th, td, form {
 margin: 0;
 padding: 0;
 border: 0;
 outline: 0;
 vertical-align: baseline;
 background: transparent;
 box-sizing: border-box;
}

body {
 -webkit-text-size-adjust: 100%;
}

footer, header, nav, section {
 display: block;
}

a {
 margin: 0;
 padding: 0;
 vertical-align: baseline;
 background: transparent;
}

table {
 border-collapse: collapse;
 border-spacing: 0;
}

hr {
 display: block;
 padding: 0;
 width: 94%;
 height: 1px;
 border: 0;
 border-top: 1px solid #ccc;
}

img {
 vertical-align: middle;
}

/* =============================================================================
   全ページ・全レイアウト共通
============================================================================= */

/* フォント関連
------------------------------------------------------------------- */

button, input, select, textarea {
 font-family : inherit;
 font-size : 100%;
}

/* 色・書体・行間 ----------------------------- */

html {
 color: #000;
 font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
 line-height: 1.6;
}

/* サイズ (単位 rem) -------------------------- */

html { font-size: 62.5%; } /* 10px */
body { font-size: 1.6em; } /* 16px -- em指定はchromeのバグ対策 */

/* リンク関連 (基本・個別)
------------------------------------------------------------------- */

/* 基本 --------------------------------------- */

a:link {
 text-decoration: none;
}

a:visited {
}

a:hover {
 outline: none;
}

a:active {
}

a:focus {
 outline: none;
}

/* 拡張子別アイコン表示 ---------------------- */

main a[href$=".pdf"]:after {
 content: "\f1c1";
 font-family: "Font Awesome 5 Free";
 font-size: 1.6em;
 line-height: 1;
 margin: 0 0 0 0.4rem;
}

main a[href$=".xls"]:after, a[href$=".xlsx"]:after {
 content: "\f1c3";
 font-family: "Font Awesome 5 Free";
 font-size: 1.6em;
 line-height: 1;
 margin: 0 0 0 0.4rem;
}

/* 全体
------------------------------------------------------------------- */

#wrapper {
 position: relative;
 margin: 0 auto;
 width: 100%;
}

@media (min-width: 768px) {
 #wrapper {
  max-width: 100%;
 }
}
@media (min-width: 960px) {
 #wrapper {
  border-right: solid 1px #dcdcdc;
  border-left: solid 1px #dcdcdc;
  max-width: 96rem;
 }
}

/* ヘッダ
------------------------------------------------------------------- */

header {
 position: fixed;
 background: #fff;
 width: 100%;
 z-index: 999;
}

.header_inner {
 border-bottom: dotted 2px #00b9d2;
 padding: 0.8rem 0 0.8rem 0.8rem;
}

@media (min-width: 768px) {
 .header_inner {
  padding-right: 2.4rem;
  padding-left: 2.4rem;
 }
}
@media (min-width: 960px) {
 header {
  width: 95.8rem;
 }
 .header_inner {
  padding-right: 3.2rem;
  padding-left: 3.2rem;
 }
}

/* ハンバーガーメニュー -------------------------- */

.menu_btn {
 background: #fff;
 color: #999;
 cursor: pointer;
 width: 5rem;
 position: absolute;
 top: 2rem;
 right: 0.8rem;
 z-index: 99;
 margin-top: -0.5em;
}

.menu_btn li.menu_icon {
 border: solid 2px #999;
 border-radius: 4px;
 font-size: 0.9rem;
 font-weight: bold;
 line-height: 1;
 list-style-type: none;
 padding: 2px;
 text-align: center;
}

.menu_btn li:before {
 color: #999;
 content: '\f0c9';
 display: block;
 font-family: "Font Awesome 5 Free";
 font-weight: bold;
 font-size: 3rem;
}

.menu_icon.current {
 background: #999;
 color: #fff;
}

.menu_icon.current:before {
 color: #fff;
 content: '\f00d';
 display: block;
 font-family: "Font Awesome 5 Free";
 font-weight: bold;
 font-size: 3rem;
}

@media (min-width: 768px) {
 .menu_btn {
  display: none;
 }
}

/* グローバルナビ
------------------------------------------------------------------- */

.global_nav {
 background: #999;
 display: none;
 position: absolute;
 top: 6.8rem;
 right: 0;
 width: 100%;
}

.global_nav ul {
 display: flex;
 flex-wrap: wrap;
 position: relative;
}

.global_nav ul:before {
 border: 10px solid transparent;
 border-bottom: 24px solid #999;
 content: "";
 margin-left: 0;
 position: absolute;
 top: -3rem;
 right: 2.3rem;
}

.global_nav li {
 border-bottom: dotted 1px #fff;
 font-weight: bold;
 line-height: 1.15;
 list-style-type: none;
 margin: 0 0 0 auto;
 width: 100%;
}

.global_nav li:last-child {
 border-bottom: none;
}

.global_nav li a {
 box-sizing: border-box;
 color: #fff;
 display: block;
 position: relative;
 padding: 1.62rem;
 padding-right: 3rem;
 text-decoration: none;
 width: 100%;
}

.global_nav li a:after {
 content: "\f054";
 color: #fff;
 font-family: "Font Awesome 5 Free";
 font-weight: bold;
 margin-top: -0.82rem;
 position: absolute;
 right: 1.6rem;
 top: 50%;
}

@media (min-width: 768px) {
 .global_nav {
  display: block;
  position: static;
  background: #fff;
  color: #00b9d2;
 }
 .global_nav ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-width: 100%;
 }
 .global_nav ul:before {
  content: none;
 }
 .global_nav li {
  display: flex;
  align-items: center;
  border-bottom: none;
  height: 4rem;
  list-style-type: none;
  margin: 0.5rem 0;
  text-align: center;
 }
 .global_nav li:last-child {
  border-right: 0;
 }
 .global_nav li a {
  display: block;
  color: #00b9d2;
  margin: 0;
  padding: 0;
 }
 .global_nav li a:after {
  content: none;
 }
 .global_nav li a:hover {
  background-color: #00b9d2;
  color: #fff;
  padding: 1rem 0;
 }
}
@media (min-width: 960px) {
 .global_nav ul {
  max-width: 960px;
 }
}

/* メイン
------------------------------------------------------------------- */

main {
 background: #fff;
 display: block; /* IE11対策 */
 margin: 0 auto;
 padding: 5.6rem 1.6rem 1.6rem 1.6rem;
}

@media (min-width: 768px) {
 main {
  padding-right: 2.4rem;
  padding-left: 2.4rem;
 }
}
@media (min-width: 960px) {
 main {
  padding-right: 3.2rem;
  padding-left: 3.2rem;
 }
}

/* フッタ
------------------------------------------------------------------- */

footer {
 background: #00b9d2;
 color: #fff;
 font-size: 1.2rem;
 padding: 1.6rem 0;
 text-align: center;
}

.foot_nav {
 display: flex;
 justify-content: center;
 list-style-type: none;
 margin: 0 0 2.4rem 0;
}

.foot_nav li {
 margin: 0 2.4rem;
}

.foot_nav a {
 color: #fff;
}

/* 協会名称等 --------------------------------- */

.footer_address dt {
 font-size: 1.6rem;
 font-weight: bold;
 line-height: 1;
 margin-bottom: 0.8rem;
}

/* コピーライト --------------------------------- */

.copyright {
 font-size: 1rem;
 line-height: 3.2rem;
}

@media (min-width: 768px) {
 footer {
  font-size: 1.6rem;
 }
 .footer_address dt {
  font-size: 1.8rem;
 }
 .copyright {
  font-size: 1.2rem;
 }
}

/* その他のナビゲーション関連
------------------------------------------------------------------- */

/* ページのトップに戻るナビ ------------------------------ */

.pagetop_nav {
 position: fixed;
 right: 1.6rem;
 bottom: -100px;
 cursor: pointer;
 font-size: 1rem;
 line-height: 1;
 text-align: center;
}

.pagetop_nav a {
 display: block;
 background: #000;
 color: #fff;
 height: 3.2rem;
 opacity: 0.5;
 padding: 0.2rem 0.8rem 1.6rem 0.8rem;
 text-decoration: none;
 width: 3.2rem;
}

.pagetop_nav a:before {
 display: block;
 content: '\f077';
 font-family: "Font Awesome 5 Free";
 font-size: 2.2rem;
 font-weight: bold;
}

/* 汎用
------------------------------------------------------------------- */

.block {
 display: block;
}


/* =============================================================================
   各カテゴリごと
============================================================================= */

/* 共通
------------------------------------------------------------------- */

section {
 margin: 4rem 0;
}

img {
 max-width: 100%;
}

small {
 font-size: 1.2rem;
 font-weight: normal;
}

/* 見出し ------------------------------ */

/* h2 */
.c_title {
 background-size: 100% 24%;
 background-repeat:no-repeat;
 background-position: 4.2em center;
 margin-bottom: 2.4rem;
}

/* h3 */
.s_title {
 border-left-style: solid;
 border-left-width: 4px;
 margin: 1.6rem 0 0.8rem ;
 padding-left: 0.4rem;
}

/* h4 */
.ss_title {
 font-size: 1.8rem;
}

/* 画像関連 ------------------------------ */

.pic {
 margin: 0.8rem auto;
 text-align: center;
}

.pic_title {
 font-size: 1.8rem;
 font-weight: bold;
 margin: 0 0  2.4rem 0;
 text-align: center;
}

/* 丸付き数字リスト ------------------------------ */

.encircled_number_list {
 position: relative;
}

.encircled_number_list li {
 list-style-type: none;
 padding: 0 0 0 2rem;
}

.encircled_number {
 position: absolute;
 left: 0;
}

/* 注釈関連 ------------------------------ */

.notes {
 font-size: 1.4rem;
 line-height: 1;
}

.notes_list {
 font-size: 1.4rem;
 line-height: 1.2;
 list-style-type: none;
 margin: 1.6rem 0 0 1.6rem;
}

.notes_no {
 font-size: 1.2rem;
 vertical-align: super;
 padding: 0 0.2rem;
}

/* お知らせ、はじめに、お問合せ 共通
------------------------------------------------------------------- */

#information_section .c_title, #introduction_section .c_title, #inquiry_section .c_title {
 background-image: -webkit-repeating-linear-gradient( -45deg, #00b9d2, #00b9d2 2px,
 #fff 2px, #fff 10px);
 background-image: repeating-linear-gradient(-45deg, #00b9d2, #00b9d2 2px, #fff 2px,
 #fff 10px);
 color: #00b9d2;
}

/* アスリート、企業 共通
------------------------------------------------------------------- */

/* キャッチフレーズ的な ------------------------------ */

.catchphrase_box {
 text-align: center;
}

.catchphrase {
 position: relative;
 display: inline-block;
 font-weight: bold;
 margin: 3.2rem auto 5.6rem auto;
 padding: 0 48px;
}

.catchphrase:before, .catchphrase:after {
 content: "";
 position: absolute;
 top: 40%;
 display: inline-block;
 width: 48px;
 height: 2px;
 background-color: #666;
 z-index: 1;
}

.catchphrase:before {
 -webkit-transform: rotate(60deg);
 transform: rotate(60deg); left:0;
}

.catchphrase:after {
 -webkit-transform: rotate(-60deg);
 transform: rotate(-60deg);
 right: 0;
}

/* 対象条件 ------------------------------ */

.condition_box {
 border-style: solid;
 border-width: 1px;
 padding: 0.8rem;
 text-align: center;
}

.condition {
 position: relative;
 margin-top: -2.4rem;
}

.condition_title {
 display: inline-block;
 background: #fff;
 font-size: 1.8rem;
 font-weight: bold;
 line-height: 1;
 padding: 0 1.6rem;
}

.condition_box dd {
 text-align: left;
}

/* 書類ダウンロード ------------------------------ */

.btn_document {
 display: flex;
 align-items: center;
 flex-direction: column;
 list-style-type: none;
 margin: 2.4rem 0;
}

.btn_document li {
 border-radius: 0.4rem;
 font-weight: bold;
 margin: 1.2rem 0;
 padding: 1.2rem 0;
 text-align: center;
 width: 90%;
}

.btn_document li a {
 color: #fff;
}

@media (min-width: 768px) {
 .btn_document {
  flex-direction: row;
  margin: 2.4rem 0;
 }
 .btn_document li {
  margin: 1.2rem 0;
  text-align: center;
 }
 .btn_document li + li {
  margin-left: 1.2rem;
 }
}

/* 流れ ------------------------------ */

.flow_step {
 position: relative;
 border: solid 1px;
 margin: 1.6rem 0 4.8rem 0;
 padding: 0.8rem;
}

.flow section:first-of-type {
 margin-top: 4rem;
}

.flow section:last-of-type:after {
 content: none;
}

.flow_step:after {
 position: absolute;
 right: 0;
 bottom: -2rem;
 left: 0;
 border-style: solid;
 border-width: 12px 40px 0 40px;
 content: "";
 margin: auto;
 width: 0;
 height: 0;
}

.step_no {
 position: absolute;
 top: -2.4rem;
 left: -0.1rem;
 border-radius: 0.8rem 0.8rem 0 0;
 color: #fff;
 display: inline-block;
 font-size: 1.4rem;
 line-height: 2.4rem;
 text-align: center;
 width: 7em;
 height: 2.4rem;
}

.application {
 border-top: solid 1px #666;
 margin-top: 0.8rem;
 padding: 0.8rem 0 0 0.8rem;
}

.application dt {
 font-weight: bold;
}

/* お知らせ
------------------------------------------------------------------- */

.info_item {
 display: flex;
 margin: 1.6rem 0;
 width: 100%;
}

.info_item dt {
 color: #00b9d2;
 min-width: 10rem;
}

.info_item dd {
 width: calc(100% - 10rem);
}

/* はじめに
------------------------------------------------------------------- */

#introduction_section .s_title {
 border-color: #00b9d2;
}

.entry_list_bnr {
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-start;
 list-style-type: none;
}

.entry_list_bnr li {
 border: solid 1px #dcdcdc;
 margin: 0.8rem;
 padding: 0.1rem 0;
 text-align: center;
 vertical-align: middle;
 width: 45%;
}

.cooperation {
 font-size: 1.4rem;
 line-height: 1.2;
 margin: 0.8rem auto 2.4rem auto;
 width: 100%;
}

.cooperation dd {
 margin: 0 0 0 0.8em;
}

.outline {
 margin: 0.8rem auto 2.4rem auto;
}

.outline dt {
 font-weight: bold;
}

.outline .outline_a {
 color: #eb0d36;
}

.outline .outline_p {
 color: #18a940;
}

.outline dd {
 margin: 0 0 0.8rem 0.8em;
}

@media (min-width: 768px) {
 .entry_list_bnr li {
  width: 31%;
 }
}

/* アスリートの皆様へ
------------------------------------------------------------------- */

#athlete_section .c_title {
 background-image: -webkit-repeating-linear-gradient(-45deg, #eb0d36, #eb0d36 1px, transparent 1px, transparent 8px);
 background-image: repeating-linear-gradient(-45deg, #eb0d36, #eb0d36 1px, transparent 1px, transparent 8px);
 background-position: 9.2em center;
 color: #eb0d36;
}

#athlete_section .condition_title,
#athlete_section .ss_title,
#athlete_section .category_name {
 color: #eb0d36;
}

#athlete_section .btn_document li,
#athlete_section .step_no {
 background-color: #eb0d36;
}

#athlete_section .flow_step,
#athlete_section .s_title,
#athlete_section .condition_box {
 border-color: #eb0d36;
}

#athlete_section .flow_step:after {
 border-color: #eb0d36 transparent transparent transparent;
}

#athlete_section .category_name {
 font-weight: bold;
}

#athlete_section .encircled_number {
 font-weight: normal;
}

/* 企業の皆様へ
------------------------------------------------------------------- */

#enterprise_section .c_title {
 background-image: -webkit-repeating-linear-gradient(-45deg, #18a940, #18a940 1px, transparent 1px, transparent 8px);
 background-image: repeating-linear-gradient(-45deg, #18a940, #18a940 1px, transparent 1px, transparent 8px);
 background-position: 6.2em center;
 color: #18a940;
}

#enterprise_section .condition_title,
#enterprise_section .condition_list .encircled_number,
#enterprise_section .ss_title {
 color: #18a940;
}

#enterprise_section .btn_document li,
#enterprise_section .step_no {
 background-color: #18a940;
}

#enterprise_section .s_title,
#enterprise_section .condition_box,
#enterprise_section .flow_step {
 border-color: #18a940;
}

#enterprise_section .flow_step:after {
 border-color: #18a940 transparent transparent transparent;
}

/* お問合せ
------------------------------------------------------------------- */

.inquiry {
 margin-top: 2.4rem;
 max-width: 100%;
 padding: 0.8rem;
}

.inquiry dt, .inquiry dd {
 padding: 0 0.8rem;
 width: 100%;
}

.inquiry dt {
 font-weight: bold;
}

.inquiry dd {
 margin: 0 0 1.6rem 0;
}

.inquiry textarea {
 height: 10rem;
}

.inquiry input[type="text"],  input[type="email"], .inquiry textarea {
 padding: 0.8rem;
 width: calc(100% - 1.6rem);
}

.inquiry input[type="submit"] {
 -webkit-appearance: none;
 appearance: none;
 display: block;
 border: none;
 border-radius: 0.4rem;
 background-color: #00b9d2;
 color: #fff;
 font-weight: bold;
 margin: 2rem auto 0 auto;
 padding: 1.8rem 0.8rem;
 text-align: center;
 width: 93%;
}

@media (min-width: 768px) {
 .inquiry input[type="submit"] {
  width: 33%;
 }
}
