@charset "utf-8";
/* CSS Document */

/* noto600nomal */
@font-face {
	font-family: 'Noto Sans JP';
	src: url("../font/NotoSansJP-SemiBold.woff2") format('woff2'), url("../font/NotoSansJP-SemiBold.woff") format('woff');
	font-weight: 600;
	font-display: swap;
	font-style: normal;
}

/* noto800ExtraBold */
@font-face {
	font-family: 'Noto Sans JP';
	src: url("../font/NotoSansJP-ExtraBold.woff2") format('woff2'), url("../font/NotoSansJP-ExtraBold.ttf") format('woff');
	font-weight: 800;
	font-display: swap;
	font-style: normal;
}

/* noto900ExtraBlack */
@font-face {
	font-family: 'Noto Sans JP';
	src: url("../font/NotoSansJP-Black.woff2") format('woff2'), url("../font/NotoSansJP-Black.woff") format('woff');
	font-weight: 900;
	font-display: swap;
	font-style: normal;
}

/* YakuHanJP600nomal */
@font-face {
	font-family: 'YakuHanJP';
	src: url("../font/MergedYakuHanJP-SemiBold.woff2") format('woff2'), url("../font/MergedYakuHanJP-SemiBold.woff") format('woff');
	font-weight: 600;
	font-display: swap;
	font-style: normal;
}

/* YakuHanJP800ExtraBold */
@font-face {
	font-family: 'YakuHanJP';
	src: url("../font/MergedYakuHanJP-ExtraBold.woff2") format('woff2'), url("../font/MergedYakuHanJP-ExtraBold.woff") format('woff');
	font-weight: 800;
	font-display: swap;
	font-style: normal;
}

/* YakuHanJP900ExtraBlack */
@font-face {
	font-family: 'YakuHanJP';
	src: url("../font/MergedYakuHanJP-Black.woff2") format('woff2'), url("../font/MergedYakuHanJP-Black.woff") format('woff');
	font-weight: 900;
	font-display: swap;
	font-style: normal;
}

/* Oswald700 */
@font-face {
	font-family: 'Oswald';
	src: url("../font/Oswald-Bold.woff2") format('woff2'), url("../font/Oswald-Bold.woff") format('woff');
	font-display: swap;
	font-weight: 700;
	font-style: normal;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	color: #0e0e0e;
	font-family: YakuHanJP, 'Noto Sans JP', 'Oswald', sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	font-feature-settings: "palt"1;
	/*字詰め*/
	-webkit-font-feature-settings: "palt";
	letter-spacing: 0.01em;
	/*文字の間隔*/
	line-height: 1.85;
	/*行の高さ*/
	-webkit-font-smoothing: antialiased;
	/*chromeでフォントが綺麗に見える*/
	-moz-osx-font-smoothing: grayscale;
	/*firefoxでフォントが綺麗に見える*/
	word-wrap: break-word;
	overflow-wrap: break-word;
	text-align: justify;
	overflow: clip;
}


h1, h2, h3 {
	color: #0e0e0e;
	line-height: 1;
}

/*大文字表記。中央ぞろえ*/
.text_center {
	text-align: center;
}

.text_upp {
	text-transform: uppercase;
}

.font_small {
	font-size: 1.4rem;
}

.font_middle {
	font-size: 2.8rem;
}

.font_larg {
	font-size: 5.2rem;
}

.font_Oswald {
	font-family: 'Oswald' !important;
}

.text_back_gray {
	color: #0e0e0e;
	background-color: #B5B8AE;
}

.text_back_black {
	color: #fff;
	background-color: #0e0e0e;
}

.text_back_red {
	color: #fff;
	background-color: #e62b1a;
}

*, :after, :before {
	box-sizing: border-box;
}

/*ulリセット*/
ul {
	margin: 0;
	padding: 0;
}

/*liタグリセット*/
li {
	list-style: none;
}

/*aタグリセット*/
a {
	text-decoration: none;
}

/*ボタンリセット*/
button {
	-webkit-appearance: none;
	appearance: none;
	border: none;
}

/*ボタンオーバーフローしたい場合*/
.btn-trigger {
	width: 40px;
	height: 40px;
	background-color: #8fafc3;
	padding: 0;
	overflow: hidden;
}

/*imgレスポンシブ*/
img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	pointer-events: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-touch-callout: none;
	-moz-user-select: none;
	user-select: none;
}

.display_block {
	display: block;
}

