@charset "utf-8";
/* CSS Document */

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* ヘッダーメニュー */
.header {
    width: 100%;
    height: 72px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(32, 14, 17, 0.15);
    position: fixed;
    top: 0;
    z-index: +100
}
nav a {
    display: inline-block;
    line-height: 65px;
    margin-right: 30px;
    color: #000;
    text-decoration: none!important;
    position: relative;
    font-size: 16px;
    cursor: pointer
}
nav a.active:after {
    content: "";
    position: absolute;
    width: calc(100% + 0.5rem);
    margin-left: -0.25rem;
    height: 0.4rem;
	background-color: #000;
    bottom: 0;
    left: 0
}
nav a:hover{
	color: #42629f;
}
.header a.garmin-logo {
    display: block;
    position: absolute;
    top: 24px;
    left: 15px;
    margin: 0;
    padding: 0;
    width: 130px;
    height: 34px;
    background: url("https://www.garmin.co.jp/m/buzz/minisite/images/garmin_logo_on_b.svg") no-repeat
}
.header nav {
	font-size: 1.4rem;
    float: right;
}
 /* アスリートページ */
/*.top{
	white-space: nowrap;
	height: 65px;
	line-height: 65px;
}
.top:hover {
    border-bottom: solid 5px #000;
}*/
/* ヘッダーメニュー */


/* トップ画像 */
#home{
	width: 100%;
	height: 40vw;
	min-height: 280px;
	overflow: hidden;
	margin-bottom: 16px;
}
.kol-bg{
	position: absolute;
	height: 40vw;
	min-height: 280px;
	width: 100%;
	background-size: 100%;
    background-image: url("../images/hero-background-3.jpg");
    background-position: 50% 50%;
	background-repeat: no-repeat;
}
@media (max-width: 768px){
	.kol-bg {
	position: absolute;
	height: 44vw;
	min-height: 440px;
	width: 100%;
	background-size: 100%;
    background-image: url("../images/hero-background_mb.png");
    background-position: 50% 50%;
	background-repeat: no-repeat;
	}
}


.kol-bg h1{
	position: relative;
	display: inline-block;
	max-width: 50vw;
	height: 40vw;
	font-weight: bold;
	color: #fff;
	padding-left: 5%;
	font-size: 4.6vw;
	top: 46%;
}
@media (max-width: 768px){
	.kol-bg h1{
	position: relative;
	display: inline-block;
	max-width: 50vw;
	height: 40vw;
	font-weight: bold;
	color: #fff;
	padding-left: 5%;
	font-size: 8vw;
	top: 46%;
	}
}

/* トップ画像 


/* card外 */
.card-cont{
	margin: auto 10vw;
}
.card-wrapper a{
	width: inherit;
	color: #000000;
}
.card-wrapper a:link{
	text-decoration: none!important;
}
.card-wrapper a:hover{
	text-decoration: none!important;
}
.card-wrapper a:active{
	text-decoration: none!important;
}
.card-wrapper a:visited{
	text-decoration: none!important;
}
/* card外 */


/* card内 */
.card {
	position: absolute;
	width: 100%;
	margin: 4% 0 10% 0;
	padding: 0;
	/*-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;*/
	overflow: hidden;
}
.card-title {
	font-size: 1rem!important;
	font-weight: normal;
	height: 34px;
	line-height: 18px !important;
	display: inline-block;
	padding: 6px 16px;
	margin: 10px;
	white-space: nowrap; /* テキストの長さによってBox変化 */
	vertical-align: center;
	border: solid 1px #000000;
}
.athlete-name{
	font-size: 1.5rem!important;
	font-weight: bold;
	margin-bottom: 0;
	margin-left: 8px;
	margin-right: 8px;
}
.card-text {
	font-size: 1rem;
	height: 100px;
	margin-bottom: 50px;
	margin-top: 0;
	margin-left: 8px;
	margin-right: 8px;
}
.img-box{
	width: 100%;
	display: inline-block;
	/*-moz-box-sizing: border-box; /* 子セレクタへのBox幅固定 
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;*/
	overflow: hidden;
	margin-bottom:0!important;
	padding-bottom: 0!important;
}
.card img{
	-moz-transition:0.6s ease-in-out; /* 画像縮小時の動きの速さ */
	-webkit-transition:0.6s ease-in-out;
	-ms-transition:0.6s ease-in-out;
	transition: 0.6s ease-in-out;
	-webkit-transform: scale(1.1, 1.1); /* 画像拡大の大きさ */
	-moz-transform: -moz-scale(1.1, 1.1);
	-ms-transform: -ms-scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
	margin: 0!important;
	padding: 0!important;
}
a:hover .card{
	-webkit-box-shadow: 3px 3px 14px 4px rgba(0,0,0,.2);
	box-shadow: 3px 3px 14px 4px rgba(0,0,0,.2);
}
a:hover .card-body {
	width: 100%;
	/*background-color: #962122;*/
	background: #42629f;
}
a:hover .athlete-name, a:hover .card-text {
	color: #ffffff;
	border-color: #ffffff;
	overflow: hidden;
}
a:hover h5{
	color: #ffffff;
	border-color: #ffffff!important;
}
a:hover img {
	position: relative;
	filter: contrast(80%); /* 明るさダウン */
	-webkit-transform: scale(1.2, 1.2); /* 画像拡大の大きさ */
	-moz-transform: -moz-scale(1.2, 1.2);
	-ms-transform: -ms-scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
}
/* card内 */


