@charset "utf-8";
/* CSS Document */

/* Noto Sans JP(ゴシック) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

html,body {
	width: 100%;
	height: 100%;
	font-size: 62.5%;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	display: inline-block;
	text-decoration: none;
	color: inherit;
}

a:hover {
	opacity: 0.6;
	transition: 0.6s;
}

li {
	list-style: none;
}


/* ----------------------------------------------
共通
---------------------------------------------- */
.back_navy {
	background: #00253D;
}

.page_ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0px;
}

.page_ttl > span {
	font-size: clamp(3rem,9vw,9rem);
}

#page_txt {
	text-align: center;
	font-size: clamp(1.6rem,4vw,4rem);
	line-height: 160%;
	color: #FFF;
	background: #00253D;
	margin-bottom: 30px;
}

section {
	padding: 10% 0px;
}

.inner_wrap {
	width: 90%;
	margin: 0px auto;
}

.sec_ttl {
	font-size: clamp(3rem,9vw,9rem);
	font-weight: 600;
	color: #00253E;
	text-align: center;
	margin-bottom: 30px;
}

.btn_wrap {
	width: 80%;
	margin: 10% auto 0px;
}



/* ----------------------------------------------
ヘッダー
---------------------------------------------- */
header {
	background: #00253E;
	width: 100%;
	height: 86px;
	position: fixed;
	z-index: 1;
}

.header_inner {
	max-width: 1000px;
	width: 90%;
	height: 100%;
	margin: 0px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_inner > div {
	height: 100%;
	display: flex;
	align-items: center;
}

.logo {
	align-items: center;
	flex: 3;
	z-index: 100;
}

.logo img {
	max-width: 600px;
	width: 80%;
}

.nav {
	justify-content: flex-end;
	width: 86px;
}

#contents {
	max-width: 1000px;
	margin: 0px auto;
	padding: 86px 0px 100px;
}



/* ----------------------------------------------
フッター
---------------------------------------------- */
footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
}

footer::before {
	content: '';
	background: url("img/common/footer_logo.png");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 370px;
	height: 370px;
	top: 0px;
	position: absolute;
}

.footer_inner {
	background: #00253D;
	padding: 12% 0px 30px;
	margin-top: 10%;
}

.footer_tel {
	padding: 20px;
	border-top: 1px solid #FFF;
}

.copyright {
	text-align: center;
	line-height: 3;
	padding-bottom: env(safe-area-inset-bottom);
	font-size: clamp(1.5rem,3vw,3rem);
}

@media screen and (max-width: 768px) {
	.footer_inner {
		padding: 24% 0px 30px;
		margin-top: 22%;
	}
}

@media screen and (max-width: 600px) {
	footer::before {
		width: 170px;
		height: 170px;
	}
}



/* ----------------------------------------------
トップページ
---------------------------------------------- */
section#MV {
	padding: 0px;
	line-height: 0;
}




    .logo2 {
      margin-bottom: 40px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .logo2 img {
      width: 100%;
      height: auto;
    }



    section.magazine-section {
      padding: 20px 0;
    }

    ul.magazine-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      padding: 0;
      list-style: none;
    }

    ul.magazine-list li {
      flex: 1 1 250px;
      max-width: 320px;
    }

    ul.magazine-list a {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    ul.magazine-list img {
      width: 100%;
      height: auto;
      border: 1px solid #ccc;
      box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    }

    .caption {
      margin-top: 12px;
      font-size: 16px;
      text-align: center;
    }


.pony_info {
	border: 2px solid #989898;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.pony_info > dt {
	flex: 2;
}

.pony_info > dd {
	flex: 1;	
}

.link_btn {
	font-size: clamp(2.1rem,4vw,4.2rem);
	color: #983300;
}

.link_btn a {
	display: flex;
	align-items: center;
	position: relative;
}

.link_btn a::before {
	content: '';
	background: url("img/top/icon_arrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 10px;
	height: 13px;
	padding-right: 5px;
	left: 0px;
	top: 2px;
	position: relative;
}

.sponsor_wrap:first-of-type {
	margin-top: 10%;
}

.sponsor_wrap:not(:last-of-type) {
	margin-bottom: 60px;
}

.sponsor_ttl {
	margin-bottom: 30px;
}

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

.sponsor_list li {
	margin-bottom: 3%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.sponsor_list.two_col li {
	width: 48%;
}

.sponsor_list.three_col li {
	width: 30%;
	border: 0px;
}




/* ----------------------------------------------
球団紹介
---------------------------------------------- */
body#team .page_ttl {
	background: #00253D;
}

body#team section {
	position: relative;
	z-index: 0;
	padding: 16% 0px;
}

body#team section:nth-of-type(odd) {
	background: #00253D;
}

body#team section:nth-of-type(even) {
	background: #AFA652;
}

body#team section::after {
	content: '';
	background: url("img/team/sec_back.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right bottom;
	display: inline-block;
	width: 100%;
	height: 20vh;
	bottom: 0px;
	position: absolute;
	z-index: -1;	
}




/* ----------------------------------------------
選手・スタッフ紹介
---------------------------------------------- */
.member_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}

.member_list li {
	width: calc(100%/3);
}

.member_list li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.staff_list > p:not(:last-of-type) {
	margin-bottom: 50px;
}




/* ----------------------------------------------
スポンサー
---------------------------------------------- */
body#sponsor .page_ttl {
	height: 400px;
}


@media screen and (max-width: 768px) {
	body#sponsor .page_ttl {
		height: 150px;
	}
}