/*バツボタン-クロスする*/
.btn-close use:nth-of-type(1) {
	-webkit-transform: translateY(30px) rotate(-45deg);
	transform: translateY(30px) rotate(-45deg);
}

.btn-close use:nth-of-type(2) {
	-webkit-transform: translateX(35px) translateY(-15px) rotate(45deg);
	transform: translateX(35px) translateY(-15px) rotate(45deg);
}

.scroll_line_wrap {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	max-width: 400px;
	width: 100%;
	height: 100px;
	margin: 32px auto;
	z-index: 10;
}

.scroll_line_wrap div {
	position: relative;
}

.scroll_line {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100px;
	/*アニメ時はここを0％*/
	background: #0e0e0e;
}

.flex {
	display: flex;
	display: -webkit-box;
	display: -webkit-flexbox;
	display: -ms-flexbox;
}

.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}

.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
}

/*---ここからSPコーディング---*/

/*---pcsp表示非表示---*/
.pc {
	display: none;
}

.sp {
	display: block;
}

header {
	display: block;
	width: 100%;
}

.header_wrap {
	position: relative;
	width: 100%;
}

.header_inner, .footer_inner {
	background-color: #ffffff;
	color: #fff;
	height: 100%;
}

.footer_inner {
	position: relative;
	background-color: #B2B2B2;
	height: 153px;
	z-index: 20;
}

.header_inner h1 {
	max-width: 48vw;
}


.header_inner h1 a .sp {
	width: 130px;
	padding: 8px 5px;
}



/*---メニュー---*/
/* ハンバーガーメニューのボタン */
.sp-menu__box {
	position: fixed;
	position: -webkit-fixed;
	/* 位置を固定 */
	top: 0;
	/* 最上部 */
	right: 0;
	/* 右端 */
	/* 中の要素を上下中央寄せ */
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-box-align: center;
	align-items: center;
	/* サイズ指定 */
	height: 60px;
	width: 60px;
	/* 最前面にする */
	z-index: 100;
	background-color: #0e0e0e;
}

/* メニューの白線を疑似要素を使って3本作成 */
.sp-menu__box span,
/* 真ん中の線 */
.sp-menu__box span:before,
/* 上の線 */
.sp-menu__box span:after {
	/* 下の線 */
	/* contentの値を指定しないと疑似要素が生成されない */
	content: "";
	/* ３本線のサイズと色を指定 */
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #ffffff;
	/* 3本線の位置は絶対位置で指定 */
	position: absolute;
}

/* 上の線の位置 */
.sp-menu__box span:before {
	/* 真ん中の線と離す距離 */
	bottom: 8px;
}

/* 下の線の位置 */
.sp-menu__box span:after {
	/* 真ん中の線と離す距離 */
	top: 8px;
}

/* チェックボックスは常に非表示 */
#sp-menu__check {
	display: none;
}

/* チェックボックスのチェックがON（スマホ用メニューを開いた状態） */
/* 真ん中の線 */
#sp-menu__check:checked~.sp-menu__box span {
	/* 透明にして見えなくする */
	background: rgba(255, 255, 255, 0);
}

/* 上の線 */
#sp-menu__check:checked~.sp-menu__box span::before {
	/* 真ん中の線との距離を無くす（真ん中の線と同じ位置にする） */
	bottom: 0;
	/* 右に45度傾けてバツの片側の線にする */
	transform: rotate(45deg);
}

/* 下の線 */
#sp-menu__check:checked~.sp-menu__box span::after {
	/* 真ん中の線との距離を無くす（真ん中の線と同じ位置にする） */
	top: 0;
	/* 左に45度傾けてバツの片側の線にする */
	transform: rotate(-45deg);
}

#sp-menu__check:checked~.hamburger__content {
	left: 0;
}

/* スマホ用メニュー */
.sp-menu__content {
	/* 絶対位置で指定   */
	position: fixed;
	position: -webkit-fixed;
	/* 画面全体に表示 */
	width: 100px;
	height: 100%;
	overflow-y: scroll;
	/* 開始位置は左上隅 */
	scrollbar-width: none;
	-ms-overflow-style: none;
	top: 0;
	right: 0;
	/* 前面に表示するがハンバーガーボタンよりは背後 */
	z-index: 90;
	background-color: rgba(0, 0, 0, 0.836);
}

.sp-menu__content::-webkit-scrollbar {
	display: none;
}

/* スマホ用メニューのリスト */
.sp-menu__list {
	padding: 70px 10px 0;
}