/* アスリートページ */
.ath-wrap{
	width: 100%;
	margin: 0;
	padding: 72px 0 0 0;
}
.athlete-main{
	padding: 0;
	margin: 0;
}
.athlete-main li{
	list-style: none;
	margin: 0;
	padding: 0;
}
.athlete-cont1 .athlete-cont2{
	display: block;
	min-height: 30vh;
}
.athlete-cont1{
	animation: fadein 6s ease 0s 1 normal;
	-webkit-animation: fadein 6s ease 0s 1 normal;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
 
@-webkit-keyframes bodyFadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

.athlete-bg{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 100vh;
	min-height: 60vh;
}

.class3{
	background-image: url(../images/class3.jpg);
}
.class4{
	background-image: url(../images/class4.jpg);
}
.class5{
	background-image: url(../images/class5.jpg);
}
.class6{
	background-image: url(../images/class6.jpg);
}
.class7{
	background-image: url(../images/class7.jpg);
}
.class8{
	background-image: url(../images/class8.jpg);
}
.class9{
	background-image: url(../images/class9.jpg);
}
.class10{
	background-image: url(../images/class10.jpg);
}
.class11{
	background-image: url(../images/class11.jpg);
}
.class12{
	background-image: url(../images/class12.jpg);
}
.class13{
	background-image: url(../images/class13.jpg);
}
.class14{
	background-image: url(../images/class14.jpg);
}
.class15{
	background-image: url(../images/class15.jpg);
}
.class16{
	background-image: url(../images/class16.jpg);
}
.class17{
	background-image: url(../images/class17.jpg);
}
.class18{
	background-image: url(../images/class18.jpg);
}
.class19{
	background-image: url(../images/class19.jpg);
}
.class20{
	background-image: url(../images/class20.jpg);
}
.class21{
	background-image: url(../images/class21.jpg);
}

.athlete-cont2{
	min-height: 60vh;
}
.cont2-wrap{
	margin: 5% 7%;
}
.ath-nm{
	font-size: 3rem;
	margin-bottom: 3%;
}
.ath-ttl{
	font-size: 1.2rem;
	padding: 6px 20px;
	margin-bottom: 7px;
	border: solid 1px #000000;
	display: inline-block;
	white-space: nowrap;
}
.ath-cat{
	display: block;
	font-size: 1.7rem;
	font-weight: bold;
	margin: 3% 0;
	word-wrap: break-word;
}
.ath-txt{
	margin: 4rem 0 1rem 0;
}
.ath-txt p::before{
	content:"";
	display: block;
	width: 30%;
	height: 2px;
	margin: 0 auto 24px auto;
	background-color: #CFCFCF;
}
.ath-txt p, .cont3-wrap p{
	line-height: 2rem;
	margin: 0;
	padding: 0;
}
.ath-comment{
	display: inline-block;
	width: 100%;
}
.ath-comment p{
	height: 40px;
	min-height: 50vh;
	margin: 10% auto;
}
.athlete-cont3{
	display: inlin-block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	/*background-color: #1B1B1B;*/
	color: #ffffff;	
}
.athlete-cont3 figure{
	width: 100%;
	margin: 0;
	padding: 0;
}
.athlete-cont3 img{
	width: 100%;
}
.cont3-wrap{
	width: 100%;
}
.cont3-wrap p{
	margin: 0 7% 12vh 7%;
	padding: 0;
	word-wrap: break-word;
	overflow: hidden;
}
.ath-his{
	display: inline-block;
	font-size: 1.7rem;
	font-weight: bold;
	/*padding: 6px 24px;*/
	margin: 12vh 7% 3vh 7%;
	white-space: nowrap;
}
/* 背景 */	
.jupiter {
  background-image: -webkit-linear-gradient(top, #504D48 5%, #33342F 96%);
  background-image: linear-gradient(-180deg, #504D48 5%, #33342F 96%); 
}
/* 背景 */

.ath-icon{
	display: block;
	text-align: center;
	height: 30vh;
	line-height: 30vh;
}
.ath-icon i{
	font-size: 1.4rem;
	margin: 0 5px;
	color: #2F2E31;
}
.icon-facebook::before{
	content: "icon-facebook";
}
.icon-twitter::before{
	content: " icon-twitter";
}
.icon-instagram::before{
	content: "icon-instagram";
}
.icon-book::before{
	content: "icon-book";
}
.icon-youtube-play::before{
	content: "icon-youtube-play";
}
.ath-icon i:hover{
	/*color: #962122;*/
	color: #42629f;
}
/* アスリートページ */

.athlete-cont3{
	position: relative;
}
.copy-right{
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0 16px 10px 0;
}

 /* ページトップ */
.page-top{
	display: inline-block;
	float: right;
	width: 60px;
	height: 60px;
	line-height: 56px;
	background-color: #2F2E31;
	color: #ffffff!important;
	border-radius: 50px;
	text-align: center;
	margin: 30px 30px;
}
.page-top i{
	font-size: 1.3rem;
}
.page-top:hover {
	/*background-color: #962122;*/
	/*-webkit-box-shadow: 2px 2px 10px 2px rgba(0,0,0,.2);
	box-shadow: 2px 2px 10px 2px rgba(0,0,0,.2);*/
	background-color: #42629f;
}
/* ページトップ */

 /* フッター */
.g-footer{
	clear: both;
	background-color: #2F2E31;
	width: 100%;
}
.g-footer div {
	text-align: center;
	width: 100%;
	height:200px;
	line-height: 200px;
	bottom: 0;
}
.g-footer div p{
	font-size: 1.1rem;
	width: 100%;
	color: #ffffff;
	height:100px;
	line-height: 200px;
	margin: 0;
	padding: 0;
}
 /* フッター */


@media (max-width: 768px){
	.card-cont {
	margin: 150px 0vw 0vw 0vw; /* cardとトップ画像重なり対応 */
}
}