/* スマホ用メニュー項目 */
.sp-menu__item {
	border-bottom: solid 1px #ffffff;
	list-style: none;
	font-family: Oswald;
}

/* スマホ用メニュー項目のリンク */
.sp-menu__link {
	display: block;
	width: 100%;
	font-size: 15px;
	box-sizing: border-box;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	padding: 9px 0 10px 0;
}

/* ハンバーガーボタンを押してチェックがONの時だけ
   スマホ用メニューを画面左端に移動する */
#sp-menu__check:checked~.sp-menu__content {
	right: 0;
}

.sp-menu__content {
	right: -100%;
	background-color: rgba(0, 0, 0, 0.836);
	transition: all 0.5s;
}

/*---メニューここまで---*/

.footer_inner p small {
	display: block;
}

.footer_inner {
	padding: 14px 12px;
}

.top-wrap {
	width: 100%;
}

.hero_img {
	width: 100%;
	background-image: url(/files/cont/shinji-ono/img/Shinji.Ono.top_sp.jpg);
	background-position: center;
	background-size: cover;
}

.hero_img::before {
	content: "";
	display: block;
	padding-top: 133%;
}

.text_wrap {
	position: relative;
	max-width: 580px;
	z-index: 10;
	margin: 0 auto;
	font-weight: 600;
	padding: 0 25px;
	letter-spacing: 0.02em;
}

.text_twitter {
	width: 100%;
	margin: 0 auto;
	padding: 80px 25px 0;
}

.text_twitter p {
	position: relative;
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	color: #0e0e0e;
	margin: 0 auto;
	padding: 38px 0;
}

.text_twitter p:nth-of-type(2) {
	color: #818282;
	font-size: 1.4rem;
	font-weight: 600;
	display: -webkit-box;
	display: flex;
	justify-content: end;
	line-height: 1.3;
	padding: 0;
}

.text_twitter p:first-child::before, .text_twitter p:first-child::after {
	position: absolute;
	top: 0;
	left: -5px;
	display: block;
	content: "";
	width: 39px;
	height: 32px;
	background: url(/files/cont/shinji-ono/img/qm.svg) no-repeat;
	background-size: contain;
}

.text_twitter p:first-child:after {
	top: inherit;
	left: inherit;
	bottom: 0;
	right: -5px;
	transform: rotate(180deg);
}


.age {
	position: relative;
	line-height: 1;
	font-weight: 700;
	font-size: 7.5rem;
	margin: 100px auto 5px;
	max-width: 550px;
	padding: 0 15px 40px;
}

.age span {
	color: #e62b1a;
}

.age::after {
	position: absolute;
	bottom: 0;
	left: 2rem;
	content: "";
	display: block;
	width: 26px;
	height: 34px;
	background: url(/files/cont/shinji-ono/img/arrow.svg) no-repeat;
	background-size: contain;
}


.wrapper {
	width: 100%;
}

.scroll-point {
	position: relative;
	/*padding-top: 30%;*/
}

.slant-bg2 {
	width: 100%;
	margin: 0;
	margin-bottom: -316px;
	padding: 226px 0;
	position: relative;
	top: 128px;
}

.pf .slant-bg2 {
	width: 100%;
	margin: 0;
	margin-bottom: -182px;
	padding: 226px 0;
	position: relative;
	top: 152px;
}

.slant-bg2_gray, .slant-bg2_red, .slant-bg2_gray_2, .slant-bg2_shiro {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.slant-bg2_shiro {
	height: 20%;
	top: -84px;
	height: 20%;
	background-color: #ffffff;
	transform: skewY(-25deg);
	z-index: -1;
}

.slant-bg2_gray {
	background-color: #E6E6E6;
	transform: skewY(-25deg);
	z-index: -4;
}

.slant-bg2_red {
	height: 10%;
	top: -16px;
	background: linear-gradient(to left, #E62B1A 20%, #902222 90%, #7C0000);
	background: -webkit-linear-gradient(to left, #E62B1A 20%, #902222 90%, #7C0000);
	background: -moz-linear-gradient(to left, #E62B1A 20%, #902222 90%, #7C0000);
	transform: skewY(-23deg);
	background: -ms-linear-gradient(to left, #E62B1A 20%, #902222 90%, #7C0000);
	transform: skewY(-20deg);
	z-index: -3;
}

.slant-bg2_gray_2 {
	height: 10%;
	top: -29px;
	background-color: #E6E6E6;
	transform: skewY(-23deg);
	z-index: -2;
}

.contens_box {
	width: 100%;
	display: block;
	max-width: 890px;
	margin: auto 0;
	padding: 100px 15px 0;
}

.contens_box:first-of-type {
	padding: 0 1em;
}


.contents_img_wrap figure:first-of-type {
	padding-top: 0;
}

.contens_box_text h3 {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	-webkit-box-pack: start;
	-webkit-box-align: center;
	align-items: center;
	font-weight: 900;
	padding-top: 15px;
}

.contens_box_text h3 span:nth-of-type(2) {
	display: inline-block;
	position: relative;
	top: 2px;
	left: -10px;
	color: #fff;
	background: #0e0e0e;
	transform: rotate(90deg);
	text-transform: uppercase;
	padding: 2px 8px;
	font-size: 2rem;
	font-family: 'Oswald';
	;
}

.contens_box_text h3 span:nth-of-type(2)::after {
	content: "";
	width: 100%;
}

.contens_box_text h3 span:nth-of-type(3) {
	display: block;
	width: 100%;
	border-bottom: solid 1px#0e0e0e;
	border-top: solid 1px#0e0e0e;
	padding: 10px 0 10px 0;
	margin-top: 8px;
}

.contents_box2023 h3 {
	padding-top: 0;
}

.contens_box_text {
	position: relative;
	z-index: 1;
	max-width: 550px;
	margin: 0 auto;
}

.contens_box_text p {
	width: 100%;
	padding-top: 12px;
	line-height: 1.7;
	font-weight: 600;
}

.btn p:first-of-type {
	max-width: 400px;
}

.contens_box_text_img {
	position: relative;
	margin-top: 38px;
	padding: 39px 0;
}

.contens_box_text_img::before, .contens_box_text_img::after {
	display: block;
	content: "";
	width: 34px;
	height: 28px;
	background-image: url(/files/cont/shinji-ono/img/qm.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.contens_box_text_img::after {
	top: inherit;
	bottom: 0;
	left: inherit;
	right: 0;
	transform: rotate(180deg);
}

.contens_box_text_img img {
	display: block;
	margin: 0 auto;
}

.contens_box2014 .contens_box:nth-of-type(2) .contens_box_text_img img, .contens_box2016_02 .contens_box_text_img img, .content_wrap2019 .contens_box_text_img img, .contens_box2022 .contens_box_text_img img {
	width: 90%;
}

.contents_wrap2018 .contens_box_text_img img {
	width: 95%;
}

.contens_box:first-of-type {
	margin-top: 0;
}

/*新規追加*/
.contens_box_lastgame .contens_box_text_img img {
	width: 87%;
}

.join::before {
	position: absolute;
	top: -135px;
	right: -88px;
	content: "";
	display: block;
	width: 189px;
	height: 189px;
	background: url(/files/cont/shinji-ono/img/join.svg) no-repeat;
	background-size: 189px;
}

.comeback::before {
	background: url(/files/cont/shinji-ono/img/comeback.svg) no-repeat;
	top: -155px;
}

.content_wrap2017 .contens_box {
	padding-top: 80px;
}

.event {
	max-width: 700px;
	margin: 0 auto;
	padding: 20px 1em 60px;
}

.event p, .contens_box .contents_box2023 .event p {
	display: block;
	background: url(/files/cont/shinji-ono/img/bg_victory.jpg) no-repeat;
	background-size: 100%;
	background-position-y: center;
	color: #fff;
	font-size: 2.8rem;
	font-weight: 900;
	max-width: 700px;
	letter-spacing: 0.1em;
	line-height: 1;
	padding: 1.5rem 0.5rem;
}

.contents_wrap2016 .event {
	margin: 0 1em;
	padding: 60px 0 0 0;
}

.contents_wrap {
	position: relative;
	margin-bottom: 245px;
	padding-bottom: 1px;
	max-width: 550px;
	margin: 0 auto;
}

.content_wrap2021 .event {
	padding-bottom: 0;
}

.content_wrap2021 .contens_box {
	padding-top: 80px;
}

.contens_box .contents_box2023 .event {
	padding: 1rem 0 0 0;
}

.content_wrap2017 .event {
	padding-bottom: 0;
}

.sticky {
	height: 100%;
	position: sticky;
	position: -webkit-sticky;
	bottom: -610px;
	background: #fff;
}

.lastgame_sticky {
	height: 100%;
	position: sticky;
	position: -webkit-sticky;
	bottom: -810px;
	background: #fff;
}

.btn {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	-webkit-box-pack: center;
	text-align: left;
	padding-top: 24px;
}

/*新規追加*/
.btn a {
	position: relative;
	font-size: 1.6rem;
	font-weight: 500;
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 1rem 0;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	color: #0e0e0e;
	border-top: 1px solid #0e0e0e;
	max-width: 400px
}

.btn a:last-of-type {
	border-bottom: 1px solid #0e0e0e;
}

.btn a span {
	width: 80%;
	font-weight: 600;
	text-align: left;
	display: block;
	font-size: 1.4rem;
	color: #6B6B6B;
}

.btn a span:first-of-type {
	font-size: 1.6rem;
	font-weight: 600;
	color: #0e0e0e;
}

.btn a::before {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	display: inline-block;
	width: 20%;
	height: 100%;
	background-color: #E8E9E9;
}

.btn a::after {
	position: absolute;
	top: 0;
	right: 5%;
	content: "";
	display: inline-block;
	width: 40px;
	height: 100%;
	background: url(/files/cont/shinji-ono/img/btn_arrow.svg) no-repeat;
	background-position: center;
	background-size: contain;
	background-color: #E8E9E9;
}

.btn a:hover {
	opacity: 0.5;
}

.contens_box .contents_box2023 .btn p, .contens_box_lastgame .btn p {
	font-size: 2rem;
	padding: 8px 0 10px 0;
	max-width: 400px;
}

.pf {
	position: relative;
	width: 100%;
	padding: 0 0 430px 0;
	margin-right: 320px;
	overflow: hidden;
}

.pf p:nth-of-type(1), .pf p:nth-of-type(2) {
	position: relative;
	display: block;
	max-width: 550px;
	padding: 0 1em;
	margin: 0 auto;
	z-index: 2;
}

.pf p:nth-of-type(2) {
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 32px;
	background-color: #e6e6e6;
}

.pf p:first-of-type::before, .pf p:first-of-type::after {
	content: "";
	display: block;
	width: 38px;
	height: 1px;
	background: #000;
}

.pf p:first-of-type {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	justify-content: center;
	-webkit-box-pack: center;
}

.pf p:first-of-type span {
	flex-shrink: 0;
	margin: 0 10px;
	font-size: 2.3rem;
	font-weight: 700;
	line-height: 1;
}

.pf::after {
	content: "";
	position: absolute;
	display: block;
	top: auto;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 531px;
	background: url(/files/cont/shinji-ono/img/ono_sign.png) no-repeat;
	background-size: 300px auto;
	background-color: #E6E6E6;
	background-position: bottom 55px right 14%;
}


.foot-wrap {
	padding-bottom: 106px;
	margin: 0 auto;
}

.lastgame {
	position: relative;
	display: block;
	background: url(/files/cont/shinji-ono/img/game.svg) no-repeat top center/ auto;
	margin: 0 auto;
	padding-top: 24%;
	width: 100vw;
	z-index: 3;
}

.lastgame p {
	display: block;
	width: 100%;
	font-weight: 600;
	line-height: 1.2;
	font-size: 3.3rem;
	font-weight: 900;
	transform: skewX(-10deg);
	padding: 0;
	margin-top: -21px;
}



.last {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 90vw;
	z-index: 2;
}

.kickoff {
	max-width: 575px;
	margin: 0 auto;
	padding: 0 52px 100px;
}

.foot_img {
	max-width: 890px;
	margin: 0 auto;
}

.staff_wrap {
	padding: 80px 0 0 0;
}

.staff {
	font-size: 1.2rem;
	padding-top: 30px;
}

.staff dt {
	font-weight: 800;
	text-transform: capitalize;
}

.staff dd {
	color: #6B6B6B;
	font-weight: 600;
}

.staff dl {
	margin-bottom: 12px;
}

/*---snsアイコン---*/
.sns-btn {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin-top: 20px;
}

.sns-btn li {
	width: 30px;
	margin-left: 10px;
	margin-right: 10px;
}

.sns-btn li a {
	display: block;
	width: 100%;
	height: 100%;
}

nav ul li.current a,
nav ul li a:hover {
	color: #e62b1a;
}

/* フェードイン用のCSS */
.slide-bottom {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 0.6s 0s ease-out;
}

/* 新規追加*/
.thanks_img {
	position: relative;
	display: block;
	background: url(/files/cont/shinji-ono/img/thanks.svg) no-repeat top center/ auto;
	margin: -1px auto 0;
	padding-top: 24%;
	width: 100vw;
	z-index: 3;
}

.thanks_img p {
	display: block;
	width: 100%;
	font-weight: 600;
	line-height: 1.2;
}

.thanks_img p {
	font-size: 3.3rem;
	font-weight: 900;
	transform: skewX(-10deg);
	padding: 0;
	margin-top: -21px;
}

.thanks {
	background-color: #E6E6E6;
	margin-top: 40px;
}

.fan {
	display: block;
	padding-top: 80%;
	background: url(/files/cont/shinji-ono/img/figure_footer_sp.jpg) no-repeat top center/ 100% auto;
}


/*---SPからPCサイズにする---*/
@media screen and (min-width:450px) {

	.slant-bg2 {
		top: 142px;
		margin-bottom: -248px;
	}

	.slant-bg2_red {
		top: -21px;
		transform: skewY(-23deg);
	}

	.slant-bg2_gray_2 {
		transform: skewY(-24deg);
	}
}

@media screen and (min-width:525px) {

	.pf p:nth-of-type(2) {
		background-color: #00000000;
	}

	.fan {
		display: block;
		padding-top: 400px;
		background: url(/files/cont/shinji-ono/img/figure_footer.jpg) repeat-x top center/ auto;
	}
}

@media screen and (min-width:570px) {

	.pf {
		padding: 60px 0 362px 0;
	}

	.last {
		width: 550px;
	}

	.lastgame {
		padding-top: 140px;
		width: 610px;
	}

	/* 新規追加*/
	.thanks_img {
		padding-top: 146px;
		width: 610px;
	}
}

@media screen and (min-width:650px) {

	.hero_img {
		background: url(/files/cont/shinji-ono/img/Shinji.Ono.top_pc.jpg) no-repeat top center / 1366px auto;
		height: 536px;
	}
}

@media screen and (min-width:860px) {

	/*---pcsp表示非表示---*/
	.pc {
		display: block;
	}

	.sp {
		display: none;
	}

	.age {
		font-size: 13rem;
		margin: 245px auto 0;
		max-width: 890px;
		padding: 0 0 50px 0;
	}

	.age::after {
		width: 40px;
		height: 54px;
		bottom: -8px;
		left: 1.2rem;
	}

	.contens_box2014 .age {
		margin: 0 auto;
	}

	.font_small {
		font-size: 1.4rem;
	}

	.font_middle {
		font-size: 3.2rem;
	}

	.font_larg {
		font-size: 6.8rem;
	}

	.header_wrap {
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: center;
		justify-content: center;
		z-index: 10;
	}

	.header_inner {
		position: absolute;
		top: 0;
		max-width: 890px;
		width: 100%;
		height: auto;
		background-color: #ffffff00;
		padding: 14px;
	}

	.header_inner h1 {
		margin-right: auto;
		width: 160px;
	}

	.hero_img::before {
		display: none;
	}

	.text_wrap {
		width: 580px;
		padding: 0;
	}

	.text_twitter {
		padding: 98px 0 40px 0;
	}


	.text_twitter p {
		font-size: 2rem;
	}

	.text_twitter p:first-child::before, .text_twitter p:first-child::after {
		width: 50px;
		height: 38px;
	}

	.text_twitter p:first-child::before {
		left: -60px;
	}

	.text_twitter p:first-child:after {
		right: -60px;
	}

	.text_twitter p:nth-of-type(2) {
		font-size: 1.5rem;
	}

	.sp-menu__box {
		display: none;
	}

	.sp-menu__content {
		width: 70px;
		height: auto;
		left: auto;
		right: -70px;
		top: 50%;
		transform: translateY(-50%);
		max-height: 70vh;
		overflow-y: scroll;
		scrollbar-width: none;
		-ms-overflow-style: none;
		background-color: #ffffff00;
	}

	.sp-menu__link {
		text-align: left;
		padding: 9px 15px 10px 0;
	}

	.sp-menu__content {
		width: 70px;
		height: auto;
		left: auto;
		right: -70px;
		top: 50%;
		transform: translateY(-50%);
		max-height: 70vh;
		background-color: #ffffff00;
	}

	.active {
		right: 0;
	}

	.sp-menu__list {
		padding: 10px;
	}

	nav ul li a {
		color: #fff;
		transition: all 0.5s;
		position: relative;
		left: 0;
	}

	nav ul li a:hover {
		color: #0e0e0e;
		left: -0.5rem;
	}

	nav ul li.current a {
		color: #0e0e0e;
		left: -0.5rem;
	}

	.wrapper {
		margin-top: -900px;
	}

	.slant-bg {
		width: 100%;
		margin: 0;
		padding-top: 1140px;
		position: relative;
		top: 0;
		left: 0;
	}

	.slant-bg_white {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: #fff;
		transform: skewY(-25deg);
		z-index: 3;
		height: 100%;
	}

	.slant-bg_gray {
		content: '';
		position: absolute;
		bottom: -18px;
		left: 0;
		right: 0;
		background-color: #E6E6E6;
		transform: skewY(-24deg);
		height: 50%;
		z-index: 2;
	}

	.slant-bg_red {
		content: '';
		position: absolute;
		bottom: -36px;
		left: 0;
		right: 0;
		height: 50%;
		background: linear-gradient(to left, #E62B1A 20%, #902222 90%, #7C0000);
		background: -webkit-linear-gradient(to left, #E62B1A 20%, #902222 90%, #7C0000);
		background: -moz-linear-gradient(to left, #E62B1A 20%, #902222 90%, #7C0000);
		transform: skewY(-23deg);
		background: -ms-linear-gradient(to left, #E62B1A 20%, #902222 90%, #7C0000);
		transform: skewY(-23deg);
		z-index: 1;
	}

	.bg_gray {
		padding-top: 800px;
		margin-top: -500px;
		background-size: auto auto;
		background-image: repeating-linear-gradient(90deg, transparent, transparent 324px, #C8CACA 100px, #C8CACA 325px);
		background-image: -webkit-repeating-linear-gradient(0deg, transparent, transparent 324px, #C8CACA 100px, #C8CACA 325px);
		background-image: -moz-repeating-linear-gradient(0deg, transparent, transparent 324px, #dfdfdf 100px, #dfdfdf 326px);
		background-image: -ms-repeating-linear-gradient(90deg, transparent, transparent 324px, #C8CACA 100px, #C8CACA 325px);
		background-color: #E6E6E6;
	}

	.contents_wrap {
		max-width: 890px;
	}

	.scroll-point {
		background: none;
	}

	.gooal {
		position: absolute;
		top: 559px;
		right: -68px;
		z-index: 2;
		width: 127px;
	}

	.scroll-point {
		padding-top: 0;
	}

	.scroll-point::before {
		background-image: none;
	}

	.contents_wrap::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 31px;
		background: #e62b1a;
		width: 2px;
		height: 100%;
	}

	/*新規追加*/
	.contens_box_lastgame .contents_wrap::after {
		display: none;
	}

	.contents_wrap_last {
		margin-bottom: 32px;
	}

	.contents_point_wrapper {
		width: 30vw;
	}

	.contens_box_text h3 {
		padding-top: 0;
	}

	.contens_box_text h3 span:nth-of-type(2) {
		font-size: 2.7rem;
	}

	.contens_box {
		display: -webkit-box;
		position: relative;
		display: flex;
		flex-wrap: nowrap;
		-webkit-box-pack: center;
		justify-content: end;
		width: 890px;
		margin: 80px auto 0;
		padding: 0;
	}

	.contens_box:first-of-type {
		padding: 0;
	}

	.contens_box::after {
		position: absolute;
		top: 0;
		right: 0;
		content: "";
		width: 696px;
		height: 100%;

	}

	.contens_box_text {
		padding: 50px 90px 50px 50px;
	}

	/*新規追加*/
	.contens_box_lastgame .contens_box_text {
		padding: 50px 0 50px 50px;
	}

	.contens_box_text::after {
		position: absolute;
		top: 0;
		right: 0;
		content: "";
		width: 696px;
		height: 100%;
		background-color: #fff;
		z-index: -1;
	}

	.contens_box_text p {
		padding-top: 20px;
		line-height: 1.6;
	}

	.contens_box2016_02 {
		margin-top: 20px;
	}

	.contens_box2016 .contens_box_text::after {
		height: 50%;
	}

	.contens_box2014 .contens_box:nth-of-type(2) .contens_box_text_img img, .contens_box2016_02 .contens_box_text_img img, .content_wrap2019 .contens_box_text_img img, .contens_box2022 .contens_box_text_img img {
		width: 100%;
	}

	.contents_wrap2018 .contens_box_text_img img {
		width: 100%;
	}

	.contens_box::backdrop {
		content: "";
	}

	.contens_box figure, .contents_img_wrap {
		flex-shrink: 0;
		flex-grow: 0;
		-webkit-box-flex: 0;
		flex-basis: 427px;
		z-index: 2;
		padding: 50px 0 80px 0;
	}

	.contens_box_lastgame .contens_box figure, .contents_img_wrap {
		padding-bottom: 69px;
	}

	.join::before {
		top: -128px;
		right: -128px;
		width: 255px;
		height: 255px;
		background-size: contain;
	}

	.comeback::before {
		top: -105px;
		right: -41px;
	}

	.contens_box2018 .contens_box_img_yoko, .contens_box2019 .contens_box_img_yoko {
		position: absolute;
		top: 0;
		right: 84px;
		width: 802px;
	}

	.contens_box2018 div h3 {
		padding-top: 392px;
	}

	.contens_box2019 div h3 {
		padding-top: 408px;
	}

	.contens_box .contents_box2023 .event {
		position: absolute;
		padding: 0;
		right: 90px;
		top: 126px;
		width: 700px;
	}

	.content_wrap2017 .contens_box {
		padding-top: 0;
	}

	.event {
		padding: 30px 0 60px 0;
	}

	.event p, .contens_box .contents_box2023 .event p {
		min-height: 75px;
		background-size: auto;
		font-size: 3.8rem;
		font-weight: 900;
		max-height: 75px;
		padding: 0;
		line-height: 2;
	}

	.content_wrap2017 .event {
		padding-bottom: 60px;
	}

	.contents_wrap2016 .event {
		margin: 0 auto;
		padding: 140px 0 37px 0;
	}

	.content_wrap2021 .event {
		padding-bottom: 40px;
	}

	.content_wrap2021 .contens_box {
		padding-top: 0;
	}

	.contents_img_wrap figure:first-of-type {
		padding-top: 0;
	}

	.contents_img_wrap figure:last-of-type {
		padding-bottom: 60px;
	}

	.sticky {
		position: sticky;
		top: 203px;
		right: 0;
		background: none;
	}

	.btn {
		padding-top: 32px;
	}

	.btn a {
		max-width: 100%;
	}

	.contens_box .contents_box2023 .btn {
		padding-top: 110px;
	}

	.contents_point div:first-of-type {
		padding-top: 0;
	}

	.contents_point div:last-child {
		padding-bottom: 0;
	}

	.pf {
		padding: 203px 0 280px 0;
	}

	.pf p:first-of-type::before, .pf p:first-of-type::after {
		width: 100%;
	}

	.pf p:first-of-type {
		justify-content: space-between;
		-webkit-box-pack: justify;
	}

	.pf p:first-of-type span {
		margin: 0 15px;
		font-size: 3rem;
	}

	.pf p:nth-of-type(2) {
		margin-top: 50px;
	}

	.pf p:nth-of-type(1), .pf p:nth-of-type(2) {
		max-width: 471px;
		padding: 0;
	}

	.pf::after {
		left: 55%;
		transform: translateX(0);
		width: 614px;
		height: 823px;
		background-size: contain;
		background-position: bottom 0 right 14%;
		background-color: #e6e6e600;
	}

	.lastgame {
		background: url(/files/cont/shinji-ono/img/lastgame_pc.svg) no-repeat top center/ auto;
		margin-top: -3px;
		padding-top: 12%;
		max-width: 1343px;
		width: 100vw;
	}

	.lastgame p {
		font-size: 5.4rem;
	}

	/* 新規追加*/
	.thanks_img {
		padding-top: 24%;
		max-width: 1374px;
		width: 100vw;
	}

	.thanks_img p {
		font-size: 5.4rem;
	}

	.kickoff {
		padding: 88px 0;
	}

	.staff_wrap {
		padding: 162px 0 0 0;
	}

	.footer_inner {
		text-align: center;
	}

	.last_text {
		display: inline;
		margin-bottom: 0;
		padding-right: 10px;
	}

	@media screen and (min-width:1200px) {
		.gooal {
			top: 418px;
			right: -154px;
			width: 212px;
		}
	}

	@media screen and (min-width:1343px) {
		.hero_img {
			background-size: 1568px auto;
			height: 608px;
		}

		.lastgame {
			display: block;
			background: url(/files/cont/shinji-ono/img/lastgame_pc.svg) no-repeat top center/ auto;
			margin: 0 auto;
			margin-top: -3px;
			padding-top: 158px;
			max-width: 1343px;
		}

		/* 新規追加*/
		.thanks_img {
			display: block;
			padding-top: 305px;
			max-width: 1374px;
		}
	}

}